491a809050
Resolves: #1619292,#1954429,#1959826,#1960703,#1973210,#1973856,#1978639,#1982603,#1984299,#1989472
26 lines
813 B
Diff
26 lines
813 B
Diff
From f1266682aca4a2ed3d85017527d1456cbe5d2f2a Mon Sep 17 00:00:00 2001
|
|
From: David Tardon <dtardon@redhat.com>
|
|
Date: Thu, 15 Jul 2021 11:15:17 +0200
|
|
Subject: [PATCH] random-util: increase random seed size to 1024
|
|
|
|
RHEL-only
|
|
|
|
Resolves: #1982603
|
|
---
|
|
src/basic/random-util.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/basic/random-util.h b/src/basic/random-util.h
|
|
index e6528ddc7f..fda78552f6 100644
|
|
--- a/src/basic/random-util.h
|
|
+++ b/src/basic/random-util.h
|
|
@@ -34,7 +34,7 @@ static inline uint32_t random_u32(void) {
|
|
int rdrand(unsigned long *ret);
|
|
|
|
/* Some limits on the pool sizes when we deal with the kernel random pool */
|
|
-#define RANDOM_POOL_SIZE_MIN 512U
|
|
+#define RANDOM_POOL_SIZE_MIN 1024U
|
|
#define RANDOM_POOL_SIZE_MAX (10U*1024U*1024U)
|
|
|
|
size_t random_pool_size(void);
|