2 writes to Values
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\CryptographicAttributeObject.cs (2)
26
Values
= new AsnEncodedDataCollection();
42
Values
= values;
16 references to Values
Microsoft.DotNet.SignCheckLibrary (6)
Verification\AuthentiCode.cs (4)
161
var st = (Pkcs9SigningTime)signedAttribute.
Values
[0];
179
timestamps.AddRange(GetTimestampsFromCounterSignature(unsignedAttribute.
Values
[0]));
183
var nestedSignature = new Pkcs9AttributeObject(unsignedAttribute.
Values
[0]);
193
timestamps.AddRange(GetTimestampsFromCounterSignature(nestedUnsignedAttribute.
Values
[0]));
Verification\Jar\JarSignatureFile.cs (2)
261
Pkcs9AttributeObject timestampAttribute = new Pkcs9AttributeObject(unsignedAttribute.
Values
[0]);
272
var signingTime = (Pkcs9SigningTime)sa.
Values
[0];
System.Security.Cryptography.Pkcs (10)
System\Security\Cryptography\CryptographicAttributeObjectCollection.cs (4)
53
if (object.ReferenceEquals(existing.
Values
, attribute.
Values
))
65
foreach (AsnEncodedData asnEncodedData in attribute.
Values
)
67
existing.
Values
.Add(asnEncodedData);
System\Security\Cryptography\Pkcs\CmsSigner.cs (3)
409
AttrValues = new ReadOnlyMemory<byte>[attributeObject.
Values
.Count],
412
for (int i = 0; i < attributeObject.
Values
.Count; i++)
414
newAttr.AttrValues[i] = attributeObject.
Values
[i].RawData;
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (1)
590
foreach (AsnEncodedData attr in attrSet.
Values
)
System\Security\Cryptography\Pkcs\SignerInfo.cs (2)
628
if (obj.
Values
.Count != 1)
633
var digestAttr = (Pkcs9MessageDigest)obj.
Values
[0];