1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_kem/ntrulpr653/clean/crypto_encode_256x2.c

14 lines
320 B
C
Raw Normal View History

#include "crypto_encode_256x2.h"
void PQCLEAN_NTRULPR653_CLEAN_crypto_encode_256x2(unsigned char *s, const void *v) {
const unsigned char *r = v;
int i;
for (i = 0; i < 32; ++i) {
s[i] = 0;
}
for (i = 0; i < 256; ++i) {
s[i >> 3] |= (unsigned char) ((r[i] & 1) << (i & 7));
}
}