pqc/crypto_kem/sntrup857/clean/crypto_decode_857x3.c

25 lines
510 B
C
Raw Normal View History

#include "crypto_decode_857x3.h"
#define uint8 uint8_t
#define p 857
void PQCLEAN_SNTRUP857_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++;
2020-09-01 20:56:45 +01:00
*f++ = (uint8) ((x & 3) - 1);
x >>= 2;
2020-09-01 20:56:45 +01:00
*f++ = (uint8) ((x & 3) - 1);
x >>= 2;
2020-09-01 20:56:45 +01:00
*f++ = (uint8) ((x & 3) - 1);
x >>= 2;
2020-09-01 20:56:45 +01:00
*f++ = (uint8) ((x & 3) - 1);
}
x = *s++;
2020-09-01 20:56:45 +01:00
*f++ = (uint8) ((x & 3) - 1);
}