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