
This release of Mbed TLS provides the fix for a tls compatibility issue of handling fragmented handshake messages. This release includes fixes for security issues. * Potential authentication bypass in TLS handshake (CVE-2025-27810) [1] * TLS clients may unwittingly skip server authentication (CVE-2025-27809) [2] [1]: https://mbed-tls.readthedocs.io/en/latest/security-advisories/mbedtls-security-advisory-2025-03-2/ [2]: https://mbed-tls.readthedocs.io/en/latest/security-advisories/mbedtls-security-advisory-2025-03-1/ Full release announcement: https://github.com/Mbed-TLS/mbedtls/releases/tag/mbedtls-3.6.3 Signed-off-by: Magnus Kroken <mkroken@gmail.com> Link: https://github.com/openwrt/openwrt/pull/18353 Signed-off-by: Nick Hainke <vincent@systemli.org>
18 lines
412 B
Diff
18 lines
412 B
Diff
--- a/programs/CMakeLists.txt
|
|
+++ b/programs/CMakeLists.txt
|
|
@@ -3,14 +3,10 @@ add_custom_target(${programs_target})
|
|
|
|
add_subdirectory(aes)
|
|
add_subdirectory(cipher)
|
|
-if (NOT WIN32)
|
|
- add_subdirectory(fuzz)
|
|
-endif()
|
|
add_subdirectory(hash)
|
|
add_subdirectory(pkey)
|
|
add_subdirectory(psa)
|
|
add_subdirectory(random)
|
|
add_subdirectory(ssl)
|
|
-add_subdirectory(test)
|
|
add_subdirectory(util)
|
|
add_subdirectory(x509)
|