3 overrides of VerifyHash
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
774
public override bool
VerifyHash
(
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
300
public override bool
VerifyHash
(byte[] hash, byte[] signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSAWrapper.cs (1)
62
public override bool
VerifyHash
(
5 references to VerifyHash
System.Security.Cryptography (5)
System\Security\Cryptography\RSA.cs (3)
357
VerifyHash
(hash.ToArray(), signature.ToArray(), hashAlgorithm, padding);
662
return
VerifyHash
(hash, signature, hashAlgorithm, padding);
673
return
VerifyHash
(hash, signature, hashAlgorithm, padding);
System\Security\Cryptography\RSAPKCS1SignatureDeformatter.cs (1)
55
return _rsaKey.
VerifyHash
(rgbHash, rgbSignature, new HashAlgorithmName(_algName), RSASignaturePadding.Pkcs1);
System\Security\Cryptography\RSAWrapper.cs (1)
67
_wrapped.
VerifyHash
(hash, signature, hashAlgorithm, padding);