diff options
author | lloyd <[email protected]> | 2008-10-13 02:35:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-13 02:35:45 +0000 |
commit | 3e1c7bc16da023c492ade9f2e4c1c47a26152beb (patch) | |
tree | 99eb9d041ccc3598db5d4e65fbe4492517ec172f | |
parent | f2faf3eb76e278e8463332db497602e321233be5 (diff) |
Add DES/CBC and 3DES/CBC to benchmark output. (3DES/CBC shows up as 17%
faster than OpenSSL's - I hope that is not a fluke in the benchmark program)
-rw-r--r-- | checks/algos.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/checks/algos.cpp b/checks/algos.cpp index b4e4a8248..2ed25a846 100644 --- a/checks/algos.cpp +++ b/checks/algos.cpp @@ -47,6 +47,9 @@ std::vector<algorithm> get_algos() algos.push_back(algorithm("Block Cipher", "Twofish", "Twofish/ECB", 32)); algos.push_back(algorithm("Block Cipher", "XTEA", "XTEA/ECB", 16)); + algos.push_back(algorithm("Cipher Mode", "DES/CBC/PKCS7", 8, 8)); + algos.push_back(algorithm("Cipher Mode", "TripleDES/CBC/PKCS7", 24, 8)); + algos.push_back(algorithm("Cipher Mode", "AES-128/CBC/PKCS7", 16, 16)); algos.push_back(algorithm("Cipher Mode", "AES-128/CBC/CTS", 16, 16)); algos.push_back(algorithm("Cipher Mode", "AES-128/CFB(128)", 16, 16)); |