/external/wpa_supplicant_8/src/wps/ |
wps_attr_process.c | 139 const u8 *encr_type) 141 if (encr_type == NULL) { 147 cred->encr_type = WPA_GET_BE16(encr_type); 149 cred->encr_type); 175 cred->encr_type == WPS_ENCR_NONE) { 309 wps_process_cred_encr_type(cred, attr->encr_type) || 335 wps_process_cred_encr_type(cred, attr->encr_type) ||
|
wps_enrollee.c | 277 u16 encr_type = wps->wps->encr_types; local 281 if (encr_type & WPS_ENCR_AES) 282 encr_type = WPS_ENCR_AES; 283 else if (encr_type & WPS_ENCR_TKIP) 284 encr_type = WPS_ENCR_TKIP; 286 if (encr_type & WPS_ENCR_WEP) 287 encr_type = WPS_ENCR_WEP; 288 else if (encr_type & WPS_ENCR_NONE) 289 encr_type = WPS_ENCR_NONE; 292 wpa_printf(MSG_DEBUG, "WPS: * Encryption Type (0x%x)", encr_type); [all...] |
wps_attr_parse.h | 46 const u8 *encr_type; /* 2 octets */ member in struct:wps_parse_attr
|
wps_i.h | 84 * encr_type - Available encryption types 86 u16 encr_type; member in struct:wps_data
|
wps_registrar.c | [all...] |
wps_validate.c | 986 const u8 *encr_type, int mandatory) 996 if (((encr_type == NULL || WPA_GET_BE16(encr_type) != WPS_ENCR_WEP) && 1042 wps_validate_encr_type(attr.encr_type, 1) || 1045 attr.encr_type, 1) || [all...] |
wps.h | 37 * @encr_type: Encryption Type (WPS_ENCR_NONE, .. flags) 51 u16 encr_type; member in struct:wps_credential
|
wps_attr_parse.c | 387 attr->encr_type = pos;
|
wps_common.c | 342 data.encr_type = wps->encr_types;
|
/external/wpa_supplicant_8/src/ap/ |
wps_hostapd.c | 320 if (cred->encr_type & WPS_ENCR_AES) 322 if (cred->encr_type & WPS_ENCR_TKIP) 358 if (cred->encr_type & WPS_ENCR_WEP && cred->key_idx > 0 && 417 wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type); 443 hapd->wps->encr_types = cred->encr_type; 530 if (cred->encr_type & WPS_ENCR_AES) { 534 if (cred->encr_type & WPS_ENCR_TKIP) { 565 if (cred->encr_type & WPS_ENCR_WEP && cred->key_idx <= 4) { [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_wsc.c | 108 cred->encr_type = WPS_ENCR_NONE; 110 cred->encr_type = WPS_ENCR_WEP; 112 cred->encr_type = WPS_ENCR_TKIP; 114 cred->encr_type = WPS_ENCR_AES;
|
/external/wpa_supplicant_8/wpa_supplicant/ |
wps_supplicant.c | 258 wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type); 333 switch (cred->encr_type) { 679 "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x " 682 cred->auth_type, cred->encr_type, key_str); [all...] |
README-WPS | 315 WPS-ER-AP-SETTINGS uuid=fd91b4ec-e3fa-5891-a57d-8c59efeed1d2 ssid=test-wps auth_type=0x0020 encr_type=0x0008 key=12345678
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new.c | 714 char *encr_type[4]; /* we have four possible encryption types */ local 747 if (cred->encr_type & WPS_ENCR_NONE) 748 encr_type[et_num++] = "none"; 749 if (cred->encr_type & WPS_ENCR_WEP) 750 encr_type[et_num++] = "wep"; 751 if (cred->encr_type & WPS_ENCR_TKIP) 752 encr_type[et_num++] = "tkip"; 753 if (cred->encr_type & WPS_ENCR_AES) 754 encr_type[et_num++] = "aes"; 771 (const char **) encr_type, [all...] |