3 overrides of TryDecrypt
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
107
public override bool
TryDecrypt
(
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
64
public override bool
TryDecrypt
(ReadOnlySpan<byte> data, Span<byte> destination, RSAEncryptionPadding padding, out int bytesWritten)
System\Security\Cryptography\RSAWrapper.cs (1)
69
public 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
" />
259
return rsa.
TryDecrypt
(input, destination, padding, out bytesWritten);
289
/// <see cref="
TryDecrypt
" />.
293
/// <seealso cref="
TryDecrypt
" />
298
if (
TryDecrypt
(data, destination, padding, out int written))
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
73
return _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)
200
if (!privateKey.
TryDecrypt
(encryptedKey, cek, encryptionPadding, out cekLength))