aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_hash.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add test for various functions previously missed (T::clone, PBKDF::name, ↵Jack Lloyd2016-11-261-1/+8
| | | | | | | AEAD::output_length) Fix a bug in CCM, GCM, and OCB decryption which caused `output_length(tag_size())` to fail even though empty plaintexts are certainly defined for all three modes.
* Remove Algo_RegistryJack Lloyd2016-10-211-96/+6
| | | | | | | I repent my use of global constructors. I repent my use of global locks. Hopefully I will never touch this code again. :)
* Add T::provider() to allow user to inquire about implementation usedJack Lloyd2016-09-151-3/+5
| | | | | For block ciphers, stream ciphers, hashes, MACs, and cipher modes. Cipher_Mode already had it, with a slightly different usage.
* improve parallel hash tests + memory leak fixDaniel Neus2016-07-201-1/+96
| | | | | | | | | | - add one test with SHA-256,SHA-512 - test Parallel::clone() - test Parallel ctor - fix memory leak in Parallel::clone(): Currently Parallel::clone() calls hash->clone() (first heap allocation) and after this clone() calls Parallel(const std::vector<HashFunction*>& in) which does another heap allocation. So its sufficient to pass the hash pointer to the Parallel ctor instead of a clone
* Add --data-dir option to test commandJack Lloyd2015-12-201-1/+1
| | | | | | | Understand using '-' on the command line to mean stdin Fix last few unit tests that wanted to write to the filesystem; removes outdata directory.
* Convert const char* arguments on Test:: to std::stringsJack Lloyd2015-11-281-1/+1
| | | | unless they are actually optional
* Update and consolidate the test framework.Jack Lloyd2015-11-111-72/+44
| | | | | | | | | | | The tests previously had used 4 to 6 different schemes internally (the vec file reader framework, Catch, the old InSiTo Boost.Test tests, the PK/BigInt tests which escaped the rewrite in 1.11.7, plus a number of one-offs). Converge on a design that works everywhere, and update all the things. Fix also a few bugs found by the test changes: SHA-512-256 name incorrect, OpenSSL RC4 name incorrect, signature of FFI function botan_pubkey_destroy was wrong.
* Don't treat missing ciphers, hashes, etc as test failuresJack Lloyd2015-10-111-1/+1
| | | | | Just print an error message and return. Reduces false fails with smaller builds
* Remove use of lookup.h in favor of new T::create API.Jack Lloyd2015-09-211-3/+2
|
* Fix TEST_DATA_DIRSimon Warta2015-07-151-1/+1
|
* Replace \n by std::endl in tests to ensure proper flushingSimon Warta2015-06-191-5/+5
| | | | | | | - Remove additional newlines in CHECK_MESSAGE call - Remove redundant output of algo in aead_test() Closes #115
* Remove algo factory, engines, global RNG, global state, etc.lloyd2015-02-041-10/+7
| | | | | | | | | | | | | | | Convert all uses of Algorithm_Factory and the engines to using Algo_Registry The shared pool of entropy sources remains but is moved to EntropySource. With that and few remaining initializations (default OIDs and aliases) moved elsewhere, the global state is empty and init and shutdown are no-ops. Remove almost all of the headers and code for handling the global state, except LibraryInitializer which remains as a compatability stub. Update seeding for blinding so only one hacky almost-global RNG instance needs to be setup instead of across all pubkey uses (it uses either the system RNG or an AutoSeeded_RNG if the system RNG is not available).
* Add SipHashlloyd2015-01-111-2/+18
|
* Ensure all files have copyright and license info.lloyd2015-01-101-0/+6
| | | | | Update license header line to specify the terms and refer to the file, neither of which it included before.
* Add SHA-512/256lloyd2015-01-081-1/+2
| | | | | Define some new functions for copying out arrays of words and use them across hashes.
* Add ChaChalloyd2014-01-311-0/+6
|
* Fix Skein_512::clearlloyd2014-01-181-0/+14
|
* Split up docs into the reference manual, the website, and everything else.lloyd2014-01-101-0/+65
| | | | | | | | | | | Add `website` target to makefile. Some progress towards fixing minimized builds. TLS now hard requires ECDSA and GCM since otherwise a minimized build has only insecure options. Remove boost_thread dependency in command line tool
* Rename test sourceslloyd2014-01-071-60/+0
|
* Split up public key tests and data, use new test frameworklloyd2014-01-051-6/+6
|
* Shuffle things around. Add NIST X.509 test to build.lloyd2014-01-011-0/+60