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