diff options
Diffstat (limited to 'jni/ed25519/ge_p3_to_p2.c')
-rw-r--r-- | jni/ed25519/ge_p3_to_p2.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/jni/ed25519/ge_p3_to_p2.c b/jni/ed25519/ge_p3_to_p2.c new file mode 100644 index 00000000..e532a9e4 --- /dev/null +++ b/jni/ed25519/ge_p3_to_p2.c @@ -0,0 +1,12 @@ +#include "ge.h" + +/* +r = p +*/ + +extern void ge_p3_to_p2(ge_p2 *r,const ge_p3 *p) +{ + fe_copy(r->X,p->X); + fe_copy(r->Y,p->Y); + fe_copy(r->Z,p->Z); +} |