2021-06-04 00:19:53 +02:00
|
|
|
Changes
|
|
|
|
* config.h has been split into build_info.h and mbedtls_config.h
|
|
|
|
build_info.h is intended to be included from C code directly, while
|
2021-06-16 09:10:41 +02:00
|
|
|
mbedtls_config.h is intended to be edited by end users wishing to
|
2021-06-04 00:19:53 +02:00
|
|
|
change the build configuration, and should generally only be included from
|
|
|
|
build_info.h.
|
|
|
|
* The handling of MBEDTLS_CONFIG_FILE has been moved into build_info.h.
|
2021-06-22 10:03:02 +02:00
|
|
|
* A config file version symbol, MBEDTLS_CONFIG_VERSION was introduced.
|
2021-06-28 10:26:11 +01:00
|
|
|
Defining it to a particular value will ensure that Mbed TLS interprets
|
2021-06-21 17:14:41 +02:00
|
|
|
the config file in a way that's compatible with the config file format
|
2021-06-28 10:26:11 +01:00
|
|
|
used by the Mbed TLS release whose MBEDTLS_VERSION_NUMBER has the same
|
2021-06-22 10:03:02 +02:00
|
|
|
value.
|
2021-06-28 10:26:11 +01:00
|
|
|
The only value supported by Mbed TLS 3.0.0 is 0x03000000.
|