aboutsummaryrefslogtreecommitdiffstats
path: root/checks/algos.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-09 17:05:29 +0000
committerlloyd <[email protected]>2008-09-09 17:05:29 +0000
commit78eebcfd022891b8b3d71e756da55a9a09dcae35 (patch)
treed8d4a63fe75e9c1422ad6d16f1d91d16ffe2caad /checks/algos.cpp
parent6e90b22842424555dd53eb4e6aa0cc1061462567 (diff)
Add implementation of Salsa20 stream cipher
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 1a95773aa..4ce6ea3b6 100644
--- a/checks/algos.cpp
+++ b/checks/algos.cpp
@@ -56,6 +56,7 @@ std::vector<algorithm> get_algos()
algos.push_back(algorithm("Cipher Mode", "AES-128/EAX", 16, 16));
algos.push_back(algorithm("Stream Cipher", "ARC4", 16));
+ algos.push_back(algorithm("Stream Cipher", "Salsa20", 32));
algos.push_back(algorithm("Stream Cipher", "Turing", 32));
algos.push_back(algorithm("Stream Cipher", "WiderWake4+1",
"WiderWake4+1-BE", 16, 8));