Exemplo n.º 1
0
 public RSAPrivateKey(RSAPrivateKey from)
     : this(from.d, from.n)
 {
 }
Exemplo n.º 2
0
 public static ULongIntB Decode(RSAPrivateKey key, ULongIntB number)
 {
     return CryptoMath.ExpMod5(number, (ULongIntB)key.D, (ULongIntB)key.N);
 }