3 overrides of VerifyHash
System.Security.Cryptography (3)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSACng.SignVerify.cs (1)
124public override bool VerifyHash(byte[] hash, byte[] signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSABCrypt.cs (1)
161public override bool VerifyHash(
System\Security\Cryptography\RSACryptoServiceProvider.Windows.cs (1)
646public override bool VerifyHash(
5 references to VerifyHash
Microsoft.DotNet.StrongName (1)
Verification.cs (1)
128if (!rsa.VerifyHash(hash, reversedSignature, HashAlgorithmName.SHA1, RSASignaturePadding.Pkcs1))
System.Security.Cryptography (4)
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);