godot/thirdparty/mbedtls
Fabio Alessandrelli 2c789788c0 mbedTLS: Fix concurrency issues with TLS
When we first integrated mbedTLS, we decided not to enable
MBEDTLS_THREADING_C (which adds mutex locking to calls modifying the
state), and instead to simply create separate contexts ("states") for
each connection.

This worked fine until recently.
Sadly, mbedTLS 3 added a global state for the new PSA crypto
functionalities (which are required to support TLSv1.3).
This results in TLSv1.3 connections to access and modify the global
state concurrently when running in threads.

This commit enables MBEDTLS_THREADING_C, and MBEDTLS_THREADING_C_ALT to
provide a generic Godot implementation using the engine Mutex class.
2025-05-08 11:45:00 +02:00
..
include mbedTLS: Fix concurrency issues with TLS 2025-05-08 11:45:00 +02:00
library mbedTLS: Update to version 3.6.3 2025-03-24 19:11:37 +01:00
patches mbedTLS: Update to version 3.6.3 2025-03-24 19:11:37 +01:00
LICENSE Bump mbedtls to version 2.18.1, update LICENSE. 2022-07-18 14:58:08 +02:00