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