1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-10 05:03:02 +03:00

Remove references to MBEDTLS_USER_CONFIG_VERSION

Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
This commit is contained in:
Bence Szépkúti
2021-06-22 10:03:02 +02:00
parent 1cafe5ce20
commit 60c863411c
2 changed files with 10 additions and 16 deletions

View File

@@ -5,12 +5,9 @@ Changes
change the build configuration, and should generally only be included from change the build configuration, and should generally only be included from
build_info.h. build_info.h.
* The handling of MBEDTLS_CONFIG_FILE has been moved into build_info.h. * The handling of MBEDTLS_CONFIG_FILE has been moved into build_info.h.
* Config file symbols MBEDTLS_CONFIG_VERSION and MBEDTLS_USER_CONFIG_VERSION * A config file version symbol, MBEDTLS_CONFIG_VERSION was introduced.
were introduced for use in MBEDTLS_CONFIG_FILE and Defining it to a particular value will ensure that mbedtls interprets
MBEDTLS_USER_CONFIG_FILE respectively.
Defining them to a particular value will ensure that mbedtls interprets
the config file in a way that's compatible with the config file format the config file in a way that's compatible with the config file format
indicated by the value. used by the mbedtls release whose MBEDTLS_VERSION_NUMBER has the same
The config file versions are based on the value of MBEDTLS_VERSION_NUMBER value.
of the mbedtls version that first introduced that config file format. The only value supported by mbedtls 3.0.0 is 0x03000000.
The only value currently supported is 0x03000000.

View File

@@ -9,12 +9,9 @@ change the build configuration, and should generally only be included from
into `build_info.h`, including the handling of the `MBEDTLS_CONFIG_FILE` into `build_info.h`, including the handling of the `MBEDTLS_CONFIG_FILE`
macro. macro.
Config file symbols `MBEDTLS_CONFIG_VERSION` and `MBEDTLS_USER_CONFIG_VERSION` A config file version symbol, `MBEDTLS_CONFIG_VERSION` was introduced.
were introduced for use in `MBEDTLS_CONFIG_FILE` and Defining it to a particular value will ensure that mbedtls interprets
`MBEDTLS_USER_CONFIG_FILE` respectively.
Defining them to a particular value will ensure that mbedtls interprets
the config file in a way that's compatible with the config file format the config file in a way that's compatible with the config file format
indicated by the value. used by the mbedtls release whose `MBEDTLS_VERSION_NUMBER` has the same
The config file versions are based on the value of `MBEDTLS_VERSION_NUMBER` value.
of the mbedtls version that first introduced that config file format. The only value supported by mbedtls 3.0.0 is `0x03000000`.
The only value currently supported is `0x03000000`.