diff options
author | lloyd <[email protected]> | 2008-11-08 20:40:48 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-08 20:40:48 +0000 |
commit | 51e730bfd58959600d8d206df945b7ab335056c0 (patch) | |
tree | 82812403983b125cfe2d87de05fcb889753727f6 /src/libstate/botan.h | |
parent | 3c77da389db0769cf07cddf7629a62e156fe577b (diff) |
Move botan.h from utils to libstate, since libstate has lookup.h which
botan.h includes unconditionally.
Remove obsolete seed_rng code from init.h
Diffstat (limited to 'src/libstate/botan.h')
-rw-r--r-- | src/libstate/botan.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libstate/botan.h b/src/libstate/botan.h new file mode 100644 index 000000000..1149fe063 --- /dev/null +++ b/src/libstate/botan.h @@ -0,0 +1,15 @@ +/** +* A vague catch all include file for Botan +* (C) 1999-2007 Jack Lloyd +*/ + +#include <botan/init.h> +#include <botan/lookup.h> +#include <botan/version.h> +#include <botan/parsing.h> + +#include <botan/rng.h> + +#if defined(BOTAN_HAS_AUTO_SEEDING_RNG) + #include <botan/auto_rng.h> +#endif |