aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-03-19 15:17:27 +0000
committerlloyd <[email protected]>2013-03-19 15:17:27 +0000
commitff784ce30d2bdcf8b7d3143be2ecf1c2dc6b8957 (patch)
tree587a0f6b33b84c9cc45218093a408e434bead2ac /src/engine
parent827f2983a1e6efae6141e9b7ab148a3ae44e671b (diff)
Remove the Turing and WiderWAKE4+1 stream cipher implementations.
Both never saw much deployment or analysis.
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/core_engine/lookup_stream.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/engine/core_engine/lookup_stream.cpp b/src/engine/core_engine/lookup_stream.cpp
index 50e246756..683ee6b8c 100644
--- a/src/engine/core_engine/lookup_stream.cpp
+++ b/src/engine/core_engine/lookup_stream.cpp
@@ -16,14 +16,6 @@
#include <botan/salsa20.h>
#endif
-#if defined(BOTAN_HAS_TURING)
- #include <botan/turing.h>
-#endif
-
-#if defined(BOTAN_HAS_WID_WAKE)
- #include <botan/wid_wake.h>
-#endif
-
namespace Botan {
/*
@@ -45,16 +37,6 @@ Core_Engine::find_stream_cipher(const SCAN_Name& request,
return new Salsa20;
#endif
-#if defined(BOTAN_HAS_TURING)
- if(request.algo_name() == "Turing")
- return new Turing;
-#endif
-
-#if defined(BOTAN_HAS_WID_WAKE)
- if(request.algo_name() == "WiderWake4+1-BE")
- return new WiderWake_41_BE;
-#endif
-
return nullptr;
}