1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-28 14:14:17 +00:00
i2pd/core/crypto/ed25519/ge_sub.cpp

12 lines
125 B
C++
Raw Normal View History

#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"
}