#include "PublicKey.h" #include "openfhe/pke/key/publickey.h" namespace openfhe { PublicKeyDCRTPoly::PublicKeyDCRTPoly(const std::shared_ptr& publicKey) noexcept : m_publicKey(publicKey) { } const std::shared_ptr& PublicKeyDCRTPoly::GetRef() const noexcept { return m_publicKey; } std::shared_ptr& PublicKeyDCRTPoly::GetRef() noexcept { return m_publicKey; } // Generator functions std::unique_ptr DCRTPolyGenNullPublicKey() { return std::make_unique(); } } // openfhe