1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

fix various issues

Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
Jerry Yu
2021-10-08 15:14:45 +08:00
parent d96a5c2d86
commit c1ddeef53a
4 changed files with 14 additions and 21 deletions

View File

@ -534,22 +534,18 @@ int mbedtls_ssl_tls13_populate_transform( mbedtls_ssl_transform *transform,
/*
* TLS 1.3 key schedule evolutions
*
* Early Data -> Handshake -> Application
* Early -> Handshake -> Application
*
* Small wrappers around mbedtls_ssl_tls1_3_evolve_secret().
*/
/**
* \brief Begin TLS 1.3 key schedule by calculating early secret
* from chosen PSK.
* \brief Begin TLS 1.3 key schedule by calculating early secret.
*
* The TLS 1.3 key schedule can be viewed as a simple state machine
* with states Initial -> Early -> Handshake -> Application, and
* this function represents the Initial -> Early transition.
*
* In the early stage, mbedtls_ssl_tls1_3_generate_early_data_keys()
* can be used to derive the 0-RTT traffic keys.
*
* \param ssl The SSL context to operate on.
*
* \returns \c 0 on success.