16 references to SignerInfos
Microsoft.DotNet.SignCheckLibrary (5)
Verification\AuthentiCode.cs (3)
73foreach (SignerInfo rfc3161SignerInfo in rfc3161Message.SignerInfos) 149foreach (SignerInfo signerInfo in signedCms.SignerInfos) 187foreach (SignerInfo nestedSignerInfo in nestedSignatureMessage.SignerInfos)
Verification\Jar\JarSignatureFile.cs (2)
255foreach (SignerInfo signerInfo in cms.SignerInfos) 266foreach (SignerInfo timestampSigner in timestampCms.SignerInfos)
System.Security.Cryptography.Pkcs (11)
System\Security\Cryptography\Pkcs\Rfc3161TimestampRequest.cs (1)
452if (tokenCms.SignerInfos[0].Certificate == null)
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (1)
351SignerInfoCollection signerInfos = cms.SignerInfos;
System\Security\Cryptography\Pkcs\SignedCms.cs (3)
424int idx = SignerInfos.FindIndexForSigner(signerInfo); 624CheckSignatures(SignerInfos, extraStore, verifySignatureOnly); 657SignerInfoCollection signers = SignerInfos;
System\Security\Cryptography\Pkcs\SignerInfo.cs (6)
100int myIdx = _document.SignerInfos.FindIndexForSigner(this); 118int parentIdx = _document.SignerInfos.FindIndexForSigner(_parentSignerInfo); 283int myIdx = _document.SignerInfos.FindIndexForSigner(this); 291SignerInfo effectiveThis = _document.SignerInfos[myIdx]; 340int myIdx = _document.SignerInfos.FindIndexForSigner(this); 415SignerInfoCollection docSigners = _document.SignerInfos;