2 overrides of Decrypt
mscorlib (1)
system\security\cryptography\rsacryptoserviceprovider.cs (1)
588public override byte[] Decrypt(byte[] data, RSAEncryptionPadding padding) {
System.Core (1)
System\Security\Cryptography\RsaCng.cs (1)
400public override byte[] Decrypt(byte[] data, RSAEncryptionPadding padding)
2 references to Decrypt
mscorlib (2)
system\security\cryptography\rsaoaepkeyexchangedeformatter.cs (1)
47return _rsaKey.Decrypt(rgbData, RSAEncryptionPadding.OaepSHA1);
system\security\cryptography\rsapkcs1keyexchangedeformatter.cs (1)
52rgbOut = _rsaKey.Decrypt(rgbIn, RSAEncryptionPadding.Pkcs1);