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