diff options
author | lloyd <[email protected]> | 2015-01-28 06:20:39 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-01-28 06:20:39 +0000 |
commit | 710229be83cdbc061949c61942896b5af9e134d8 (patch) | |
tree | 5a28c6d2cd456a5a686a332b7466ed9f326cc5f8 /src/lib/hash/whirlpool/whirlpool.cpp | |
parent | 7b56f1bd570dc684ffd7c945dee0d9b5480354ff (diff) |
Use Algo_Registry also for hashes.
Diffstat (limited to 'src/lib/hash/whirlpool/whirlpool.cpp')
-rw-r--r-- | src/lib/hash/whirlpool/whirlpool.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/hash/whirlpool/whirlpool.cpp b/src/lib/hash/whirlpool/whirlpool.cpp index cd4715e57..25b958e6d 100644 --- a/src/lib/hash/whirlpool/whirlpool.cpp +++ b/src/lib/hash/whirlpool/whirlpool.cpp @@ -5,11 +5,13 @@ * Botan is released under the Simplified BSD License (see license.txt) */ +#include <botan/internal/hash_utils.h> #include <botan/whrlpool.h> -#include <botan/loadstor.h> namespace Botan { +BOTAN_REGISTER_HASH_NOARGS(Whirlpool); + /* * Whirlpool Compression Function */ |