diff --git a/components/bt/esp_ble_mesh/common/crypto_mbedtls.c b/components/bt/esp_ble_mesh/common/crypto_mbedtls.c index bfafe70d4a2..1f73f4951b2 100644 --- a/components/bt/esp_ble_mesh/common/crypto_mbedtls.c +++ b/components/bt/esp_ble_mesh/common/crypto_mbedtls.c @@ -347,8 +347,8 @@ void bt_mesh_set_private_key_raw(const uint8_t pri_key[32]) goto cleanup; } - BT_DBG("Pubkey:%s", bt_hex(dh_pair.public_key, PUB_KEY_SIZE)); - BT_DBG("Privkey:%s", bt_hex(dh_pair.private_key, PRIV_KEY_SIZE)); + // BT_DBG("Pubkey:%s", bt_hex(dh_pair.public_key, PUB_KEY_SIZE)); + // BT_DBG("Privkey:%s", bt_hex(dh_pair.private_key, PRIV_KEY_SIZE)); dh_pair.is_ready = true; cleanup: diff --git a/components/bt/esp_ble_mesh/common/crypto_psa.c b/components/bt/esp_ble_mesh/common/crypto_psa.c index ebb090b567d..47ffbeca095 100644 --- a/components/bt/esp_ble_mesh/common/crypto_psa.c +++ b/components/bt/esp_ble_mesh/common/crypto_psa.c @@ -380,7 +380,7 @@ void bt_mesh_set_private_key_raw(const uint8_t pri_key[32]) psa_status_t status; size_t key_len; - BT_DBG("Privkey:%s", bt_hex(pri_key, PRIV_KEY_SIZE)); + // BT_DBG("Privkey:%s", bt_hex(pri_key, PRIV_KEY_SIZE)); /* Destroy any existing key */ if (dh_pair.priv_key_id != PSA_KEY_ID_NULL) { @@ -414,7 +414,7 @@ void bt_mesh_set_private_key_raw(const uint8_t pri_key[32]) return; } - BT_DBG("Pubkey:%s", bt_hex(&dh_pair.public_key[1], PUB_KEY_SIZE)); + // BT_DBG("Pubkey:%s", bt_hex(&dh_pair.public_key[1], PUB_KEY_SIZE)); dh_pair.is_ready = true; psa_reset_key_attributes(&attributes); } diff --git a/components/bt/esp_ble_mesh/common/crypto_tc.c b/components/bt/esp_ble_mesh/common/crypto_tc.c index 11979484e43..2db7f1daf34 100644 --- a/components/bt/esp_ble_mesh/common/crypto_tc.c +++ b/components/bt/esp_ble_mesh/common/crypto_tc.c @@ -236,8 +236,8 @@ void bt_mesh_set_private_key_raw(const uint8_t pri_key[32]) return; } - BT_DBG("Pubkey:%s", bt_hex(dh_pair.public_key, PUB_KEY_SIZE)); - BT_DBG("Privkey:%s", bt_hex(dh_pair.private_key, PRIV_KEY_SIZE)); + // BT_DBG("Pubkey:%s", bt_hex(dh_pair.public_key, PUB_KEY_SIZE)); + // BT_DBG("Privkey:%s", bt_hex(dh_pair.private_key, PRIV_KEY_SIZE)); dh_pair.is_ready = true; }