4 writes to Counter
System.Security.Cryptography (3)
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)
206Counter = (pgenCounterNode != null) ? Utils.ConvertByteArrayToInt(Convert.FromBase64String(pgenCounterNode.InnerText)) : 0
3 references to Counter
System.Security.Cryptography (2)
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)
130counterElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(Utils.ConvertIntToByteArray(dsaParams.Counter))));