-rw-r--r-- 475 lib25519-20230630/crypto_nPbatch/montgomery25519/amd64-avx512ifma-8x1-maax/batch.c raw
#include "crypto_nP_montgomery25519.h"
#include "crypto_nPbatch.h"
#include "mont25519_batch.h"
void crypto_nPbatch(unsigned char *nP,
const unsigned char *n,
const unsigned char *P,
long long batch
)
{
while (batch >= 8) {
crypto_nP_8x1((void *) nP,(void *) n,(void *) P);
nP += 32*8;
n += 32*8;
P += 32*8;
batch -= 8;
}
while (batch > 0) {
crypto_nP_montgomery25519(nP,n,P);
nP += 32;
n += 32;
P += 32;
--batch;
}
}