-
Notifications
You must be signed in to change notification settings - Fork 147
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
Twisted Edwards curves operations #1949
Conversation
b741643
to
576725d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
left some comments for reviewers
toBigint({ x, y }: Point) { | ||
let x_ = Field3.toBigint(x); | ||
let y_ = Field3.toBigint(y); | ||
return { x: x_, y: y_, infinity: x_ === 0n && y_ === 1n }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I created an equivalent Point
type (elliptic-curve also has it) with the difference that the infinity is not always set to false
as it is the case in the other gadgets.
let witnesses = exists(12, () => { | ||
let [x1_, x2_, y1_, y2_] = Field3.toBigints(x1, x2, y1, y2); | ||
|
||
// TODO: reuse code in twistedAdd to avoid recomputing these |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would be a nice feature and much cleaner code, but apparently this wouldn't be a trivial refactor at all. Ideas for the future: inspiration from the interpreter structure in o1vm?
This is finished and ported to its own package - great job! (keeping the branch alive just in case) |
This PR is the twisted counterpart of the operations found in
/src/lib/provable/gadgets/elliptic-curve.ts
. It is a necessary step to support EdDSA, which uses the twisted curve Ed25519. Related to o1-labs/o1js-bindings#317.