-rw-r--r-- 133 lib25519-20220726/crypto_sign/ed25519/amd64-maa4/fe25519_neg.c raw
#include "fe25519.h" void fe25519_neg(fe25519 *r, const fe25519 *x) { fe25519 t; fe25519_setint(&t,0); fe25519_sub(r,&t,x); }