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

Merge pull request #10496 from JuhaPekkaa/juke/change-loglevel

Update log level for mbedtls_ssl_check_record and PSA-based ECDH computation
This commit is contained in:
Manuel Pégourié-Gonnard
2025-11-12 09:33:39 +00:00
committed by GitHub
3 changed files with 5 additions and 5 deletions

View File

@@ -221,7 +221,7 @@ int mbedtls_ssl_check_record(mbedtls_ssl_context const *ssl,
size_t buflen)
{
int ret = 0;
MBEDTLS_SSL_DEBUG_MSG(1, ("=> mbedtls_ssl_check_record"));
MBEDTLS_SSL_DEBUG_MSG(3, ("=> mbedtls_ssl_check_record"));
MBEDTLS_SSL_DEBUG_BUF(3, "record buffer", buf, buflen);
/* We don't support record checking in TLS because
@@ -263,7 +263,7 @@ exit:
ret = MBEDTLS_ERR_SSL_UNEXPECTED_RECORD;
}
MBEDTLS_SSL_DEBUG_MSG(1, ("<= mbedtls_ssl_check_record"));
MBEDTLS_SSL_DEBUG_MSG(3, ("<= mbedtls_ssl_check_record"));
return ret;
}

View File

@@ -2304,7 +2304,7 @@ static int ssl_write_client_key_exchange(mbedtls_ssl_context *ssl)
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.
@@ -2412,7 +2412,7 @@ static int ssl_write_client_key_exchange(mbedtls_ssl_context *ssl)
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.

View File

@@ -2683,7 +2683,7 @@ curve_matching_done:
psa_key_type_t key_type = PSA_KEY_TYPE_NONE;
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. */
if (mbedtls_ssl_get_psa_curve_info_from_tls_id(*curr_tls_id,