-rw-r--r-- 898 lib25519-20260614/crypto_nG/merged25519/arm64-uma10l/nG.c raw
// 20240926 djb: use cryptoint #include <string.h> #include "crypto_nG.h" #include "crypto_hash_sha512.h" #include "randombytes.h" #include "fe25519.h" #include "sc25519.h" #include "ge25519.h" #include "crypto_uint8.h" void crypto_nG(unsigned char *pk,const unsigned char *sk) { unsigned char e[32]; sc25519 scsk; ge25519_p2_10l_dense gepk; fe25519_10l_dense recip; fe25519_10l_dense r,s; fe25519 x,y; int wantmont; for (int i = 0;i < 32;++i) e[i] = sk[i]; wantmont = crypto_uint8_topbit_01(e[31]); e[31] &= 127; sc25519_from32bytes(&scsk,e); ge25519_scalarmult_base(&gepk, &scsk, wantmont); fe25519_invert(&recip,&gepk.z); fe25519_mul(&s,&gepk.y,&recip); fe25519_mul(&r,&gepk.x,&recip); fe25519_10l_dense_to_4l(&y,&s); fe25519_10l_dense_to_4l(&x,&r); fe25519_pack(pk,&y); pk[31] ^= crypto_uint8_shlmod((1-wantmont) & fe25519_getparity(&x),7); }