diff options
author | Jack Lloyd <[email protected]> | 2015-09-19 07:43:45 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-09-19 07:43:45 -0400 |
commit | e1ae1d68309573134fc1242c3bfb8a8ce0672737 (patch) | |
tree | d4cbfc7b2c1f70d06fa57403f533be5e434c869f /src/lib/hash/checksum | |
parent | e2e0f8f2b595122c1f8acb3b3a46501f96a2b218 (diff) |
Internal header cleanups
Only user-visible change is the removal of get_byte.h
Diffstat (limited to 'src/lib/hash/checksum')
-rw-r--r-- | src/lib/hash/checksum/adler32/adler32.cpp | 2 | ||||
-rw-r--r-- | src/lib/hash/checksum/crc24/crc24.cpp | 3 | ||||
-rw-r--r-- | src/lib/hash/checksum/crc32/crc32.cpp | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/hash/checksum/adler32/adler32.cpp b/src/lib/hash/checksum/adler32/adler32.cpp index aadc5d39f..f368b627c 100644 --- a/src/lib/hash/checksum/adler32/adler32.cpp +++ b/src/lib/hash/checksum/adler32/adler32.cpp @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include <botan/internal/hash_utils.h> #include <botan/adler32.h> +#include <botan/loadstor.h> namespace Botan { diff --git a/src/lib/hash/checksum/crc24/crc24.cpp b/src/lib/hash/checksum/crc24/crc24.cpp index 054d23684..1484f643d 100644 --- a/src/lib/hash/checksum/crc24/crc24.cpp +++ b/src/lib/hash/checksum/crc24/crc24.cpp @@ -5,9 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include <botan/internal/hash_utils.h> #include <botan/crc24.h> -#include <botan/get_byte.h> +#include <botan/loadstor.h> namespace Botan { diff --git a/src/lib/hash/checksum/crc32/crc32.cpp b/src/lib/hash/checksum/crc32/crc32.cpp index ca9514c26..10d989cc6 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/internal/hash_utils.h> #include <botan/crc32.h> +#include <botan/loadstor.h> namespace Botan { |