From: Thorsten O. <ad...@th...> - 2024-06-09 16:35:09
|
On Sonntag, 9. Juni 2024 17:45:07 CEST WongCK via Freemint-discuss wrote: > I have been following the updates from polarssl to mbedtls. As you mentioned > in AF, the migration is pretty simple by just changing the prefix to > mbedtls. Yes, but mbedTLS has one big disadvantage compared to openssl/wolftls: they have completely removed support for TLSv1.1. In other libs it is also disabled by default, but it is still there and can be enabled if you compile the library yourself. So if you need that support because you are talking to old servers, newer versions of mbedtls might not work. OTOH, it is much smaller. >gcc-14 with enable-checking took 4 mins 15 secs >gcc-14 without enable-checking took 2 mins 52 secs Thats still quite a difference, would not have expected that. So recompiling them again was atleast not for nothing ;) |