aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/tests.cpp
diff options
context:
space:
mode:
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)