2 overrides of VerifyHash
System.Security.Cryptography (2)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSACng.SignVerify.cs (1)
132public override unsafe bool VerifyHash(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSABCrypt.cs (1)
319public override bool VerifyHash(
5 references to VerifyHash
System.Security.Cryptography (1)
System\Security\Cryptography\RSA.cs (1)
689return VerifyHash(new ReadOnlySpan<byte>(hash, 0, hashLength), 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))