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);
|
||
|
}
|