2020-08-29 01:18:54 +01:00
|
|
|
#include "crypto_encode_857xint16.h"
|
|
|
|
|
|
|
|
|
|
|
|
void PQCLEAN_SNTRUP857_CLEAN_crypto_encode_857xint16(unsigned char *s, const void *v) {
|
|
|
|
const uint16_t *x = v;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 857; ++i) {
|
|
|
|
uint16_t u = *x++;
|
2020-09-01 12:55:46 +01:00
|
|
|
*s++ = (unsigned char) u;
|
|
|
|
*s++ = (unsigned char) (u >> 8);
|
2020-08-29 01:18:54 +01:00
|
|
|
}
|
|
|
|
}
|