-rw-r--r-- 199 saferewrite-20210903/src/core_weightsntrup761/ref/encode.c
#include "crypto_encode_int16.h" #include "crypto_uint16.h" void crypto_encode_int16(unsigned char *s,const void *x) { crypto_uint16 u = *(const crypto_uint16 *) x; s[0] = u; s[1] = u >> 8; }