summaryrefslogtreecommitdiff
path: root/lib/libtls/tls.h
AgeCommit message (Expand)Author
2018-11-29expose the default cert file as a function, not a define. it's reallyTed Unangst
2018-11-06Define TLS_CA_CERT_FILE rather than having every application create theirJoel Sing
2018-02-10Bump TLS API version since we've added more functionality.Joel Sing
2018-02-10Add support to libtls for client-side TLS session resumption.Joel Sing
2017-08-10Add a tls_config_set_ecdhecurves() function to libtls, which allows theJoel Sing
2017-07-06Add support for providing CRLs to libtls - once a CRL is provided weJoel Sing
2017-05-06Provide a tls_unload_file() function, that frees the memory returned fromJoel Sing
2017-04-05Add tls_peer_cert_chain_pem - To retreive the peer certificate and chainBob Beck
2017-01-31Add tls_config_[add|set]keypair_ocsp functions so that ocsp staples may beBob Beck
2017-01-26Bump TLS_API due to new features being added earlier this week.Joel Sing
2017-01-24Introduce ticket support. To enable them it is enough to set a positiveClaudio Jeker
2017-01-22Wrap long lines.Joel Sing
2016-11-11Bump TLS_API due to recent feature additions and changes.Joel Sing
2016-11-11Change the return value of tls_config_set_protocols() andJoel Sing
2016-11-05Add support for server side OCSP stapling to libtls.Bob Beck
2016-11-04Add ocsp_require_stapling config option for tls - allows a connectionBob Beck
2016-11-02Add OCSP client side support to libtls.Bob Beck
2016-09-13add a little more typing to the first callback argument.Ted Unangst
2016-09-04Bump TLS_API for addition of callbacks.Joel Sing
2016-09-04Add callback-based interface to libtls.Brent Cook
2016-08-22Bump TLS_API due to the addition of server side SNI functions.Joel Sing
2016-08-22Provide an API that enables server side SNI support - add the ability toJoel Sing
2016-08-12Add ALPN support to libtls.Joel Sing
2016-08-02Revert previous since it adds new symbols.Joel Sing
2016-08-01Bump TLS_API for addition of ALPN support.Joel Sing
2016-08-01Add ALPN support to libtls.Joel Sing
2016-05-27Fix function parameters that do not have an underscore prefix.Joel Sing
2016-04-28Factor our the keypair handling in libtls. This results in more readableJoel Sing
2016-04-28Rework the error handling in libtls so that we can associate errors withJoel Sing
2015-10-07Add tls_peer_cert_notbefore and tls_peer_cert_notafter to expose peer certifi...Bob Beck
2015-10-01include <sys/types.h> for ssize_tBrent Cook
2015-09-14Provide tls_config_insecure_noverifytime() in order to be able to disableJoel Sing
2015-09-13add visibility of ciper and connection version stringsBob Beck
2015-09-12Move connection info into it's own private structure allocated and filled inBob Beck
2015-09-12Put tls_peer_cert* functions in the same place.Joel Sing
2015-09-11add tls_peer functions for checking names and issuers of peer certificates.Bob Beck
2015-09-11Provide tls_peer_cert_hash() which returns a hash of the raw certificateJoel Sing
2015-09-10change TLS_READ_AGAIN to TLS_WANT_POLLIN and TLS_WRITE_AGAIN to TLS_WANT_POLLOUTBob Beck
2015-09-10Change tls_read and tls_write semantics to return an ssize_t to betterBob Beck
2015-09-10Split tls_handshake() out from tls_accept/tls_connect. By doing this theJoel Sing
2015-09-10Add support for preferring the server's cipher list or the client's cipherJoel Sing
2015-09-09Add client certificate support. Still needs a few tweaks but this willBob Beck
2015-06-19Add standard headers, C++ support to tls.h.Brent Cook
2015-03-31Provide a tls_accept_fds() function, which allows a TLS connection to beJoel Sing
2015-02-26Prefix function parameter names with underscores in tls.h, since this makesJoel Sing
2015-02-22Rename tls_config_insecure_noverifyhost() toJoel Sing
2015-02-12Add a tls_config_parse_protocols() function that allows a protocols stringJoel Sing
2015-02-12Change TLS_PROTOCOLS_DEFAULT to be TLSv1.2 only. Add a TLS_PROTOCOLS_ALLJoel Sing
2015-02-11Provide a tls_connect_servername() function that has the same behaviourJoel Sing
2015-02-11Be consistent with naming - only use "host" and "hostname" when referringJoel Sing