aboutsummaryrefslogtreecommitdiffstats
path: root/checks/algos.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 /checks/algos.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 'checks/algos.cpp')
-rw-r--r--checks/algos.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/checks/algos.cpp b/checks/algos.cpp
index c9a322eb9..1a95773aa 100644
--- a/checks/algos.cpp
+++ b/checks/algos.cpp
@@ -28,6 +28,7 @@ std::vector<algorithm> get_algos()
"Luby-Rackoff(SHA-1)/ECB", 16));
algos.push_back(algorithm("Block Cipher", "MARS", "MARS/ECB", 32));
algos.push_back(algorithm("Block Cipher", "MISTY1", "MISTY1/ECB", 16));
+ algos.push_back(algorithm("Block Cipher", "Noekeon", "Noekeon/ECB", 16));
algos.push_back(algorithm("Block Cipher", "RC2", "RC2/ECB", 16));
algos.push_back(algorithm("Block Cipher", "RC5(12)", "RC5(12)/ECB", 16));
algos.push_back(algorithm("Block Cipher", "RC5(16)", "RC5(16)/ECB", 16));