2020-08-29 01:18:54 +01:00
|
|
|
#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);
|
2020-08-29 01:18:54 +01:00
|
|
|
x >>= 2;
|
2020-09-01 20:56:45 +01:00
|
|
|
*f++ = (uint8) ((x & 3) - 1);
|
2020-08-29 01:18:54 +01:00
|
|
|
x >>= 2;
|
2020-09-01 20:56:45 +01:00
|
|
|
*f++ = (uint8) ((x & 3) - 1);
|
2020-08-29 01:18:54 +01:00
|
|
|
x >>= 2;
|
2020-09-01 20:56:45 +01:00
|
|
|
*f++ = (uint8) ((x & 3) - 1);
|
2020-08-29 01:18:54 +01:00
|
|
|
}
|
|
|
|
x = *s++;
|
2020-09-01 20:56:45 +01:00
|
|
|
*f++ = (uint8) ((x & 3) - 1);
|
2020-08-29 01:18:54 +01:00
|
|
|
}
|