HomeSort by relevance Sort by last modified time
    Searched refs:pmksa (Results 1 - 22 of 22) sorted by null

  /external/wpa_supplicant_8/src/rsn_supp/
pmksa_cache.c 2 * WPA Supplicant - RSN PMKSA cache
23 struct rsn_pmksa_cache_entry *pmksa; /* PMKSA cache */ member in struct:rsn_pmksa_cache
24 int pmksa_count; /* number of entries in PMKSA cache */
33 static void pmksa_cache_set_expiration(struct rsn_pmksa_cache *pmksa);
42 static void pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa,
46 wpa_sm_remove_pmkid(pmksa->sm, entry->aa, entry->pmkid);
47 pmksa->pmksa_count--;
48 pmksa->free_cb(entry, pmksa->ctx, replace)
55 struct rsn_pmksa_cache *pmksa = eloop_ctx; local
73 struct rsn_pmksa_cache *pmksa = eloop_ctx; local
409 struct rsn_pmksa_cache *pmksa = sm->pmksa; local
499 struct rsn_pmksa_cache *pmksa; local
    [all...]
pmksa_cache.h 2 * wpa_supplicant - WPA2/RSN PMKSA cache functions
13 * struct rsn_pmksa_cache_entry - PMKSA cache entry
29 * This field is only used to match PMKSA cache entries to a specific
31 * This can be a pointer to the configuration entry, but PMKSA caching
47 void pmksa_cache_deinit(struct rsn_pmksa_cache *pmksa);
48 struct rsn_pmksa_cache_entry * pmksa_cache_get(struct rsn_pmksa_cache *pmksa,
51 int pmksa_cache_list(struct rsn_pmksa_cache *pmksa, char *buf, size_t len);
53 pmksa_cache_add(struct rsn_pmksa_cache *pmksa, const u8 *pmk, size_t pmk_len,
61 pmksa_cache_get_opportunistic(struct rsn_pmksa_cache *pmksa,
63 void pmksa_cache_flush(struct rsn_pmksa_cache *pmksa, void *network_ctx)
    [all...]
preauth.c 34 * pmksa_candidate_free - Free all entries in PMKSA candidate list
95 pmksa_cache_add(sm->pmksa, pmk, pmk_len,
163 * address. This is usually called for PMKSA candidates found from scan results
277 * rsn_preauth_candidate_process - Process PMKSA candidates
280 * Go through the PMKSA candidates and start pre-authentication if a candidate
281 * without an existing PMKSA cache entry is found. Processed candidates will be
293 wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
308 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL, NULL);
311 wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: PMKSA "
321 wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: PMKSA candidate
443 struct rsn_pmksa_cache_entry *pmksa; local
    [all...]
wpa.c 147 * matching PMKSA cache entry here. */
148 sm->cur_pmksa = pmksa_cache_get(sm->pmksa, src_addr, pmkid,
152 "RSN: found matching PMKID from PMKSA cache");
164 wpa_hexdump_key(MSG_DEBUG, "RSN: PMK from PMKSA cache",
198 pmksa_cache_add(sm->pmksa, sm->pmk, pmk_len,
203 pmksa_cache_get(sm->pmksa, src_addr, pmkid, NULL))
217 "RSN: Cancelled PMKSA caching "
234 "RSN: no PMKSA entry found - trigger "
485 "opportunistic PMKSA entry - marking it valid");
    [all...]
wpa_i.h 35 struct rsn_pmksa_cache *pmksa; /* PMKSA cache */ member in struct:wpa_sm
36 struct rsn_pmksa_cache_entry *cur_pmksa; /* current PMKSA entry */
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
pmksa_cache.c 2 * WPA Supplicant - RSN PMKSA cache
31 struct rsn_pmksa_cache_entry *pmksa; /* PMKSA cache */ member in struct:rsn_pmksa_cache
32 int pmksa_count; /* number of entries in PMKSA cache */
74 static void pmksa_cache_set_expiration(struct rsn_pmksa_cache *pmksa);
83 static void pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa,
87 pmksa->pmksa_count--;
88 pmksa->free_cb(entry, pmksa->ctx, replace);
95 struct rsn_pmksa_cache *pmksa = eloop_ctx local
113 struct rsn_pmksa_cache *pmksa = eloop_ctx; local
421 struct rsn_pmksa_cache *pmksa = sm->pmksa; local
499 struct rsn_pmksa_cache *pmksa; local
    [all...]
pmksa_cache.h 2 * wpa_supplicant - WPA2/RSN PMKSA cache functions
19 * struct rsn_pmksa_cache_entry - PMKSA cache entry
35 * This field is only used to match PMKSA cache entries to a specific
37 * This can be a pointer to the configuration entry, but PMKSA caching
53 void pmksa_cache_deinit(struct rsn_pmksa_cache *pmksa);
54 struct rsn_pmksa_cache_entry * pmksa_cache_get(struct rsn_pmksa_cache *pmksa,
58 pmksa_cache_add(struct rsn_pmksa_cache *pmksa, const u8 *pmk, size_t pmk_len,
60 void pmksa_cache_notify_reconfig(struct rsn_pmksa_cache *pmksa);
67 pmksa_cache_get_opportunistic(struct rsn_pmksa_cache *pmksa,
80 static inline void pmksa_cache_deinit(struct rsn_pmksa_cache *pmksa)
    [all...]
preauth.c 42 * pmksa_candidate_free - Free all entries in PMKSA candidate list
105 pmksa_cache_add(sm->pmksa, pmk, pmk_len,
173 * address. This is usually called for PMKSA candidates found from scan results
287 * rsn_preauth_candidate_process - Process PMKSA candidates
290 * Go through the PMKSA candidates and start pre-authentication if a candidate
291 * without an existing PMKSA cache entry is found. Processed candidates will be
303 wpa_msg(sm->ctx->ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
318 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL);
321 wpa_msg(sm->ctx->ctx, MSG_DEBUG, "RSN: PMKSA "
331 wpa_msg(sm->ctx->ctx, MSG_DEBUG, "RSN: PMKSA candidate
439 struct rsn_pmksa_cache_entry *pmksa; local
    [all...]
wpa_i.h 39 struct rsn_pmksa_cache *pmksa; /* PMKSA cache */ member in struct:wpa_sm
40 struct rsn_pmksa_cache_entry *cur_pmksa; /* current PMKSA entry */
wpa.c 202 * matching PMKSA cache entry here. */
203 sm->cur_pmksa = pmksa_cache_get(sm->pmksa, src_addr, pmkid);
206 "PMKSA cache");
217 wpa_hexdump_key(MSG_DEBUG, "RSN: PMK from PMKSA cache",
249 pmksa_cache_add(sm->pmksa, sm->pmk, pmk_len, src_addr,
253 pmksa_cache_get(sm->pmksa, src_addr, pmkid)) {
265 wpa_printf(MSG_DEBUG, "RSN: Cancelled PMKSA "
280 wpa_printf(MSG_DEBUG, "RSN: no PMKSA entry found - trigger "
491 "opportunistic PMKSA entry - marking it valid");
    [all...]
  /external/wpa_supplicant_8/src/ap/
pmksa_cache_auth.c 2 * hostapd - PMKSA cache for IEEE 802.11i RSN
27 struct rsn_pmksa_cache_entry *pmksa; member in struct:rsn_pmksa_cache
35 static void pmksa_cache_set_expiration(struct rsn_pmksa_cache *pmksa);
50 static void pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa,
55 pmksa->pmksa_count--;
56 pmksa->free_cb(entry, pmksa->ctx);
57 pos = pmksa->pmkid[PMKID_HASH(entry->pmkid)];
64 pmksa->pmkid[PMKID_HASH(entry->pmkid)] =
73 pos = pmksa->pmksa
92 struct rsn_pmksa_cache *pmksa = eloop_ctx; local
410 struct rsn_pmksa_cache *pmksa; local
    [all...]
pmksa_cache_auth.h 2 * hostapd - PMKSA cache for IEEE 802.11i RSN
15 * struct rsn_pmksa_cache_entry - PMKSA cache entry
39 void pmksa_cache_auth_deinit(struct rsn_pmksa_cache *pmksa);
41 pmksa_cache_auth_get(struct rsn_pmksa_cache *pmksa,
44 struct rsn_pmksa_cache *pmksa, const u8 *spa, const u8 *aa,
47 pmksa_cache_auth_add(struct rsn_pmksa_cache *pmksa,
52 pmksa_cache_add_okc(struct rsn_pmksa_cache *pmksa,
wpa_auth_ie.c 383 struct rsn_pmksa_cache_entry *pmksa; member in struct:wpa_auth_okc_iter_data
393 data->pmksa = pmksa_cache_get_okc(a->pmksa, data->aa, data->spa,
395 if (data->pmksa)
619 sm->pmksa = NULL;
623 sm->pmksa = pmksa_cache_auth_get(wpa_auth->pmksa, sm->addr,
625 if (sm->pmksa) {
626 pmkid = sm->pmksa->pmkid;
630 for (i = 0; sm->pmksa == NULL && wpa_auth->conf.okc &
    [all...]
wpa_auth_i.h 104 struct rsn_pmksa_cache_entry *pmksa; member in struct:wpa_state_machine
183 struct rsn_pmksa_cache *pmksa; member in struct:wpa_authenticator
wpa_auth.c 267 if (sm->pmksa == ctx)
268 sm->pmksa = NULL;
411 wpa_auth->pmksa = pmksa_cache_auth_init(wpa_auth_pmksa_free_cb,
413 if (wpa_auth->pmksa == NULL) {
414 wpa_printf(MSG_ERROR, "PMKSA cache initialization failed.");
425 pmksa_cache_auth_deinit(wpa_auth->pmksa);
474 pmksa_cache_auth_deinit(wpa_auth->pmksa);
    [all...]
ieee802_1x.c 669 struct rsn_pmksa_cache_entry *pmksa; local
784 pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
785 if (pmksa) {
787 HOSTAPD_LEVEL_DEBUG, "cached PMKSA "
790 wpa_auth_sta_clear_pmksa(sta->wpa_sm, pmksa);
844 struct rsn_pmksa_cache_entry *pmksa; local
923 pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
924 if (pmksa) {
929 "PMK from PMKSA cache - skip IEEE 802.1X/EAP");
931 * because of existing PMKSA information in the cache. *
    [all...]
  /hardware/ti/wlan/wl1271/wpa_supplicant_lib/
driver_ti.c 1097 struct iw_pmksa pmksa; local
    [all...]
  /hardware/ti/wlan/mac80211/wpa_supplicant_lib/
driver_mac80211.c 1602 struct iw_pmksa pmksa; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_nl80211.c 2312 struct iw_pmksa pmksa; local
    [all...]
driver_wext.c 2427 struct iw_pmksa pmksa; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_wext.c 2249 struct iw_pmksa pmksa; local
    [all...]
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
CmdInterpretWext.c 1340 struct iw_pmksa *pmksa = (struct iw_pmksa *) cmdObj->buffer2; local
    [all...]

Completed in 304 milliseconds