Re: [PATCH ustream-ssl 1/2] ustream-mbedtls: Add compatibility with Mbed TLS 3.0.0

2023-11-12 Thread Hauke Mehrtens
On 11/12/23 20:16, Rosen Penev wrote: On Sat, Nov 11, 2023 at 1:35 PM Hauke Mehrtens wrote: This adds support for compiling the code against Mbed TLS 3.0.0. It still compiles against Mbed TLS 2.28. The following changes were needed: * DES and 3DES was removed *

Re: [PATCH ustream-ssl 1/2] ustream-mbedtls: Add compatibility with Mbed TLS 3.0.0

2023-11-12 Thread Rosen Penev
On Sat, Nov 11, 2023 at 1:35 PM Hauke Mehrtens wrote: > > This adds support for compiling the code against Mbed TLS 3.0.0. > It still compiles against Mbed TLS 2.28. > > The following changes were needed: > * DES and 3DES was removed > * mbedtls_pk_context->pk_info is private, use

[PATCH ustream-ssl 1/2] ustream-mbedtls: Add compatibility with Mbed TLS 3.0.0

2023-11-11 Thread Hauke Mehrtens
This adds support for compiling the code against Mbed TLS 3.0.0. It still compiles against Mbed TLS 2.28. The following changes were needed: * DES and 3DES was removed * mbedtls_pk_context->pk_info is private, use mbedtls_pk_get_type() to check if it was initialized *