-rw-r--r-- 168 lib25519-20221222/crypto_pow/inv25519/ref10/api.c raw
#include "crypto_pow.h" #include "fe.h" void crypto_pow(unsigned char *q,const unsigned char *p) { fe x; fe_frombytes(x,p); fe_invert(x,x); fe_tobytes(q,x); }