-rw-r--r-- 355 libntruprime-20240910/crypto_encode/1013x2393round/ref/encode.c raw
#include "crypto_encode_1013x2393.h" #include "crypto_encode.h" #include "crypto_int16.h" #include "crypto_int8.h" #define int16 crypto_int16 #define p 1013 void crypto_encode(unsigned char *out,const void *v) { const int16 *a = v; int16 x[p]; int i; for (i = 0;i < p;++i) x[i] = 3*((10923*a[i]+16384)>>15); crypto_encode_1013x2393(out,x); }