public static BigInteger Decrypt(BigInteger message, PrivateKey key) { return(BigInteger.ModPow(message, key.D, key.Mod)); }
public Keys(PublicKey Public, PrivateKey Private) { this.Public = Public; this.Private = Private; }