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