aboutsummaryrefslogtreecommitdiffstats
path: root/checks/bench.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use std::vector instead of SecureVector to hold random input for filter ↵lloyd2008-11-171-3/+3
| | | | benchmark
* 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
| | | | access to /dev/random (will be cleaned up shortly)
* 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
| | | | | | | | from the NIST CAVS dataset, taken on June 7 2008 from http://csrc.nist.gov/groups/STM/cavp/standards.html AES-128, AES-192, AES-256, and 2 and 3-key TripleDES variants are all tested.
* Remove the Global_RNG namespace, along with rng.h and rng.cpp. This waslloyd2008-04-071-2/+2
| | | | | | | | | essentially a facade for the RNG object living in the global library state. Rewrite all callers to directly invoke the global state object: this makes it more clear what functions are actually accessing mutable state outside of the normal reference graph (and thus, which functions will have to be altered in order to remove this dependency). Other facades remain in place for the configuration object and the memory allocator factory.
* 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
| | | | (nominally) more accurate results.
* 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
| | | | because it turns out to be something of a legal minefield.
* Initial checkin1.5.6lloyd2006-05-181-0/+185