aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* clock_gettime supported by mac since 10.12David Carlier2019-06-162-1/+2
|
* Update newsJack Lloyd2019-06-151-1/+3
|
* Merge GH #1996 Add libsodium compat layerJack Lloyd2019-06-1514-6/+3311
|\
| * Fix allocation. Add more tests.Jack Lloyd2019-06-153-2/+68
| |
| * Add a compatability shim for libsodiumJack Lloyd2019-06-1513-5/+3244
|/ | | | | Not complete, just trying to hit the most commonly used APIs plus the ones that are easy to do.
* Fix more MSVC warningsJack Lloyd2019-06-144-22/+22
|
* Resolve some MSVC warningsJack Lloyd2019-06-146-10/+10
|
* Update newsJack Lloyd2019-06-141-1/+4
|
* Merge GH #1995 Allow setting max OCSP response age during verificationJack Lloyd2019-06-143-22/+226
|\
| * add option to specify ocsp max agePatrick Schmidt2019-06-143-22/+226
| |
* | Merge GH #1992 Allow overriding cert verify in TLS::StreamJack Lloyd2019-06-144-81/+210
|\ \ | |/ |/|
| * TLS::Context holds references rather than pointersHannes Rantzsch2019-06-134-92/+102
| | | | | | | | | | | | | | | | Parameters passed from TLS::Context to TLS::Client for initialization are now held as references in the context. Ownership of these members is thereby explicitly left with the user. Co-authored-by: Tim Oesterreich <[email protected]>
| * Update comments as suggested per reviewHannes Rantzsch2019-06-042-9/+14
| | | | | | | | Co-Authored-By: René Meusel <[email protected]>
| * Refactor: template meta-programming to reuse the callback signatureRené Meusel2019-06-031-7/+16
| |
| * update docs on TLS::ContextHannes Rantzsch2019-06-031-14/+16
| |
| * fix: include tls_verify_cert_chain and tls_verify_cert_chain_ocsp_timeout in ↵Hannes Rantzsch2019-06-031-2/+2
| | | | | | | | docs
| * Use TLS::Context::verifyCallback as tls_verify_cert_chain callbackHannes Rantzsch2019-06-031-22/+62
| | | | | | | | | | | | | | | | | | StreamCore uses the user-provided verify callback as a tls_verify_cert_chain if any is provided to the Context. Stream allows configuring the context as well using Stream::set_verify_callback. Stream now keeps a reference to the Context, rather than copying it. This allows users to configure the Context after constructing the Stream, but requires them to manage its lifetime.
| * allow setting a verify_callback in TLS::ContextHannes Rantzsch2019-06-032-31/+94
| | | | | | | | | | This will allow customizing the tls_verify_cert_chain callback for TLS::Stream. TLS::Context is now a class and its members are protected.
* | Ignore all deprecated headers when generating amalgamationJack Lloyd2019-06-081-3/+5
| | | | | | | | | | Previously was limited to botan.h which was the only one with a warning in it.
* | Merge GH #1994 Deprecate headersJack Lloyd2019-06-0832-694/+618
|\ \
| * | Officially deprecate headersJack Lloyd2019-06-0732-694/+618
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create BOTAN_DEPRECATED_HEADER so we can warn about this consistently. Shuffle around the filter headers so all of the concrete filters are defined in filters.h instead of being spread across many headers. Document which headers are deprecated as well as a list of headers which will be made internal-only in a future major release.
* | | Prevent exception from taking down entire test scriptJack Lloyd2019-06-081-1/+5
|/ /
* | Log the configure command line in the makefileJack Lloyd2019-06-071-0/+3
| | | | | | | | Sometimes useful for debugging
* | Remove debug printJack Lloyd2019-06-051-1/+0
| |
* | Add a test that Theaad_Pool is tolerant of exceptions during tasksJack Lloyd2019-06-051-3/+21
| |
* | Lint fixesJack Lloyd2019-06-053-7/+8
| |
* | Merge GH #1979 Fix PKCS11 buffer output sizingJack Lloyd2019-06-052-13/+30
|\ \
| * | Fix PKCS#11 C_SignFinal output size.Daniel Wyatt2019-05-271-1/+6
| | |
| * | Fix PKCS#11 C_Sign output size.Daniel Wyatt2019-05-271-2/+7
| | |
| * | Fix PKCS#11 C_Encrypt output size.Daniel Wyatt2019-05-271-2/+7
| | |
| * | Fix PKCS#11 C_Decrypt buffer output size.Daniel Wyatt2019-05-262-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Section 5.2 of the spec states that there are two ways to call functions that return a variable-length buffer: 1. When the output buffer is NULL, an estimated size is returned (which may be larger than required). 2. When the output buffer is not NULL, the exact size must be returned. So only after the second call to C_Decrypt has the final output size been determined, and we must resize the output buffer.
* | | Add __hash__ for MPIJack Lloyd2019-06-031-0/+3
| | |
* | | Address some issues found by LGTMJack Lloyd2019-06-037-12/+17
| |/ |/|
* | Add build step for LGTM [ci skip]Jack Lloyd2019-06-032-0/+7
| |
* | Merge GH #1991 Reorganize document layoutJack Lloyd2019-06-0259-65/+115
|\ \
| * | Fix building with Sphinx disabledJack Lloyd2019-06-011-3/+14
| | |
| * | Reorg documentation layout. Rename manual to handbook.Jack Lloyd2019-05-3159-62/+101
|/ /
* | Update newsJack Lloyd2019-05-311-1/+7
| |
* | Merge GH #1990 Add Bcrypt-PBKDFJack Lloyd2019-05-318-6/+520
|\ \
| * | Add Bcrypt-PBKDFJack Lloyd2019-05-318-6/+520
|/ /
* | Remove redundant OutputLen param in PBKDF testsJack Lloyd2019-05-313-21/+2
| |
* | Merge GH #1989 Add --max-clients option to TLS cli server toolsJack Lloyd2019-05-313-66/+138
|\ \
| * | Fix lintJack Lloyd2019-05-311-2/+2
| | |
| * | Connect twice to excercise both accept and non-accept pathsJack Lloyd2019-05-311-10/+18
| | |
| * | Add --max-clients option to tls_proxy and tls_http_serverJack Lloyd2019-05-313-57/+121
|/ / | | | | | | A clean exit is required in order to get coverage results
* | Merge GH #1988 Improve CLI testsJack Lloyd2019-05-312-68/+226
|\ \
| * | Python...Jack Lloyd2019-05-302-6/+6
| | |
| * | Fixes for Python2Jack Lloyd2019-05-301-3/+23
| | |
| * | Improve CLI testsJack Lloyd2019-05-301-63/+201
|/ /
* | Merge rest of GH #1987 Argon2 improvementsJack Lloyd2019-05-308-51/+131
|\ \