pqc/crypto_kem/sntrup761/clean/crypto_encode_761x3.c

22 lines
409 B
C
Raw Normal View History

#include "crypto_encode_761x3.h"
#define uint8 uint8_t
#define p 761
void PQCLEAN_SNTRUP761_CLEAN_crypto_encode_761x3(unsigned char *s, const void *v) {
2020-09-02 17:48:28 +01:00
const uint8 *f = v;
uint8 x;
int i;
for (i = 0; i < p / 4; ++i) {
2020-09-02 17:48:28 +01:00
x = *f++ + 1;
x += (*f++ + 1) << 2;
x += (*f++ + 1) << 4;
x += (*f++ + 1) << 6;
*s++ = x;
}
x = *f++ + 1;
*s++ = x;
}