aboutsummaryrefslogtreecommitdiffstats
path: root/src/def_alg.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-07-11 18:22:13 +0000
committerlloyd <[email protected]>2008-07-11 18:22:13 +0000
commit666f27c1c7a186bc53bfa3391f48e9c6821e0333 (patch)
tree438370b3e6b5f746889dbe04d387f5cebea0beb5 /src/def_alg.cpp
parent7efb1b1ce852c16cfab8f0fc9ec43ccf20a48775 (diff)
Add the block cipher Noekeon (http://gro.noekeon.org/). Only "indirect mode"
keying is supported (see section 2.3 of the specification for details)
Diffstat (limited to 'src/def_alg.cpp')
-rw-r--r--src/def_alg.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/def_alg.cpp b/src/def_alg.cpp
index b10c4ff98..77f4b188d 100644
--- a/src/def_alg.cpp
+++ b/src/def_alg.cpp
@@ -19,6 +19,7 @@
#include <botan/lubyrack.h>
#include <botan/mars.h>
#include <botan/misty1.h>
+#include <botan/noekeon.h>
#include <botan/rc2.h>
#include <botan/rc5.h>
#include <botan/rc6.h>
@@ -131,6 +132,7 @@ Default_Engine::find_block_cipher(const std::string& algo_spec) const
HANDLE_TYPE_ONE_STRING("Luby-Rackoff", LubyRackoff);
HANDLE_TYPE_NO_ARGS("MARS", MARS);
HANDLE_TYPE_ONE_U32BIT("MISTY1", MISTY1, 8);
+ HANDLE_TYPE_NO_ARGS("Noekeon", Noekeon);
HANDLE_TYPE_NO_ARGS("RC2", RC2);
HANDLE_TYPE_ONE_U32BIT("RC5", RC5, 12);
HANDLE_TYPE_NO_ARGS("RC6", RC6);