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