summaryrefslogtreecommitdiff
path: root/libs/libaxolotl/src/curve25519/ed25519/ge_sub.c
blob: 84c4d2e208148e4250c61ab3bfe5a2a6be47a5cf (plain)
1
2
3
4
5
6
7
8
9
10
11
#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"
}