PrivateKey.cc 327 B

12345678910111213141516
  1. #include "PrivateKey.h"
  2. #include "openfhe/pke/key/privatekey.h"
  3. namespace openfhe
  4. {
  5. PrivateKeyDCRTPoly::PrivateKeyDCRTPoly(const std::shared_ptr<PrivateKeyImpl>& privateKey)
  6. : m_privateKey(privateKey)
  7. { }
  8. std::shared_ptr<PrivateKeyImpl> PrivateKeyDCRTPoly::GetInternal() const
  9. {
  10. return m_privateKey;
  11. }
  12. } // openfhe