Skip to content
Snippets Groups Projects
Commit 2e24e947 authored by Niels Möller's avatar Niels Möller
Browse files

Fixed sign error in comment.

parent fb2c801d
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ ecc_eh_to_a (const struct ecc_curve *ecc, ...@@ -62,7 +62,7 @@ ecc_eh_to_a (const struct ecc_curve *ecc,
#define up p #define up p
#define vp (p + ecc->size) #define vp (p + ecc->size)
#define wp (p + 2*ecc->size) #define wp (p + 2*ecc->size)
/* x = (v+1)/(v-1), y = t x / u (with t = sqrt(b+2)) /* x = (1+v)/(1-v), y = t x / u (with t = sqrt(b+2))
In homogeneous coordinates, In homogeneous coordinates,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment