예제 #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);
 }