diff options
Diffstat (limited to 'src/lib/hash/checksum/crc32')
-rw-r--r-- | src/lib/hash/checksum/crc32/crc32.cpp | 4 | ||||
-rw-r--r-- | src/lib/hash/checksum/crc32/crc32.h | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/hash/checksum/crc32/crc32.cpp b/src/lib/hash/checksum/crc32/crc32.cpp index c69c8f80b..75b8456b3 100644 --- a/src/lib/hash/checksum/crc32/crc32.cpp +++ b/src/lib/hash/checksum/crc32/crc32.cpp @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include <botan/crc32.h> -#include <botan/loadstor.h> +#include <botan/internal/crc32.h> +#include <botan/internal/loadstor.h> namespace Botan { diff --git a/src/lib/hash/checksum/crc32/crc32.h b/src/lib/hash/checksum/crc32/crc32.h index f712b42ca..689fd7375 100644 --- a/src/lib/hash/checksum/crc32/crc32.h +++ b/src/lib/hash/checksum/crc32/crc32.h @@ -10,14 +10,12 @@ #include <botan/hash.h> -BOTAN_FUTURE_INTERNAL_HEADER(crc32.h) - namespace Botan { /** * 32-bit cyclic redundancy check */ -class BOTAN_PUBLIC_API(2,0) CRC32 final : public HashFunction +class CRC32 final : public HashFunction { public: std::string name() const override { return "CRC32"; } |