systemd/SOURCES/0099-random-util-increase-r...

26 lines
781 B
Diff
Raw Permalink Normal View History

2023-05-09 05:39:14 +00:00
From 216f6490af452a774ef882319083858248248da8 Mon Sep 17 00:00:00 2001
2022-05-17 10:28:40 +00:00
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
2023-05-09 05:39:14 +00:00
Related: #2138081
2022-05-17 10:28:40 +00:00
---
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
2023-05-09 05:39:14 +00:00
index 2d99807272..7e6f66df4d 100644
2022-05-17 10:28:40 +00:00
--- a/src/basic/random-util.h
+++ b/src/basic/random-util.h
2023-05-09 05:39:14 +00:00
@@ -21,7 +21,7 @@ static inline uint32_t random_u32(void) {
}
2022-05-17 10:28:40 +00:00
/* Some limits on the pool sizes when we deal with the kernel random pool */
2023-05-09 05:39:14 +00:00
-#define RANDOM_POOL_SIZE_MIN 32U
2022-05-17 10:28:40 +00:00
+#define RANDOM_POOL_SIZE_MIN 1024U
#define RANDOM_POOL_SIZE_MAX (10U*1024U*1024U)
size_t random_pool_size(void);