-
Notifications
You must be signed in to change notification settings - Fork 462
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
Elliptic curve discrete logarithm problem (decoding RistrettoPoints) #604
Comments
As far as |
As of right now, what do you think I should do then? |
|
Thank you. FieldElement being deliberately not part of the public API is what I expected. I did not know the |
Given your need to couple to the internals either opening a PR or maintaining the fork sound like options. If you're in a hurry the latter sounds like the most practical option. |
Hi! As part of a freelance work for xelis, I have been working on an implementation of FastECDLP. My implementation works, and is quite fast 🥳
However, my work currently lives in a fork of this repository, because there are quite a lot of private items I need to access!
Here is my implementation as of the current state: compare changes. It is still lacking in docs, tests and stuff.
Here are the private items I need to access:
FieldElement
: addition, substraction, multiplication,sqrt_ratio_i
,invert
,batch_invert
,square
,ZERO
andONE
constants.I may have missed some, but FieldElement is the most important part.
Considering that, I'd like to know what the best course of action here is:
The text was updated successfully, but these errors were encountered: