1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-07 12:21:11 +03:00

Add bugfix section about buffer sharing

Mention that arbitrary overlap is now supported, except whenever
MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS is set.

Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
David Horstmann
2024-03-12 16:56:49 +00:00
parent 59c1f53088
commit 8b4cea2710

View File

@ -8,3 +8,7 @@ Security
PSA functions are owned exclusively by the PSA core for the duration of PSA functions are owned exclusively by the PSA core for the duration of
the function call, copying may be disabled by setting the function call, copying may be disabled by setting
MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS. MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS.
Bugfix
* Fully support arbitrary overlap between inputs and outputs of PSA
functions. Note that overlap is only partial supported when
MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS is set.