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

Remove instances of camelCase in TLS 1.3 key schedule

Signed-off-by: Hanno Becker <hanno.becker@arm.com>
This commit is contained in:
Hanno Becker
2020-09-08 11:01:00 +01:00
parent fb08096b9b
commit 493ea7f4ae
4 changed files with 18 additions and 18 deletions

View File

@ -129,8 +129,8 @@ int mbedtls_ssl_tls1_3_hkdf_expand_label(
* This must be a readable buffer of size \p slen Bytes
* \param slen Length of the secrets \p client_secret and
* \p server_secret in Bytes.
* \param keyLen The desired length of the key to be extracted in Bytes.
* \param ivLen The desired length of the IV to be extracted in Bytes.
* \param key_len The desired length of the key to be extracted in Bytes.
* \param iv_len The desired length of the IV to be extracted in Bytes.
* \param keys The address of the structure holding the generated
* keys and IVs.
*
@ -142,7 +142,7 @@ int mbedtls_ssl_tls1_3_make_traffic_keys(
mbedtls_md_type_t hash_alg,
const unsigned char *client_secret,
const unsigned char *server_secret,
size_t slen, size_t keyLen, size_t ivLen,
size_t slen, size_t key_len, size_t iv_len,
mbedtls_ssl_key_set *keys );
/**