2 overrides of VerifyHash
mscorlib (1)
system\security\cryptography\rsacryptoserviceprovider.cs (1)
622
public override bool
VerifyHash
(byte[] hash, byte[] signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding) {
System.Core (1)
System\Security\Cryptography\RsaCng.cs (1)
499
public override bool
VerifyHash
(byte[] hash, byte[] signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
3 references to VerifyHash
mscorlib (3)
system\security\cryptography\rsa.cs (2)
180
return
VerifyHash
(hash, signature, hashAlgorithm, padding);
198
return
VerifyHash
(hash, signature, hashAlgorithm, padding);
system\security\cryptography\rsapkcs1signaturedeformatter.cs (1)
82
return _rsaKey.
VerifyHash
(rgbHash, rgbSignature, hashAlgorithmName, RSASignaturePadding.Pkcs1);