pqc/crypto_kem/ntrulpr857/clean/crypto_decode_857x3.c

25 lines
506 B
C
Raw Normal View History

#include "crypto_decode_857x3.h"
#define uint8 uint8_t
#define p 857
void PQCLEAN_NTRULPR857_CLEAN_crypto_decode_857x3(void *v, const unsigned char *s) {
uint8 *f = v;
uint8 x;
int i;
for (i = 0; i < p / 4; ++i) {
x = *s++;
*f++ = ((uint8)(x & 3)) - 1;
x >>= 2;
*f++ = ((uint8)(x & 3)) - 1;
x >>= 2;
*f++ = ((uint8)(x & 3)) - 1;
x >>= 2;
*f++ = ((uint8)(x & 3)) - 1;
}
x = *s++;
*f++ = ((uint8)(x & 3)) - 1;
}