internal Verifier(PublicKey key) { _key = key; _state = false; _bitgen = new Random(); _synch = false; }
internal static bool EqTest(PublicKey first, PublicKey second) { return first._key == second._key && first._modulus == second._modulus; }