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