Bence Szépkúti | 90b79ab | 2021-06-04 00:19:53 +0200 | [diff] [blame] | 1 | Changes |
| 2 | * config.h has been split into build_info.h and mbedtls_config.h |
| 3 | build_info.h is intended to be included from C code directly, while |
Bence Szépkúti | 8d9132f | 2021-06-16 09:10:41 +0200 | [diff] [blame] | 4 | mbedtls_config.h is intended to be edited by end users wishing to |
Bence Szépkúti | 90b79ab | 2021-06-04 00:19:53 +0200 | [diff] [blame] | 5 | change the build configuration, and should generally only be included from |
| 6 | build_info.h. |
| 7 | * The handling of MBEDTLS_CONFIG_FILE has been moved into build_info.h. |
Bence Szépkúti | 60c8634 | 2021-06-22 10:03:02 +0200 | [diff] [blame] | 8 | * A config file version symbol, MBEDTLS_CONFIG_VERSION was introduced. |
Bence Szépkúti | 1b2a883 | 2021-06-28 10:26:11 +0100 | [diff] [blame] | 9 | Defining it to a particular value will ensure that Mbed TLS interprets |
Bence Szépkúti | 36da4cc | 2021-06-21 17:14:41 +0200 | [diff] [blame] | 10 | the config file in a way that's compatible with the config file format |
Bence Szépkúti | 1b2a883 | 2021-06-28 10:26:11 +0100 | [diff] [blame] | 11 | used by the Mbed TLS release whose MBEDTLS_VERSION_NUMBER has the same |
Bence Szépkúti | 60c8634 | 2021-06-22 10:03:02 +0200 | [diff] [blame] | 12 | value. |
Bence Szépkúti | 1b2a883 | 2021-06-28 10:26:11 +0100 | [diff] [blame] | 13 | The only value supported by Mbed TLS 3.0.0 is 0x03000000. |