aboutsummaryrefslogtreecommitdiff
path: root/src/lib/tls/include.am
AgeCommit message (Collapse)Author
2018-11-05Make tortls use the subsystems interfaceNick Mathewson
This one only needs a shutdown right now.
2018-09-14Add support for lower-level byte counting with NSSNick Mathewson
This is harder than with OpenSSL, since OpenSSL counts the bytes on its own and NSS doesn't. To fix this, we need to define a new PRFileDesc layer that has its own byte-counting support. Closes ticket 27289.
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.
2018-08-21Split X509 code out of tortls.cNick Mathewson
2018-07-11Add a configure switch to build with NSS.Nick Mathewson
When it is set, include the NSS headers and libraries as appropriate. Doesn't actually use them yet, though.
2018-06-21Split crypto and tls libraries into directoriesNick Mathewson
I am calling the crypto library "crypt_ops", since I want higher-level crypto things to be separated from lower-level ones. This library will hold only the low-level ones, once we have it refactored.