diff options
author | lloyd <[email protected]> | 2009-09-24 16:44:26 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-09-24 16:44:26 +0000 |
commit | 6cb4b06db7855fa8bec60b2965fe34fb01e5896c (patch) | |
tree | 4c99b8d613ce1551f2a27cda05e1d67988563072 /checks/timer.cpp | |
parent | e06cb7dcf09e17cb0e76d42e096ca838c17a60bc (diff) |
Modify the self test program to use the builtin runtime benchmarking goop.
Features dropped: RNG benchmarking, the --bench-type option.
New feature: Anything the library understands can be benchmarked using
--bench-algo.
Use 3DES and Serpent for mode benchmarking along with AES-128.
Diffstat (limited to 'checks/timer.cpp')
-rw-r--r-- | checks/timer.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/checks/timer.cpp b/checks/timer.cpp index c42aaa4b2..8460257d4 100644 --- a/checks/timer.cpp +++ b/checks/timer.cpp @@ -1,4 +1,5 @@ #include "timer.h" +#include <botan/benchmark.h> #include <iomanip> Timer::Timer(const std::string& n, u32bit e_mul) : @@ -29,6 +30,12 @@ void Timer::stop() } } +u64bit Timer::get_clock() + { + Botan::Default_Benchmark_Timer timer; + return timer.clock(); + } + std::ostream& operator<<(std::ostream& out, Timer& timer) { //out << timer.value() << " "; |