aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules.cpp16
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