diff options
Diffstat (limited to 'src/lib/hash/md4')
-rw-r--r-- | src/lib/hash/md4/md4.cpp | 6 | ||||
-rw-r--r-- | src/lib/hash/md4/md4.h | 6 |
2 files changed, 5 insertions, 7 deletions
diff --git a/src/lib/hash/md4/md4.cpp b/src/lib/hash/md4/md4.cpp index 9cc92e1e3..575536389 100644 --- a/src/lib/hash/md4/md4.cpp +++ b/src/lib/hash/md4/md4.cpp @@ -5,9 +5,9 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include <botan/md4.h> -#include <botan/loadstor.h> -#include <botan/rotate.h> +#include <botan/internal/md4.h> +#include <botan/internal/loadstor.h> +#include <botan/internal/rotate.h> namespace Botan { diff --git a/src/lib/hash/md4/md4.h b/src/lib/hash/md4/md4.h index 0e6f5dc08..5bd3c88a9 100644 --- a/src/lib/hash/md4/md4.h +++ b/src/lib/hash/md4/md4.h @@ -8,16 +8,14 @@ #ifndef BOTAN_MD4_H_ #define BOTAN_MD4_H_ -#include <botan/mdx_hash.h> - -BOTAN_FUTURE_INTERNAL_HEADER(md4.h) +#include <botan/internal/mdx_hash.h> namespace Botan { /** * MD4 */ -class BOTAN_PUBLIC_API(2,0) MD4 final : public MDx_HashFunction +class MD4 final : public MDx_HashFunction { public: std::string name() const override { return "MD4"; } |