mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
431dbada45
Exported from SUPERCOP-20200826 using the scripts at: https://github.com/jschanck/pqclean-package-ntruprime
17 lines
327 B
C
17 lines
327 B
C
#include "crypto_decode_857xint16.h"
|
|
|
|
|
|
void PQCLEAN_SNTRUP857_AVX2_crypto_decode_857xint16(void *v, const unsigned char *s) {
|
|
uint16_t *x = v;
|
|
int i;
|
|
|
|
for (i = 0; i < 857; ++i) {
|
|
uint16_t u0 = s[0];
|
|
uint16_t u1 = s[1];
|
|
u1 <<= 8;
|
|
*x = u0 | u1;
|
|
x += 1;
|
|
s += 2;
|
|
}
|
|
}
|