3 overrides of VerifyHash
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\ECDsaOpenSsl.cs (1)
155
public override bool
VerifyHash
(byte[] hash, byte[] signature)
System\Security\Cryptography\Cng.NotSupported.cs (1)
331
public override bool
VerifyHash
(byte[] hash, byte[] signature) => false;
System\Security\Cryptography\ECDsaWrapper.cs (1)
52
public 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)
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);