-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Elliptic curve #2449
WIP: Elliptic curve #2449
Conversation
shikil
commented
Sep 11, 2013
- Add docstring
- Add test case
- Calculate torsion points
Doesn't characteristic 2 have to be treated separately? |
I am studying, the book does not specifically mention characteristic 2 yet, if you have paper/code regarding this, please post here. |
@asmeurer, I guess that you mean this http://www.certicom.com/index.php/40-elliptic-curve-groups-over-f2m This kind of prime power field, Galois field, may be implemented in other pull request. |
Even over the two element field it is different. If I remember correctly, the nonsingular condition changes in that case. |
EC y^2 = x^3 + ax +b must be singular in char 2 or 3. So the curve need to be y^2 + a1y + a3xy = x^3 + a2x^2 + a4x + a6 in this form. |
SymPy Bot Summary: 🔴 Failed after merging shikil/ec (6ae5c68) into master (dad12ba). |
@shikil any news? |
Sorry, I am busy and cannot continue work on this. |
This is almost complete. It should probably be placed in polys/agca instead of ntheory. |
I am taking this over. |