3 overrides of Decrypt
System.Security.Cryptography (3)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSACng.EncryptDecrypt.cs (1)
23public override byte[] Decrypt(byte[] data, RSAEncryptionPadding padding) =>
System\Security\Cryptography\RSABCrypt.cs (1)
132public override byte[] Decrypt(byte[] data, RSAEncryptionPadding padding)
System\Security\Cryptography\RSACryptoServiceProvider.Windows.cs (1)
598public 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)
104byte[] 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)
29return _rsaKey.Decrypt(rgbData, RSAEncryptionPadding.OaepSHA1);
System\Security\Cryptography\RSAPKCS1KeyExchangeDeformatter.cs (1)
39return _rsaKey.Decrypt(rgbIn, RSAEncryptionPadding.Pkcs1);