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