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