mirror of
https://github.com/espressif/mbedtls.git
synced 2026-06-05 21:14:47 +00:00
f004998303
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
14 lines
633 B
Plaintext
14 lines
633 B
Plaintext
API changes
|
|
* MBEDTLS_TIMING_C now requires MBEDTLS_HAVE_TIME to be enabled in the
|
|
TF-PSA-Crypto configuration, unless MBEDTLS_TIMING_ALT is enabled.
|
|
As a benefit, platforms where the default implementation is not
|
|
supported now only need to implement MBEDTLS_PLATFORM_MS_TIME_ALT.
|
|
* When MBEDTLS_TIMING_ALT is enabled, the function
|
|
mbedtls_timing_get_timer() now returns unsigned long long instead
|
|
of unsigned long.
|
|
|
|
Bugfix
|
|
* mbedtls_timing_get_delay() now correctly treats a timer as expired
|
|
after more than 2^32 ms (about 49 days) on platforms where long is
|
|
a 32-bit type. Fixes #10613.
|