pqc/crypto_kem/ntrulpr761/clean/crypto_encode_761xint16.c

14 lines
309 B
C

#include "crypto_encode_761xint16.h"
void PQCLEAN_NTRULPR761_CLEAN_crypto_encode_761xint16(unsigned char *s, const void *v) {
const uint16_t *x = v;
int i;
for (i = 0; i < 761; ++i) {
uint16_t u = *x++;
*s++ = (unsigned char) u;
*s++ = (unsigned char) (u >> 8);
}
}