mkp224o/ed25519/ref10/ge_p2_dbl.c

12 lines
112 B
C
Raw Normal View History

2017-09-24 22:13:16 +03:00
#include "ge.h"
/*
r = 2 * p
*/
void ge_p2_dbl(ge_p1p1 *r,const ge_p2 *p)
{
fe t0;
#include "ge_p2_dbl.h"
}