DecryptResult.cc 194 B

12345678910
  1. #include "DecryptResult.h"
  2. namespace openfhe
  3. {
  4. DecryptResult::DecryptResult(lbcrypto::DecryptResult&& decryptResult) noexcept
  5. : m_decryptResult(std::move(decryptResult))
  6. { }
  7. } // openfhe