diff options
author | lloyd <[email protected]> | 2008-06-22 17:25:18 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-22 17:25:18 +0000 |
commit | ef74c82626eb8b3f5ae6abfbd4fd8d356f4363b5 (patch) | |
tree | ffa52e59a8972d1bc46e1a94f0933398dd84fecb | |
parent | d2cc5d88bd88cbf37a28138bf66fb24122ca5b0e (diff) |
Remove the hooks for the AEP module, since it was removed due to lack of
testability (have a card still, but the drivers are for 2.4 kernel and
seemingly not 64-bit or thread safe, so it's pretty much a paperweight
right now).
-rw-r--r-- | src/modules.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 6ddd02afb..089281e61 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -31,10 +31,6 @@ #include <botan/tm_win32.h> #endif -#if defined(BOTAN_EXT_ENGINE_AEP) - #include <botan/eng_aep.h> -#endif - #if defined(BOTAN_EXT_ENGINE_GNU_MP) #include <botan/eng_gmp.h> #endif @@ -43,10 +39,6 @@ #include <botan/eng_ossl.h> #endif -#if defined(BOTAN_EXT_ENTROPY_SRC_AEP) - #include <botan/es_aep.h> -#endif - #if defined(BOTAN_EXT_ENTROPY_SRC_DEVICE) #include <botan/es_dev.h> #endif @@ -146,10 +138,6 @@ std::vector<EntropySource*> Builtin_Modules::entropy_sources() const sources.push_back(new Timer); #endif -#if defined(BOTAN_EXT_ENTROPY_SRC_AEP) - sources.push_back(new AEP_EntropySource); -#endif - #if defined(BOTAN_EXT_ENTROPY_SRC_EGD) sources.push_back( new EGD_EntropySource(split_on("/var/run/egd-pool:/dev/egd-pool", ':')) @@ -198,10 +186,6 @@ std::vector<Engine*> Builtin_Modules::engines() const if(use_engines) { -#if defined(BOTAN_EXT_ENGINE_AEP) - engines.push_back(new AEP_Engine); -#endif - #if defined(BOTAN_EXT_ENGINE_GNU_MP) engines.push_back(new GMP_Engine); #endif |