diff options
-rw-r--r-- | src/lib/block/block_cipher.h | 1 | ||||
-rw-r--r-- | src/lib/hash/hash.h | 1 | ||||
-rw-r--r-- | src/lib/mac/mac.h | 1 | ||||
-rw-r--r-- | src/lib/stream/stream_cipher.h | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/block/block_cipher.h b/src/lib/block/block_cipher.h index 9961182fa..a365397fa 100644 --- a/src/lib/block/block_cipher.h +++ b/src/lib/block/block_cipher.h @@ -10,6 +10,7 @@ #include <botan/sym_algo.h> #include <string> +#include <memory> namespace Botan { diff --git a/src/lib/hash/hash.h b/src/lib/hash/hash.h index 3041774b8..01e52e9b6 100644 --- a/src/lib/hash/hash.h +++ b/src/lib/hash/hash.h @@ -10,6 +10,7 @@ #include <botan/buf_comp.h> #include <string> +#include <memory> namespace Botan { diff --git a/src/lib/mac/mac.h b/src/lib/mac/mac.h index b072fbaa2..1e358a4c5 100644 --- a/src/lib/mac/mac.h +++ b/src/lib/mac/mac.h @@ -11,6 +11,7 @@ #include <botan/buf_comp.h> #include <botan/sym_algo.h> #include <string> +#include <memory> namespace Botan { diff --git a/src/lib/stream/stream_cipher.h b/src/lib/stream/stream_cipher.h index 31fa5b3b0..03ffcadd0 100644 --- a/src/lib/stream/stream_cipher.h +++ b/src/lib/stream/stream_cipher.h @@ -10,6 +10,7 @@ #include <botan/sym_algo.h> #include <string> +#include <memory> namespace Botan { |