mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 07:35:38 +00:00
NTRU Prime: Match the NIST submission's sequence of calls to randombytes
This commit is contained in:
parent
431dbada45
commit
7b5a4c494b
@ -107,11 +107,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
Short_fromlist(out, L);
|
Short_fromlist(out, L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,11 +107,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
Short_fromlist(out, L);
|
Short_fromlist(out, L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,11 +107,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
Short_fromlist(out, L);
|
Short_fromlist(out, L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,11 +107,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
Short_fromlist(out, L);
|
Short_fromlist(out, L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,11 +107,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
Short_fromlist(out, L);
|
Short_fromlist(out, L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,11 +107,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
Short_fromlist(out, L);
|
Short_fromlist(out, L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -73,12 +73,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[ppadsort];
|
uint32 L[ppadsort];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, 4 * p);
|
for (i = 0; i < ppadsort; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < w; ++i) {
|
for (i = 0; i < w; ++i) {
|
||||||
L[i] = L[i] & (uint32) - 2;
|
L[i] = L[i] & (uint32) - 2;
|
||||||
}
|
}
|
||||||
@ -98,8 +111,9 @@ static void Small_random(small *out) {
|
|||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < p; ++i) {
|
for (i = 0; i < p; ++i) {
|
||||||
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
||||||
}
|
}
|
||||||
|
@ -73,12 +73,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[ppadsort];
|
uint32 L[ppadsort];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, 4 * p);
|
for (i = 0; i < ppadsort; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < w; ++i) {
|
for (i = 0; i < w; ++i) {
|
||||||
L[i] = L[i] & (uint32) - 2;
|
L[i] = L[i] & (uint32) - 2;
|
||||||
}
|
}
|
||||||
@ -98,8 +111,9 @@ static void Small_random(small *out) {
|
|||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < p; ++i) {
|
for (i = 0; i < p; ++i) {
|
||||||
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
||||||
}
|
}
|
||||||
|
@ -73,12 +73,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[ppadsort];
|
uint32 L[ppadsort];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, 4 * p);
|
for (i = 0; i < ppadsort; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < w; ++i) {
|
for (i = 0; i < w; ++i) {
|
||||||
L[i] = L[i] & (uint32) - 2;
|
L[i] = L[i] & (uint32) - 2;
|
||||||
}
|
}
|
||||||
@ -98,8 +111,9 @@ static void Small_random(small *out) {
|
|||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < p; ++i) {
|
for (i = 0; i < p; ++i) {
|
||||||
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
#define q 4591
|
#define q 4591
|
||||||
#define w 286
|
#define w 286
|
||||||
|
|
||||||
#define ppadsort 768
|
#define ppadsort 761
|
||||||
|
|
||||||
#define crypto_verify_clen PQCLEAN_SNTRUP761_AVX2_crypto_verify_1039
|
#define crypto_verify_clen PQCLEAN_SNTRUP761_AVX2_crypto_verify_1039
|
||||||
|
|
||||||
|
@ -73,12 +73,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[ppadsort];
|
uint32 L[ppadsort];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, 4 * p);
|
for (i = 0; i < ppadsort; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < w; ++i) {
|
for (i = 0; i < w; ++i) {
|
||||||
L[i] = L[i] & (uint32) - 2;
|
L[i] = L[i] & (uint32) - 2;
|
||||||
}
|
}
|
||||||
@ -98,8 +111,9 @@ static void Small_random(small *out) {
|
|||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < p; ++i) {
|
for (i = 0; i < p; ++i) {
|
||||||
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#define q 4591
|
#define q 4591
|
||||||
#define w 286
|
#define w 286
|
||||||
|
|
||||||
#define ppadsort 768
|
#define ppadsort 761
|
||||||
|
|
||||||
#define crypto_verify_clen PQCLEAN_SNTRUP761_CLEAN_crypto_verify_1039
|
#define crypto_verify_clen PQCLEAN_SNTRUP761_CLEAN_crypto_verify_1039
|
||||||
|
|
||||||
|
@ -73,12 +73,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[ppadsort];
|
uint32 L[ppadsort];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, 4 * p);
|
for (i = 0; i < ppadsort; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < w; ++i) {
|
for (i = 0; i < w; ++i) {
|
||||||
L[i] = L[i] & (uint32) - 2;
|
L[i] = L[i] & (uint32) - 2;
|
||||||
}
|
}
|
||||||
@ -98,8 +111,9 @@ static void Small_random(small *out) {
|
|||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < p; ++i) {
|
for (i = 0; i < p; ++i) {
|
||||||
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
||||||
}
|
}
|
||||||
|
@ -73,12 +73,25 @@ static void Hash(unsigned char *out, const unsigned char *in, int inlen) {
|
|||||||
|
|
||||||
/* ----- higher-level randomness */
|
/* ----- higher-level randomness */
|
||||||
|
|
||||||
|
static uint32 urandom32(void) {
|
||||||
|
unsigned char c[4];
|
||||||
|
uint32 out[4];
|
||||||
|
|
||||||
|
randombytes(c, 4);
|
||||||
|
out[0] = (uint32)c[0];
|
||||||
|
out[1] = ((uint32)c[1]) << 8;
|
||||||
|
out[2] = ((uint32)c[2]) << 16;
|
||||||
|
out[3] = ((uint32)c[3]) << 24;
|
||||||
|
return out[0] + out[1] + out[2] + out[3];
|
||||||
|
}
|
||||||
|
|
||||||
static void Short_random(small *out) {
|
static void Short_random(small *out) {
|
||||||
uint32 L[ppadsort];
|
uint32 L[ppadsort];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, 4 * p);
|
for (i = 0; i < ppadsort; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < w; ++i) {
|
for (i = 0; i < w; ++i) {
|
||||||
L[i] = L[i] & (uint32) - 2;
|
L[i] = L[i] & (uint32) - 2;
|
||||||
}
|
}
|
||||||
@ -98,8 +111,9 @@ static void Small_random(small *out) {
|
|||||||
uint32 L[p];
|
uint32 L[p];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
randombytes((unsigned char *) L, sizeof L);
|
for (i = 0; i < p; ++i) {
|
||||||
crypto_decode_pxint32(L, (unsigned char *) L);
|
L[i] = urandom32();
|
||||||
|
}
|
||||||
for (i = 0; i < p; ++i) {
|
for (i = 0; i < p; ++i) {
|
||||||
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
out[i] = (((L[i] & 0x3fffffff) * 3) >> 30) - 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user