70543bba37
Exported from SUPERCOP-20200826 using the scripts at: https://github.com/jschanck/pqclean-package-ntruprime
14 lines
302 B
C
14 lines
302 B
C
#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] |= (r[i] & 1) << (i & 7);
|
|
}
|
|
}
|