-rw-r--r-- 222 saferewrite-20210903/src/core_wforcesntrup761/avx/decode.c
#include "crypto_decode_int16.h" #include "crypto_uint16.h" void crypto_decode_int16(void *x,const unsigned char *s) { crypto_uint16 u0 = s[0]; crypto_uint16 u1 = s[1]; u1 <<= 8; *(crypto_uint16 *) x = u0 | u1; }