2 overrides of TrySignHash
System.Security.Cryptography (2)
src\libraries\Common\src\System\Security\Cryptography\ECDsaOpenSsl.cs (1)
97
public override bool
TrySignHash
(ReadOnlySpan<byte> hash, Span<byte> destination, out int bytesWritten)
System\Security\Cryptography\ECDsaWrapper.cs (1)
172
public 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)
472
return
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)
135
if (!key.
TrySignHash
(hash, destination, out int bytesWritten))
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (1)
169
if (key.
TrySignHash
(dataHash, rented, out bytesWritten))