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