3 overrides of TrySignHash
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
749
public override bool
TrySignHash
(
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
242
public override bool
TrySignHash
(ReadOnlySpan<byte> hash, Span<byte> destination, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding, out int bytesWritten)
System\Security\Cryptography\RSAWrapper.cs (1)
83
public override bool
TrySignHash
(
11 references to TrySignHash
System.Security.Cryptography (9)
System\Security\Cryptography\RSA.cs (7)
417
TrySignHash
(destination.Slice(0, hashLength), destination, hashAlgorithm, padding, out bytesWritten))
453
/// This implementation has not implemented one of <see cref="TrySignData" />, <see cref="
TrySignHash
" />,
512
/// This implementation has not implemented one of <see cref="TrySignData" />, <see cref="
TrySignHash
" />,
559
/// This implementation has not implemented one of <see cref="
TrySignHash
" />
574
return rsa.
TrySignHash
(input, destination, state.HashAlgorithm, state.Padding, out bytesWritten);
614
/// This implementation has not implemented one of <see cref="
TrySignHash
" />
626
if (
TrySignHash
(hash, destination, hashAlgorithm, padding, out int written))
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
253
return _impl.
TrySignHash
(hash, destination, hashAlgorithm, padding, out bytesWritten);
System\Security\Cryptography\RSAWrapper.cs (1)
89
_wrapped.
TrySignHash
(hash, destination, hashAlgorithm, padding, out bytesWritten);
System.Security.Cryptography.Cose (1)
System\Security\Cryptography\Cose\CoseHelpers.cs (1)
156
if (!key.
TrySignHash
(hash, destination, hashAlgorithm, padding, out int bytesWritten))
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (1)
128
bool signed = privateKey.
TrySignHash
(