2 instantiations of SignerInfo
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\Pkcs\SignerInfo.cs (1)
270SignerInfo signerInfo = new SignerInfo(ref parsedData, _document)
System\Security\Cryptography\Pkcs\SignerInfoCollection.cs (1)
36_signerInfos[i] = new SignerInfo(ref signedDataSignerInfos[i], ownerDocument);
34 references to SignerInfo
Microsoft.DotNet.SignCheckLibrary (6)
Verification\AuthentiCode.cs (6)
141SignerInfo signerInfo = GetPrimarySignerInfo(signerInfos); 205private static SignerInfo GetPrimarySignerInfo(SignerInfoCollection signerInfos) 225foreach (SignerInfo signerInfo in signedCms.SignerInfos) 231foreach (SignerInfo counterSign in signerInfo.CounterSignerInfos) 263foreach (SignerInfo nestedSignerInfo in nestedSignatureMessage.SignerInfos) 287foreach (SignerInfo rfc3161SignerInfo in rfc3161Message.SignerInfos)
System.Security (1)
System.Security.cs (1)
29[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Pkcs.SignerInfo))]
System.Security.Cryptography.Pkcs (27)
System\Security\Cryptography\Pkcs\Rfc3161TimestampRequest.cs (1)
165SignerInfo signerInfo,
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (5)
19private SignerInfo? _signerInfo; 152SignerInfo signerInfo, 199SignerInfo signer, 352SignerInfo signer = signerInfos[0]; 563private static bool TryGetCertIds(SignerInfo signer, out EssCertId? certId, out EssCertIdV2? certId2)
System\Security\Cryptography\Pkcs\SignedCms.cs (3)
407public void RemoveSignature(SignerInfo signerInfo) 626foreach (SignerInfo signer in signers) 652foreach (SignerInfo signer in signers)
System\Security\Cryptography\Pkcs\SignerInfo.cs (7)
34private SignerInfo? _parentSignerInfo; 260List<SignerInfo> signerInfos = new List<SignerInfo>(); 270SignerInfo signerInfo = new SignerInfo(ref parsedData, _document) 309SignerInfo effectiveThis = _document.SignerInfos[myIdx]; 426public void RemoveCounterSignature(SignerInfo counterSignerInfo) 438SignerInfo liveThis = docSigners[index];
System\Security\Cryptography\Pkcs\SignerInfoCollection.cs (10)
14private readonly SignerInfo[] _signerInfos; 18_signerInfos = Array.Empty<SignerInfo>(); 21internal SignerInfoCollection(SignerInfo[] signerInfos) 32_signerInfos = new SignerInfo[signedDataSignerInfos.Length]; 40public SignerInfo this[int index] 74public void CopyTo(SignerInfo[] array, int index) => ((ICollection)this).CopyTo(array, index); 79private static int FindIndexForSigner(SignerInfo[] signerInfos, SignerInfo signer) 86SignerInfo current = signerInfos[i]; 98internal int FindIndexForSigner(SignerInfo signer)
System\Security\Cryptography\Pkcs\SignerInfoEnumerator.cs (1)
22public SignerInfo Current => _signerInfos[_position];