2 overrides of TrySignHash
System.Security.Cryptography (2)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSACng.SignVerify.cs (1)
84public override unsafe bool TrySignHash(ReadOnlySpan<byte> hash, Span<byte> destination, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding, out int bytesWritten)
System\Security\Cryptography\RSABCrypt.cs (1)
258public override bool TrySignHash(
9 references to TrySignHash
System.Security.Cryptography (7)
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.Cose (1)
System\Security\Cryptography\Cose\CoseKey.cs (1)
228if (!key.TrySignHash(hash, destination, hashAlgorithm, padding, out int bytesWritten))
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (1)
125bool signed = privateKey.TrySignHash(