pqc/crypto_kem/ntrulpr761/clean/crypto_decode_761x3.c
2020-09-01 15:56:45 -04:00

25 lines
511 B
C

#include "crypto_decode_761x3.h"
#define uint8 uint8_t
#define p 761
void PQCLEAN_NTRULPR761_CLEAN_crypto_decode_761x3(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);
}