Created
August 17, 2019 16:33
-
-
Save stefandeml/3ffa617a26f93d0ffc8f3459e8fb4b2a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "ecc/babyjubjubParams.code" as context | |
// Add two points on a twisted Edwards curve | |
// Curve parameters are defined with the last argument | |
// https://en.wikipedia.org/wiki/Twisted_Edwards_curve#Addition_on_twisted_Edwards_curves | |
def main(field[2] pt1, field[2] pt2, field[10] context) -> (field[2]): | |
field a = context[0] | |
field d = context[1] | |
field u1 = pt1[0] | |
field v1 = pt1[1] | |
field u2 = pt2[0] | |
field v2 = pt2[1] | |
field uOut = (u1*v2 + v1*u2) / (1 + d*u1*u2*v1*v2) | |
field vOut = (v1*v2 - a*u1*u2) / (1 - d*u1*u2*v1*v2) | |
return [uOut, vOut] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment