-
Notifications
You must be signed in to change notification settings - Fork 316
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
3 Bugs on general ECC calculation #343
Comments
This curve has order 27, which is not prime (it's but that also means that see result of the multiplying against subsequent multiples: for i in range(30):
a = G * i
print(f"{i}: {a.x()} {a.y()}")
|
Agree with most of the reply, except that:
|
hmm, true, |
Here I construct a ECC$y^2 = x^3 + x + 1 mod 23$ . And starting from point $(9, 7)$ . Here are three bugs I found. Any body who is intreated can reproduce the bugs easily.
The text was updated successfully, but these errors were encountered: