4 overrides of NeedsHashedMessage
System.Security.Cryptography.Pkcs (4)
System\Security\Cryptography\Pkcs\CmsSignature.DSA.cs (1)
40
internal override bool
NeedsHashedMessage
=> true;
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (1)
42
internal override bool
NeedsHashedMessage
=> true;
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (1)
43
internal override bool
NeedsHashedMessage
=> true;
System\Security\Cryptography\Pkcs\CmsSignature.SlhDsa.cs (1)
40
internal override bool
NeedsHashedMessage
=> false;
3 references to NeedsHashedMessage
System.Security.Cryptography.Pkcs (3)
System\Security\Cryptography\Pkcs\CmsSigner.cs (2)
400
if (processor?.
NeedsHashedMessage
== false)
421
bool shouldHash = processor.
NeedsHashedMessage
;
System\Security\Cryptography\Pkcs\SignerInfo.cs (1)
899
Func<bool, VerifyCallback, bool> verifier = signatureProcessor.
NeedsHashedMessage
? VerifyHashedMessage : VerifyPureMessage;