diff options
Diffstat (limited to 'src/def_alg.cpp')
-rw-r--r-- | src/def_alg.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/def_alg.cpp b/src/def_alg.cpp index 09ae5c978..2dbd30621 100644 --- a/src/def_alg.cpp +++ b/src/def_alg.cpp @@ -52,6 +52,7 @@ #include <botan/whrlpool.h> #include <botan/par_hash.h> +#include <botan/cbc_mac.h> #include <botan/cmac.h> #include <botan/hmac.h> #include <botan/x919_mac.h> @@ -219,6 +220,7 @@ Default_Engine::find_mac(const std::string& algo_spec) const return 0; const std::string algo_name = deref_alias(name[0]); + HANDLE_TYPE_ONE_STRING("CBC-MAC", CBC_MAC); HANDLE_TYPE_ONE_STRING("CMAC", CMAC); HANDLE_TYPE_ONE_STRING("HMAC", HMAC); HANDLE_TYPE_NO_ARGS("X9.19-MAC", ANSI_X919_MAC); |