7 writes to Counter
System.Security.Cryptography (6)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\DSACng.ImportExport.cs (3)
359
dsaParams.
Counter
= BinaryPrimitives.ReadInt32BigEndian(Interop.BCrypt.Consume(dsaBlob, ref offset, 4));
393
dsaParams.
Counter
= BinaryPrimitives.ReadInt32BigEndian(Interop.BCrypt.Consume(dsaBlob, ref offset, 4));
411
dsaParams.
Counter
= 0;
System\Security\Cryptography\CapiHelper.DSA.Shared.cs (2)
326
dsaParameters.
Counter
= counter;
331
dsaParameters.
Counter
= 0;
System\Security\Cryptography\DSA.Xml.cs (1)
57
Counter
= counter,
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
197
Counter
= (pgenCounterNode != null) ? Utils.ConvertByteArrayToInt(Convert.FromBase64String(pgenCounterNode.InnerText)) : 0
6 references to Counter
System.Security.Cryptography (5)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\DSACng.ImportExport.cs (3)
199
Interop.BCrypt.EmitBigEndian(blob, ref offset, parameters.
Counter
);
279
Interop.BCrypt.EmitBigEndian(blob, ref offset, parameters.
Counter
);
409
if (dsaParams.
Counter
== -1)
System\Security\Cryptography\CapiHelper.DSA.Shared.cs (1)
351
bw.Write((int)dsaParameters.
Counter
);
System\Security\Cryptography\DSA.Xml.cs (1)
122
XmlKeyHelper.WriteCryptoBinary(CounterElementName, keyParameters.
Counter
, builder);
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
124
counterElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(Utils.ConvertIntToByteArray(dsaParams.
Counter
))));