示例#1
0
文件: RSAKey.cs 项目: Ribtoks/LongInt
 public RSAPrivateKey(RSAPrivateKey from)
     : this(from.d, from.n)
 {
 }
示例#2
0
 public static ULongIntB Decode(RSAPrivateKey key, ULongIntB number)
 {
     return CryptoMath.ExpMod5(number, (ULongIntB)key.D, (ULongIntB)key.N);
 }