3 writes to J
System.Security.Cryptography (2)
System\Security\Cryptography\CapiHelper.DSA.Shared.cs (1)
198dsaParameters.J = br.ReadReversed(lenJ);
System\Security\Cryptography\DSA.Xml.cs (1)
55J = j,
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
204J = (jNode != null) ? Convert.FromBase64String(jNode.InnerText) : null,
14 references to J
System.Security.Cryptography (12)
src\libraries\Common\src\System\Security\Cryptography\DSAOpenSsl.cs (2)
106if (parameters.J != null && parameters.J.Length >= parameters.P.Length)
System\Security\Cryptography\CapiHelper.DSA.Shared.cs (6)
34if (dsaParameters.J != null && dsaParameters.J.Length >= dsaParameters.P.Length) 52uint bitLenJ = dsaParameters.J == null ? 0 : (uint)dsaParameters.J.Length * 8; 97bw.WriteReversed(dsaParameters.J!); 297((dsaParameters.Y != null) && (dsaParameters.J != null)))
System\Security\Cryptography\DSA.Xml.cs (4)
38byte[]? j = XmlKeyHelper.ReadCryptoBinary(ref state, nameof(DSAParameters.J)); 114if (keyParameters.J != null) 116XmlKeyHelper.WriteCryptoBinary(nameof(DSAParameters.J), keyParameters.J, builder);
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\DSAKeyValue.cs (2)
116if (dsaParams.J != null) 119jElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.J)));