LWEPrivateKey.cc 336 B

12345678910111213141516
  1. #include "LWEPrivateKey.h"
  2. #include "openfhe/binfhe/lwe-privatekey.h"
  3. namespace openfhe
  4. {
  5. LWEPrivateKey::LWEPrivateKey(const std::shared_ptr<LWEPrivateKeyImpl>& lwePrivateKey)
  6. : m_lwePrivateKey(lwePrivateKey)
  7. { }
  8. std::shared_ptr<LWEPrivateKeyImpl> LWEPrivateKey::GetInternal() const
  9. {
  10. return m_lwePrivateKey;
  11. }
  12. } // openfhe