-rw-r--r-- 187 libntruprime-20240910/src/encode/int16/ref/encode.c raw
#include "crypto_encode.h" #include "crypto_uint16.h" void crypto_encode(unsigned char *s,const void *x) { crypto_uint16 u = *(const crypto_uint16 *) x; s[0] = u; s[1] = u >> 8; }