From d0498803a131c2822d4984873ead6e6b14d4ecd4 Mon Sep 17 00:00:00 2001 From: Ben Taylor Date: Mon, 3 Feb 2025 11:33:25 +0000 Subject: [PATCH] Correct typos in comments Correct the typos in the mbedtls_ssl_ticket_setup function docs Signed-off-by: Ben Taylor --- include/mbedtls/ssl_ticket.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/include/mbedtls/ssl_ticket.h b/include/mbedtls/ssl_ticket.h index 6dfe371a2..ef97e8f02 100644 --- a/include/mbedtls/ssl_ticket.h +++ b/include/mbedtls/ssl_ticket.h @@ -92,12 +92,9 @@ void mbedtls_ssl_ticket_init(mbedtls_ssl_ticket_context *ctx); * \param ctx Context to be set up * \param f_rng RNG callback function (mandatory) * \param p_rng RNG callback context - * \param alg Cryptographic algorithm to use recomended value - * PSA_ALG_GCM from include/psa/crypto_values.h. - * \param key_type Cryptographic key type to use recomended value - * PSA_KEY_TYPE_AES from include/psa/crypto_values.h. - * \param key_bits Cryptographic key type to use recomended value - * PSA_KEY_TYPE_AES from include/psa/crypto_values.h. + * \param alg AEAD cipher to use for ticket protection. + * \param key_type Cryptographic key type to use. + * \param key_bits Cryptographic key size to use in bits. * \param lifetime Tickets lifetime in seconds * Recommended value: 86400 (one day). *