1 write to G
System.Security.Cryptography (1)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\ECCng.ImportExport.cs (1)
203primeCurve.G = new ECPoint()
24 references to G
System.Security.Cryptography (24)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\ECCng.ImportExport.cs (8)
62curve.G.X!.Length + 63curve.G.Y!.Length + 96Interop.BCrypt.Emit(blob, ref offset, curve.G.X); 97Interop.BCrypt.Emit(blob, ref offset, curve.G.Y); 247curve.G.X!.Length + 248curve.G.Y!.Length + 271Interop.BCrypt.Emit(blob, ref offset, curve.G.X); 272Interop.BCrypt.Emit(blob, ref offset, curve.G.Y);
System\Security\Cryptography\EccKeyFormatHelper.cs (6)
429curve.G.X = baseSpan.Slice(1, primeOrPoly.Length).ToArray(); 430curve.G.Y = baseSpan.Slice(1 + primeOrPoly.Length).ToArray(); 746int basePointLength = ecParameters.Curve.G.X!.Length * 2 + 1; 760ecParameters.Curve.G.X.CopyTo(basePointBytes.Slice(1)); 761ecParameters.Curve.G.Y.CopyTo(basePointBytes.Slice(1 + ecParameters.Curve.G.X.Length));
System\Security\Cryptography\ECCurve.cs (6)
204G.X == null || G.X.Length != A.Length || 205G.Y == null || G.Y.Length != A.Length || 254G.X != null || 255G.Y != null ||
System\Security\Cryptography\Helpers.cs (4)
229if (!aCurve.G.X!.ContentsEqual(bCurve.G.X!) || 230!aCurve.G.Y!.ContentsEqual(bCurve.G.Y!) ||