mkp224o/ed25519/ref10/ge_sub.c

12 lines
125 B
C
Raw Normal View History

2017-09-24 21:13:16 +02:00
#include "ge.h"
/*
r = p - q
*/
void ge_sub(ge_p1p1 *r,const ge_p3 *p,const ge_cached *q)
{
fe t0;
#include "ge_sub.h"
}