pqc/crypto_kem/ntrulpr653/clean/crypto_encode_653xint16.c

14 lines
275 B
C
Raw Normal View History

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