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