pqc/crypto_kem/sntrup857/avx2/crypto_encode_int16.c

10 lines
213 B
C
Raw Normal View History

#include "crypto_encode_int16.h"
#define uint16 uint16_t
void PQCLEAN_SNTRUP857_AVX2_crypto_encode_int16(unsigned char *s, const void *x) {
uint16 u = *(const uint16 *) x;
s[0] = u;
s[1] = u >> 8;
}