diff options
author | lloyd <[email protected]> | 2010-10-12 20:34:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-12 20:34:45 +0000 |
commit | 97e8d6086171772cd5e45bcf2f5b1ea1e38e6bf5 (patch) | |
tree | 5e9ad006ae3acf4b00e8650ec85a9c1a0ef17f78 /doc/examples/hash_quickly.cpp | |
parent | a6bfb4a4b118e347456e4c6c4dddbcb136f6ba13 (diff) |
Fix compilation of examples; benchmarking and RNG changes mostly
Diffstat (limited to 'doc/examples/hash_quickly.cpp')
-rw-r--r-- | doc/examples/hash_quickly.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/hash_quickly.cpp b/doc/examples/hash_quickly.cpp index 1af0e8f45..bf6fe1d82 100644 --- a/doc/examples/hash_quickly.cpp +++ b/doc/examples/hash_quickly.cpp @@ -34,7 +34,7 @@ void set_fastest_implementation(const std::string& algo, Botan::Algorithm_Factory& af = Botan::global_state().algorithm_factory(); std::map<std::string, double> results = - Botan::algorithm_benchmark(algo, ms, rng, af); + Botan::algorithm_benchmark(algo, af, rng, ms, 16*1024); std::string fastest_provider = ""; double best_res = 0; |