7 writes to G
System.Security.Cryptography (6)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.Dsa.cs (1)
129G = Crypto.ExtractBignum(g_bn, pgy_cb)!,
src\libraries\Common\src\System\Security\Cryptography\DSAKeyFormatHelper.cs (2)
36ret.G = parms.G.ExportKeyParameter(ret.P.Length); 104ret.G = parms.G.ExportKeyParameter(ret.P.Length);
System\Security\Cryptography\CapiHelper.DSA.Shared.cs (2)
194dsaParameters.G = br.ReadReversed(lenP); 225dsaParameters.G = br.ReadReversed(len);
System\Security\Cryptography\DSA.Xml.cs (1)
53G = g,
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
202G = (gNode != null) ? Convert.FromBase64String(gNode.InnerText) : null,
15 references to G
System.Security.Cryptography (14)
src\libraries\Common\src\System\Security\Cryptography\DSAKeyFormatHelper.cs (1)
211writer.WriteKeyParameterInteger(dsaParameters.G);
src\libraries\Common\src\System\Security\Cryptography\DSAOpenSsl.cs (4)
101if (parameters.P == null || parameters.Q == null || parameters.G == null || parameters.Y == null) 112if (parameters.G.Length != keySize || parameters.Y.Length != keySize) 125parameters.G, parameters.G.Length,
System\Security\Cryptography\CapiHelper.DSA.Shared.cs (4)
29if (dsaParameters.G == null || dsaParameters.G.Length != dsaParameters.P.Length) 93bw.WriteReversed(dsaParameters.G); 124bw.WriteReversed(dsaParameters.G);
System\Security\Cryptography\DSA.Xml.cs (3)
36byte[] g = ReadRequiredElement(ref state, nameof(DSAParameters.G), p.Length); 111XmlKeyHelper.WriteCryptoBinary(nameof(DSAParameters.G), keyParameters.G, builder);
System\Security\Cryptography\X509Certificates\DSACertificateExtensions.cs (2)
49if (!currentParameters.G.ContentsEqual(newParameters.G) ||
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
108gElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.G!)));