3 instantiations of CryptographicAttributeObject
System.Security.Cryptography.Pkcs (3)
Internal\Cryptography\Pal\AnyOS\ManagedPal.KeyAgree.cs (1)
88return new CryptographicAttributeObject(oid, values);
System\Security\Cryptography\CryptographicAttributeObjectCollection.cs (1)
33return Add(new CryptographicAttributeObject(asnEncodedData.Oid!, new AsnEncodedDataCollection(asnEncodedData)));
System\Security\Cryptography\Pkcs\SignerInfo.cs (1)
816return new CryptographicAttributeObject(type, valueColl);
25 references to CryptographicAttributeObject
Microsoft.DotNet.SignCheckLibrary (5)
Verification\AuthentiCode.cs (3)
151foreach (CryptographicAttributeObject unsignedAttribute in signerInfo.UnsignedAttributes) 157foreach (CryptographicAttributeObject signedAttribute in counterSign.SignedAttributes) 189foreach (CryptographicAttributeObject nestedUnsignedAttribute in nestedSignerInfo.UnsignedAttributes)
Verification\Jar\JarSignatureFile.cs (2)
257foreach (CryptographicAttributeObject unsignedAttribute in signerInfo.UnsignedAttributes) 268foreach (CryptographicAttributeObject sa in timestampSigner.SignedAttributes)
System.Security (1)
System.Security.cs (1)
4[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CryptographicAttributeObject))]
System.Security.Cryptography.Pkcs (19)
Internal\Cryptography\KeyAgreeRecipientInfoPal.cs (1)
21public abstract CryptographicAttributeObject? OtherKeyAttribute { get; }
Internal\Cryptography\Pal\AnyOS\ManagedPal.KeyAgree.cs (1)
61public override CryptographicAttributeObject? OtherKeyAttribute
System\Security\Cryptography\CryptographicAttributeObjectCollection.cs (10)
17_list = new List<CryptographicAttributeObject>(); 20public CryptographicAttributeObjectCollection(CryptographicAttributeObject attribute) 22_list = new List<CryptographicAttributeObject>(); 36public int Add(CryptographicAttributeObject attribute) 49CryptographicAttributeObject existing = _list[index]; 78internal void AddWithoutMerge(CryptographicAttributeObject attribute) 84public void Remove(CryptographicAttributeObject attribute) 94public CryptographicAttributeObject this[int index] 157public void CopyTo(CryptographicAttributeObject[] array, int index) 172private readonly List<CryptographicAttributeObject> _list;
System\Security\Cryptography\CryptographicAttributeObjectEnumerator.cs (1)
18public CryptographicAttributeObject Current
System\Security\Cryptography\Pkcs\CmsSigner.cs (1)
404foreach (CryptographicAttributeObject attributeObject in attributes)
System\Security\Cryptography\Pkcs\KeyAgreeRecipientInfo.cs (2)
72public CryptographicAttributeObject? OtherKeyAttribute 93private volatile CryptographicAttributeObject? _lazyOtherKeyAttribute;
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (1)
579foreach (CryptographicAttributeObject attrSet in signer.SignedAttributes)
System\Security\Cryptography\Pkcs\SignerInfo.cs (2)
626CryptographicAttributeObject obj = MakeAttribute(attr); 806private static CryptographicAttributeObject MakeAttribute(AttributeAsn attribute)