mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-01-10 03:27:19 -03:00
8 lines
133 B
C
8 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);
|
|
}
|