Lines Matching defs:pasn_data

35 struct pasn_data {  struct
38 int akmp;
39 int cipher;
40 u8 own_addr[ETH_ALEN];
41 u8 peer_addr[ETH_ALEN];
42 u8 bssid[ETH_ALEN];
43 struct rsn_pmksa_cache *pmksa;
44 bool derive_kdk;
45 size_t kdk_len;
46 void *cb_ctx;
49 struct sae_pt *pt;
53 const char *password;
54 int wpa_key_mgmt;
55 int rsn_pairwise;
56 u16 rsnxe_capab;
57 const u8 *rsnxe_ie;
58 bool custom_pmkid_valid;
59 u8 custom_pmkid[PMKID_LEN];
65 const u8 *extra_ies;
66 size_t extra_ies_len;
69 u16 group;
70 bool secure_ltf;
71 int freq;
73 u8 trans_seq;
74 u8 status;
76 size_t pmk_len;
77 u8 pmk[PMK_LEN_MAX];
78 bool using_pmksa;
80 u8 hash[SHA384_MAC_LEN];
82 struct wpabuf *beacon_rsne_rsnxe;
83 struct wpa_ptk ptk;
84 struct crypto_ecdh *ecdh;
86 struct wpabuf *comeback;
87 u16 comeback_after;
90 struct sae_data sae;
94 bool fils_eapol;
95 bool fils_wd_valid;
96 struct pasn_fils fils;
100 u8 pmk_r1[PMK_LEN_MAX];
101 size_t pmk_r1_len;
102 u8 pmk_r1_name[WPA_PMK_NAME_LEN];
108 struct rsn_pmksa_cache_entry *pmksa_entry;
109 struct eapol_sm *eapol;
110 int fast_reauth;
112 int corrupt_mic;
114 int network_id;
116 u8 wrapped_data_format;
117 struct wpabuf *secret;
120 bool noauth; /* Whether PASN without mutual authentication is enabled */
121 int disable_pmksa_caching;
122 int *pasn_groups;
123 struct wpabuf *wrapped_data;
124 int use_anti_clogging;
125 const u8 *rsn_ie;
126 size_t rsn_ie_len;
128 u8 *comeback_key;
129 struct os_reltime last_comeback_key_update;
130 u16 comeback_idx;
131 u16 *comeback_pending_idx;
156 void wpa_pasn_reset(struct pasn_data *pasn); argument