aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/tests.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-28 18:42:40 -0400
committerJack Lloyd <[email protected]>2017-09-28 18:42:40 -0400
commitefe2f1ce175896a092c0368ed682e3314d0ba3a8 (patch)
tree96868988e6ef3973f79a854547b2df2aa0cb2e6b /src/tests/tests.cpp
parentc1edbe9c436dfffa9d7def0f99497e9c7e19c210 (diff)
Further header cleanups
Diffstat (limited to 'src/tests/tests.cpp')
-rw-r--r--src/tests/tests.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tests/tests.cpp b/src/tests/tests.cpp
index a89899885..eb192a05c 100644
--- a/src/tests/tests.cpp
+++ b/src/tests/tests.cpp
@@ -7,6 +7,7 @@
#include "tests.h"
#include <sstream>
+#include <fstream>
#include <iomanip>
#include <botan/hex.h>
#include <botan/parsing.h>
@@ -14,6 +15,14 @@
#include <botan/internal/bit_ops.h>
#include <botan/internal/stl_util.h>
+#if defined(BOTAN_HAS_BIGINT)
+ #include <botan/bigint.h>
+#endif
+
+#if defined(BOTAN_HAS_EC_CURVE_GFP)
+ #include <botan/point_gfp.h>
+#endif
+
namespace Botan_Tests {
Test::Registration::Registration(const std::string& name, Test* test)