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 268 u16 encr_type = wps->wps->encr_types; local
272 if (encr_type & WPS_ENCR_AES)
273 encr_type = WPS_ENCR_AES;
274 else if (encr_type & WPS_ENCR_TKIP)
275 encr_type = WPS_ENCR_TKIP;
277 if (encr_type & WPS_ENCR_WEP)
278 encr_type = WPS_ENCR_WEP;
279 else if (encr_type & WPS_ENCR_NONE)
280 encr_type = WPS_ENCR_NONE;
283 wpa_printf(MSG_DEBUG, "WPS: * Encryption Type (0x%x)", encr_type);
    [all...]
wps_i.h 84 * encr_type - Available encryption types
86 u16 encr_type; member in struct:wps_data
wps_attr_parse.h 46 const u8 *encr_type; /* 2 octets */ member in struct:wps_parse_attr
wps.h 37 * @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 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...]

Completed in 301 milliseconds