-rw-r--r-- 303 lib25519-20230630/crypto_nPbatch/montgomery25519/ref/nPbatch.c raw
#include "crypto_nP_montgomery25519.h" #include "crypto_nPbatch.h" void crypto_nPbatch(unsigned char *nP, const unsigned char *n, const unsigned char *P, long long batch ) { while (batch > 0) { crypto_nP_montgomery25519(nP,n,P); nP += 32; n += 32; P += 32; --batch; } }