aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
Commit message (Collapse)AuthorAgeFilesLines
* Remove deprecated ciphers MARS, RC2, RC5, RC6, SAFER-SK and TEAJack Lloyd2016-09-0210-10849/+1
| | | | | XTEA was also deprecated but has been spared, it does seem to be somewhat common (eg, included in the Go x/crypto library)
* Let the input arg to stream cipher test be optional.Jack Lloyd2016-09-013-98/+5
| | | | | | If ommitted, assume an all zero input. Remove some In = 0000... from test files.
* Merge master into this branch, resolving conflicts with #457/#576Jack Lloyd2016-08-3164-7325/+20969
|\ | | | | | | which recently landed on master.
| * Merge GH #567/GH #457 TLS refactoring and Callbacks interfaceJack Lloyd2016-08-311-244/+352
| |\
| | * Add a Callbacks function for ALPNJack Lloyd2016-08-161-4/+6
| | |
| | * Changes to TLS::Callbacks for GH PR #457Jack Lloyd2016-08-161-34/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make TLS::Channel::m_callbacks a reference, so deriving from TLS::Callbacks works Split out the compat (std::function) based interface to Compat_Callbacks. This avoids the overhead of empty std::functions when using the virtual interface, and ensures the virtual interface works since there is no callback path that does not involve a vtable lookup. Rename the TLS::Callback functions. Since the idea is that often an owning class will pass *this as the callbacks argument, it is good to namespace the virtual functions so as not to conflict with other names chosen by the class. Specifically, prefixes all cb functions with tls_ Revert changes to use the old style alert callback (with no longer used data/len params) so no API changes are required for old code. The new Callbacks interface continues to just receive the alert code itself. Switch to virtual function interface in CLI tls_client for testing. Inline tls_server_handshake_state.h - only used in tls_server.cpp Fix tests - test looked like it was creating a new client object but it was not actually being used. And when enabled, it failed because the queues were not being emptied in between. So, fix that.
| | * Removed TLS::Session::PropertiesMatthias Gierlings2016-06-191-8/+6
| | | | | | | | | | | | | | | - Removed proposed wrapper class to logically group TLS session properties.
| | * Extended TLS Unit TestsMatthias Gierlings2016-06-191-251/+326
| | | | | | | | | | | | | | | - Modified TLS & DTLS tests to use both, legacy constructor and new virtual callback interface based constructors.
| | * Added virtual Callback InterfaceMatthias Gierlings2016-06-191-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | - extracted inner class TLS::Channel::Callbacks to stand-alone class TLS::Callbacks. - provided default implementations for TLS::Callbacks members executing calls to std::function members for backward compatibility. - applied changes to cli, tests and TLS::Channel related classes to be compatible with new interface.
| | * Implemented Feedback on GH #457Matthias Gierlings2016-06-191-1/+1
| | | | | | | | | | | | | | | | | | - Removed deprecated TLS-Alert-Callback parameters. - Fixed improper naming of accessor for ALPN-Strings in tls_client.h - Fixed erroneous indentation on Ciphersuite Constructor.
| | * Reduction of code complexity in TLS classes.Matthias Gierlings2016-06-191-22/+30
| | | | | | | | | | | | | | | | | | | | | -reduced number of parameters in various methods -reduced cyclomatic complexity (McCabe-Metric) -removed "TLSEXT_HEARTBEAT_SUPPORT" from tls_extensions.h (leftover from heartbeat extension removal?)
| * | Merge GH #608 Travis CI workJack Lloyd2016-08-281-3/+34
| |\ \ | | | | | | | | | | | | | | | | | | | | Add ARM32, ARM64, PPC32, PPC64, and MinGW x86-32 cross builds to Travis. Add valgrind build to Travis.
| | * | Work around a bug in FFIJack Lloyd2016-08-281-3/+29
| | | | | | | | | | | | | | | | This seems to trigger under ARM
| | * | Travis CI additions and cleanupJack Lloyd2016-08-281-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Convert Travis build configuration to a single var instead of 4 tuple. Makes it much easier to review the builds in the Travis web UI. Adds sanitizer builds for Clang on both Linux and OS X. Clang is a different compiler from GCC and its sanitizers may catch things GCC does not. I have no idea if Apple's Clang has some magic sanitizer sauce stock LLVM does not, so maybe sanitizer build on OS X can be skipped. Adds Linux cross compile targets for ARM32, ARM64, PPC64, and MinGW x86 using the cross compiler available in Trusty. All of them build and are set up to run through qemu/wine. All of the tests currently fail and so are marked as expected fail in the Travis matrix. The ARM test runs seem to have thread problems; ARM32 thread creation just fails with an exception, as if pthreads was disabled. All other tests pass ok for ARM32. On Aarch64, it looks like there is a hard crash the first time the library tries creating a thread. Both of these might be due to statically linking the binary? I have been unable to convince Ubuntu's qemu-ppc64 to execute binaries compiled by Ubuntu's ppc64 cross compiler. I'm downloading an Ubuntu ISO to try this in a VM. Running under Wine exposes several issues, both in Wine and Botan. Many functions are stubs and it appears that entropy collection fails as a result. This triggers a bug in the FFI tests which causes a crash there. A pox on time zones; _mkgmtime is a MSVC extension and is not available on MinGW GCC. Add a last resort call that just uses the localzone variant instead. Adds valgrind target, remove a bogus poison in pubkey.cpp (it was effectively asserting that all of RSA was const time which is sadly not true at all). Moves -Wshadow to maintainer mode for GCC - GCC 4.8 has a noisy variant of -Wshadow which warns if a parameter masks a function name, but this comes up all the time in constructors. Later GCCs no longer warn about this (even with -Wshadow), so the warnings are never fixed, but they cause noise in CI output and hide interesting warnings like warning: vec_lvsl is deprecated for little endian; use assignment for unaligned loads and stores [-Wdeprecated] __vector unsigned char perm = vec_lvsl(0, static_cast<u32bit*>(nullptr));
| * | | DLIES test tweaksJack Lloyd2016-08-282-254/+87
| | | | | | | | | | | | | | | | | | | | Use the group name instead of repeating 2048 bit prime N times. Split up reporting by cipher type.
| * | | Use Botan's interpretation of P-521 ECDSA zero padding for nowJack Lloyd2016-08-271-1/+5
| | | |
| * | | Merge GH #607 PK sig test vectors where H(m) has many leading 0 bitsJack Lloyd2016-08-275-0/+50
| |\ \ \ | | |/ / | |/| |
| | * | Add tests with a message hash that contains leading zerosDaniel Neus2016-08-265-0/+50
| | | |
| * | | Merge GH #605: Test for HMAC_DRBG randomize_with_ts_inputJack Lloyd2016-08-261-0/+39
| |\ \ \
| | * | | Add unit test for HMAC_DRBG::randomize_with_ts_input()René Korthaus2016-08-251-0/+39
| | | | |
| * | | | Correct commentJack Lloyd2016-08-251-1/+1
| |/ / / | | | | | | | | | | | | [ci skip]
| * / / RNG changes (GH #593)Jack Lloyd2016-08-246-54/+357
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change reseed interval logic to count calls to `randomize` rather than bytes, to match SP 800-90A Changes RNG reseeding API: there is no implicit reference to the global entropy sources within the RNGs anymore. The entropy sources must be supplied with the API call. Adds support for reseding directly from another RNG (such as a system or hardware RNG). Stateful_RNG keeps optional references to both an RNG and a set of entropy sources. During a reseed, both sources are used if set. These can be provided to HMAC_DRBG constructor. For HMAC_DRBG, SP800-90A requires we output no more than 2**16 bytes per DRBG request. We treat requests longer than that as if the caller had instead made several sequential maximum-length requests. This means it is possible for one or more reseeds to trigger even in the course of generating a single (long) output (generate a 256-bit key and use ChaCha or HKDF if this is a problem). Adds RNG::randomize_with_ts_input which takes timestamps and uses them as the additional_data DRBG field. Stateful_RNG overrides this to also include the process ID and the reseed counter. AutoSeeded_RNG's `randomize` uses this. Officially deprecates RNG::make_rng and the Serialized_RNG construtor which creates an AutoSeeded_RNG. With these removed, it would be possible to perform a build with no AutoSeeded_RNG/HMAC_DRBG at all (eg, for applications which only use the system RNG). Tests courtesy @cordney in GH PRs #598 and #600
| * | fix minimized build when pkcs11 module enabledDaniel Neus2016-08-203-5/+23
| | |
| * | Merge GH #591Jack Lloyd2016-08-192-136/+497
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change behavior of default key usage encoding, default now omits the key usage unless the user set a value. Fix allowed_usage which could produce incorrect results. More X.509 tests
| | * | Rename find_constraints() and let it throw instead of returning a combinationRené Korthaus2016-08-191-1/+159
| | | |
| | * | Fix leading zero bytes in DSA, ECDSA, ECGDSA and ECKCDSA signaturesRené Korthaus2016-08-172-7/+31
| | | |
| | * | Fix allowed_usage() and add tests for key usageRené Korthaus2016-08-171-126/+220
| | | |
| | * | Fix GH #425 and run x509 tests with different signature algorithmsRené Korthaus2016-08-171-25/+110
| | | |
| * | | fix source file encoding ANSI -> UTF-8Daniel Neus2016-08-171-2/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | should fix: ``` WARN: Invalid character encountered in file /home/travis/build/randombit/botan/src/tests/test_utils.cpp at line 381 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'. WARN: Invalid character encountered in file /home/travis/build/randombit/botan/src/lib/pubkey/ecies/ecies.cpp at line 311 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'. ```
| * | reseed test for hmac_drbgKai Michaelis2016-08-101-0/+41
| | |
| * | Merge GH #551 Add frp256v1 curveJack Lloyd2016-08-025-2/+333
| |\ \
| | * | Added ecdsa_keygen for frp256v1Simon Cogliani2016-08-012-3/+2
| | | |
| | * | Added test vectors ecdsa_rfc6979 for frp256v1Simon Cogliani2016-08-011-0/+22
| | | |
| | * | Added test vectors ecdh_kat and ecdh_keygen for frp256v1Simon Cogliani2016-07-312-1/+102
| | | |
| | * | Merge branch 'master' into frp256v1Simon Cogliani2016-07-306-7/+233
| | |\ \
| | * | | Added test vectors ecc point multiplication for frp256v1Simon Cogliani2016-07-241-0/+209
| | | | |
| * | | | Merge GH #559 PKCS #11 fixesJack Lloyd2016-08-021-4/+11
| |\ \ \ \ | | |_|/ / | |/| | |
| | * | | Initialize HMAC_DRBG with token entropyDaniel Neus2016-07-271-7/+10
| | | | |
| | * | | fix PKCS#11 tests and buildDaniel Neus2016-07-261-2/+6
| | |/ /
| * | | Merge GH #556 Add DH negative tests. Fix DH keygen, did not call gen_check ↵Jack Lloyd2016-07-271-1/+33
| |\ \ \ | | | | | | | | | | | | | | | due to setting m_x earlier
| | * | | Add negative tests with invalid inputs for the DH key agreement operationDaniel Neus2016-07-261-1/+33
| | |/ /
| * | | Merge GH #555 Add tests for charset conversionsJack Lloyd2016-07-272-0/+166
| |\ \ \
| | * | | add copyrightDaniel Neus2016-07-251-0/+1
| | | | |
| | * | | add some basic charset testsDaniel Neus2016-07-252-0/+165
| | |/ / | | | | | | | | | | | | | | | | | | | | - UCS-2 to ISO 8859-1 - UTF-8 to ISO 8859-1 - ISO 8859-1 to UTF-8
| * | | Merge GH #557 Test BlockCipher::clearJack Lloyd2016-07-271-0/+6
| |\ \ \
| | * | | add test for BlockCipher::clear()Daniel Neus2016-07-261-0/+6
| | |/ /
| * | | Merge GH #558 Test BigInt::operator%=(word y)Jack Lloyd2016-07-271-0/+9
| |\ \ \
| | * | | test BigInt::operator%=(word y)Daniel Neus2016-07-261-0/+9
| | |/ /
| * / / eme / pubkey test improvementsDaniel Neus2016-07-251-6/+19
| |/ / | | | | | | | | | | | | | | | - add test for EME::maximum_input_size() - additionally use maximum_input_size() before pad() in OAEP and PKCS1 (remove code duplication) - prevent C4800 MSVC warning
| * | Merge GH #549 MP and SIMD header refactoringJack Lloyd2016-07-232-0/+8
| |\ \