summaryrefslogtreecommitdiffstats
path: root/src/tls.c
Commit message (Collapse)AuthorAgeFilesLines
* Overhaul network I/O to be async for realDrew DeVault2020-10-251-10/+23
| | | | | Had to totally cut off OpenSSL from the network fd because obviously OpenSSL is just going to wreck our shit
* Free up resources throughoutDrew DeVault2020-09-261-3/+13
|
* Implement TLS exchange with clientsDrew DeVault2020-09-241-3/+29
| | | | This probably leaves a bit to be desired tbh
* tls: move cert/key into host structureDrew DeVault2020-09-241-9/+4
| | | | | | | | We'll later want to set these on the SSL object (rather than SSL_CTX), so move these into the host struct for later access. We'll prefer to set it on the SSL object so that we can automatically use an up-to-date certificate, per ~sircmpwn/gmni#26.
* Implement TLS storeDrew DeVault2020-09-241-0/+176
Includes hands-free certificate generation and loading