HomeSort by relevance Sort by last modified time
    Searched defs:psk (Results 26 - 34 of 34) sorted by null

12

  /external/wpa_supplicant_8/wpa_supplicant/
config_ssid.h 42 u8 psk[32]; member in struct:psk_list_entry
141 * psk - WPA pre-shared key (256 bits)
143 u8 psk[32]; member in struct:wpa_ssid
146 * psk_set - Whether PSK field is configured
153 * If this is set, psk will be generated using the SSID and passphrase
160 * ext_psk - PSK/passphrase name in external storage
162 * If this is set, PSK/passphrase will be fetched from external storage
321 * WEP) and WPA-PSK (with proto=RSN). In addition, key_mgmt=WPA-NONE
325 * CCMP, but not both), and psk must also be set (either directly or
config.c 296 wpa_printf(MSG_DEBUG, "PSK: External password '%s'",
319 wpa_hexdump_ascii_key(MSG_MSGDUMP, "PSK (ASCII passphrase)",
337 if (hexstr2bin(value, ssid->psk, PMK_LEN) ||
339 wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
348 wpa_hexdump_key(MSG_MSGDUMP, "PSK", ssid->psk, PMK_LEN);
374 return wpa_config_write_string_hex(ssid->psk, PMK_LEN);
502 if (os_strcmp(start, "WPA-PSK") == 0)
513 else if (os_strcmp(start, "FT-PSK") == 0)
519 else if (os_strcmp(start, "WPA-PSK-SHA256") == 0
1918 struct psk_list_entry *psk; local
    [all...]
wpa_supplicant.c 148 wpa_msg(wpa_s, MSG_INFO, "WPA: No PSK configured for "
155 os_memcpy(key, ssid->psk, 16);
160 os_memcpy(key, ssid->psk, 16);
166 os_memcpy(key, ssid->psk, 16 + 8);
167 os_memcpy(key + 16 + 8, ssid->psk + 16, 8);
1086 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT/PSK");
1104 "WPA: using KEY_MGMT PSK with SHA256");
1111 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT WPA-PSK");
1174 u8 psk[PMK_LEN]; local
1187 u8 psk[PMK_LEN]; local
    [all...]
p2p_supplicant.c 711 os_memcpy(s->psk, ssid->psk, 32);
808 const u8 *psk, const char *passphrase,
815 if (psk)
816 wpa_snprintf_hex(psk_txt, sizeof(psk_txt), psk, 32);
829 * Include PSK/passphrase only in the control interface message and
837 psk ? " psk=" : "", psk_txt,
921 ssid->psk_set ? ssid->psk : NULL,
1195 struct psk_list_entry *psk; local
6926 struct psk_list_entry *psk, *tmp; local
7061 struct hostapd_wpa_psk *psk, *prev, *rem; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth.c 1753 const u8 *psk; local
    [all...]
ap_config.h 103 u8 psk[PMK_LEN]; member in struct:hostapd_sta_wpa_psk_short
109 u8 psk[PMK_LEN]; member in struct:hostapd_wpa_psk
  /external/wpa_supplicant_8/src/wps/
wps.h 154 * use_psk_key - Use PSK format key in Credential
156 * Force PSK format to be used instead of ASCII passphrase when
157 * building Credential for an Enrollee. The PSK value is set in
158 * struct wpa_context::psk.
249 * new_psk_cb - Callback for new PSK
253 * @psk: The new PSK
254 * @psk_len: The length of psk in octets
257 * This callback is called when a new per-device PSK is provisioned.
260 const u8 *psk, size_t psk_len)
708 u8 psk[32]; member in struct:wps_context
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigStore.java 287 // As we keep deleted PSK WifiConfiguration for a while, the PSK of
288 // those deleted WifiConfiguration is set to this random unused PSK
607 return readNetworkVariablesFromSupplicantFile("psk");
1391 String psk = readNetworkVariableFromSupplicantFile(config.SSID, "psk"); local
3053 String psk = readNetworkVariableFromSupplicantFile(link.SSID, "psk"); local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver.h 594 * passphrase - RSN passphrase for PSK
596 * This value is made available only for WPA/WPA2-Personal (PSK) and
599 * this can be %NULL if passphrase was not used to generate the PSK. In
600 * that case, the psk field must be used to fetch the PSK.
605 * psk - RSN PSK (alternative for passphrase for PSK)
607 * This value is made available only for WPA/WPA2-Personal (PSK) and
609 * the 32-octet (256-bit) PSK, if available. The driver wrapper shoul
612 const u8 *psk; member in struct:wpa_driver_associate_params
    [all...]

Completed in 299 milliseconds

12