diff options
Diffstat (limited to 'src/lib/hash/hash.cpp')
-rw-r--r-- | src/lib/hash/hash.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/lib/hash/hash.cpp b/src/lib/hash/hash.cpp index 2293059ca..24792e8e1 100644 --- a/src/lib/hash/hash.cpp +++ b/src/lib/hash/hash.cpp @@ -10,83 +10,83 @@ #include <botan/exceptn.h> #if defined(BOTAN_HAS_ADLER32) - #include <botan/adler32.h> + #include <botan/internal/adler32.h> #endif #if defined(BOTAN_HAS_CRC24) - #include <botan/crc24.h> + #include <botan/internal/crc24.h> #endif #if defined(BOTAN_HAS_CRC32) - #include <botan/crc32.h> + #include <botan/internal/crc32.h> #endif #if defined(BOTAN_HAS_GOST_34_11) - #include <botan/gost_3411.h> + #include <botan/internal/gost_3411.h> #endif #if defined(BOTAN_HAS_KECCAK) - #include <botan/keccak.h> + #include <botan/internal/keccak.h> #endif #if defined(BOTAN_HAS_MD4) - #include <botan/md4.h> + #include <botan/internal/md4.h> #endif #if defined(BOTAN_HAS_MD5) - #include <botan/md5.h> + #include <botan/internal/md5.h> #endif #if defined(BOTAN_HAS_RIPEMD_160) - #include <botan/rmd160.h> + #include <botan/internal/rmd160.h> #endif #if defined(BOTAN_HAS_SHA1) - #include <botan/sha160.h> + #include <botan/internal/sha160.h> #endif #if defined(BOTAN_HAS_SHA2_32) - #include <botan/sha2_32.h> + #include <botan/internal/sha2_32.h> #endif #if defined(BOTAN_HAS_SHA2_64) - #include <botan/sha2_64.h> + #include <botan/internal/sha2_64.h> #endif #if defined(BOTAN_HAS_SHA3) - #include <botan/sha3.h> + #include <botan/internal/sha3.h> #endif #if defined(BOTAN_HAS_SHAKE) - #include <botan/shake.h> + #include <botan/internal/shake.h> #endif #if defined(BOTAN_HAS_SKEIN_512) - #include <botan/skein_512.h> + #include <botan/internal/skein_512.h> #endif #if defined(BOTAN_HAS_STREEBOG) - #include <botan/streebog.h> + #include <botan/internal/streebog.h> #endif #if defined(BOTAN_HAS_SM3) - #include <botan/sm3.h> + #include <botan/internal/sm3.h> #endif #if defined(BOTAN_HAS_WHIRLPOOL) - #include <botan/whrlpool.h> + #include <botan/internal/whrlpool.h> #endif #if defined(BOTAN_HAS_PARALLEL_HASH) - #include <botan/par_hash.h> + #include <botan/internal/par_hash.h> #endif #if defined(BOTAN_HAS_COMB4P) - #include <botan/comb4p.h> + #include <botan/internal/comb4p.h> #endif #if defined(BOTAN_HAS_BLAKE2B) - #include <botan/blake2b.h> + #include <botan/internal/blake2b.h> #endif #if defined(BOTAN_HAS_OPENSSL) |