mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'contrib/github_pr_8500' into 'master'
Fix compiler error in mbedtls (GitHub PR) Closes IDFGH-6879 and IDFGH-6881 See merge request espressif/esp-idf!17380
This commit is contained in:
commit
5f1c6ac605
@ -801,7 +801,7 @@ void crypto_debug_print_ec_key(const char *title, struct crypto_key *key)
|
||||
mbedtls_ecp_keypair *ecp = mbedtls_pk_ec( *pkey );
|
||||
u8 x[32], y[32], d[32];
|
||||
wpa_printf(MSG_ERROR, "curve: %s\n",
|
||||
mbedtls_ecp_curve_info_from_grp_id( ecp->grp.id )->name );
|
||||
mbedtls_ecp_curve_info_from_grp_id( ecp->MBEDTLS_PRIVATE(grp).id )->name );
|
||||
int len = mbedtls_mpi_size((mbedtls_mpi *)crypto_ec_get_prime((struct crypto_ec *)crypto_ec_get_group_from_key(key)));
|
||||
|
||||
wpa_printf(MSG_ERROR, "prime len is %d\n", len);
|
||||
|
2
examples/wifi/roaming/sdkconfig.ci
Normal file
2
examples/wifi/roaming/sdkconfig.ci
Normal file
@ -0,0 +1,2 @@
|
||||
# Add CI coverage for WPA supplicant debug feature
|
||||
CONFIG_WPA_DEBUG_PRINT=y
|
Loading…
Reference in New Issue
Block a user