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