3 overrides of TryDecrypt
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
109public override bool TryDecrypt(
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
64public override bool TryDecrypt(ReadOnlySpan<byte> data, Span<byte> destination, RSAEncryptionPadding padding, out int bytesWritten)
System\Security\Cryptography\RSAWrapper.cs (1)
69public override bool TryDecrypt(
9 references to TryDecrypt
System.Security.Cryptography (8)
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\RSACryptoServiceProvider.Unix.cs (1)
73return _impl.TryDecrypt(data, destination, padding, out bytesWritten);
System\Security\Cryptography\RSAWrapper.cs (1)
74_wrapped.TryDecrypt(data, destination, padding, out bytesWritten);
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\AnyOS\ManagedPal.KeyTrans.cs (1)
200if (!privateKey.TryDecrypt(encryptedKey, cek, encryptionPadding, out cekLength))