4 references to Decrypt
Microsoft.Build.Tasks.Core (2)
ManifestUtil\CngLightup.cs (2)
291return rsaCsp.Decrypt(data, false); 338return rsaCsp.Decrypt(data, true);
System.Security.Cryptography (2)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (2)
59padding == RSAEncryptionPadding.Pkcs1 ? Decrypt(data, fOAEP: false) : 60padding == RSAEncryptionPadding.OaepSHA1 ? Decrypt(data, fOAEP: true) : // For compat, this prevents OaepSHA2 options as fOAEP==true will cause Decrypt to use OaepSHA1