diff options
author | lloyd <[email protected]> | 2008-11-17 06:44:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-17 06:44:00 +0000 |
commit | 26f35fc5d648393b6d0c3ac914893b65c0f26bec (patch) | |
tree | fda675ad67efac1eea103a8cb3fb653dd99d5caf /checks | |
parent | 1647a64afd4658aaf5ac5c1079df80d62dc36c39 (diff) |
Fix mode benchmarking
Diffstat (limited to 'checks')
-rw-r--r-- | checks/check.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/checks/check.cpp b/checks/check.cpp index 15971b2c7..aeb7e98e2 100644 --- a/checks/check.cpp +++ b/checks/check.cpp @@ -171,6 +171,8 @@ int main(int argc, char* argv[]) benchmark("Stream Cipher", rng, html, seconds); else if(type == "hash") benchmark("Hash", rng, html, seconds); + else if(type == "mode") + benchmark("Cipher Mode", rng, html, seconds); else if(type == "mac") benchmark("MAC", rng, html, seconds); else if(type == "rng") |