HomeSort by relevance Sort by last modified time
    Searched refs:wps (Results 26 - 50 of 112) sorted by null

12 3 4 5

  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_upnp.h 2 * UPnP WPS Device
19 struct wps_data *wps; member in struct:upnp_wps_peer
54 upnp_wps_device_init(struct upnp_wps_device_ctx *ctx, struct wps_context *wps,
wps_attr_process.c 22 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator,
30 wpa_printf(MSG_DEBUG, "WPS: No Authenticator attribute "
35 if (wps->last_msg == NULL) {
36 wpa_printf(MSG_DEBUG, "WPS: Last message not available for "
44 addr[0] = wpabuf_head(wps->last_msg);
45 len[0] = wpabuf_len(wps->last_msg);
48 hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
51 wpa_printf(MSG_DEBUG, "WPS: Incorrect Authenticator");
59 int wps_process_key_wrap_auth(struct wps_data *wps, struct wpabuf *msg,
67 wpa_printf(MSG_DEBUG, "WPS: No KWA in decrypted attribute")
    [all...]
wps.h 37 * struct wps_credential - WPS Credential
64 * struct wps_device_data - WPS Device Data
92 * struct wps_config - WPS configuration for a single registration protocol run
96 * wps - Pointer to long term WPS context
98 struct wps_context *wps; member in struct:wps_config
121 * assoc_wps_ie: (Re)AssocReq WPS IE (in AP; %NULL if not AP)
131 * enum wps_process_res - WPS message processing result
155 enum wps_process_res wps_process_msg(struct wps_data *wps,
159 struct wpabuf * wps_get_msg(struct wps_data *wps, enum wsc_op_code *op_code)
    [all...]
wps_upnp_web.c 2 * UPnP WPS Device - Web connections
274 * WFA WPS specifications. Extra white space has been removed to save space.
544 s = sm->wps->friendly_name;
545 s = ((s && *s) ? s : "WPS Access Point");
548 s = sm->wps->dev.manufacturer;
552 if (sm->wps->manufacturer_url)
554 sm->wps->manufacturer_url);
556 if (sm->wps->model_description)
558 sm->wps->model_description);
560 s = sm->wps->dev.model_name
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_wsc.c 21 #include "wps/wps.h"
22 #include "wps/wps_defs.h"
33 struct wps_data *wps; member in struct:eap_wsc_data
77 struct wps_context *wps; local
79 wps = sm->wps;
80 if (wps == NULL) {
81 wpa_printf(MSG_ERROR, "EAP-WSC: WPS context not available");
104 data->wps_ctx = wps;
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_attr_process.c 16 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator,
24 wpa_printf(MSG_DEBUG, "WPS: No Authenticator attribute "
29 if (wps->last_msg == NULL) {
30 wpa_printf(MSG_DEBUG, "WPS: Last message not available for "
38 addr[0] = wpabuf_head(wps->last_msg);
39 len[0] = wpabuf_len(wps->last_msg);
42 hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
45 wpa_printf(MSG_DEBUG, "WPS: Incorrect Authenticator");
53 int wps_process_key_wrap_auth(struct wps_data *wps, struct wpabuf *msg,
61 wpa_printf(MSG_DEBUG, "WPS: No KWA in decrypted attribute")
    [all...]
wps.h 33 * struct wps_credential - WPS Credential
62 /* maximum number of advertised WPS vendor extension attributes */
64 /* maximum size of WPS Vendor extension attribute */
66 /* maximum number of parsed WPS vendor extension attributes */
70 * struct wps_device_data - WPS Device Data
116 * struct wps_config - WPS configuration for a single registration protocol run
120 * wps - Pointer to long term WPS context
122 struct wps_context *wps; member in struct:wps_config
145 * assoc_wps_ie: (Re)AssocReq WPS IE (in AP; %NULL if not AP
    [all...]
wps_nfc.c 12 #include "wps/wps.h"
21 static void * init_nfc(struct wps_context *wps,
29 wpa_printf(MSG_ERROR, "WPS (NFC): Unknown NFC device (%s)",
39 wpa_printf(MSG_ERROR, "WPS (NFC): Failed to allocate "
62 wpa_printf(MSG_ERROR, "WPS (NFC): Failed to allocate "
70 wpa_printf(MSG_ERROR, "WPS (NFC): Failed to unwrap");
83 wpa_printf(MSG_ERROR, "WPS (NFC): Failed to wrap");
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius_server.h 36 struct wps_context *wps; member in struct:radius_server_conf
  /external/wpa_supplicant_8/src/radius/
radius_server.h 147 * wps - Wi-Fi Protected Setup context
149 * If WPS is used with an external RADIUS server (which is quite
150 * unlikely configuration), this is used to provide a pointer to WPS
153 struct wps_context *wps; member in struct:radius_server_conf
  /hardware/broadcom/wlan/bcm4329/wpa_supplicant_8_lib/
Android.mk 33 $(WPA_SUPPL_DIR)/src/wps \
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new-wps.py 14 WPAS_DBUS_WPS_INTERFACE = "fi.w1.wpa_supplicant1.Interface.WPS"
30 print "WPS event: %s" % (name)
34 print "WPS credentials: %s" % (cred)
73 wps = dbus.Interface(if_obj, WPAS_DBUS_WPS_INTERFACE)
74 wps.Start({'Role': 'enrollee', 'Type': 'pbc'})
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_wsc.c 21 #include "wps/wps.h"
32 struct wps_data *wps; member in struct:eap_wsc_data
109 cfg.wps = sm->wps;
112 if (sm->wps == NULL || sm->wps->registrar == NULL) {
113 wpa_printf(MSG_INFO, "EAP-WSC: WPS Registrar not "
129 data->wps = wps_init(&cfg);
130 if (data->wps == NULL)
    [all...]
eap.h 106 struct wps_context *wps; member in struct:eap_config
  /external/wpa_supplicant_8/src/eap_server/
eap_server_wsc.c 16 #include "wps/wps.h"
27 struct wps_data *wps; member in struct:eap_wsc_data
106 cfg.wps = sm->wps;
109 if (sm->wps == NULL || sm->wps->registrar == NULL) {
110 wpa_printf(MSG_INFO, "EAP-WSC: WPS Registrar not "
119 * Windows 7 uses Registrar mode to probe AP's WPS
142 data->wps = wps_init(&cfg)
    [all...]
eap.h 100 struct wps_context *wps; member in struct:eap_config
  /external/wpa_supplicant_8/src/eap_peer/
eap_wsc.c 15 #include "wps/wps.h"
16 #include "wps/wps_defs.h"
27 struct wps_data *wps; member in struct:eap_wsc_data
137 struct wps_context *wps; local
143 wps = sm->wps;
144 if (wps == NULL) {
145 wpa_printf(MSG_ERROR, "EAP-WSC: WPS context not available");
168 data->wps_ctx = wps;
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiNative.java 209 * flags=[WPA2-PSK-CCMP][WPS][ESS]
557 WpsInfo wps = config.wps; local
560 switch (wps.setup) {
565 if (TextUtils.isEmpty(wps.pin)) {
568 args.add(wps.pin);
573 args.add(wps.pin);
577 args.add(wps.pin);
612 switch (config.wps.setup) {
  /external/wpa_supplicant_8/hostapd/
Android.mk 386 OBJS += src/wps/wps.c
387 OBJS += src/wps/wps_common.c
388 OBJS += src/wps/wps_attr_parse.c
389 OBJS += src/wps/wps_attr_build.c
390 OBJS += src/wps/wps_attr_process.c
391 OBJS += src/wps/wps_dev_attr.c
392 OBJS += src/wps/wps_enrollee.c
393 OBJS += src/wps/wps_registrar.c
403 OBJS += src/wps/wps_ufd.
    [all...]
Makefile 345 OBJS += ../src/wps/wps.o
346 OBJS += ../src/wps/wps_common.o
347 OBJS += ../src/wps/wps_attr_parse.o
348 OBJS += ../src/wps/wps_attr_build.o
349 OBJS += ../src/wps/wps_attr_process.o
350 OBJS += ../src/wps/wps_dev_attr.o
351 OBJS += ../src/wps/wps_enrollee.o
352 OBJS += ../src/wps/wps_registrar.o
362 OBJS += ../src/wps/wps_ufd.
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
Android.mk 34 $(WPA_SUPPL_DIR)/src/wps \
  /external/wpa_supplicant_8/src/ap/
drv_callbacks.c 18 #include "wps/wps.h"
69 wpa_printf(MSG_DEBUG, "STA included WPS IE in (Re)AssocReq");
81 wpa_printf(MSG_DEBUG, "STA did not include WPS/RSN/WPA IE in "
118 "Request - possible WPS use");
130 struct wpabuf *wps; local
132 wps = ieee802_11_vendor_ie_concat(ie, ielen,
134 if (wps) {
135 if (wps_is_20(wps)) {
136 wpa_printf(MSG_DEBUG, "WPS: STA
236 struct wpabuf *wps; local
    [all...]
  /hardware/ti/wlan/mac80211/wpa_supplicant_lib/
Android.mk 58 $(WPA_SUPPL_DIR)/src/wps \
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.h 36 struct wps_context *wps; member in struct:eapol_auth_config
  /external/wpa_supplicant_6/wpa_supplicant/
Android.mk 57 INCLUDES += $(LOCAL_PATH)/src/wps
537 OBJS += src/wps/wps.c
538 OBJS += src/wps/wps_common.c
539 OBJS += src/wps/wps_attr_parse.c
540 OBJS += src/wps/wps_attr_build.c
541 OBJS += src/wps/wps_attr_process.c
542 OBJS += src/wps/wps_dev_attr.c
543 OBJS += src/wps/wps_enrollee.c
544 OBJS += src/wps/wps_registrar.
    [all...]

Completed in 976 milliseconds

12 3 4 5