2 instantiations of SignerInfo
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\Pkcs\SignerInfo.cs (1)
252SignerInfo signerInfo = new SignerInfo(ref parsedData, _document)
System\Security\Cryptography\Pkcs\SignerInfoCollection.cs (1)
35_signerInfos[i] = new SignerInfo(ref signedDataSignerInfos[i], ownerDocument);
37 references to SignerInfo
Microsoft.DotNet.SignCheckLibrary (6)
Verification\AuthentiCode.cs (4)
73foreach (SignerInfo rfc3161SignerInfo in rfc3161Message.SignerInfos) 149foreach (SignerInfo signerInfo in signedCms.SignerInfos) 155foreach (SignerInfo counterSign in signerInfo.CounterSignerInfos) 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 (1)
System.Security.cs (1)
29[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Pkcs.SignerInfo))]
System.Security.Cryptography.Pkcs (30)
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decode.cs (1)
53unprotectedAttributes = SignerInfo.MakeAttributeCollection(data.UnprotectedAttributes);
System\Security\Cryptography\Pkcs\Pkcs12SafeContents.cs (1)
362bag.Attributes = SignerInfo.MakeAttributeCollection(serializedBags[i].BagAttributes);
System\Security\Cryptography\Pkcs\Pkcs8PrivateKeyInfo.cs (1)
87SignerInfo.MakeAttributeCollection(privateKeyInfo.Attributes));
System\Security\Cryptography\Pkcs\Rfc3161TimestampRequest.cs (1)
165SignerInfo signerInfo,
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (5)
19private SignerInfo? _signerInfo; 155SignerInfo signerInfo, 205SignerInfo signer, 358SignerInfo signer = signerInfos[0]; 569private static bool TryGetCertIds(SignerInfo signer, out EssCertId? certId, out EssCertIdV2? certId2)
System\Security\Cryptography\Pkcs\SignedCms.cs (3)
417public void RemoveSignature(SignerInfo signerInfo) 639foreach (SignerInfo signer in signers) 665foreach (SignerInfo signer in signers)
System\Security\Cryptography\Pkcs\SignerInfo.cs (7)
33private SignerInfo? _parentSignerInfo; 242List<SignerInfo> signerInfos = new List<SignerInfo>(); 252SignerInfo signerInfo = new SignerInfo(ref parsedData, _document) 291SignerInfo effectiveThis = _document.SignerInfos[myIdx]; 408public void RemoveCounterSignature(SignerInfo counterSignerInfo) 423SignerInfo liveThis = docSigners[index];
System\Security\Cryptography\Pkcs\SignerInfoCollection.cs (10)
13private readonly SignerInfo[] _signerInfos; 17_signerInfos = Array.Empty<SignerInfo>(); 20internal SignerInfoCollection(SignerInfo[] signerInfos) 31_signerInfos = new SignerInfo[signedDataSignerInfos.Length]; 39public SignerInfo this[int index] 76public void CopyTo(SignerInfo[] array, int index) => ((ICollection)this).CopyTo(array, index); 81private static int FindIndexForSigner(SignerInfo[] signerInfos, SignerInfo signer) 88SignerInfo current = signerInfos[i]; 100internal int FindIndexForSigner(SignerInfo signer)
System\Security\Cryptography\Pkcs\SignerInfoEnumerator.cs (1)
22public SignerInfo Current => _signerInfos[_position];