/* * A vague catch all include file for Botan * (C) 1999-2007 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_BOTAN_H_ #define BOTAN_BOTAN_H_ /* * There is no real reason for this header to exist beyond historical * reasons. The application should instead include the specific header * files that define the interfaces it intends to use. * * This header file will be removed in Botan 3.x */ #include #include #include #include #include #include #if defined(BOTAN_HAS_AUTO_SEEDING_RNG) #include #endif #if defined(BOTAN_HAS_FILTERS) #include #endif #if defined(BOTAN_HAS_PUBLIC_KEY_CRYPTO) #include #include #endif BOTAN_DEPRECATED_HEADER(botan.h) #endif