aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-08-15 16:34:53 +0000
committerlloyd <[email protected]>2013-08-15 16:34:53 +0000
commit16955224c8f1c5c035fccb8ce037513d086e3f1a (patch)
treeca1fc5d342449e415ef9f19176e617fa18d74f5c /checks
parent523d4cb4a11039ff2ab4e6772e4ef67c75023278 (diff)
Move ECB to Transformation API
Diffstat (limited to 'checks')
-rw-r--r--checks/bench.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/checks/bench.cpp b/checks/bench.cpp
index 3deff5136..b5e8e82f8 100644
--- a/checks/bench.cpp
+++ b/checks/bench.cpp
@@ -176,11 +176,14 @@ bool bench_algo(const std::string& algo,
size_t cipher_keylen = proto_cipher->maximum_keylength();
size_t cipher_ivlen = proto_cipher->block_size();
- // hacks!
+ // hacks! (cipher_ivlen = transform->default_nonce_size())
+
if(algo_parts[1] == "XTS")
cipher_keylen *= 2;
if(algo_parts[1] == "OCB")
cipher_ivlen -= 1;
+ if(algo_parts[1] == "ECB")
+ cipher_ivlen = 0;
std::vector<byte> buf(16 * 1024);
rng.randomize(&buf[0], buf.size());