aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/misc/tss
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-21 15:04:25 -0400
committerJack Lloyd <[email protected]>2017-09-21 15:04:25 -0400
commit5d48c1406a956496fd4a020263ee59fbe7fad90a (patch)
tree4ea0847f71eda94c0ff3a31cfe4167ca2dba8db6 /src/lib/misc/tss
parent5cc5e1bd3fac87186f511a48cee9cda86e4607ca (diff)
Header file cleanups
Some help from include-what-you-use
Diffstat (limited to 'src/lib/misc/tss')
-rw-r--r--src/lib/misc/tss/tss.cpp2
-rw-r--r--src/lib/misc/tss/tss.h4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/misc/tss/tss.cpp b/src/lib/misc/tss/tss.cpp
index 2039e5fea..33a21314e 100644
--- a/src/lib/misc/tss/tss.cpp
+++ b/src/lib/misc/tss/tss.cpp
@@ -6,6 +6,8 @@
*/
#include <botan/tss.h>
+#include <botan/rng.h>
+#include <botan/hash.h>
#include <botan/loadstor.h>
#include <botan/hex.h>
#include <botan/sha2_32.h>
diff --git a/src/lib/misc/tss/tss.h b/src/lib/misc/tss/tss.h
index f1f503201..d1fd15f24 100644
--- a/src/lib/misc/tss/tss.h
+++ b/src/lib/misc/tss/tss.h
@@ -9,12 +9,12 @@
#define BOTAN_RTSS_H_
#include <botan/secmem.h>
-#include <botan/hash.h>
-#include <botan/rng.h>
#include <vector>
namespace Botan {
+class RandomNumberGenerator;
+
/**
* A split secret, using the format from draft-mcgrew-tss-03
*/