15 references to SignerInfos
Microsoft.DotNet.SignCheckLibrary (4)
Verification\AuthentiCode.cs (4)
140SignerInfoCollection signerInfos = signedCms.SignerInfos; 225foreach (SignerInfo signerInfo in signedCms.SignerInfos) 263foreach (SignerInfo nestedSignerInfo in nestedSignatureMessage.SignerInfos) 287foreach (SignerInfo rfc3161SignerInfo in rfc3161Message.SignerInfos)
System.Security.Cryptography.Pkcs (11)
System\Security\Cryptography\Pkcs\Rfc3161TimestampRequest.cs (1)
449if (tokenCms.SignerInfos[0].Certificate == null)
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (1)
345SignerInfoCollection signerInfos = cms.SignerInfos;
System\Security\Cryptography\Pkcs\SignedCms.cs (3)
411int idx = SignerInfos.FindIndexForSigner(signerInfo); 611CheckSignatures(SignerInfos, extraStore, verifySignatureOnly); 644SignerInfoCollection signers = SignerInfos;
System\Security\Cryptography\Pkcs\SignerInfo.cs (6)
108int myIdx = _document.SignerInfos.FindIndexForSigner(this); 126int parentIdx = _document.SignerInfos.FindIndexForSigner(_parentSignerInfo); 301int myIdx = _document.SignerInfos.FindIndexForSigner(this); 309SignerInfo effectiveThis = _document.SignerInfos[myIdx]; 358int myIdx = _document.SignerInfos.FindIndexForSigner(this); 430SignerInfoCollection docSigners = _document.SignerInfos;