Home
last modified time | relevance | path

Searched refs:r_bootstrap (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-3.6.0/components/wpa_supplicant/esp_supplicant/src/
Desp_dpp.c92 const u8 *r_bootstrap, *i_bootstrap; in esp_dpp_rx_auth_req() local
99 r_bootstrap = dpp_get_attr(dpp_data, len, DPP_ATTR_R_BOOTSTRAP_KEY_HASH, in esp_dpp_rx_auth_req()
101 if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) { in esp_dpp_rx_auth_req()
106 wpa_hexdump(MSG_MSGDUMP, "DPP: Responder Bootstrapping Key Hash", r_bootstrap, r_bootstrap_len); in esp_dpp_rx_auth_req()
120 if (os_memcmp(own_bi->pubkey_hash, r_bootstrap, SHA256_MAC_LEN)) { in esp_dpp_rx_auth_req()
/hal_espressif-3.6.0/components/wpa_supplicant/src/common/
Ddpp.c2954 const u8 *r_bootstrap, *i_bootstrap, *wrapped_data, *status, *r_proto, in dpp_auth_resp_rx() local
2989 r_bootstrap = dpp_get_attr(attr_start, attr_len, in dpp_auth_resp_rx()
2992 if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) { in dpp_auth_resp_rx()
2998 r_bootstrap, r_bootstrap_len); in dpp_auth_resp_rx()
2999 if (os_memcmp(r_bootstrap, auth->peer_bi->pubkey_hash, in dpp_auth_resp_rx()
3333 const u8 *r_bootstrap, *i_bootstrap, *wrapped_data, *status, *i_auth; in dpp_auth_conf_rx() local
3369 r_bootstrap = dpp_get_attr(attr_start, attr_len, in dpp_auth_conf_rx()
3372 if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) { in dpp_auth_conf_rx()
3378 r_bootstrap, r_bootstrap_len); in dpp_auth_conf_rx()
3379 if (os_memcmp(r_bootstrap, auth->own_bi->pubkey_hash, in dpp_auth_conf_rx()
[all …]
Ddpp.h578 const u8 *r_bootstrap,