/**
- Getter for maximum plaintext modulus
- @return
*/
NativeInteger GetMaxPlaintextSpace() const {
return m_params->GetLWEParams()->Getq() / (this->GetBeta() << 1);
}
/**
- Getter for the beta security parameter
- @return
*/
constexpr NativeInteger GetBeta() const {
return NativeInteger(128);
}
What is the relationship between the plaintext space and the security parameter?