2020-08-29 01:18:54 +01:00
|
|
|
#include "crypto_decode_761xint16.h"
|
|
|
|
|
|
|
|
|
|
|
|
void PQCLEAN_SNTRUP761_AVX2_crypto_decode_761xint16(void *v, const unsigned char *s) {
|
|
|
|
uint16_t *x = v;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 761; ++i) {
|
|
|
|
uint16_t u0 = s[0];
|
|
|
|
uint16_t u1 = s[1];
|
2020-09-01 12:55:46 +01:00
|
|
|
*x = (uint16_t) (u0 | (u1 << 8));
|
2020-08-29 01:18:54 +01:00
|
|
|
x += 1;
|
|
|
|
s += 2;
|
|
|
|
}
|
|
|
|
}
|