Searched refs:wep (Results 1 – 16 of 16) sorted by relevance
/external/wpa_supplicant_8/src/ap/ |
D | ap_config.c | 571 hostapd_config_free_wep(&conf->ssid.wep); in hostapd_config_free_bss() 922 int wep, i; in hostapd_config_check_bss() local 924 wep = bss->default_wep_key_len > 0 || in hostapd_config_check_bss() 927 if (bss->ssid.wep.keys_set) { in hostapd_config_check_bss() 928 wep = 1; in hostapd_config_check_bss() 933 if (wep) { in hostapd_config_check_bss() 1039 bss->ssid.wep.keys_set && bss->wpa == 0) { in hostapd_config_check_bss() 1190 bss->ssid.wep.default_len = bss->default_wep_key_len; in hostapd_set_security_params() 1194 } else if (full_config && bss->ssid.wep.keys_set) { in hostapd_set_security_params() 1195 if (bss->ssid.wep.len[0] >= 13) in hostapd_set_security_params() [all …]
|
D | hostapd.c | 322 idx = ssid->wep.idx; in hostapd_broadcast_wep_set() 323 if (ssid->wep.default_len && in hostapd_broadcast_wep_set() 326 1, NULL, 0, ssid->wep.key[idx], in hostapd_broadcast_wep_set() 327 ssid->wep.len[idx])) { in hostapd_broadcast_wep_set() 537 if (hapd->conf->ssid.wep.default_len) { in hostapd_setup_encryption() 549 if (hapd->conf->ssid.wep.key[i] && in hostapd_setup_encryption() 551 i == hapd->conf->ssid.wep.idx, NULL, 0, in hostapd_setup_encryption() 552 hapd->conf->ssid.wep.key[i], in hostapd_setup_encryption() 553 hapd->conf->ssid.wep.len[i])) { in hostapd_setup_encryption() 558 if (hapd->conf->ssid.wep.key[i] && in hostapd_setup_encryption() [all …]
|
D | vlan_init.c | 28 if (!hapd->conf->ssid.wep.key[i]) in vlan_if_add()
|
D | wps_hostapd.c | 1151 } else if (conf->ssid.wep.keys_set && conf->ssid.wep.key[0]) { in hostapd_init_wps() 1152 wps->network_key = os_malloc(conf->ssid.wep.len[0]); in hostapd_init_wps() 1155 os_memcpy(wps->network_key, conf->ssid.wep.key[0], in hostapd_init_wps() 1156 conf->ssid.wep.len[0]); in hostapd_init_wps() 1157 wps->network_key_len = conf->ssid.wep.len[0]; in hostapd_init_wps()
|
D | ap_config.h | 102 struct hostapd_wep_keys wep; member
|
D | ieee802_11.c | 195 privacy = hapd->conf->ssid.wep.keys_set; in hostapd_own_capab_info() 4612 if (ssid->wep.key[i] && in hostapd_set_wds_encryption() 4614 i == ssid->wep.idx, NULL, 0, in hostapd_set_wds_encryption() 4615 ssid->wep.key[i], ssid->wep.len[i])) { in hostapd_set_wds_encryption()
|
D | beacon.c | 1313 params->privacy = hapd->conf->ssid.wep.keys_set || hapd->conf->wpa || in ieee802_11_build_ap_params()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | ap.c | 391 struct hostapd_wep_keys *wep = &bss->ssid.wep; in wpa_supplicant_conf_ap() local 396 wep->key[i] = os_memdup(ssid->wep_key[i], in wpa_supplicant_conf_ap() 398 if (wep->key[i] == NULL) in wpa_supplicant_conf_ap() 400 wep->len[i] = ssid->wep_key_len[i]; in wpa_supplicant_conf_ap() 402 wep->idx = ssid->wep_tx_keyidx; in wpa_supplicant_conf_ap() 403 wep->keys_set = 1; in wpa_supplicant_conf_ap() 464 bss->ssid.wep.default_len = bss->default_wep_key_len; in wpa_supplicant_conf_ap() 471 } else if (bss->ssid.wep.keys_set) { in wpa_supplicant_conf_ap() 473 if (bss->ssid.wep.len[0] >= 13) in wpa_supplicant_conf_ap()
|
/external/wpa_supplicant_8/hostapd/ |
D | config_file.c | 875 static int hostapd_config_read_wep(struct hostapd_wep_keys *wep, int keyidx, in hostapd_config_read_wep() argument 886 bin_clear_free(wep->key[keyidx], wep->len[keyidx]); in hostapd_config_read_wep() 887 wep->key[keyidx] = NULL; in hostapd_config_read_wep() 888 wep->len[keyidx] = 0; in hostapd_config_read_wep() 890 if (wep->key[i]) in hostapd_config_read_wep() 894 wep->keys_set = 0; in hostapd_config_read_wep() 898 if (wep->key[keyidx] != NULL) in hostapd_config_read_wep() 905 wep->key[keyidx] = os_memdup(val + 1, len); in hostapd_config_read_wep() 906 if (wep->key[keyidx] == NULL) in hostapd_config_read_wep() 908 wep->len[keyidx] = len; in hostapd_config_read_wep() [all …]
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_ndis.c | 937 NDIS_802_11_WEP *wep; in wpa_driver_ndis_add_wep() local 942 wep = os_zalloc(len); in wpa_driver_ndis_add_wep() 943 if (wep == NULL) in wpa_driver_ndis_add_wep() 945 wep->Length = len; in wpa_driver_ndis_add_wep() 946 wep->KeyIndex = key_idx; in wpa_driver_ndis_add_wep() 948 wep->KeyIndex |= 1 << 31; in wpa_driver_ndis_add_wep() 951 wep->KeyIndex |= 1 << 30; in wpa_driver_ndis_add_wep() 953 wep->KeyLength = key_len; in wpa_driver_ndis_add_wep() 954 os_memcpy(wep->KeyMaterial, key, key_len); in wpa_driver_ndis_add_wep() 957 (u8 *) wep, len); in wpa_driver_ndis_add_wep() [all …]
|
/external/scapy/scapy/modules/krack/ |
D | automaton.py | 673 if not pkt[Dot11].FCfield.wep: 770 if not pkt[Dot11].FCfield.wep: 845 if not pkt[Dot11].FCfield.wep:
|
D | crypto.py | 252 assert pkt.FCfield.wep
|
/external/cldr/tools/java/org/unicode/cldr/util/data/languages/ |
D | entityToCode.tsv | 1318 http://www.wikidata.org/entity/Q505655 wep
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | iso-639-3_Name_Index.tab | 7252 wep Westphalien Westphalien
|
D | iso-639-3.tab | 6974 wep I L Westphalien
|
D | language-subtag-registry | 37402 Subtag: wep
|