Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-05-12 | Disable TLSv1.3 in MbedTLS 3.6.0 for now | Rodrigo Arias Mallo | |
In Mbed TLS 3.6.0 there is support for TLSv1.3 but it requires special handling, so for now we disable it. See: https://gitlab.alpinelinux.org/alpine/aports/-/commit/4dc36afaa81a4d73758b29fa77981d07dbae0080.patch Fixes: https://github.com/dillo-browser/dillo/issues/158 | |||
2024-01-11 | Report OpenSSL and mbedTLS versions | Rodrigo Arias Mallo | |
2023-12-30 | Add support for OpenSSL, mbedTLS 2 and mbedTLS 3 | Rodrigo Arias Mallo | |
Brings the previous OpenSSL implementation into src/IO/tls_openssl.c. Now, the TLS functions have the implementation name as prefix, like a_Tls_openssl_connect(). The generic interface at IO/tls.h hides the implementation which is selected at configure time. The appropriate functions of that implementation are called from IO/tls.c to IO/tls_<impl>.c. In this way, support for more TLS libraries can easily be added. In the case of mbedTLS, there are some incompatible changes from version 2 to 3, so we use some ifdefs to fix the differences. | |||
2023-12-30 | Move mbedTLS implementation to tls_mbedtls.c | Rodrigo Arias Mallo | |