#include "LWEPrivateKey.h" #include "openfhe/binfhe/lwe-privatekey.h" namespace openfhe { LWEPrivateKey::LWEPrivateKey(const std::shared_ptr& lwePrivateKey) : m_lwePrivateKey(lwePrivateKey) { } std::shared_ptr LWEPrivateKey::GetInternal() const { return m_lwePrivateKey; } } // openfhe