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