summaryrefslogtreecommitdiff
path: root/src/basic/random-util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/basic/random-util.h')
-rw-r--r--src/basic/random-util.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/basic/random-util.h b/src/basic/random-util.h
index 148b6c7813..facc11b976 100644
--- a/src/basic/random-util.h
+++ b/src/basic/random-util.h
@@ -31,3 +31,9 @@ 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_MAX (10U*1024U*1024U)
+
+size_t random_pool_size(void);