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_enrollee.c 274 u16 encr_type = wps->wps->ap_encr_type; local
282 if (encr_type & WPS_ENCR_AES)
283 encr_type = WPS_ENCR_AES;
284 else if (encr_type & WPS_ENCR_TKIP)
285 encr_type = WPS_ENCR_TKIP;
288 wpa_printf(MSG_DEBUG, "WPS: * Encryption Type (0x%x)", encr_type);
291 wpabuf_put_be16(msg, encr_type);
735 if (!(wps->cred.encr_type &
737 if (wps->cred.encr_type & WPS_ENCR_WEP) {
745 "invalid encr_type 0x%x", wps->cred.encr_type)
    [all...]
wps_registrar.c     [all...]
wps_validate.c 988 const u8 *encr_type, int mandatory)
998 if (((encr_type == NULL || WPA_GET_BE16(encr_type) != WPS_ENCR_WEP) &&
1044 wps_validate_encr_type(attr.encr_type, 1) ||
1047 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 369 data.encr_type = wps->encr_types;
391 cred.encr_type = WPS_ENCR_TKIP | WPS_ENCR_AES;
wps.h 38 * @encr_type: Encryption Type (WPS_ENCR_NONE, .. flags)
51 u16 encr_type; member in struct:wps_credential
  /external/wpa_supplicant_8/src/ap/
wps_hostapd.c 350 if (cred->encr_type & WPS_ENCR_AES) {
356 if (cred->encr_type & WPS_ENCR_TKIP)
421 wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
447 hapd->wps->encr_types = cred->encr_type;
448 hapd->wps->encr_types_rsn = cred->encr_type;
449 hapd->wps->encr_types_wpa = cred->encr_type;
451 hapd->wps->ap_encr_type = cred->encr_type;
543 if (cred->encr_type & WPS_ENCR_AES) {
551 if (cred->encr_type & WPS_ENCR_TKIP) {
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_wsc.c 104 cred->encr_type = WPS_ENCR_NONE;
107 cred->encr_type = WPS_ENCR_WEP;
110 cred->encr_type = WPS_ENCR_TKIP;
112 cred->encr_type = WPS_ENCR_AES;
  /external/wpa_supplicant_8/wpa_supplicant/
wps_supplicant.c 394 wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
480 switch (cred->encr_type) {
803 "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x "
806 cred->auth_type, cred->encr_type, key_str);
    [all...]
  /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 2159 milliseconds