2 writes to Counter
mscorlib (2)
system\security\cryptography\dsa.cs (1)
204dsaParams.Counter = Utils.ConvertByteArrayToInt(Convert.FromBase64String(Utils.DiscardWhiteSpaces(pgenCounterString)));
system\security\cryptography\dsacryptoserviceprovider.cs (1)
352dsaParams.Counter = dsaCspObject.Counter;
3 references to Counter
mscorlib (2)
system\security\cryptography\dsa.cs (1)
258sb.Append("<PgenCounter>"+Convert.ToBase64String(Utils.ConvertIntToByteArray(dsaParams.Counter))+"</PgenCounter>");
system\security\cryptography\dsacryptoserviceprovider.cs (1)
365dsaCspObject.Counter = dsaParams.Counter;
System.Security (1)
system\security\cryptography\xml\keyinfo.cs (1)
284counterElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(Utils.ConvertIntToByteArray(dsaParams.Counter))));