From 9fc5782efd98d089eaec7261ce5730bc8dd68f62 Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Thu, 15 Jun 2023 22:44:34 +0100 Subject: [PATCH] iwyu: header_encryption.c --- src/header_encryption.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/header_encryption.c b/src/header_encryption.c index d2d0b56..0cf2e02 100644 --- a/src/header_encryption.c +++ b/src/header_encryption.c @@ -17,11 +17,18 @@ */ +#include // for uint32_t, uint8_t, uint64_t, uint16_t +#include // for calloc +#include // for memcpy #include "header_encryption.h" // for packet_header_change_dynamic_key, pac... #include "n2n.h" // for he_context_t, N2N_COMMUNITY_SIZE, TRA... +#include "n2n_define.h" // for N2N_COMMUNITY_SIZE +#include "n2n_typedefs.h" // for he_context_t, N2N_AUTH_CHALLENGE_SIZE #include "pearson.h" // for pearson_hash_128, pearson_hash_64 +#include "portable_endian.h" // for htobe32, be32toh, be64toh, htobe64 #include "random_numbers.h" // for n2n_rand #include "speck.h" // for speck_init, speck_context_t, speck_ctr +#include "uthash.h" // for HASH_FIND_STR #define HASH_FIND_COMMUNITY(head, name, out) HASH_FIND_STR(head, name, out)