Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move rng.{cpp,h} from core to rng/ topdir | lloyd | 2008-10-26 | 1 | -3/+0 |
| | | | | | | | | | | | | | | Add a new class AutoSeeded_RNG that is a RandomNumberGenerator that wraps up the logic formerly in RandomNumberGenerator::make_rng. make_rng in fact now just returns a new AutoSeeded_RNG object. AutoSeeded_RNG is a bit more convenient because - No need to use auto_ptr - No need to dereference (same syntax everywhere - it's an underestimated advantage imo) Also move the code from timer/timer_base to timer/ | ||||
* | Update examples for recent API changes | lloyd | 2008-10-08 | 1 | -2/+2 |
| | |||||
* | Line wrap | lloyd | 2008-10-01 | 1 | -3/+7 |
| | |||||
* | Add comment explaining why EAX tests for XTEA, Skipjack, and Noekeon | lloyd | 2008-09-27 | 1 | -6/+19 |
| | | | | | | | are not run (the implementations in LTC are incompatible with the ones in Botan, mostly due to endian differences in underspecified algorithms). The DES, 3DES, AES, Twofish, Blowfish, RC2, RC5, RC6, and SAFER-SK tests of EAX mode from LTC all pass. | ||||
* | Fix link for EAX tet prog | lloyd | 2008-09-27 | 1 | -2/+2 |
| | |||||
* | Add a program that reads a set of test vectors for EAX mode using several | lloyd | 2008-09-27 | 1 | -0/+227 |
different algorithms taken from libtomcrypt. Requires Boost.Regex currently (would like to remove that at some point). |