aboutsummaryrefslogtreecommitdiffstats
path: root/checks/bench.cpp
Commit message (Expand)AuthorAgeFilesLines
* propagate from branch 'net.randombit.botan.tls-state-machine' (head a4741cd07...lloyd2012-04-251-12/+0
|\
| * Fix various typos, and remove an unused macro in checks/bench.cpplloyd2012-04-231-12/+0
* | Remove get_nanoseconds_clock as we'll rely on std::chrono's highlloyd2012-02-201-2/+3
* | propagate from branch 'net.randombit.botan' (head 13a0d36dac3709f3cb88e830ed7...lloyd2011-02-111-5/+14
|\ \ | |/ |/|
| * propagate from branch 'net.randombit.botan' (head fc8daa606ab7954eab48778d723...lloyd2010-11-291-0/+12
| |\
| * \ propagate from branch 'net.randombit.botan' (head 303b2518a80553214b1e5ab4d9b...lloyd2010-11-041-5/+14
| |\ \
| | * \ propagate from branch 'net.randombit.botan' (head 2898d79f992f27a328a3e41d34b...lloyd2010-10-131-5/+14
| | |\ \
| | | * \ propagate from branch 'net.randombit.botan' (head a29c41b4a949207b1544096c3af...lloyd2010-09-031-5/+14
| | | |\ \
| | | | * \ propagate from branch 'net.randombit.botan' (head 717a9d103aa80e6d66c04e3a23c...lloyd2010-08-041-5/+14
| | | | |\ \
| | | | | * \ propagate from branch 'net.randombit.botan' (head 161b5c0300b72baa746f101fda1...lloyd2010-07-091-5/+14
| | | | | |\ \
| | | | | | * \ propagate from branch 'net.randombit.botan' (head 294e2082ce9231d6165276e2f2a...lloyd2010-06-171-3/+6
| | | | | | |\ \
| | | | | | * \ \ propagate from branch 'net.randombit.botan' (head 66b216669d7ac91303378281d76...lloyd2010-05-191-5/+14
| | | | | | |\ \ \
| | | | | | | * \ \ propagate from branch 'net.randombit.botan' (head 12382647ef0a28fcb11c824c77b...lloyd2010-01-211-5/+14
| | | | | | | |\ \ \
| | | | | | | | * \ \ propagate from branch 'net.randombit.botan' (head 367d157c1221a162f5b40984929...lloyd2009-12-241-1/+1
| | | | | | | | |\ \ \
| | | | | | | | * | | | Fix for removal of Default_Benchmark_Timerlloyd2009-10-131-6/+15
* | | | | | | | | | | | More VC warning fixeslloyd2010-12-131-2/+2
* | | | | | | | | | | | Add a simple but functioning implementation of Keccak. Only thelloyd2010-12-101-0/+4
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | Thomas Keller reports that Mac OS X 10.5 still uses gcc 4.0.1 and it haslloyd2010-11-121-0/+12
|/ / / / / / / / / /
* / / / / / / / / / Compile fixlloyd2010-10-291-1/+1
|/ / / / / / / / /
* | | | | | | | | s/BLOCK_SIZE/block_size()/lloyd2010-10-131-1/+1
* | | | | | | | | My version of Sun Studio has the same reverse iterator bug as GCC 3lloyd2010-09-071-1/+1
|/ / / / / / / /
* / / / / / / / Use the standalone version of the hex decoder instead of the wrapper thatlloyd2010-09-031-0/+1
|/ / / / / / /
* / / / / / / Add a new option for benchmarking --buf-size which specifies the size oflloyd2010-07-301-4/+5
|/ / / / / /
* | | | | / Fix ECB benchmarkinglloyd2010-06-301-1/+3
| |_|_|_|/ |/| | | |
* | | | | Work around GCC 3.x bug with reverse iteratorslloyd2010-06-111-2/+6
* | | | | Remove FORK-256; it's obscure and has been definitively broken.lloyd2010-05-251-1/+0
|/ / / /
* / / / Prevent crash if asked to benchmark unknown block cipher with a modelloyd2010-05-051-4/+11
|/ / /
* | | Add block cipher cascadelloyd2010-01-111-2/+5
* | | Add copyright and license notes to pretty much every file that didn't have them,lloyd2009-12-311-0/+5
| |/ |/|
* | Force line flush in benchmark, useful when tee'ing outputlloyd2009-12-231-1/+1
* | Consolidate the non-canonical epoch timers, like cpuid and Win32'slloyd2009-12-011-4/+4
|/
* Fix benchmarking of PK stufflloyd2009-09-291-1/+1
* Modify the self test program to use the builtin runtime benchmarking goop.lloyd2009-09-241-123/+191
* Remove support for HTML benchmark output. Easier/simpler to parse thelloyd2009-08-141-46/+10
* Use std::vector instead of SecureVector to hold random input for filter bench...lloyd2008-11-171-3/+3
* Use heap rather than stack for data input. Increase size to 128klloyd2008-10-221-5/+5
* s/Mbyte/MiB/ to be precise about meaning (2^20 bytes/second)lloyd2008-09-301-2/+2
* Use the Timer class for all benchmarkinglloyd2008-09-051-13/+12
* Remove most of the direct references to the global_rng() calllloyd2008-06-281-8/+14
* Remove uses of global PRNG from self-test and benchmark code. Assumeslloyd2008-06-271-3/+2
* Fix some -Wmissing-declarations warningslloyd2008-06-121-0/+5
* Add a full set of tests for the ANSI X9.31 PRNG, using data takenlloyd2008-06-071-2/+6
* Remove the Global_RNG namespace, along with rng.h and rng.cpp. This waslloyd2008-04-071-2/+2
* Replace C-style casts with static_cast (found by GCC's -Wold-style-cast)lloyd2007-11-171-4/+4
* Use the get_clock/get_ticks code instead of calling std::clock directly. Allowslloyd2007-07-231-5/+6
* Respect the --seconds command line argument with --bench-algolloyd2006-08-131-2/+2
* Remove the public domain notices from the self-test/benchmark code,lloyd2006-08-091-1/+0
* Initial checkin1.5.6lloyd2006-05-181-0/+185