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) =>
5 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 (1)
System\Security\Cryptography\Cose\CoseKey.cs (1)
247return _ecdsaKey.VerifyHash(toBeSigned, signature);
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (2)
98return key.VerifyHash(valueHash, ieee); 179if (!certKey.VerifyHash(dataHash, signedHash))