Files
kunlun/rom/riscv2/crypto/mbedtls-2.4.0/library/ed25519/ref10/ge_madd.c
2024-09-28 14:24:04 +08:00

12 lines
128 B
C

#include "ge.h"
/*
r = p + q
*/
void ge_madd(ge_p1p1 *r,const ge_p3 *p,const ge_precomp *q)
{
fe t0;
#include "ge_madd.h"
}