Home
last modified time | relevance | path

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

/hal_nxp-3.6.0/mcux/mcux-sdk/middleware/edgefast_wifi/source/
Dwpl_nxp.c612 size_t password_len = strlen(password); in WPL_AddNetworkWithSecurity() local
614 if (password_len == 0) in WPL_AddNetworkWithSecurity()
618 …else if ((password_len >= WPL_WIFI_PASSWORD_MIN_LEN) && (password_len <= WPL_WIFI_PASSWORD_LENGTH)) in WPL_AddNetworkWithSecurity()
626 sta_network.security.password_len = password_len; in WPL_AddNetworkWithSecurity()
627 strncpy(sta_network.security.password, password, password_len); in WPL_AddNetworkWithSecurity()
628 sta_network.security.psk_len = password_len; in WPL_AddNetworkWithSecurity()
629 strncpy(sta_network.security.psk, password, password_len); in WPL_AddNetworkWithSecurity()
635 sta_network.security.password_len = strlen(password); in WPL_AddNetworkWithSecurity()