aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_tortls_openssl.c
AgeCommit message (Collapse)Author
2019-06-05Run "make autostyle."Nick Mathewson
2019-01-16Bump copyright date to 2019Nick Mathewson
2018-09-13Merge branches 'bug27684' and 'bug27685'Nick Mathewson
2018-09-13Fix a memory leak in tortls/openssl/try_to_extract_certs_from_tlsNick Mathewson
Since this is an "intrusive" test, it only shows up for openssl <1.1 This is a bugfix on 0.3.5.x; bug not in any released Tor.
2018-09-13Fix a memory leak in tortls/openssl/context_new test.Nick Mathewson
Bugfix on 0.3.5.x; bugfix not on any released Tor.
2018-09-04Merge branch 'nss_squashed' into nss_mergeNick Mathewson
2018-09-04Resolve openssl-only memory leaksNick Mathewson
2018-09-04Port test_tortls_verify to not depend on openssl internalsNick Mathewson
2018-09-04Remove tor_tls_check_lifetime as unused.Nick Mathewson
Everything that might have used it, uses tor_tls_cert_is_valid() instead.
2018-09-04Remove tor_tls_shutdown()Nick Mathewson
This function was supposed to implement a half-duplex mode for our TLS connections. However, nothing in Tor actually uses it (besides some unit tests), and the implementation looks really questionable to me. It's probably best to remove it. We can add a tested one later if we need one in the future.
2018-08-21Extract internal-only parts of x509.hNick Mathewson
2018-08-21Split tls modules and their tests into openssl and generic.Nick Mathewson
Also, add a stubbed-out nss version of the modules. The tests won't pass with NSS yet since the NSS modules don't do anything. This is a good patch to read with --color-moved.