HomeSort by relevance Sort by last modified time
    Searched refs:encr_type (Results 1 - 14 of 14) 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) {
255 wps_process_cred_encr_type(cred, attr->encr_type) ||
274 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 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_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 372 data.encr_type = wps->encr_types;
394 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
  /tools/test/connectivity/acts/tests/google/wifi/aware/functional/
DataPathTest.py 133 encr_type,
141 encr_type: Encryption type, one of ENCR_TYPE_*
144 passphrase_to_use: The passphrase to use if encr_type=ENCR_TYPE_PASSPHRASE
152 if encr_type == self.ENCR_TYPE_PASSPHRASE:
154 elif encr_type == self.ENCR_TYPE_PMK:
212 def run_oob_data_path_test(self, encr_type, use_peer_id):
216 encr_type: Encryption type, one of ENCR_TYPE_*
245 if encr_type == self.ENCR_TYPE_PASSPHRASE:
247 elif encr_type == self.ENCR_TYPE_PMK:
434 # names is: test_ib_<pub_type>_<sub_type>_<encr_type>_<peer_spec
    [all...]
  /external/wpa_supplicant_8/src/ap/
wps_hostapd.c 344 if (cred->encr_type & WPS_ENCR_AES) {
350 if (cred->encr_type & WPS_ENCR_TKIP)
415 wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
441 hapd->wps->encr_types = cred->encr_type;
442 hapd->wps->encr_types_rsn = cred->encr_type;
443 hapd->wps->encr_types_wpa = cred->encr_type;
445 hapd->wps->ap_encr_type = cred->encr_type;
537 if (cred->encr_type & WPS_ENCR_AES) {
545 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 238 milliseconds