#include "Ciphertext.h" #include "openfhe/pke/ciphertext.h" namespace openfhe { CiphertextDCRTPoly::CiphertextDCRTPoly(std::shared_ptr&& ciphertext) noexcept : m_ciphertext(std::move(ciphertext)) { } const std::shared_ptr& CiphertextDCRTPoly::GetRef() const noexcept { return m_ciphertext; } std::shared_ptr& CiphertextDCRTPoly::GetRef() noexcept { return m_ciphertext; } // Generator functions std::unique_ptr DCRTPolyGenNullCiphertext() { return std::make_unique(); } } // openfhe