HomeSort by relevance Sort by last modified time
    Searched defs:pmkid (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /external/wpa_supplicant_8/src/ap/
pmksa_cache_auth.h 19 u8 pmkid[PMKID_LEN]; member in struct:rsn_pmksa_cache_entry
45 const u8 *spa, const u8 *pmkid);
48 const u8 *pmkid);
51 const u8 *pmk, size_t pmk_len, const u8 *pmkid,
56 pmksa_cache_auth_create_entry(const u8 *pmk, size_t pmk_len, const u8 *pmkid,
65 const u8 *aa, const u8 *pmkid);
wpa_auth_ie.c 92 const u8 *pmkid)
277 if (pmkid) {
280 /* PMKID Count */
283 os_memcpy(pos, pmkid, PMKID_LEN);
292 if (pmkid == NULL) {
293 /* PMKID Count */
328 int pmkid_count_set = pmkid != NULL;
331 /* PMKID Count */
483 const u8 *pmkid; member in struct:wpa_auth_okc_iter_data
491 data->pmkid);
507 const u8 *pmkid = NULL; local
    [all...]
wpa_auth_ie.h 17 const u8 *pmkid; member in struct:wpa_eapol_ie_parse
ctrl_iface_ap.c 657 u8 pmkid[PMKID_LEN]; local
664 * <BSSID> <PMKID> <PMK> <expiration in seconds>
675 if (hexstr2bin(pos, pmkid, PMKID_LEN) < 0)
694 return wpa_auth_pmksa_create_entry(aa, spa, pmk, pmkid, expiration);
pmksa_cache_auth.c 26 #define PMKID_HASH(pmkid) (unsigned int) ((pmkid)[0] & 0x7f)
27 struct rsn_pmksa_cache_entry *pmkid[PMKID_HASH_SIZE]; member in struct:rsn_pmksa_cache
61 hash = PMKID_HASH(entry->pmkid);
62 pos = pmksa->pmkid[hash];
69 pmksa->pmkid[hash] = entry->hnext;
245 hash = PMKID_HASH(entry->pmkid);
246 entry->hnext = pmksa->pmkid[hash];
247 pmksa->pmkid[hash] = entry;
254 wpa_hexdump(MSG_DEBUG, "RSN: added PMKID", entry->pmkid, PMKID_LEN)
    [all...]
ieee802_11.c 576 sta->sae->pmk, sta->sae->pmkid);
1086 /* PMKID List */
1087 if (rsn.pmkid && rsn.num_pmkid > 0) {
1089 const u8 *pmkid; local
1091 wpa_hexdump(MSG_DEBUG, "FILS: PMKID List",
1092 rsn.pmkid, rsn.num_pmkid * PMKID_LEN);
1094 pmkid = rsn.pmkid;
1097 wpa_hexdump(MSG_DEBUG, "FILS: PMKID", pmkid, PMKID_LEN)
    [all...]
wpa_auth.c 765 ie.num_pmkid != 1 || ie.pmkid == NULL) {
771 os_memcpy(sm->sup_pmk_r1_name, ie.pmkid, PMKID_LEN);
2008 u8 buf[2 + RSN_SELECTOR_LEN + PMKID_LEN], *pmkid = NULL; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_ndis.h 23 u8 pmkid[16]; member in struct:ndis_pmkid_entry
46 struct ndis_pmkid_entry *pmkid; member in struct:wpa_driver_ndis_data
driver_ndis.c 251 NDIS_802_11_PMKID_VALUE PMKID;
326 NDIS_802_11_PMKID_VALUE PMKID;
1196 entry = drv->pmkid;
1210 entry = drv->pmkid;
1213 os_memcpy(&p->BSSIDInfo[i].PMKID, entry->pmkid, 16);
1224 const u8 *pmkid)
1233 entry = drv->pmkid;
1296 struct ndis_pmkid_entry *pmkid, *prev; local
1554 NDIS_802_11_PMKID_CANDIDATE_LIST *pmkid; local
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
pmksa_cache.h 17 u8 pmkid[PMKID_LEN]; member in struct:rsn_pmksa_cache_entry
55 const u8 *aa, const u8 *pmkid,
61 const u8 *pmkid, const u8 *kck, size_t kck_len,
68 int pmksa_cache_set_current(struct wpa_sm *sm, const u8 *pmkid,
92 pmksa_cache_get(struct rsn_pmksa_cache *pmksa, const u8 *aa, const u8 *pmkid,
125 const u8 *pmkid, const u8 *kck, size_t kck_len,
135 static inline int pmksa_cache_set_current(struct wpa_sm *sm, const u8 *pmkid,
wpa_ie.h 19 const u8 *pmkid; member in struct:wpa_eapol_ie_parse
  /external/wpa_supplicant_8/src/common/
sae.h 48 u8 pmkid[SAE_PMKID_LEN]; member in struct:sae_data
wpa_common.h 251 /* 1/4: PMKID
270 * PMKID Count (2 octets) (default: 0)
271 * PMKID List (16 * n octets)
355 u8 *pmkid);
395 const u8 *pmkid; member in struct:wpa_ie_data
406 u8 *pmkid, int use_sha256);
409 const u8 *spa, u8 *pmkid);
412 const u8 *spa, u8 *pmkid)
419 const u8 *spa, u8 *pmkid);
422 const u8 *aa, const u8 *spa, u8 *pmkid)
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
wpa.h 223 /** Length of a PMKID */
446 /** KDE type for a PMKID */
482 /** For PMKID-type KDEs, the PMKID */
483 u8 pmkid[WPA_PMKID_LEN]; member in union:wpa_kde::__anon35009
  /bionic/libc/kernel/uapi/linux/
wireless.h 330 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
  /development/ndk/platforms/android-21/include/linux/
wireless.h 421 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
  /development/ndk/platforms/android-9/include/linux/
wireless.h 386 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
  /external/kernel-headers/original/uapi/linux/
wireless.h 390 #define IWEVPMKIDCAND 0x8C09 /* PMKID candidate for RSN
851 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
wireless.h 388 #define IWEVPMKIDCAND 0x8C09 /* PMKID candidate for RSN
860 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
wireless.h 390 #define IWEVPMKIDCAND 0x8C09 /* PMKID candidate for RSN
862 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
    [all...]
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/linux/
wireless.h 386 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/linux/
wireless.h 386 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/linux/
wireless.h 386 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
  /prebuilts/ndk/r10/platforms/android-13/arch-arm/usr/include/linux/
wireless.h 386 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa
  /prebuilts/ndk/r10/platforms/android-13/arch-mips/usr/include/linux/
wireless.h 386 __u8 pmkid[IW_PMKID_LEN]; member in struct:iw_pmksa

Completed in 361 milliseconds

1 2 3 4 5