3 overrides of VerifyHash
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
824public override bool VerifyHash(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
308public override bool VerifyHash(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSAWrapper.cs (1)
91public override bool VerifyHash(
8 references to VerifyHash
System.Security.Cryptography (3)
System\Security\Cryptography\RSA.cs (1)
689return VerifyHash(new ReadOnlySpan<byte>(hash, 0, hashLength), signature, hashAlgorithm, padding);
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
319return _impl.VerifyHash(hash, signature, hashAlgorithm, padding);
System\Security\Cryptography\RSAWrapper.cs (1)
96_wrapped.VerifyHash(hash, signature, hashAlgorithm, padding);
System.Security.Cryptography.Cose (2)
System\Security\Cryptography\Cose\CoseSign1Message.cs (1)
760return rsa.VerifyHash(hash, _signature, hashAlgorithm, padding);
System\Security\Cryptography\Cose\CoseSignature.cs (1)
470return rsa.VerifyHash(hash, _signature, hashAlgorithm, padding);
System.Security.Cryptography.Pkcs (3)
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (3)
82return publicKey.VerifyHash( 139if (key is not null && !certPublicKey.VerifyHash(dataHash, signatureValue, hashAlgorithmName, signaturePadding)) 158if (key is not null && !certPublicKey.VerifyHash(dataHash, signatureValue, hashAlgorithmName, signaturePadding))