1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 23:48:58 +00:00
pqcrypto/crypto_kem/ntrulpr653/avx2/crypto_encode_653xint16.c

14 lines
308 B
C

#include "crypto_encode_653xint16.h"
void PQCLEAN_NTRULPR653_AVX2_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++ = (unsigned char) u;
*s++ = (unsigned char) (u >> 8);
}
}