diff options
author | lloyd <[email protected]> | 2010-05-25 15:34:02 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-05-25 15:34:02 +0000 |
commit | 4d944e43a886285f759939739441caeff09f9544 (patch) | |
tree | 87373847f49d43f75d8dd10b3accd579ec5a17f9 /src/engine | |
parent | 432bcf59badb8f6271146772ccbc1649822c25cb (diff) |
Remove FORK-256; it's obscure and has been definitively broken.
More commentary posted to the list:
http://lists.randombit.net/pipermail/botan-devel/2010-May/001123.html
Diffstat (limited to 'src/engine')
-rw-r--r-- | src/engine/def_engine/lookup_hash.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/engine/def_engine/lookup_hash.cpp b/src/engine/def_engine/lookup_hash.cpp index 1d96d4f3f..47c6c0a56 100644 --- a/src/engine/def_engine/lookup_hash.cpp +++ b/src/engine/def_engine/lookup_hash.cpp @@ -26,10 +26,6 @@ #include <botan/bmw_512.h> #endif -#if defined(BOTAN_HAS_FORK_256) - #include <botan/fork256.h> -#endif - #if defined(BOTAN_HAS_GOST_34_11) #include <botan/gost_3411.h> #endif @@ -116,11 +112,6 @@ Default_Engine::find_hash(const SCAN_Name& request, return new BMW_512; #endif -#if defined(BOTAN_HAS_FORK_256) - if(request.algo_name() == "FORK-256") - return new FORK_256; -#endif - #if defined(BOTAN_HAS_GOST_34_11) if(request.algo_name() == "GOST-34.11") return new GOST_34_11; |