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

  /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) {
245 wps_process_cred_encr_type(cred, attr->encr_type) ||
264 wps_process_cred_encr_type(cred, attr->encr_type) ||
wps_attr_parse.h 46 const u8 *encr_type; /* 2 octets */ member in struct:wps_parse_attr
wps_registrar.c     [all...]
wps_enrollee.c 699 if (!(wps->cred.encr_type &
701 if (wps->cred.encr_type & WPS_ENCR_WEP) {
709 "invalid encr_type 0x%x", wps->cred.encr_type);
798 if (!(cred.encr_type & (WPS_ENCR_NONE | WPS_ENCR_TKIP | WPS_ENCR_AES)))
800 if (cred.encr_type & WPS_ENCR_WEP) {
808 "invalid encr_type 0x%x", cred.encr_type);
814 if ((cred.encr_type & (WPS_ENCR_TKIP | WPS_ENCR_AES)) ==
827 if ((cred.encr_type & (WPS_ENCR_TKIP | WPS_ENCR_AES)) == WPS_ENCR_TKIP
    [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_i.h 87 * encr_type - Available encryption types
89 u16 encr_type; member in struct:wps_data
wps_attr_parse.c 398 attr->encr_type = pos;
wps_common.c 371 data.encr_type = wps->encr_types;
393 cred.encr_type = WPS_ENCR_TKIP | WPS_ENCR_AES;
wps.h 37 * @encr_type: Encryption Type (WPS_ENCR_NONE, .. flags)
50 u16 encr_type; member in struct:wps_credential
  /external/wpa_supplicant_8/src/eap_peer/
eap_wsc.c 108 cred->encr_type = WPS_ENCR_NONE;
111 cred->encr_type = WPS_ENCR_WEP;
114 cred->encr_type = WPS_ENCR_TKIP;
116 cred->encr_type = WPS_ENCR_AES;
  /external/wpa_supplicant_8/src/ap/
wps_hostapd.c 350 if (cred->encr_type & WPS_ENCR_AES)
352 if (cred->encr_type & WPS_ENCR_TKIP)
418 wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
444 hapd->wps->encr_types = cred->encr_type;
446 hapd->wps->ap_encr_type = cred->encr_type;
533 if (cred->encr_type & WPS_ENCR_AES) {
537 if (cred->encr_type & WPS_ENCR_TKIP) {
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wps_supplicant.c 337 wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
422 switch (cred->encr_type) {
729 "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x "
732 cred->auth_type, cred->encr_type, key_str);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new.c 715 char *encr_type[3]; /* we have three possible encryption types */ local
745 if (cred->encr_type & WPS_ENCR_NONE)
746 encr_type[et_num++] = "none";
747 if (cred->encr_type & WPS_ENCR_TKIP)
748 encr_type[et_num++] = "tkip";
749 if (cred->encr_type & WPS_ENCR_AES)
750 encr_type[et_num++] = "aes";
767 (const char **) encr_type,
    [all...]

Completed in 240 milliseconds