mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 13:07:55 +00:00
9 lines
133 B
C
9 lines
133 B
C
#include "fe25519.h"
|
|
|
|
void fe25519_neg(fe25519 *r, const fe25519 *x)
|
|
{
|
|
fe25519 t;
|
|
fe25519_setint(&t,0);
|
|
fe25519_sub(r,&t,x);
|
|
}
|