-rw-r--r-- 300 saferewrite-20210915/src/core_scale3sntrup761/ref/decode.c
#include "crypto_decode.h" #include "crypto_uint16.h" void crypto_decode_761xint16(void *v,const unsigned char *s) { crypto_uint16 *x = v; int i; for (i = 0;i < 761;++i) { crypto_uint16 u0 = s[0]; crypto_uint16 u1 = s[1]; u1 <<= 8; *x = u0 | u1; x += 1; s += 2; } }