2 overrides of TryDecrypt
System.Security.Cryptography (2)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSACng.EncryptDecrypt.cs (1)
31public override bool TryDecrypt(ReadOnlySpan<byte> data, Span<byte> destination, RSAEncryptionPadding padding, out int bytesWritten) =>
System\Security\Cryptography\RSABCrypt.cs (1)
179public override bool TryDecrypt(
7 references to TryDecrypt
System.Security.Cryptography (6)
System\Security\Cryptography\RSA.cs (6)
243/// <see cref="TryDecrypt" />. 247/// <seealso cref="TryDecrypt" /> 259return rsa.TryDecrypt(input, destination, padding, out bytesWritten); 289/// <see cref="TryDecrypt" />. 293/// <seealso cref="TryDecrypt" /> 298if (TryDecrypt(data, destination, padding, out int written))
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\AnyOS\ManagedPal.KeyTrans.cs (1)
201if (!privateKey.TryDecrypt(encryptedKey, cek, encryptionPadding, out cekLength))