3 overrides of VerifyHash
System.Security.Cryptography (3)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\ECDsaCng.SignVerify.cs (1)
78
public override bool
VerifyHash
(byte[] hash, byte[] signature)
System\Security\Cryptography\ECDsaWrapper.cs (1)
52
public override bool
VerifyHash
(byte[] hash, byte[] signature) => _wrapped.VerifyHash(hash, signature);
System\Security\Cryptography\OpenSsl.NotSupported.cs (1)
178
public override bool
VerifyHash
(byte[] hash, byte[] signature) => default;
4 references to VerifyHash
System.Security.Cryptography (4)
System\Security\Cryptography\ECDsa.cs (3)
740
return
VerifyHash
(hash, signature);
922
return
VerifyHash
(hash, signature);
1195
return
VerifyHash
(hash.ToArray(), sig);
System\Security\Cryptography\ECDsaWrapper.cs (1)
52
public override bool VerifyHash(byte[] hash, byte[] signature) => _wrapped.
VerifyHash
(hash, signature);