3 overrides of Decrypt
System.Security.Cryptography (3)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSACng.EncryptDecrypt.cs (1)
23
public override byte[]
Decrypt
(byte[] data, RSAEncryptionPadding padding) =>
System\Security\Cryptography\RSABCrypt.cs (1)
132
public override byte[]
Decrypt
(byte[] data, RSAEncryptionPadding padding)
System\Security\Cryptography\RSACryptoServiceProvider.Windows.cs (1)
598
public override byte[]
Decrypt
(byte[] data, RSAEncryptionPadding padding)
8 references to Decrypt
Microsoft.DotNet.HotReload.Watch (1)
src\sdk\src\Dotnet.Watch\HotReloadClient\Web\SharedSecretProvider.cs (1)
20
=> Convert.ToBase64String(_rsa.
Decrypt
(Convert.FromBase64String(secret), RSAEncryptionPadding.OaepSHA256));
System.Security.Cryptography (7)
System\Security\Cryptography\RSA.cs (5)
104
byte[] result =
Decrypt
(data.ToArray(), padding);
242
/// This implementation has not implemented one of <see cref="
Decrypt
(byte[], RSAEncryptionPadding)" /> or
245
/// <seealso cref="
Decrypt
(byte[], RSAEncryptionPadding)" />
288
/// This implementation has not implemented one of <see cref="
Decrypt
(byte[], RSAEncryptionPadding)" /> or
291
/// <seealso cref="
Decrypt
(byte[], RSAEncryptionPadding)" />
System\Security\Cryptography\RSAOAEPKeyExchangeDeformatter.cs (1)
29
return _rsaKey.
Decrypt
(rgbData, RSAEncryptionPadding.OaepSHA1);
System\Security\Cryptography\RSAPKCS1KeyExchangeDeformatter.cs (1)
39
return _rsaKey.
Decrypt
(rgbIn, RSAEncryptionPadding.Pkcs1);