1 write to G
System.Security.Cryptography (1)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EcDsa.ImportExport.cs (1)
271
curve.
G
= new ECPoint
28 references to G
System.Security.Cryptography (28)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EcDsa.ImportExport.cs (4)
79
curve.
G
.X!, curve.
G
.X!.Length,
80
curve.
G
.Y!, curve.
G
.Y!.Length,
src\libraries\Common\src\System\Security\Cryptography\EccKeyFormatHelper.cs (6)
443
curve.
G
.X = baseSpan.Slice(1, primeOrPoly.Length).ToArray();
444
curve.
G
.Y = baseSpan.Slice(1 + primeOrPoly.Length).ToArray();
767
int basePointLength = ecParameters.Curve.
G
.X!.Length * 2 + 1;
781
ecParameters.Curve.
G
.X.CopyTo(basePointBytes.Slice(1));
782
ecParameters.Curve.
G
.Y.CopyTo(basePointBytes.Slice(1 + ecParameters.Curve.
G
.X.Length));
src\libraries\Common\src\System\Security\Cryptography\ECOpenSsl.ImportExport.cs (8)
135
parameters.Curve.
G
.X!, parameters.Curve.
G
.X!.Length,
136
parameters.Curve.
G
.Y!, parameters.Curve.
G
.Y!.Length,
155
parameters.Curve.
G
.X!, parameters.Curve.
G
.X!.Length,
156
parameters.Curve.
G
.Y!, parameters.Curve.
G
.Y!.Length,
System\Security\Cryptography\ECCurve.cs (6)
204
G
.X == null ||
G
.X.Length != A.Length ||
205
G
.Y == null ||
G
.Y.Length != A.Length ||
254
G
.X != null ||
255
G
.Y != null ||
System\Security\Cryptography\Helpers.cs (4)
222
if (!aCurve.
G
.X!.ContentsEqual(bCurve.
G
.X!) ||
223
!aCurve.
G
.Y!.ContentsEqual(bCurve.
G
.Y!) ||