aboutsummaryrefslogtreecommitdiff
path: root/src/bip324.cpp
diff options
context:
space:
mode:
authorstratospher <44024636+stratospher@users.noreply.github.com>2023-08-14 17:01:07 +0530
committerstratospher <44024636+stratospher@users.noreply.github.com>2023-08-15 07:30:48 +0530
commit93cb8f03807dcd3297b7fe18b6c901a8d2a01596 (patch)
tree6410109dc7a4e63ee36185f9def5fd6798729f4a /src/bip324.cpp
parentd22d5d925c000bf25ad2410ca66c4c21eea75004 (diff)
downloadbitcoin-93cb8f03807dcd3297b7fe18b6c901a8d2a01596.tar.xz
refactor: add missing headers for BIP324 ciphersuite
Diffstat (limited to 'src/bip324.cpp')
-rw-r--r--src/bip324.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bip324.cpp b/src/bip324.cpp
index 7ed99e5585..314e756829 100644
--- a/src/bip324.cpp
+++ b/src/bip324.cpp
@@ -8,14 +8,19 @@
#include <crypto/chacha20.h>
#include <crypto/chacha20poly1305.h>
#include <crypto/hkdf_sha256_32.h>
+#include <key.h>
+#include <pubkey.h>
#include <random.h>
#include <span.h>
#include <support/cleanse.h>
+#include <uint256.h>
#include <algorithm>
#include <assert.h>
#include <cstdint>
#include <cstddef>
+#include <iterator>
+#include <string>
BIP324Cipher::BIP324Cipher() noexcept
{