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