summaryrefslogtreecommitdiff
path: root/src/lib/libtls (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Add missing documentation for tls_config_set_verify_depthclaudio2017-01-241-1/+5
* Shuffle the deck chairs to bring them back in order.claudio2017-01-241-9/+9
* tls_config_add_keypair_mem is the function to add additional keypairs andclaudio2017-01-241-5/+5
* Disable session cache and tickets by default.claudio2017-01-221-1/+5
* Wrap long lines.jsing2017-01-221-4/+7
* Bump majors for libssl and libtls following the translucent struct change.jsing2017-01-221-1/+1
* whitespacederaadt2017-01-131-3/+3
* Inline strlen() call to reduce/simplify code.jsing2017-01-121-5/+2
* Inline tls_get_new_cb_bio() from the only place that it gets called,jsing2017-01-121-22/+11
* If tls_set_cbs() fails an error will already be specified, so do notjsing2017-01-122-8/+4
* Simplify the TLS callback BIO code - a pointer to the tls context can bejsing2017-01-121-66/+7
* If tls_get_new_cb_bio() fails, an error will already be set.jsing2017-01-121-5/+2
* If no callbacks are specified, return after setting an error rather thanjsing2017-01-121-2/+4
* Avoid leaking conninfo servername.jsing2017-01-091-1/+3
* If certificate verification has been disabled, do not attempt to load ajsing2017-01-031-5/+9
* Revert previous - the original code was correct since X509_verify_cert()jsing2017-01-031-5/+5
* fix cert verify. a cert with an alt chain may verify but leave an errortedu2017-01-021-5/+5
* Hook up a certificate verify callback so that we can set user friendlyjsing2016-12-262-8/+31
* Bump libcrypto/libssl/libtls majors due to libcrypto symbol removal andjsing2016-12-211-1/+1
* Bump TLS_API due to recent feature additions and changes.jsing2016-11-111-2/+2
* Change the return value of tls_config_set_protocols() andjsing2016-11-113-12/+18
* Disable ec assembly for amd64 pending fixes for ssh, and bumpbeck2016-11-111-2/+2
* Set the callback on the correct ssl_ctx for the SNI case, instead ofbeck2016-11-061-2/+2
* fix misplaced quote by tls_peer_ocsp_this_updatebcook2016-11-051-2/+2
* tweak previous;jmc2016-11-051-6/+6
* bump minors for symbol addition for ocsp and x25519 symbol additionsbeck2016-11-051-1/+1
* Add support for server side OCSP stapling to libtls.beck2016-11-057-12/+79
* rename ocsp_ctx to ocspbeck2016-11-053-68/+68
* Remove generated Symbols.map on make clean.jsing2016-11-051-1/+3
* Build with WARNINGS=Yes.jsing2016-11-041-1/+3
* Avoid shadowing the socket global.jsing2016-11-041-3/+3
* Make the tls_keypair_new() function a valid prototype.jsing2016-11-041-2/+2
* Avoid another signed vs unsigned comparison.jsing2016-11-041-2/+6
* Add an explict list of exported symbols with just the functions declaredguenther2016-11-043-2/+85
* make public ASN1_time_parse and ASN1_time_tm_cmp to replace former hiddenbeck2016-11-044-10/+7
* Address some signed vs unsigned warnings and check that an integer valuejsing2016-11-041-4/+14
* Assign and test, as is consistent with the rest of the libtls code.jsing2016-11-041-7/+4
* Use a consistent name for struct bio_cb * variables.jsing2016-11-041-6/+6
* Rename struct bio_cb_st to struct bio_cb.jsing2016-11-041-8/+8
* Do not cast a pointer to a struct, to a char * when assigning to a void *.jsing2016-11-041-2/+2
* Use a consistent name for a BIO *, rather than having four different namesjsing2016-11-041-49/+51
* Avoid signed vs unsigned comparisons.jsing2016-11-041-3/+4
* There's not much point having three static functions that do a cast andjsing2016-11-041-33/+6
* Do not mix declarations and code.jsing2016-11-041-3/+7
* Rename the internal bio related functions so that they have a commonjsing2016-11-041-22/+22
* There's not much point in casting a void * to a specific type just beforejsing2016-11-041-4/+2
* bump minor for ocsp_require_stapling additionbeck2016-11-041-1/+1
* Add ocsp_require_stapling config option for tls - allows a connectionbeck2016-11-045-6/+25
* Don't do OCSP validation when we have disabled certificate verificationbeck2016-11-032-5/+8
* Only set an error from libssl related code, if an error has not alreadyjsing2016-11-032-7/+47