Ben Taylor | 889ac06 | 2025-07-16 15:03:31 +0100 | [diff] [blame] | 1 | Removals |
Ben Taylor | 4e7b254 | 2025-08-04 08:19:45 +0100 | [diff] [blame] | 2 | * Remove MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT. Now only the |
Ben Taylor | dbb15e6 | 2025-07-23 10:58:33 +0100 | [diff] [blame] | 3 | standard version (defined in RFC 9146) of DTLS connection ID is supported. |
Ben Taylor | 3048392 | 2025-08-05 08:09:10 +0100 | [diff] [blame] | 4 | * Remove mbedtls_ssl_conf_min_version(), mbedtls_ssl_conf_max_version(), and |
| 5 | the associated constants MBEDTLS_SSL_MAJOR_VERSION_x and |
| 6 | MBEDTLS_SSL_MINOR_VERSION_y. Use mbedtls_ssl_conf_min_tls_version() and |
| 7 | mbedtls_ssl_conf_max_tls_version() with MBEDTLS_SSL_VERSION_TLS1_y instead. |
| 8 | Note that the new names of the new constants use the TLS protocol versions, |
| 9 | unlike the old constants whose names are based on internal encodings. |
Ben Taylor | 8bd8e91 | 2025-08-06 08:31:13 +0100 | [diff] [blame] | 10 | * Remove mbedtls_ssl_conf_sig_hashes(). Use mbedtls_ssl_conf_sig_algs() |
Ben Taylor | 71fcb1c | 2025-08-05 08:11:12 +0100 | [diff] [blame] | 11 | instead. |