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; 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)
416public void RemoveSignature(SignerInfo signerInfo) 638foreach (SignerInfo signer in signers) 664foreach (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) 441SignerInfo 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] 77public void CopyTo(SignerInfo[] array, int index) => ((ICollection)this).CopyTo(array, index); 82private static int FindIndexForSigner(SignerInfo[] signerInfos, SignerInfo signer) 89SignerInfo current = signerInfos[i]; 101internal int FindIndexForSigner(SignerInfo signer)
System\Security\Cryptography\Pkcs\SignerInfoEnumerator.cs (1)
22public SignerInfo Current => _signerInfos[_position];