aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/eax_test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Move rng.{cpp,h} from core to rng/ topdirlloyd2008-10-261-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 changeslloyd2008-10-081-2/+2
|
* Line wraplloyd2008-10-011-3/+7
|
* Add comment explaining why EAX tests for XTEA, Skipjack, and Noekeonlloyd2008-09-271-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 proglloyd2008-09-271-2/+2
|
* Add a program that reads a set of test vectors for EAX mode using severallloyd2008-09-271-0/+227
different algorithms taken from libtomcrypt. Requires Boost.Regex currently (would like to remove that at some point).