30 references to SignerInfoAsn
System.Security.Cryptography.Pkcs (30)
System\Security\Cryptography\Pkcs\Asn1\SignedDataAsn.xml.cs (4)
20
internal System.Security.Cryptography.Pkcs.Asn1.
SignerInfoAsn
[] SignerInfos;
202
var tmpList = new List<System.Security.Cryptography.Pkcs.Asn1.
SignerInfoAsn
>();
203
System.Security.Cryptography.Pkcs.Asn1.
SignerInfoAsn
tmpItem;
207
System.Security.Cryptography.Pkcs.Asn1.
SignerInfoAsn
.Decode(ref collectionReader, rebind, out tmpItem);
System\Security\Cryptography\Pkcs\Asn1\SignerInfoAsn.xml.cs (6)
75
internal static
SignerInfoAsn
Decode(ReadOnlyMemory<byte> encoded, AsnEncodingRules ruleSet)
80
internal static
SignerInfoAsn
Decode(Asn1Tag expectedTag, ReadOnlyMemory<byte> encoded, AsnEncodingRules ruleSet)
86
DecodeCore(ref reader, expectedTag, encoded, out
SignerInfoAsn
decoded);
96
internal static void Decode(ref AsnValueReader reader, ReadOnlyMemory<byte> rebind, out
SignerInfoAsn
decoded)
101
internal static void Decode(ref AsnValueReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out
SignerInfoAsn
decoded)
113
private static void DecodeCore(ref AsnValueReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out
SignerInfoAsn
decoded)
System\Security\Cryptography\Pkcs\CmsSigner.cs (2)
177
internal
SignerInfoAsn
Sign(
184
SignerInfoAsn
newSignerInfo = default;
System\Security\Cryptography\Pkcs\SignedCms.cs (2)
349
SignerInfoAsn
newSigner = signer.Sign(content, contentType, silent, out chainCerts);
359
SignerInfos = Array.Empty<
SignerInfoAsn
>(),
System\Security\Cryptography\Pkcs\SignerInfo.cs (15)
37
internal SignerInfo(ref
SignerInfoAsn
parsedData, SignedCms ownerDocument)
94
private delegate void WithSelfInfoDelegate(ref
SignerInfoAsn
mySigned);
108
ref
SignerInfoAsn
mySigner = ref signedData.SignerInfos[myIdx];
126
ref
SignerInfoAsn
parentData = ref documentData.SignerInfos[parentIdx];
144
SignerInfoAsn
counterSigner =
SignerInfoAsn
.Decode(counterSignerBytes, AsnEncodingRules.BER);
172
WithSelfInfo((ref
SignerInfoAsn
mySigner) =>
178
private static void AddUnsignedAttribute(ref
SignerInfoAsn
mySigner, AsnEncodedData unsignedAttribute)
213
WithSelfInfo((ref
SignerInfoAsn
mySigner) =>
219
private static void RemoveUnsignedAttribute(ref
SignerInfoAsn
mySigner, AsnEncodedData unsignedAttribute)
250
SignerInfoAsn
parsedData =
SignerInfoAsn
.Decode(attrValue, AsnEncodingRules.BER);
293
SignerInfoAsn
newSignerInfo = signer.Sign(effectiveThis._signature, null, false, out chain);
307
ref
SignerInfoAsn
mySigner = ref signedData.SignerInfos[myIdx];
349
ref
SignerInfoAsn
myData = ref parentData.SignerInfos[myIdx];
System\Security\Cryptography\Pkcs\SignerInfoCollection.cs (1)
27
internal SignerInfoCollection(
SignerInfoAsn
[] signedDataSignerInfos, SignedCms ownerDocument)