aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Update newsJack Lloyd2017-09-283-8/+16
|
* 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.
* | Bump the shared object revisionJack Lloyd2017-09-271-1/+1
| | | | | | | | | | A few classes have increased in size which is enough to cause problems. Diagnosed with https://github.com/lvc/abi-compliance-checker
* | Update newsJack Lloyd2017-09-271-0/+3
| |
* | 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 :)
* | Another todoJack Lloyd2017-09-271-0/+1
| | | | | | | | [ci skip]
* | Update deprecated noticeJack Lloyd2017-09-271-0/+7
| | | | | | | | [ci skip]
* | Move the SecureVector typedef to secmem.hJack Lloyd2017-09-273-12/+6
| | | | | | | | 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-249-52/+1687
| | | | | | | | | | | | 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
|
* Lint fixJack Lloyd2017-09-241-2/+2
|
* 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
|
* More build fixesJack Lloyd2017-09-242-1/+3
|
* Refactor how test RNG is createdJack Lloyd2017-09-241-81/+82
|
* Test fixesJack Lloyd2017-09-242-1/+4
|
* More header cleanupsJack Lloyd2017-09-2312-4/+13
|
* Change configure so --list-modules doesn't print any log messagesJack Lloyd2017-09-231-26/+21
|
* Fixes for headers missing in certain configurationsJack Lloyd2017-09-232-0/+2
|
* Additional test fixesJack Lloyd2017-09-231-8/+8
|
* Merge GH #1221 Fix compile of filter testsJack Lloyd2017-09-231-1/+1
|\
| * Fix test compile error when filters is enabled but codec_filt is notRené Korthaus2017-09-231-1/+1
|/
* It's easier to use calloc hereJack Lloyd2017-09-221-8/+2
| | | | | Assumption is calloc checks for overflow (!) so if it returns a pointer that means no overflow occurred.
* Refer to free in std::Jack Lloyd2017-09-221-1/+1
|
* Attempt to make MSVC happyJack Lloyd2017-09-221-0/+12
|
* Avoid creating invalid iterator references when input_len == 0Jack Lloyd2017-09-221-4/+10
|
* Avoid deprecated warning in tls_blocking.cppJack Lloyd2017-09-221-0/+6
| | | | We don't care because the whole file is itself deprecated.
* Deprecate modification of Pipe objectsJack Lloyd2017-09-224-29/+44
| | | | | This is a feature that is hairy to implement and really makes application code confusing.