aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add update overload taking std::string to PK_Verifier and PK_SignerJack Lloyd2015-12-021-1/+19
| | | | Because convenient
* Avoid ever returning 0 from CPUID::cache_line_sizeJack Lloyd2015-12-022-1/+12
| | | | | | | | Take the value from build.h if we have no way of getting it dynamically. Fixes an infinite loop in AES on non-x86 introduced in ebf2164a, as otherwise it does for(size_t i = 0; i != ...; i += 0) {} while iterating over the TE tables.
* Add more workfactor estimate helpers.Jack Lloyd2015-11-296-32/+53
| | | | | | | | | | Specifically a named one for integer factorization (despite using same formula as DL calc) which incorporates the k value from RFC 3766. Also adds dl_exponent_size which returns the exponent size, this one ignores k thus using a ~10 bit larger exponent than strictly necessary. Adding in k downgrades 1024 bit RSA to exactly 80 bits, which is probably about right.
* Improve side channel attack resistance of table based AES implJack Lloyd2015-11-294-417/+172
|
* Fix compile error when compression is disabledJack Lloyd2015-11-291-1/+1
| | | | | | Missed because Travis uses zlib and company even in the min build. GH #337
* Guard these test calls with the same feature macro guarding their definition.Jack Lloyd2015-11-281-0/+2
| | | | GH #337
* Add differential compression test.Jack Lloyd2015-11-282-42/+88
| | | | | Change getrusage output to static system data since it is sparse and changes rarely, and so actually does trigger the differential test.
* Convert const char* arguments on Test:: to std::stringsJack Lloyd2015-11-288-72/+57
| | | | unless they are actually optional
* Push the hardcoded entropy estimates up to build.hJack Lloyd2015-11-2811-70/+81
| | | | Defaults should be fine for everyone but it makes the values more transparent
* Better error checking for <libs> settings in module info filesJack Lloyd2015-11-281-0/+7
|
* Merge pull request #320 from matejk/fix_crash_in_comp_filterSimon Warta2015-11-261-0/+7
|\ | | | | Fixed crash in compression filter when transform argument is null.
| * Compression filter: Reorganised verification order of transform.Matej Kenda2015-11-261-4/+6
| |
| * Fixed crash in compression filter when transform argument is null.Matej Kenda2015-11-031-1/+6
| |
* | Ignore anything in the output dirJack Lloyd2015-11-241-1/+1
| | | | | | | | [ci skip]
* | New reseed_with_sources call on RNGsJack Lloyd2015-11-2447-157/+459
| | | | | | | | | | | | | | | | | | | | | | | | | | Provides an easier way for an application to configure a list of entropy sources they'd like to use, or add a custom entropy source to their seeding. Exposes some toggles for the global/default entropy sources to build.h Adds basic entropy tests which runs the polls and does sanity checking on the results, including compression tests if available. These are less useful for the CSPRNG outputs but a good check for the ones producing plain ASCII like the /proc reader.
* | Updates for news, readmeJack Lloyd2015-11-242-31/+34
| | | | | | | | [ci skip]
* | Disable some problem areas of TLS corruption test pending rewriteJack Lloyd2015-11-241-5/+2
| | | | | | | | Should resolve the random CI breaks
* | Merge pull request #335 from cordney/patch-1Simon Warta2015-11-241-1/+1
|\ \ | | | | | | Fix sanitizer build in travis ci
| * | Fix sanitizer build in travis ciRené Korthaus2015-11-241-1/+1
|/ / | | | | The parameter is actually --with-sanitizers.
* | Remove bogus code from generic mp_madd header, noticed on PPC build.Jack Lloyd2015-11-232-5/+6
| | | | | | | | Also fix a few cast and zero-as-nullptr warnings in the AltiVec header
* | Merge pull request #333 from webmaster128/fix-testSimon Warta2015-11-231-10/+15
|\ \ | | | | | | Enhance tests main readability
| * | Enhance tests main readabilitySimon Warta2015-11-231-10/+15
|/ /
* | Add Simon Warta to license and creditsSimon Warta2015-11-182-0/+7
| | | | | | | | [ci skip]
* | Remove mul128.h header from public viewJack Lloyd2015-11-163-19/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The only reason mul128.h was included in mp_types.h was for the definition of dword. But dword is only needed by the generic version of mp_madd, which is an internal header. So move both the inclusion of the header and the dword definition to there. Previously mul128.h was very public (mp_types.h to bigint.h to rsa.h, for example) and use of __int128 causes problems in pedantic mode. So additionally, prefer using the TI attribute version since GCC does not complain about that. Clang's -Wpedantic does not seem to care about it either way. GH #330
* | Add helper for test output files. Remove last uses of hardcoded data dir macrosJack Lloyd2015-11-165-60/+88
| |
* | Merge pull request #332 from tiwoc/creditsJack Lloyd2015-11-162-0/+5
|\ \ | | | | | | Add myself (tiwoc) to credits.rst and license.txt
| * | Add myself to credits.rst and license.txtDaniel Seither2015-11-162-0/+5
| | |
* | | Update hacking.rst with copyright info and other hints. GH #331Jack Lloyd2015-11-161-7/+78
|/ / | | | | | | [ci skip]
* | Avoid multiplication by zero here as get_affine will reject itJack Lloyd2015-11-131-1/+1
| |
* | Fix bug causing TLS client to sometimes reject DHE server kexJack Lloyd2015-11-133-35/+20
| | | | | | | | | | | | Re-encoding the server key exchange meant that any leading zeros in the values for DHE (or SRP) would be stripped out. This would cause the signature check to fail.
* | Add remove_all to TLS session manager interfaceJack Lloyd2015-11-139-48/+69
| | | | | | | | DB::spin now returns the number of rows affected
* | Remove call to abort on a zero point in PointGFp::get_affine_{x,y}Jack Lloyd2015-11-131-4/+0
| |
* | Drop the DH group check to a weaker version of the checksJack Lloyd2015-11-131-2/+3
| | | | | | | | since the primality tests are expensive in CPU time.
* | Include the version string in the test outputJack Lloyd2015-11-131-0/+2
| |
* | The TLS test for corrupted data was too strict in requiring thatJack Lloyd2015-11-131-30/+32
| | | | | | | | | | the first block satisfy the request, since it was possible another record header appeared in some appended corrupted data.
* | Add TLS_PSK testsJack Lloyd2015-11-138-89/+220
| | | | | | | | | | | | | | | | | | | | | | Fix a bug which rejected any short server key exchanges. These can occur with a plain PSK with short or empty identity hints. Disable SHA-224 by default. Remove some vestigal RC4 cruft. Push more on the TLS corruption tests.
* | Avoid calling get_files_recursive on a possible non-directory.Jack Lloyd2015-11-112-9/+10
| | | | | | | | | | | | | | | | | | The Boost directory iterator throws an exception in that case. Interestingly the current VC version does not seem to. In the interests of portability just avoid this operation rather than trying to hack around it in the Boost fs version. GH #328
* | Test all providers for PK operationsJack Lloyd2015-11-111-24/+103
| |
* | Add missing overridesJack Lloyd2015-11-112-2/+2
| |
* | Fix occasional test failsJack Lloyd2015-11-114-7/+70
| | | | | | | | | | | | | | | | Increase the iterations of the BigInt::random_integer test. Since things get slow quickly, leave the larger range tests to higher soak levels. In TLS, if the corrupted data causes an exception immediately that's ok because it's corrupted data.
* | Add missing copyright/license notices.Jack Lloyd2015-11-112-0/+12
| | | | | | | | [ci skip]
* | Update and consolidate the test framework.Jack Lloyd2015-11-1189-21677/+8730
| | | | | | | | | | | | | | | | | | | | | | 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.
* | Tick version to 1.11.25Jack Lloyd2015-11-042-1/+6
| |
* | Correct 1.11.24 release dateJack Lloyd2015-11-041-1/+1
| | | | | | | | [ci skip]
* | Update for 1.11.24 release1.11.24Jack Lloyd2015-11-042-4/+18
| |
* | Add check for path validation result in Credentials_Manager. GH #324Jack Lloyd2015-11-044-6/+18
| |
* | Merge pull request #322 from cordney/fix-gentoo-package-linkSimon Warta2015-11-031-1/+1
|\ \ | |/ |/| Fix broken Gentoo package hyperlink
| * Fix broken Gentoo package hyperlinkRené Korthaus2015-11-031-1/+1
|/
* Update newsJack Lloyd2015-10-271-0/+6
| | | | [ci skip]
* Merge pull request #317 from randombit/cc-flag-sanityJack Lloyd2015-10-2720-142/+126
|\ | | | | Split up build options