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