blob: 855265788e3430d45d8a3432dd56804cb5f21df4 [file] [log] [blame]
Ben Taylor889ac062025-07-16 15:03:31 +01001Removals
Ben Taylor4e7b2542025-08-04 08:19:45 +01002 * Remove MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT. Now only the
Ben Taylordbb15e62025-07-23 10:58:33 +01003 standard version (defined in RFC 9146) of DTLS connection ID is supported.
Ben Taylor30483922025-08-05 08:09:10 +01004 * 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 Taylor8bd8e912025-08-06 08:31:13 +010010 * Remove mbedtls_ssl_conf_sig_hashes(). Use mbedtls_ssl_conf_sig_algs()
Ben Taylor71fcb1c2025-08-05 08:11:12 +010011 instead.