diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-13 03:29:04 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-13 03:30:26 -0400 |
commit | 2a93cf52e5386eb1b3586565af6a06ade4d32a66 (patch) | |
tree | 37e650b5c103f338cd24a4d5d19769f2f12ee179 /sys/dev/random/entropy.c | |
parent | 190f366320a33d331108400e5740f6721fa848f8 (diff) |
kernel: Move crypto specifics to sys/crypto/*
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev/random/entropy.c')
-rw-r--r-- | sys/dev/random/entropy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/random/entropy.c b/sys/dev/random/entropy.c index d392b9c..4e723a4 100644 --- a/sys/dev/random/entropy.c +++ b/sys/dev/random/entropy.c @@ -30,7 +30,7 @@ #include <stdint.h> #include <string.h> #include <dev/random/entropy.h> -#include <dev/random/siphash.h> +#include <crypto/siphash.h> void mix_entropy(struct entropy_pool *ep, const uint8_t *input, |