mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
431dbada45
Exported from SUPERCOP-20200826 using the scripts at: https://github.com/jschanck/pqclean-package-ntruprime
18 lines
411 B
C
18 lines
411 B
C
#include "crypto_encode_653x1541.h"
|
|
#include "crypto_encode_653x1541round.h"
|
|
|
|
#define int16 int16_t
|
|
|
|
#define p 653
|
|
|
|
void PQCLEAN_SNTRUP653_CLEAN_crypto_encode_653x1541round(unsigned char *out, const void *v) {
|
|
const int16 *a = v;
|
|
int16 x[p];
|
|
int i;
|
|
|
|
for (i = 0; i < p; ++i) {
|
|
x[i] = 3 * ((10923 * a[i] + 16384) >> 15);
|
|
}
|
|
PQCLEAN_SNTRUP653_CLEAN_crypto_encode_653x1541(out, x);
|
|
}
|