HomeSort by relevance Sort by last modified time
    Searched refs:group_cipher (Results 1 - 25 of 39) sorted by null

1 2

  /external/wpa_supplicant_8/src/rsn_supp/
wpa_ie.c 39 int pairwise_cipher, int group_cipher,
55 if (group_cipher == WPA_CIPHER_CCMP) {
57 } else if (group_cipher == WPA_CIPHER_TKIP) {
59 } else if (group_cipher == WPA_CIPHER_WEP104) {
61 } else if (group_cipher == WPA_CIPHER_WEP40) {
65 group_cipher);
111 int pairwise_cipher, int group_cipher,
133 if (group_cipher == WPA_CIPHER_CCMP) {
135 } else if (group_cipher == WPA_CIPHER_TKIP) {
137 } else if (group_cipher == WPA_CIPHER_WEP104)
    [all...]
wpa.c 461 wpa_cipher_txt(sm->group_cipher));
566 int group_cipher,
573 switch (group_cipher) {
609 group_cipher);
616 wpa_cipher_txt(group_cipher), keylen, maxkeylen);
643 if (sm->group_cipher == WPA_CIPHER_TKIP) {
723 if (wpa_supplicant_check_group_cipher(sm, sm->group_cipher,
    [all...]
wpa_ft.c 174 if (sm->group_cipher == WPA_CIPHER_CCMP)
176 else if (sm->group_cipher == WPA_CIPHER_TKIP)
180 sm->group_cipher);
574 switch (sm->group_cipher) {
597 sm->group_cipher);
wpa_i.h 76 unsigned int group_cipher; member in struct:wpa_sm
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa_ie.c 64 data->group_cipher = WPA_CIPHER_TKIP;
97 data->group_cipher = wpa_selector_to_bitfield(pos);
183 int pairwise_cipher, int group_cipher,
199 if (group_cipher == WPA_CIPHER_CCMP) {
201 } else if (group_cipher == WPA_CIPHER_TKIP) {
203 } else if (group_cipher == WPA_CIPHER_WEP104) {
205 } else if (group_cipher == WPA_CIPHER_WEP40) {
209 group_cipher);
255 int pairwise_cipher, int group_cipher,
277 if (group_cipher == WPA_CIPHER_CCMP)
    [all...]
wpa.c 468 wpa_cipher_txt(sm->group_cipher));
568 static int wpa_supplicant_check_group_cipher(int group_cipher,
574 switch (group_cipher) {
609 group_cipher);
616 wpa_cipher_txt(group_cipher), keylen, maxkeylen);
643 if (sm->group_cipher == WPA_CIPHER_TKIP) {
722 if (wpa_supplicant_check_group_cipher(sm->group_cipher,
1071 if (wpa_supplicant_check_group_cipher(sm->group_cipher,
1122 if (wpa_supplicant_check_group_cipher(sm->group_cipher,
    [all...]
wpa_ft.c 146 if (sm->group_cipher == WPA_CIPHER_CCMP)
148 else if (sm->group_cipher == WPA_CIPHER_TKIP)
152 sm->group_cipher);
622 switch (sm->group_cipher) {
645 sm->group_cipher);
wpa_i.h 79 unsigned int group_cipher; member in struct:wpa_sm
  /external/wpa_supplicant_6/wpa_supplicant/
config_ssid.h 145 * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_*
147 int group_cipher; member in struct:wpa_ssid
wpa_supplicant.c 158 switch (wpa_s->group_cipher) {
173 "WPA-None", wpa_s->group_cipher);
314 wpa_s->group_cipher = WPA_CIPHER_NONE;
320 wpa_s->group_cipher = WPA_CIPHER_WEP104;
324 wpa_s->group_cipher = WPA_CIPHER_WEP40;
333 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
539 wpa_s->group_cipher = 0;
689 if (!(ie->group_cipher & ssid->group_cipher)) {
692 ie->group_cipher, ssid->group_cipher)
    [all...]
events.c 312 if (!(ie.group_cipher & ssid->group_cipher)) {
357 if (!(ie.group_cipher & ssid->group_cipher)) {
config_file.c 116 if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
123 ssid->group_cipher &= ~WPA_CIPHER_CCMP;
672 if (ssid->group_cipher == DEFAULT_GROUP)
config_winreg.c 340 if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
347 ssid->group_cipher &= ~WPA_CIPHER_CCMP;
727 if (ssid->group_cipher == DEFAULT_GROUP)
  /external/wpa_supplicant_8/wpa_supplicant/
config_ssid.h 148 * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_*
150 int group_cipher; member in struct:wpa_ssid
wpa_supplicant.c 148 switch (wpa_s->group_cipher) {
163 "WPA-None", wpa_s->group_cipher);
322 wpa_s->group_cipher = WPA_CIPHER_NONE;
328 wpa_s->group_cipher = WPA_CIPHER_WEP104;
332 wpa_s->group_cipher = WPA_CIPHER_WEP40;
341 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
669 wpa_s->group_cipher = 0;
836 if (!(ie->group_cipher & ssid->group_cipher)) {
839 ie->group_cipher, ssid->group_cipher)
    [all...]
config_file.c 107 if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
114 ssid->group_cipher &= ~WPA_CIPHER_CCMP;
430 if (ssid->group_cipher == DEFAULT_GROUP)
wpa_supplicant_i.h 282 int group_cipher; member in struct:wpa_supplicant
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
wpagui.ui.h 307 char *pairwise_cipher = NULL, *group_cipher = NULL; local
342 } else if (strcmp(start, "group_cipher") == 0) {
343 group_cipher = pos;
352 if (pairwise_cipher || group_cipher) {
354 if (pairwise_cipher && group_cipher &&
355 strcmp(pairwise_cipher, group_cipher) != 0) {
358 encr.append(group_cipher);
362 encr.append(group_cipher);
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ie.c 467 if (data.group_cipher & WPA_CIPHER_CCMP)
469 else if (data.group_cipher & WPA_CIPHER_TKIP)
471 else if (data.group_cipher & WPA_CIPHER_WEP104)
473 else if (data.group_cipher & WPA_CIPHER_WEP40)
475 else if (data.group_cipher & WPA_CIPHER_NONE)
502 if (data.group_cipher & WPA_CIPHER_CCMP)
504 else if (data.group_cipher & WPA_CIPHER_TKIP)
506 else if (data.group_cipher & WPA_CIPHER_WEP104)
508 else if (data.group_cipher & WPA_CIPHER_WEP40)
510 else if (data.group_cipher & WPA_CIPHER_NONE
    [all...]
  /external/wpa_supplicant_8/src/common/
wpa_common.c 399 data->group_cipher = WPA_CIPHER_CCMP;
435 data->group_cipher = rsn_selector_to_bitfield(pos);
437 if (data->group_cipher == WPA_CIPHER_AES_128_CMAC) {
589 data->group_cipher = WPA_CIPHER_TKIP;
622 data->group_cipher = wpa_selector_to_bitfield(pos);
981 ie1d.group_cipher == ie2d.group_cipher &&
wpa_common.h 331 int group_cipher; member in struct:wpa_ie_data
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
wpa_common.c 255 data->group_cipher = WPA_CIPHER_CCMP;
291 data->group_cipher = rsn_selector_to_bitfield(pos);
293 if (data->group_cipher == WPA_CIPHER_AES_128_CMAC) {
wpa_common.h 323 int group_cipher; member in struct:wpa_ie_data
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 502 char *pairwise_cipher = NULL, *group_cipher = NULL; local
537 } else if (strcmp(start, "group_cipher") == 0) {
538 group_cipher = pos;
547 if (pairwise_cipher || group_cipher) {
549 if (pairwise_cipher && group_cipher &&
550 strcmp(pairwise_cipher, group_cipher) != 0) {
553 encr.append(group_cipher);
557 encr.append(group_cipher);
1387 else if ((*it).startsWith("group_cipher="))
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 521 char *pairwise_cipher = NULL, *group_cipher = NULL; local
557 } else if (strcmp(start, "group_cipher") == 0) {
558 group_cipher = pos;
571 if (pairwise_cipher || group_cipher) {
573 if (pairwise_cipher && group_cipher &&
574 strcmp(pairwise_cipher, group_cipher) != 0) {
577 encr.append(group_cipher);
581 encr.append(group_cipher);
    [all...]

Completed in 279 milliseconds

1 2