示例#1
0
 public RSACrypto(String keyInfo, int ModulusSize)
 {
     this._rsaConfig    = RSAHelper.GetRSAConfig(keyInfo, ModulusSize);
     FastPrivateDecrypt = true;
 }
示例#2
0
 public RSACrypto(RSAConfig rsaConfig)
 {
     this._rsaConfig    = rsaConfig;
     FastPrivateDecrypt = true;
 }