summaryrefslogtreecommitdiff
path: root/src/streams/mbedtls.h
Commit message (Collapse)AuthorAgeFilesLines
* mbedTLS: Fix setting certificate directoryethomson/custom_cert_locationsZachary Michaels2021-08-291-1/+1
| | | | fixes #6003
* streams: remove unused tls functionsEdward Thomson2018-11-281-2/+4
| | | | | | | The implementations of git_openssl_stream_new and git_mbedtls_stream_new have callers protected by #ifdefs and are never called unless compiled in. There's no need for a dummy implementation. Remove them.
* tls: introduce a wrap functionEdward Thomson2018-11-281-0/+1
| | | | | | | | | | | Introduce `git_tls_stream_wrap` which will take an existing `stream` with an already connected socket and begin speaking TLS on top of it. This is useful if you've built a connection to a proxy server and you wish to begin CONNECT over it to tunnel a TLS connection. Also update the pluggable TLS stream layer so that it can accept a registration structure that provides an `init` and `wrap` function, instead of a single initialization function.
* mbedtls: load default CA certificatesEtienne Samson2018-04-111-1/+1
|
* mbedtls: add global initializationEtienne Samson2018-04-111-0/+2
|
* mbedtls: initial supportEtienne Samson2018-04-111-0/+18