4 instantiations of SignerInfoCollection
System.Security.Cryptography.Pkcs (4)
System\Security\Cryptography\Pkcs\SignedCms.cs (2)
109return new SignerInfoCollection(); 112return new SignerInfoCollection(_signedData.SignerInfos, this);
System\Security\Cryptography\Pkcs\SignerInfo.cs (2)
86return new SignerInfoCollection(); 280return new SignerInfoCollection(signerInfos.ToArray());
14 references to SignerInfoCollection
NuGet.Packaging (3)
Signing\Archive\SignedPackageArchiveUtility.cs (1)
341var countersigners = primarySigner.CounterSignerInfos;
Signing\Signatures\RepositoryCountersignature.cs (1)
42var countersignatures = primarySignature.SignerInfo.CounterSignerInfos;
Signing\Utility\SignatureUtility.cs (1)
278var counterSignatures = primarySignature.SignerInfo.CounterSignerInfos;
System.Security (1)
System.Security.cs (1)
30[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Pkcs.SignerInfoCollection))]
System.Security.Cryptography.Pkcs (10)
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (1)
345SignerInfoCollection signerInfos = cms.SignerInfos;
System\Security\Cryptography\Pkcs\SignedCms.cs (4)
103public SignerInfoCollection SignerInfos 602SignerInfoCollection signers, 617SignerInfoCollection counterSigners = signer.CounterSignerInfos; 631SignerInfoCollection signers = SignerInfos;
System\Security\Cryptography\Pkcs\SignerInfo.cs (3)
77public SignerInfoCollection CounterSignerInfos 256private SignerInfoCollection GetCounterSigners(AttributeAsn[] unsignedAttrs) 430SignerInfoCollection docSigners = _document.SignerInfos;
System\Security\Cryptography\Pkcs\SignerInfoEnumerator.cs (2)
11private readonly SignerInfoCollection _signerInfos; 14internal SignerInfoEnumerator(SignerInfoCollection signerInfos)