Home
last modified time | relevance | path

Searched refs:supp (Results 1 – 11 of 11) sorted by relevance

/hostap-3.6.0/tests/fuzzing/eapol-key-supp/
Deapol-key-supp.c31 struct wpa_sm *supp; member
93 wpa_sm_rx_eapol(wpa->supp, wpa->auth_addr, wpa->auth_eapol, in supp_eapol_rx()
170 return wpa_sm_set_ap_rsn_ie(wpa->supp, ie, 2 + ie[1]); in supp_get_beacon_ie()
171 return wpa_sm_set_ap_wpa_ie(wpa->supp, ie, 2 + ie[1]); in supp_get_beacon_ie()
243 wpa->supp = wpa_sm_init(ctx); in supp_init()
244 if (!wpa->supp) { in supp_init()
249 wpa_sm_set_own_addr(wpa->supp, wpa->supp_addr); in supp_init()
251 wpa_sm_set_param(wpa->supp, WPA_PARAM_RSN_ENABLED, 0); in supp_init()
252 wpa_sm_set_param(wpa->supp, WPA_PARAM_PROTO, WPA_PROTO_WPA); in supp_init()
253 wpa_sm_set_param(wpa->supp, WPA_PARAM_PAIRWISE, in supp_init()
[all …]
DMakefile1 ALL=eapol-key-supp
18 OBJS += eapol-key-supp.o
26 eapol-key-supp: $(OBJS) $(LIBS)
30 rm -f eapol-key-supp *~ *.o *.d ../*~ ../*.o ../*.d
D.gitignore1 eapol-key-supp
/hostap-3.6.0/wpa_supplicant/
Dibss_rsn.c43 wpa_sm_deinit(peer->supp); in ibss_rsn_free()
120 wpa_sm_set_ap_rsnxe(peer->supp, NULL, 0); in supp_get_beacon_ie()
121 return wpa_sm_set_ap_rsn_ie(peer->supp, in supp_get_beacon_ie()
235 peer->supp = wpa_sm_init(ctx); in ibss_rsn_supp_init()
236 if (peer->supp == NULL) { in ibss_rsn_supp_init()
242 wpa_sm_set_own_addr(peer->supp, own_addr); in ibss_rsn_supp_init()
243 wpa_sm_set_param(peer->supp, WPA_PARAM_RSN_ENABLED, 1); in ibss_rsn_supp_init()
244 wpa_sm_set_param(peer->supp, WPA_PARAM_PROTO, WPA_PROTO_RSN); in ibss_rsn_supp_init()
245 wpa_sm_set_param(peer->supp, WPA_PARAM_PAIRWISE, WPA_CIPHER_CCMP); in ibss_rsn_supp_init()
246 wpa_sm_set_param(peer->supp, WPA_PARAM_GROUP, WPA_CIPHER_CCMP); in ibss_rsn_supp_init()
[all …]
Dwpa_cli_zephyr.c303 struct wpa_supplicant *supp = wpa_s; in zephyr_wpa_ctrl_init() local
305 ret = wpa_cli_open_connection(supp); in zephyr_wpa_ctrl_init()
307 wpa_printf(MSG_INFO, "Failed to initialize control interface: %s: %d", supp->ifname, ret); in zephyr_wpa_ctrl_init()
Dibss_rsn.h35 struct wpa_sm *supp; member
/hostap-3.6.0/tests/fuzzing/eapol-supp/
DMakefile1 ALL=eapol-supp
16 OBJS += eapol-supp.o
24 eapol-supp: $(OBJS) $(LIBS)
28 rm -f eapol-supp *~ *.o *.d ../*~ ../*.o ../*.d
D.gitignore1 eapol-supp
/hostap-3.6.0/tests/
DREADME72 mkdir eapol-supp-examples
73 ./test-eapol supp write eapol-supp-examples/supp.msg
74 afl-fuzz -i eapol-supp-examples -o eapol-supp-findings -- $PWD/test-eapol supp read @@
/hostap-3.6.0/tests/hwsim/
Dtest_mbo.py458 supp = bytearray(binascii.unhexlify(sta['supp_op_classes']))
459 if supp[0] != 81:
460 raise Exception("Unexpected current operating class %d" % supp[0])
461 if 115 not in supp:
/hostap-3.6.0/hs20/server/
Dspp_server.c2080 char *supp, *pos; in hs20_spp_post_dev_data() local
2106 supp = xml_node_get_text(ctx->xml, mo); in hs20_spp_post_dev_data()
2107 for (pos = supp; pos && *pos; pos++) in hs20_spp_post_dev_data()
2109 if (supp == NULL || in hs20_spp_post_dev_data()
2110 strstr(supp, URN_OMA_DM_DEVINFO) == NULL || in hs20_spp_post_dev_data()
2111 strstr(supp, URN_OMA_DM_DEVDETAIL) == NULL || in hs20_spp_post_dev_data()
2112 strstr(supp, URN_HS20_PPS) == NULL) { in hs20_spp_post_dev_data()
2113 xml_node_get_text_free(ctx->xml, supp); in hs20_spp_post_dev_data()
2121 xml_node_get_text_free(ctx->xml, supp); in hs20_spp_post_dev_data()