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
(
7 references to VerifyHash
Microsoft.CodeAnalysis.Test.Utilities (1)
Metadata\ILValidation.cs (1)
112
if (!rsa.
VerifyHash
(hash, reversedSignature, HashAlgorithmName.SHA1, RSASignaturePadding.Pkcs1))
Microsoft.DotNet.StrongName (1)
Verification.cs (1)
128
if (!rsa.
VerifyHash
(hash, reversedSignature, HashAlgorithmName.SHA1, RSASignaturePadding.Pkcs1))
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);