public RSACrypto(String keyInfo, int ModulusSize) { this._rsaConfig = RSAHelper.GetRSAConfig(keyInfo, ModulusSize); FastPrivateDecrypt = true; }
public RSACrypto(RSAConfig rsaConfig) { this._rsaConfig = rsaConfig; FastPrivateDecrypt = true; }