Home
last modified time | relevance | path

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

/hal_infineon-latest/wifi-host-driver/WiFi_Host_Driver/inc/
Dwhd_wifi_api.h349 const uint8_t *security_key, uint8_t key_length);
366 …d_wifi_join_specific(whd_interface_t ifp, const whd_scan_result_t *ap, const uint8_t *security_key,
424 extern uint32_t whd_wifi_set_passphrase(whd_interface_t ifp, const uint8_t *security_key, uint8_t k…
435 extern uint32_t whd_wifi_sae_password(whd_interface_t ifp, const uint8_t *security_key, uint8_t key…
459 extern whd_result_t whd_wifi_set_pmk(whd_interface_t ifp, const uint8_t *security_key, uint8_t key_…
593 const uint8_t *security_key, uint8_t key_length, uint8_t channel);
/hal_infineon-latest/wifi-host-driver/WiFi_Host_Driver/src/
Dwhd_ap.c182 const uint8_t *security_key, uint8_t key_length, uint8_t channel) in whd_wifi_init_ap() argument
463 memcpy(psk->key, security_key, key_length); in whd_wifi_init_ap()
514 whd_wifi_sae_password(ifp, security_key, key_length); in whd_wifi_init_ap()
521 whd_wifi_sae_password(ifp, security_key, key_length); in whd_wifi_init_ap()
526 memcpy(psk->key, security_key, key_length); in whd_wifi_init_ap()
Dwhd_wifi_api.c313 const uint8_t *security_key,
320 const uint8_t *security_key, uint8_t key_length,
572 uint32_t whd_wifi_set_passphrase(whd_interface_t ifp, const uint8_t *security_key, uint8_t key_leng… in whd_wifi_set_passphrase() argument
578 if (!ifp || !security_key || (key_length < KEY_MIN_LEN) || (key_length > KEY_MAX_LEN) ) in whd_wifi_set_passphrase()
592 memcpy(psk->key, security_key, key_length); in whd_wifi_set_passphrase()
604 uint32_t whd_wifi_sae_password(whd_interface_t ifp, const uint8_t *security_key, uint8_t key_length) in whd_wifi_sae_password() argument
610 if (!ifp || !security_key || (key_length == 0) || (key_length > WSEC_MAX_SAE_PASSWORD_LEN) ) in whd_wifi_sae_password()
625 memcpy(sae_password->password, security_key, key_length); in whd_wifi_sae_password()
671 whd_result_t whd_wifi_set_pmk(whd_interface_t ifp, const uint8_t *security_key, uint8_t key_length) in whd_wifi_set_pmk() argument
678 if (!ifp || !security_key || (key_length != WSEC_PMK_LEN) ) in whd_wifi_set_pmk()
[all …]