-rw-r--r-- 191 lib25519-20221222/crypto_pow/inv25519/amd64-51/api.c raw
#include "crypto_pow.h" #include "fe25519.h" void crypto_pow(unsigned char *q,const unsigned char *p) { fe25519 x; fe25519_unpack(&x,p); fe25519_invert(&x,&x); fe25519_pack(q,&x); }