HomeSort by relevance Sort by last modified time
    Searched defs:encr_type (Results 1 - 5 of 5) sorted by null

  /external/wpa_supplicant_8/src/wps/
wps_enrollee.c 275 u16 encr_type = wps->wps->ap_encr_type; local
283 if (encr_type & WPS_ENCR_AES)
284 encr_type = WPS_ENCR_AES;
285 else if (encr_type & WPS_ENCR_TKIP)
286 encr_type = WPS_ENCR_TKIP;
289 wpa_printf(MSG_DEBUG, "WPS: * Encryption Type (0x%x)", encr_type);
292 wpabuf_put_be16(msg, encr_type);
736 if (!(wps->cred.encr_type &
738 if (wps->cred.encr_type & WPS_ENCR_WEP) {
746 "invalid encr_type 0x%x", wps->cred.encr_type)
    [all...]
wps_attr_parse.h 46 const u8 *encr_type; /* 2 octets */ member in struct:wps_parse_attr
wps_i.h 87 * encr_type - Available encryption types
89 u16 encr_type; member in struct:wps_data
wps.h 38 * @encr_type: Encryption Type (WPS_ENCR_NONE, .. flags)
51 u16 encr_type; member in struct:wps_credential
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new.c 730 char *encr_type[3]; /* we have three possible encryption types */ local
760 if (cred->encr_type & WPS_ENCR_NONE)
761 encr_type[et_num++] = "none";
762 if (cred->encr_type & WPS_ENCR_TKIP)
763 encr_type[et_num++] = "tkip";
764 if (cred->encr_type & WPS_ENCR_AES)
765 encr_type[et_num++] = "aes";
778 (const char **) encr_type,
    [all...]

Completed in 61 milliseconds