diff options
author | lloyd <[email protected]> | 2008-11-08 19:42:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-08 19:42:16 +0000 |
commit | 8dba7b5264403e781bbb86ff61850e4377dca7b9 (patch) | |
tree | 5e784f8e4bbf0ed423e850600adaef3eda4cd07d /src/libstate/lookup.h | |
parent | 8f86d41613db588e4912fd23a61f7c6b3947e32a (diff) |
Split base.h into block_cipher.h and stream_cipher.h
It turned out many files were including base.h merely to get other
includes (like types.h, secmem.h, and exceptn.h). Those have been changed
to directly include the files containing the declarations that code needs.
Diffstat (limited to 'src/libstate/lookup.h')
-rw-r--r-- | src/libstate/lookup.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/libstate/lookup.h b/src/libstate/lookup.h index f45f49033..ac65799da 100644 --- a/src/libstate/lookup.h +++ b/src/libstate/lookup.h @@ -6,15 +6,18 @@ #ifndef BOTAN_LOOKUP_H__ #define BOTAN_LOOKUP_H__ -#include <botan/base.h> +#include <botan/block_cipher.h> +#include <botan/stream_cipher.h> #include <botan/hash.h> +#include <botan/mac.h> +#include <botan/s2k.h> + #include <botan/enums.h> #include <botan/filters.h> #include <botan/mode_pad.h> #include <botan/kdf.h> #include <botan/pk_pad.h> #include <botan/libstate.h> -#include <botan/s2k.h> namespace Botan { |