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/rng | |
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/rng')
-rw-r--r-- | src/rng/auto_rng/auto_rng.h | 2 | ||||
-rw-r--r-- | src/rng/randpool/randpool.h | 2 | ||||
-rw-r--r-- | src/rng/x931_rng/x931_rng.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/rng/auto_rng/auto_rng.h b/src/rng/auto_rng/auto_rng.h index bbc3703c1..dea735470 100644 --- a/src/rng/auto_rng/auto_rng.h +++ b/src/rng/auto_rng/auto_rng.h @@ -7,7 +7,7 @@ #define BOTAN_AUTO_SEEDING_RNG_H__ #include <botan/rng.h> -#include <botan/base.h> +#include <string> namespace Botan { diff --git a/src/rng/randpool/randpool.h b/src/rng/randpool/randpool.h index 198a34552..f6bae9d52 100644 --- a/src/rng/randpool/randpool.h +++ b/src/rng/randpool/randpool.h @@ -7,7 +7,7 @@ #define BOTAN_RANDPOOL_H__ #include <botan/rng.h> -#include <botan/base.h> +#include <botan/block_cipher.h> #include <botan/mac.h> #include <vector> diff --git a/src/rng/x931_rng/x931_rng.h b/src/rng/x931_rng/x931_rng.h index 220b47ab8..e1d090c3c 100644 --- a/src/rng/x931_rng/x931_rng.h +++ b/src/rng/x931_rng/x931_rng.h @@ -7,7 +7,7 @@ #define BOTAN_ANSI_X931_RNG_H__ #include <botan/rng.h> -#include <botan/base.h> +#include <botan/block_cipher.h> namespace Botan { |