diff options
author | lloyd <[email protected]> | 2015-01-31 15:30:49 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-01-31 15:30:49 +0000 |
commit | 00c9b3f4834603946065c15b9b2e9fa5e973b979 (patch) | |
tree | b0f82333a1eeab624409db9515e511838f6fa2d6 /src/lib/mac/mac.h | |
parent | 710229be83cdbc061949c61942896b5af9e134d8 (diff) |
Use registry for streams and MACs. Start updating callers.
Diffstat (limited to 'src/lib/mac/mac.h')
-rw-r--r-- | src/lib/mac/mac.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/mac/mac.h b/src/lib/mac/mac.h index e472e4d0b..2ee971b90 100644 --- a/src/lib/mac/mac.h +++ b/src/lib/mac/mac.h @@ -10,6 +10,7 @@ #include <botan/buf_comp.h> #include <botan/sym_algo.h> +#include <botan/scan_name.h> #include <string> namespace Botan { @@ -39,6 +40,8 @@ class BOTAN_DLL MessageAuthenticationCode : public Buffered_Computation, * @return name of this algorithm */ virtual std::string name() const = 0; + + typedef SCAN_Name Spec; }; } |