aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/hash/blake2
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/hash/blake2')
-rw-r--r--src/lib/hash/blake2/blake2b.cpp6
-rw-r--r--src/lib/hash/blake2/blake2b.h4
2 files changed, 4 insertions, 6 deletions
diff --git a/src/lib/hash/blake2/blake2b.cpp b/src/lib/hash/blake2/blake2b.cpp
index 0280d0c8b..bdaeb73d8 100644
--- a/src/lib/hash/blake2/blake2b.cpp
+++ b/src/lib/hash/blake2/blake2b.cpp
@@ -6,11 +6,11 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
-#include <botan/blake2b.h>
+#include <botan/internal/blake2b.h>
#include <botan/exceptn.h>
#include <botan/mem_ops.h>
-#include <botan/loadstor.h>
-#include <botan/rotate.h>
+#include <botan/internal/loadstor.h>
+#include <botan/internal/rotate.h>
#include <algorithm>
namespace Botan {
diff --git a/src/lib/hash/blake2/blake2b.h b/src/lib/hash/blake2/blake2b.h
index 9b0b655f2..6284015af 100644
--- a/src/lib/hash/blake2/blake2b.h
+++ b/src/lib/hash/blake2/blake2b.h
@@ -12,14 +12,12 @@
#include <string>
#include <memory>
-BOTAN_FUTURE_INTERNAL_HEADER(blake2b.h)
-
namespace Botan {
/**
* BLAKE2B
*/
-class BOTAN_PUBLIC_API(2,0) BLAKE2b final : public HashFunction
+class BLAKE2b final : public HashFunction
{
public:
/**