aboutsummaryrefslogtreecommitdiffstats
path: root/checks/bench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'checks/bench.cpp')
-rw-r--r--checks/bench.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/checks/bench.cpp b/checks/bench.cpp
index 5faba00db..f7ddc5650 100644
--- a/checks/bench.cpp
+++ b/checks/bench.cpp
@@ -76,6 +76,7 @@ const std::string algos[] = {
"AES-128/CBC/CTS",
"AES-128/CTR-BE",
"AES-128/EAX",
+ "AES-128/OCB",
"AES-128/OFB",
"AES-128/XTS",
"AES-128/CFB(128)",
@@ -202,10 +203,13 @@ bool bench_algo(const std::string& algo,
}
size_t cipher_keylen = proto_cipher->maximum_keylength();
- const size_t cipher_ivlen = proto_cipher->block_size();
+ size_t cipher_ivlen = proto_cipher->block_size();
+ // hacks!
if(algo_parts[1] == "XTS")
- cipher_keylen *= 2; // hack!
+ cipher_keylen *= 2;
+ if(algo_parts[1] == "OCB")
+ cipher_ivlen -= 1;
std::vector<byte> buf(16 * 1024);
rng.randomize(&buf[0], buf.size());