pqc/crypto_kem/sntrup653/avx2/crypto_decode_653xint16.c
John M. Schanck 70543bba37 Add sntrup{653,761,857} and ntrulpr{653,761,857}
Exported from SUPERCOP-20200826 using the scripts at:
https://github.com/jschanck/pqclean-package-ntruprime
2020-08-28 20:22:56 -04:00

17 lines
327 B
C

#include "crypto_decode_653xint16.h"
void PQCLEAN_SNTRUP653_AVX2_crypto_decode_653xint16(void *v, const unsigned char *s) {
uint16_t *x = v;
int i;
for (i = 0; i < 653; ++i) {
uint16_t u0 = s[0];
uint16_t u1 = s[1];
u1 <<= 8;
*x = u0 | u1;
x += 1;
s += 2;
}
}