diff options
author | lloyd <[email protected]> | 2008-09-11 21:07:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-11 21:07:57 +0000 |
commit | cf97bb56c09bae8c88d6e643ac6dbfe7b8c7b326 (patch) | |
tree | 517645c1ae6b9b70d9c60a1a4b464e80b70aba89 | |
parent | 11841eb6925af2f91e24d11531930fddcdfc1314 (diff) |
In the benchmarks, replace Lion(MD5,WiderWake4+1-BE,65536) with1.7.11
Lion(SHA-256,Turing,8192) and replace Luby-Rackoff(SHA-1) with
Luby-Rackoff(SHA-512)
-rw-r--r-- | checks/algos.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/checks/algos.cpp b/checks/algos.cpp index 4ce6ea3b6..b4e4a8248 100644 --- a/checks/algos.cpp +++ b/checks/algos.cpp @@ -22,10 +22,14 @@ std::vector<algorithm> get_algos() algos.push_back(algorithm("Block Cipher", "GOST", "GOST/ECB", 32)); algos.push_back(algorithm("Block Cipher", "IDEA", "IDEA/ECB", 16)); algos.push_back(algorithm("Block Cipher", "KASUMI", "KASUMI/ECB", 16)); - algos.push_back(algorithm("Block Cipher", "Lion(MD5,WiderWake4+1)", - "Lion(MD5,WiderWake4+1-BE,65536)/ECB", 20)); - algos.push_back(algorithm("Block Cipher", "Luby-Rackoff(SHA-1)", - "Luby-Rackoff(SHA-1)/ECB", 16)); + + algos.push_back(algorithm("Block Cipher", + "Lion(SHA-256,Turing)", + "Lion(SHA-256,Turing,8192)/ECB", 32)); + + algos.push_back(algorithm("Block Cipher", "Luby-Rackoff(SHA-512)", + "Luby-Rackoff(SHA-512)/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)); |