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
(
8 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 (2)
System\Security\Cryptography\Cose\CoseSign1Message.cs (1)
760
return rsa.
VerifyHash
(hash, _signature, hashAlgorithm, padding);
System\Security\Cryptography\Cose\CoseSignature.cs (1)
470
return rsa.
VerifyHash
(hash, _signature, hashAlgorithm, padding);
System.Security.Cryptography.Pkcs (3)
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (3)
82
return publicKey.
VerifyHash
(
139
if (key is not null && !certPublicKey.
VerifyHash
(dataHash, signatureValue, hashAlgorithmName, signaturePadding))
158
if (key is not null && !certPublicKey.
VerifyHash
(dataHash, signatureValue, hashAlgorithmName, signaturePadding))