6 instantiations of CryptographicAttributeObjectCollection
System.Security.Cryptography.Pkcs (6)
System\Security\Cryptography\Pkcs\CmsSigner.cs (2)
28public CryptographicAttributeObjectCollection SignedAttributes { get; } = new CryptographicAttributeObjectCollection(); 29public CryptographicAttributeObjectCollection UnsignedAttributes { get; } = new CryptographicAttributeObjectCollection();
System\Security\Cryptography\Pkcs\EnvelopedCms.cs (1)
43UnprotectedAttributes = new CryptographicAttributeObjectCollection();
System\Security\Cryptography\Pkcs\Pkcs12SafeBag.cs (1)
24_attributes ??= new CryptographicAttributeObjectCollection();
System\Security\Cryptography\Pkcs\Pkcs8PrivateKeyInfo.cs (1)
39Attributes = new CryptographicAttributeObjectCollection();
System\Security\Cryptography\Pkcs\SignerInfo.cs (1)
793var coll = new CryptographicAttributeObjectCollection();
23 references to CryptographicAttributeObjectCollection
System.Security (1)
System.Security.cs (1)
5[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CryptographicAttributeObjectCollection))]
System.Security.Cryptography.Pkcs (22)
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decode.cs (1)
25out CryptographicAttributeObjectCollection unprotectedAttributes)
Internal\Cryptography\Pal\AnyOS\ManagedPal.Encrypt.cs (2)
23CryptographicAttributeObjectCollection unprotectedAttributes) 58CryptographicAttributeObjectCollection unprotectedAttributes,
Internal\Cryptography\PkcsPal.cs (2)
27public abstract byte[] Encrypt(CmsRecipientCollection recipients, ContentInfo contentInfo, AlgorithmIdentifier contentEncryptionAlgorithm, X509Certificate2Collection originatorCerts, CryptographicAttributeObjectCollection unprotectedAttributes); 34public abstract DecryptorPal Decode(ReadOnlySpan<byte> encodedMessage, out int version, out ContentInfo contentInfo, out AlgorithmIdentifier contentEncryptionAlgorithm, out X509Certificate2Collection originatorCerts, out CryptographicAttributeObjectCollection unprotectedAttributes);
System\Security\Cryptography\CryptographicAttributeObjectEnumerator.cs (2)
12internal CryptographicAttributeObjectEnumerator(CryptographicAttributeObjectCollection attributes) 47private readonly CryptographicAttributeObjectCollection _attributes;
System\Security\Cryptography\Pkcs\CmsSigner.cs (3)
28public CryptographicAttributeObjectCollection SignedAttributes { get; } = new CryptographicAttributeObjectCollection(); 29public CryptographicAttributeObjectCollection UnsignedAttributes { get; } = new CryptographicAttributeObjectCollection(); 395internal static List<AttributeAsn> BuildAttributes(CryptographicAttributeObjectCollection? attributes)
System\Security\Cryptography\Pkcs\EnvelopedCms.cs (2)
58public CryptographicAttributeObjectCollection UnprotectedAttributes { get; private set; } 166CryptographicAttributeObjectCollection unprotectedAttributes;
System\Security\Cryptography\Pkcs\Pkcs12SafeBag.cs (2)
16private CryptographicAttributeObjectCollection? _attributes; 20public CryptographicAttributeObjectCollection Attributes
System\Security\Cryptography\Pkcs\Pkcs8PrivateKeyInfo.cs (2)
16public CryptographicAttributeObjectCollection Attributes { get; } 46CryptographicAttributeObjectCollection attributes)
System\Security\Cryptography\Pkcs\SignerInfo.cs (6)
34private CryptographicAttributeObjectCollection? _parsedSignedAttrs; 35private CryptographicAttributeObjectCollection? _parsedUnsignedAttrs; 61public CryptographicAttributeObjectCollection SignedAttributes => 64public CryptographicAttributeObjectCollection UnsignedAttributes => 791internal static CryptographicAttributeObjectCollection MakeAttributeCollection(AttributeAsn[]? attributes) 793var coll = new CryptographicAttributeObjectCollection();