-rw-r--r-- 468 lib25519-20221222/crypto_nP/montgomery25519/amd64-avx2-ns9l-maa5/fe25519_invert.c raw
// linker define fe25519_invert
// linker use fe25519_from_5l fe25519_pack fe25519_unpack fe25519_to_9l fe25519_9l_to_5l
#include "crypto_pow_inv25519.h"
#include "fe25519.h"
void fe25519_invert(fe25519_5l *r, const fe25519_5l *x)
{
// XXX: can streamline this
fe25519 t;
fe25519_9l u;
unsigned char s[32];
fe25519_from_5l(&t,x);
fe25519_pack(s,&t);
crypto_pow_inv25519(s,s);
fe25519_unpack(&t,s);
fe25519_to_9l(&u,&t);
fe25519_9l_to_5l(r,&u);
}