2 instantiations of SignerInfo
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\Pkcs\SignerInfo.cs (1)
252
SignerInfo signerInfo = new
SignerInfo
(ref parsedData, _document)
System\Security\Cryptography\Pkcs\SignerInfoCollection.cs (1)
35
_signerInfos[i] = new
SignerInfo
(ref signedDataSignerInfos[i], ownerDocument);
28 references to SignerInfo
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)
165
SignerInfo
signerInfo,
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (5)
19
private
SignerInfo
? _signerInfo;
155
SignerInfo
signerInfo,
205
SignerInfo
signer,
358
SignerInfo
signer = signerInfos[0];
569
private static bool TryGetCertIds(
SignerInfo
signer, out EssCertId? certId, out EssCertIdV2? certId2)
System\Security\Cryptography\Pkcs\SignedCms.cs (3)
411
public void RemoveSignature(
SignerInfo
signerInfo)
633
foreach (
SignerInfo
signer in signers)
659
foreach (
SignerInfo
signer in signers)
System\Security\Cryptography\Pkcs\SignerInfo.cs (7)
33
private
SignerInfo
? _parentSignerInfo;
242
List<
SignerInfo
> signerInfos = new List<
SignerInfo
>();
252
SignerInfo
signerInfo = new SignerInfo(ref parsedData, _document)
291
SignerInfo
effectiveThis = _document.SignerInfos[myIdx];
408
public void RemoveCounterSignature(
SignerInfo
counterSignerInfo)
423
SignerInfo
liveThis = docSigners[index];
System\Security\Cryptography\Pkcs\SignerInfoCollection.cs (10)
13
private readonly
SignerInfo
[] _signerInfos;
17
_signerInfos = Array.Empty<
SignerInfo
>();
20
internal SignerInfoCollection(
SignerInfo
[] signerInfos)
31
_signerInfos = new
SignerInfo
[signedDataSignerInfos.Length];
39
public
SignerInfo
this[int index]
76
public void CopyTo(
SignerInfo
[] array, int index) => ((ICollection)this).CopyTo(array, index);
81
private static int FindIndexForSigner(
SignerInfo
[] signerInfos,
SignerInfo
signer)
88
SignerInfo
current = signerInfos[i];
100
internal int FindIndexForSigner(
SignerInfo
signer)
System\Security\Cryptography\Pkcs\SignerInfoEnumerator.cs (1)
22
public
SignerInfo
Current => _signerInfos[_position];