diff options
Diffstat (limited to 'src/lib/mac/siphash/siphash.cpp')
-rw-r--r-- | src/lib/mac/siphash/siphash.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/mac/siphash/siphash.cpp b/src/lib/mac/siphash/siphash.cpp index bc242d4ac..3fafb35a9 100644 --- a/src/lib/mac/siphash/siphash.cpp +++ b/src/lib/mac/siphash/siphash.cpp @@ -5,13 +5,13 @@ * Botan is released under the Simplified BSD License (see license.txt) */ +#include <botan/internal/mac_utils.h> #include <botan/siphash.h> -#include <botan/rotate.h> -#include <botan/loadstor.h> -#include <botan/internal/xor_buf.h> namespace Botan { +BOTAN_REGISTER_NAMED_T_2LEN(MessageAuthenticationCode, SipHash, "SipHash", "builtin", 2, 4); + namespace { void SipRounds(u64bit M, secure_vector<u64bit>& V, size_t r) |