Ask Your Question

hngspngs's profile - activity

2020-12-02 05:52:44 +0100 received badge  Famous Question (source)
2019-08-07 07:21:54 +0100 received badge  Notable Question (source)
2019-08-01 06:20:24 +0100 received badge  Popular Question (source)
2018-02-21 03:38:14 +0100 asked a question Elliptic Curve and a generator?

I have been googling to find out how to verify a certain element is a generator for a given elliptic curve.

Elliptic curve over Fp for a certain prime p. p = 123456 E = EllipticCurve(GF(p), [0,1,0,1,-1])

g = E(11111111,22222222)

Q. how can I check that the element g is a generator? I tried things like E.abelian_group() d = E.gens(); d and it gives me a generator that does NOT match g.

I will appreciate for any hint/help/syntax!! thanks