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