Home
last modified time | relevance | path

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

/hal_infineon-3.4.0/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_…
585 const uint8_t *security_key, uint8_t key_length, uint8_t channel);
/hal_infineon-3.4.0/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.c314 const uint8_t *security_key,
321 const uint8_t *security_key, uint8_t key_length,
573 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
579 if (!ifp || !security_key || (key_length < KEY_MIN_LEN) || (key_length > KEY_MAX_LEN) ) in whd_wifi_set_passphrase()
593 memcpy(psk->key, security_key, key_length); in whd_wifi_set_passphrase()
605 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
611 if (!ifp || !security_key || (key_length == 0) || (key_length > WSEC_MAX_SAE_PASSWORD_LEN) ) in whd_wifi_sae_password()
626 memcpy(sae_password->password, security_key, key_length); in whd_wifi_sae_password()
672 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
679 if (!ifp || !security_key || (key_length != WSEC_PMK_LEN) ) in whd_wifi_set_pmk()
[all …]