6 instantiations of CryptographicAttributeObjectCollection
System.Security.Cryptography.Pkcs (6)
src\libraries\Common\src\Internal\Cryptography\PkcsHelpers.cs (1)
259var coll = new CryptographicAttributeObjectCollection();
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12SafeBag.cs (1)
30_attributes ??= new CryptographicAttributeObjectCollection();
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs8PrivateKeyInfo.cs (1)
42Attributes = new CryptographicAttributeObjectCollection();
System\Security\Cryptography\Pkcs\CmsSigner.cs (2)
40public CryptographicAttributeObjectCollection SignedAttributes { get; } = new CryptographicAttributeObjectCollection(); 41public CryptographicAttributeObjectCollection UnsignedAttributes { get; } = new CryptographicAttributeObjectCollection();
System\Security\Cryptography\Pkcs\EnvelopedCms.cs (1)
37UnprotectedAttributes = 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)
24CryptographicAttributeObjectCollection unprotectedAttributes) 59CryptographicAttributeObjectCollection 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);
src\libraries\Common\src\Internal\Cryptography\PkcsHelpers.cs (3)
37internal static List<AttributeAsn> BuildAttributes(CryptographicAttributeObjectCollection? attributes) 257internal static CryptographicAttributeObjectCollection MakeAttributeCollection(AttributeAsn[]? attributes) 259var coll = new CryptographicAttributeObjectCollection();
src\libraries\Common\src\System\Security\Cryptography\CryptographicAttributeObjectEnumerator.cs (2)
18internal CryptographicAttributeObjectEnumerator(CryptographicAttributeObjectCollection attributes) 53private readonly CryptographicAttributeObjectCollection _attributes;
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12SafeBag.cs (2)
22private CryptographicAttributeObjectCollection? _attributes; 26public CryptographicAttributeObjectCollection Attributes
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs8PrivateKeyInfo.cs (2)
22public CryptographicAttributeObjectCollection Attributes { get; } 49CryptographicAttributeObjectCollection attributes)
System\Security\Cryptography\Pkcs\CmsSigner.cs (2)
40public CryptographicAttributeObjectCollection SignedAttributes { get; } = new CryptographicAttributeObjectCollection(); 41public CryptographicAttributeObjectCollection UnsignedAttributes { get; } = new CryptographicAttributeObjectCollection();
System\Security\Cryptography\Pkcs\EnvelopedCms.cs (2)
52public CryptographicAttributeObjectCollection UnprotectedAttributes { get; private set; } 156CryptographicAttributeObjectCollection unprotectedAttributes;
System\Security\Cryptography\Pkcs\SignerInfo.cs (4)
35private CryptographicAttributeObjectCollection? _parsedSignedAttrs; 36private CryptographicAttributeObjectCollection? _parsedUnsignedAttrs; 62public CryptographicAttributeObjectCollection SignedAttributes => 65public CryptographicAttributeObjectCollection UnsignedAttributes =>