1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/sntrup653/clean/crypto_decode_653xint16.c

17 lines
328 B
C
Raw Normal View History

#include "crypto_decode_653xint16.h"
void PQCLEAN_SNTRUP653_CLEAN_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;
}
}