From 360b9c8c8b4c4364b755dc0935f05e4ba4429cb0 Mon Sep 17 00:00:00 2001 From: Thomas Gschwantner Date: Sun, 8 Dec 2019 04:35:50 +0100 Subject: Use siphash for hashtables --- random.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'random.h') diff --git a/random.h b/random.h index 9654b2c..a6608da 100644 --- a/random.h +++ b/random.h @@ -6,8 +6,11 @@ #ifndef __RANDOM_H__ #define __RANDOM_H__ +#include +#include #include +bool get_random_bytes(uint8_t *out, size_t len); uint64_t random_u64(); uint64_t random_bounded(uint64_t bound); -- cgit v1.2.3-59-g8ed1b