3 overrides of VerifyHash
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\ECDsaOpenSsl.cs (1)
155public override bool VerifyHash(byte[] hash, byte[] signature)
System\Security\Cryptography\Cng.NotSupported.cs (1)
331public override bool VerifyHash(byte[] hash, byte[] signature) => false;
System\Security\Cryptography\ECDsaWrapper.cs (1)
52public override bool VerifyHash(byte[] hash, byte[] signature) => _wrapped.VerifyHash(hash, signature);
4 references to VerifyHash
System.Security.Cryptography (4)
System\Security\Cryptography\ECDsa.cs (3)
740return VerifyHash(hash, signature); 922return VerifyHash(hash, signature); 1195return VerifyHash(hash.ToArray(), sig);
System\Security\Cryptography\ECDsaWrapper.cs (1)
52public override bool VerifyHash(byte[] hash, byte[] signature) => _wrapped.VerifyHash(hash, signature);