2 overrides of TrySignHash
System.Security.Cryptography (2)
src\libraries\Common\src\System\Security\Cryptography\ECDsaOpenSsl.cs (1)
97public override bool TrySignHash(ReadOnlySpan<byte> hash, Span<byte> destination, out int bytesWritten)
System\Security\Cryptography\ECDsaWrapper.cs (1)
172public override bool TrySignHash(ReadOnlySpan<byte> hash, Span<byte> destination, out int bytesWritten) =>
4 references to TrySignHash
System.Security.Cryptography (2)
System\Security\Cryptography\ECDsa.cs (1)
472return TrySignHash(hash, destination, out bytesWritten);
System\Security\Cryptography\ECDsaWrapper.cs (1)
173_wrapped.TrySignHash(hash, destination, out bytesWritten);
System.Security.Cryptography.Cose (1)
System\Security\Cryptography\Cose\CoseHelpers.cs (1)
135if (!key.TrySignHash(hash, destination, out int bytesWritten))
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (1)
169if (key.TrySignHash(dataHash, rented, out bytesWritten))