/* * Power_Mod Constructor */ Power_Mod::Power_Mod(const BigInt& n, Usage_Hints hints, bool disable_monty) { m_core = nullptr; set_modulus(n, hints, disable_monty); }
/* * Power_Mod Constructor */ Power_Mod::Power_Mod(const BigInt& n, Usage_Hints hints) { m_core = nullptr; set_modulus(n, hints); }