aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge GH #1229 Simplify allocator and avoid MSVC perf issueJack Lloyd2017-09-291-37/+5
|\
| * Add back size_type typedefJack Lloyd2017-09-291-0/+1
| | | | | | | | | | | | | | Lacking this seems to cause interesting issues with Apple Clang on 32-bit ARM. It seems like it implicitly defines a size_type that is the same size as size_t, but not actually size_t, so we get an unsigned long vs unsigned int mismatch on the type.
| * Of course MSVC 2013 has to be specialJack Lloyd2017-09-291-0/+7
| |
| * Simplifiy secure_allocatorJack Lloyd2017-09-291-44/+4
| | | | | | | | | | | | | | | | | | According to https://howardhinnant.github.io/allocator_boilerplate.html we don't need most of what was in there in C++11 and later. I think I originally wrote that code referencing a C++03 doc. Specifically avoiding construct, destruct prevents a performance issue in MSVC (GH #1228)
* | Avoid crash in DLIES tests if AEADs disabledJack Lloyd2017-09-291-0/+6
| |
* | Remove sanitizer and mini-static builds from TravisJack Lloyd2017-09-291-6/+0
| | | | | | | | | | | | | | | | | | | | Sanitizer mode isn't testing anything extra vs the fuzzer tests which also use the sanitizers. Similarly mini-static is pretty well covered by the other minimized build and the static build. Will cut about 7-10 minutes from Travis build time.
* | Build test scriptJack Lloyd2017-09-291-3/+3
| | | | | | | | [ci skip]
* | Build script workJack Lloyd2017-09-291-11/+29
| | | | | | | | [ci skip]
* | Unused variableJack Lloyd2017-09-291-1/+1
| | | | | | | | [ci skip]
* | In TLS CBC padding check, only need to verify last 256 bytesJack Lloyd2017-09-292-10/+42
| | | | | | | | | | No reason to scan the entire record since it's assured at most 256 bytes of padding are used. Inspired by GH #1227
* | More futzing with the build em all scriptJack Lloyd2017-09-291-31/+36
|/ | | | [ci skip]
* Add a test of TLS CBC padding verificationJack Lloyd2017-09-294-9/+88
| | | | See also GH #1227
* Include pk_keys.h in pkcs8.h and x509_key.hJack Lloyd2017-09-292-2/+2
| | | | Not strictly required but seems likely to cause problems for applications.
* Fix fuzzer buildJack Lloyd2017-09-291-0/+1
|
* Require HMAC for HKDFJack Lloyd2017-09-281-0/+4
| | | | Not actually strictly required but in practice doesn't make much sense.
* Fixes for MSVCJack Lloyd2017-09-282-2/+2
| | | | BOTAN_UNUSED "uses" the RNG :/
* More build test scriptingJack Lloyd2017-09-281-1/+5
| | | | [ci skip]
* Expand build test to also cover single-module exclusionsJack Lloyd2017-09-281-9/+13
|
* Further header cleanupsJack Lloyd2017-09-2830-23/+67
|
* Add variants of PKCS8::load_key that don't require an RNG argumentJack Lloyd2017-09-282-32/+112
| | | | | It's not used and only there for compat with existing callers, but no reason we can't offer a version that doesn't require it.
* Disable clcache on AppVeyorJack Lloyd2017-09-282-19/+1
| | | | | | AppVeyor's sharding of the build cache across VM providers means the effective cache hit rate is basically zero. So using clcache just slows down the build without much benefit.
* Build the PDFJack Lloyd2017-09-281-19/+31
|
* Rewrite website generator script in PythonJack Lloyd2017-09-284-50/+144
|
* Doxygen commentJack Lloyd2017-09-281-0/+6
| | | | [ci skip]
* Header cleanupsJack Lloyd2017-09-285-5/+3
|
* Merge GH #1224 Address side channel in Montgomery exponentiationJack Lloyd2017-09-286-36/+98
|\
| * Add valgrind annotations to check const_time_lookupJack Lloyd2017-09-261-0/+5
| |
| * Use a side channel silent table look up in the Montgomery exponentiationJack Lloyd2017-09-256-36/+93
| |
* | Make poly_dbl.h a submodule of utilsJack Lloyd2017-09-279-2/+28
| | | | | | | | | | Only required by a few modules and if none of them are in use then the whole thing can just be skipped from the build.
* | Merge GH #1226 Add HKDF-Expand-LabelJack Lloyd2017-09-275-2/+124
|\ \
| * | Add HKDF-Expand-LabelJack Lloyd2017-09-275-2/+124
| | | | | | | | | | | | Step 1/n of TLS 1.3
* | | Remove OutputLen parameter from KDF test dataJack Lloyd2017-09-2712-1405/+3
|/ / | | | | | | | | We already know how long the output should be, it should match the test vector :)
* | Move the SecureVector typedef to secmem.hJack Lloyd2017-09-272-12/+3
| | | | | | | | No point making someone include a deprecated header to get this.
* | You can't have attributes on a template typedef, apparently.Jack Lloyd2017-09-261-1/+0
| | | | | | | | [ci skip]
* | Add some more includes to botan.hJack Lloyd2017-09-261-10/+34
|/ | | | | | This is basically just for Monotone [ci skip]
* Add a GCD testJack Lloyd2017-09-253-0/+34
|
* Improve test coverage slightly and correct macroJack Lloyd2017-09-251-8/+3
|
* Fix for threadless buildsJack Lloyd2017-09-251-0/+5
| | | | [ci skip]
* Share the _static dir between both Sphinx instancesJack Lloyd2017-09-241-0/+2
| | | | [ci skip]
* Make it possible to build the website from outside src dirJack Lloyd2017-09-242-19/+30
| | | | [ci skip]
* Correct Doxygen errorJack Lloyd2017-09-241-1/+0
| | | | [ci skip]
* Avoid debug iterator errorJack Lloyd2017-09-241-6/+12
|
* Missing includeJack Lloyd2017-09-241-0/+1
|
* Test SIV multi-AD functionJack Lloyd2017-09-243-2/+104
|
* Better tests for SIVJack Lloyd2017-09-248-51/+1686
| | | | | | | | | | | | Correct errors in the AEAD tests that assumed process/update always return something - that isn't true for SIV Minor optimizations in CMAC and CTR to cache the block size instead of making a zillion virtual calls for it. Generalize SIV slightly to where it could support a non-128 bit cipher, but don't pull the trigger on it since I can't find any implementations to crosscheck with.
* Move passhash9 and bcrypt tests to passhash/ subdirJack Lloyd2017-09-243-2/+2
| | | | [ci skip]
* Move ocb test data to ocb/ subdirJack Lloyd2017-09-244-3/+3
| | | | [ci skip]
* Reindent [ci skip]Jack Lloyd2017-09-241-1/+1
|
* Add script that runs build+test across many configs, reports errorsJack Lloyd2017-09-241-0/+88
|
* Further build/test fixes for restricted configurationsJack Lloyd2017-09-2426-30/+158
|