3 overrides of VerifyHash
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
786
public override bool
VerifyHash
(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
308
public override bool
VerifyHash
(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSAWrapper.cs (1)
91
public override bool
VerifyHash
(
7 references to VerifyHash
System.Security.Cryptography (3)
System\Security\Cryptography\RSA.cs (1)
689
return
VerifyHash
(new ReadOnlySpan<byte>(hash, 0, hashLength), signature, hashAlgorithm, padding);
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
319
return _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)
251
return _rsaKey.
VerifyHash
(toBeSigned, signature, HashAlgorithm.Value, RSASignaturePadding);
System.Security.Cryptography.Pkcs (3)
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (3)
83
return publicKey.
VerifyHash
(
140
if (!certKey.
VerifyHash
(dataHash, signatureValue, hashAlgorithmName, signaturePadding))
165
if (!certKey.
VerifyHash
(dataHash, signatureValue, hashAlgorithmName, signaturePadding))