aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Use object library for CMakekinichiro2021-05-023-3/+35
|/
* bump arm library versionsBrent Cook2021-05-011-2/+2
|
* disable some tests that rely on static library symbolsBrent Cook2021-05-011-0/+2
|
* update to Ubuntu 18.0.4 LTS for CI testingBrent Cook2021-05-011-6/+6
|
* cmake test should be ec_point_conversionBrent Cook2021-04-271-4/+4
|
* add ec_point_conversion testBrent Cook2021-04-272-0/+10
|
* add tls12_lib.cBrent Cook2021-04-272-0/+2
|
* update manpage linksBrent Cook2021-04-181-0/+4
|
* Mention switch to the legacy verifier in ChangeLogv3.3.2Theo Buehler2021-04-151-2/+5
|
* update autotoolsBrent Cook2021-04-151-1/+1
|
* More minor ChangeLog tweaks for 3.3.2Theo Buehler2021-04-151-5/+5
|
* add --enable-libtls-only optionBrent Cook2021-04-151-0/+4
|
* Tweak changelog for 3.3.2.Joel Sing2021-04-151-42/+38
|
* Fix a number of typos and expand a few entriesTheo Buehler2021-04-131-16/+18
|
* Initial changelog for 3.3.2Theo Buehler2021-04-131-0/+295
|
* rebase tlsexttest patchBrent Cook2021-04-081-3/+3
|
* update manpage linksBrent Cook2021-04-081-0/+4
|
* update appveyor pre-build config to address build failuresBrent Cook2021-04-081-2/+1
|
* Add '--enable-libtls-only' build optionBrent Cook2021-04-0711-68/+91
|
* update linksBrent Cook2021-02-281-0/+1
|
* fix leak in Windows version of pthread_mutex_freeBrent Cook2021-02-281-0/+1
| | | | | Free the lock pointer in addition to the critical section. Thanks to martinkucera74 on github.
* add ssl_methods testBrent Cook2021-02-032-0/+6
|
* update manpage linksBrent Cook2021-01-031-0/+18
|
* add win32 pthread_mutex_destroy implementationBrent Cook2020-12-211-0/+7
|
* Add a few more bug fixes to the ChangeLogTheo Buehler2020-12-081-0/+12
|
* Release notes for GENERAL_NAME_cmp() NULL derefv3.3.1Theo Buehler2020-12-081-0/+15
|
* zap stray wordTheo Buehler2020-11-261-1/+1
|
* Update ChangeLogv3.3.0kinichiro2020-11-211-1/+5
|
* fix typo and split an overlong sentenceTheo Buehler2020-11-191-5/+4
|
* Initial ChangeLog for 3.3.0Theo Buehler2020-11-191-0/+98
|
* Add -lbcrypt to Windows builds for CNG in getentropyBrent Cook2020-11-113-4/+4
|
* modify nc build to link libcompat objects directlyBrent Cook2020-10-202-4/+8
| | | | Rather than assuming the static version of libcrypto exists for pulling in the compatibility functions, link the compat objects directly. This modifies the object file generation script a bit to handle the empty-case properly as well.
* include strtonum for ocspcheckBrent Cook2020-10-194-0/+13
|
* Mention cleanup and refactoring of ssl_prev_session().Theo Buehler2020-10-081-0/+3
|
* wording tweak from jsingTheo Buehler2020-10-081-1/+1
|
* whitoTheo Buehler2020-10-081-1/+1
|
* wordsmith some, and include mention of name constraints and bettertle test suiteBob Beck2020-10-081-5/+12
|
* CBS -> CBCTheo Buehler2020-10-081-1/+1
|
* ChangeLog improvements.Joel Sing2020-10-081-11/+7
|
* Zap many things that are promised for laterTheo Buehler2020-10-071-22/+2
| | | | | | | We can mention the new OpenSSL compat API and the validator API when they're enabled. The commit message for the validator is out of place.
* Mention TLSv1.3 server up front, then validator. Other minorTheo Buehler2020-10-071-13/+19
| | | | tweaks.
* Update ChangeLogkinichiro2020-10-071-135/+39
|
* remove d1_clnt/d1_srvrBrent Cook2020-10-062-4/+0
|
* Land #625, fix typoBrent Cook2020-10-061-1/+1
|\
| * Fix typo :)OptoCloud2020-10-061-1/+1
| |
* | Land #611, remove libtls-standaloneBrent Cook2020-10-0616-338/+3
|\ \
| * | disable some additional libtls-standalone bitsBrent Cook2020-08-202-38/+3
| | |
| * | remove libtls-standalone, it's unmaintainedBrent Cook2020-08-2014-300/+0
| | | | | | | | | | | | | | | | | | | | | libtls-standalone was originally intended to make something that could link to any other OpenSSL fork or OpenSSL itself, but I don't think there's anyone who is terribly interested in that after all, so let's clean this up. #610 may be the better solution anyway.
* | | Land #610, Statically link libcrypto/ssl into libtlsBrent Cook2020-10-066-9/+34
|\ \ \
| * | | Link crypto and ssl object files directly instead of static librarykinichiro2020-10-044-4/+31
| | | | | | | | | | | | | | | | | | | | | | | | - Output object files list variable for libcrypto and libssl to .mk file. - Include object files list variable .mk from tls/Makefile - Link .lo files directly instead of static library for libtls.