1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-11-18 14:00:58 +03:00

ssl_tls12: change log level for ECDH computation

Signed-off-by: Juha-Pekka <juha-pekka.kesonen@nordicsemi.no>
This commit is contained in:
Juha-Pekka Kesonen
2025-11-05 15:05:23 +02:00
committed by Juha-Pekka
parent 8d0641675c
commit a535836d14
2 changed files with 3 additions and 3 deletions

View File

@@ -2764,7 +2764,7 @@ static int ssl_write_client_key_exchange(mbedtls_ssl_context *ssl)
header_len = 4; header_len = 4;
MBEDTLS_SSL_DEBUG_MSG(1, ("Perform PSA-based ECDH computation.")); MBEDTLS_SSL_DEBUG_MSG(3, ("Perform PSA-based ECDH computation."));
/* /*
* Generate EC private key for ECDHE exchange. * Generate EC private key for ECDHE exchange.
@@ -2936,7 +2936,7 @@ ecdh_calc_secret:
header_len += ssl->conf->psk_identity_len; header_len += ssl->conf->psk_identity_len;
MBEDTLS_SSL_DEBUG_MSG(1, ("Perform PSA-based ECDH computation.")); MBEDTLS_SSL_DEBUG_MSG(3, ("Perform PSA-based ECDH computation."));
/* /*
* Generate EC private key for ECDHE exchange. * Generate EC private key for ECDHE exchange.

View File

@@ -2982,7 +2982,7 @@ curve_matching_done:
psa_key_type_t key_type = PSA_KEY_TYPE_NONE; psa_key_type_t key_type = PSA_KEY_TYPE_NONE;
size_t ec_bits = 0; size_t ec_bits = 0;
MBEDTLS_SSL_DEBUG_MSG(1, ("Perform PSA-based ECDH computation.")); MBEDTLS_SSL_DEBUG_MSG(3, ("Perform PSA-based ECDH computation."));
/* Convert EC's TLS ID to PSA key type. */ /* Convert EC's TLS ID to PSA key type. */
if (mbedtls_ssl_get_psa_curve_info_from_tls_id(*curr_tls_id, if (mbedtls_ssl_get_psa_curve_info_from_tls_id(*curr_tls_id,