Remove experimental warnings related to early data

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron 2024-03-15 10:43:56 +01:00
parent 1987a7c068
commit 933aec86fd
2 changed files with 0 additions and 13 deletions

View File

@ -1854,9 +1854,6 @@
* Comment this to disable support for early data. If MBEDTLS_SSL_PROTO_TLS1_3 * Comment this to disable support for early data. If MBEDTLS_SSL_PROTO_TLS1_3
* is not enabled, this option does not have any effect on the build. * is not enabled, this option does not have any effect on the build.
* *
* This feature is experimental, not completed and thus not ready for
* production.
*
* \note The maximum amount of early data can be set with * \note The maximum amount of early data can be set with
* MBEDTLS_SSL_MAX_EARLY_DATA_SIZE. * MBEDTLS_SSL_MAX_EARLY_DATA_SIZE.
* *
@ -4145,10 +4142,6 @@
* *
* If MBEDTLS_SSL_EARLY_DATA is not defined, this default value does not * If MBEDTLS_SSL_EARLY_DATA is not defined, this default value does not
* have any impact on the build. * have any impact on the build.
*
* This feature is experimental, not completed and thus not ready for
* production.
*
*/ */
//#define MBEDTLS_SSL_MAX_EARLY_DATA_SIZE 1024 //#define MBEDTLS_SSL_MAX_EARLY_DATA_SIZE 1024

View File

@ -2097,9 +2097,6 @@ void mbedtls_ssl_conf_authmode(mbedtls_ssl_config *conf, int authmode);
* MBEDTLS_ERR_SSL_RECEIVED_EARLY_DATA indicating that some early data have * MBEDTLS_ERR_SSL_RECEIVED_EARLY_DATA indicating that some early data have
* been received. To read the early data, call mbedtls_ssl_read_early_data() * been received. To read the early data, call mbedtls_ssl_read_early_data()
* before calling the original function again. * before calling the original function again.
*
* \warning This interface is experimental and may change without notice.
*
*/ */
void mbedtls_ssl_conf_early_data(mbedtls_ssl_config *conf, void mbedtls_ssl_conf_early_data(mbedtls_ssl_config *conf,
int early_data_enabled); int early_data_enabled);
@ -2125,12 +2122,9 @@ void mbedtls_ssl_conf_early_data(mbedtls_ssl_config *conf,
* \param[in] conf The SSL configuration to use. * \param[in] conf The SSL configuration to use.
* \param[in] max_early_data_size The maximum amount of 0-RTT data. * \param[in] max_early_data_size The maximum amount of 0-RTT data.
* *
* \warning This interface is experimental and may change without notice.
*
* \warning This interface DOES NOT influence/limit the amount of early data * \warning This interface DOES NOT influence/limit the amount of early data
* that can be received through previously created and issued tickets, * that can be received through previously created and issued tickets,
* which clients may have stored. * which clients may have stored.
*
*/ */
void mbedtls_ssl_conf_max_early_data_size( void mbedtls_ssl_conf_max_early_data_size(
mbedtls_ssl_config *conf, uint32_t max_early_data_size); mbedtls_ssl_config *conf, uint32_t max_early_data_size);