2 overrides of VerifyHash
System.Security.Cryptography (2)
src\libraries\Common\src\System\Security\Cryptography\ECDsaOpenSsl.cs (1)
163
public override bool
VerifyHash
(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature) =>
System\Security\Cryptography\ECDsaWrapper.cs (1)
175
public override bool
VerifyHash
(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature) =>
6 references to VerifyHash
System.Security.Cryptography (2)
System\Security\Cryptography\ECDsa.cs (1)
847
return
VerifyHash
(hash, signature);
System\Security\Cryptography\ECDsaWrapper.cs (1)
176
_wrapped.
VerifyHash
(hash, signature);
System.Security.Cryptography.Cose (2)
System\Security\Cryptography\Cose\CoseSign1Message.cs (1)
753
return ecdsa.
VerifyHash
(hash, _signature);
System\Security\Cryptography\Cose\CoseSignature.cs (1)
463
return ecdsa.
VerifyHash
(hash, _signature);
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (2)
97
return key.
VerifyHash
(valueHash, ieee);
173
if (key != null && !certificate.GetECDsaPublicKey()!.
VerifyHash
(dataHash, signedHash))