3 overrides of VerifyHash
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
786public 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(
7 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 (1)
System\Security\Cryptography\Cose\CoseKey.cs (1)
251return _rsaKey.VerifyHash(toBeSigned, signature, HashAlgorithm.Value, RSASignaturePadding);
System.Security.Cryptography.Pkcs (3)
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (3)
83return publicKey.VerifyHash( 140if (!certKey.VerifyHash(dataHash, signatureValue, hashAlgorithmName, signaturePadding)) 165if (!certKey.VerifyHash(dataHash, signatureValue, hashAlgorithmName, signaturePadding))