]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/common/wpa_common.h
Make struct wpa_eapol_key easier to use with variable length MIC
[thirdparty/hostap.git] / src / common / wpa_common.h
CommitLineData
6fc6879b
JM
1/*
2 * WPA definitions shared between hostapd and wpa_supplicant
98cd3d1c 3 * Copyright (c) 2002-2015, Jouni Malinen <j@w1.fi>
6fc6879b 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
6fc6879b
JM
7 */
8
9#ifndef WPA_COMMON_H
10#define WPA_COMMON_H
11
6fc6879b
JM
12/* IEEE 802.11i */
13#define PMKID_LEN 16
14#define PMK_LEN 32
207976f0
JM
15#define PMK_LEN_SUITE_B_192 48
16#define PMK_LEN_MAX 48
6fc6879b
JM
17#define WPA_REPLAY_COUNTER_LEN 8
18#define WPA_NONCE_LEN 32
19#define WPA_KEY_RSC_LEN 8
20#define WPA_GMK_LEN 32
21#define WPA_GTK_MAX_LEN 32
22
03145326 23#define WPA_ALLOWED_PAIRWISE_CIPHERS \
30675c34
JM
24(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_TKIP | WPA_CIPHER_NONE | \
25WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256)
03145326 26#define WPA_ALLOWED_GROUP_CIPHERS \
ce8963fc
JM
27(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_TKIP | \
28WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256 | \
dff1e285 29WPA_CIPHER_GTK_NOT_USED)
03145326 30
6fc6879b
JM
31#define WPA_SELECTOR_LEN 4
32#define WPA_VERSION 1
33#define RSN_SELECTOR_LEN 4
34#define RSN_VERSION 1
35
36#define RSN_SELECTOR(a, b, c, d) \
37 ((((u32) (a)) << 24) | (((u32) (b)) << 16) | (((u32) (c)) << 8) | \
38 (u32) (d))
39
40#define WPA_AUTH_KEY_MGMT_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0)
41#define WPA_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 1)
42#define WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 2)
369c8d7b 43#define WPA_AUTH_KEY_MGMT_CCKM RSN_SELECTOR(0x00, 0x40, 0x96, 0)
6fc6879b 44#define WPA_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0)
6fc6879b 45#define WPA_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x50, 0xf2, 2)
6fc6879b 46#define WPA_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x50, 0xf2, 4)
6fc6879b
JM
47
48
49#define RSN_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
50#define RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
51#ifdef CONFIG_IEEE80211R
52#define RSN_AUTH_KEY_MGMT_FT_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
53#define RSN_AUTH_KEY_MGMT_FT_PSK RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
54#endif /* CONFIG_IEEE80211R */
0b60b0aa
JM
55#define RSN_AUTH_KEY_MGMT_802_1X_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
56#define RSN_AUTH_KEY_MGMT_PSK_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
281ff0aa 57#define RSN_AUTH_KEY_MGMT_TPK_HANDSHAKE RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
c10347f2
JM
58#define RSN_AUTH_KEY_MGMT_SAE RSN_SELECTOR(0x00, 0x0f, 0xac, 8)
59#define RSN_AUTH_KEY_MGMT_FT_SAE RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
30675c34 60#define RSN_AUTH_KEY_MGMT_802_1X_SUITE_B RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
5e3b5197
JM
61#define RSN_AUTH_KEY_MGMT_802_1X_SUITE_B_192 RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
62#define RSN_AUTH_KEY_MGMT_FT_802_1X_SUITE_B_192 \
30675c34 63RSN_SELECTOR(0x00, 0x0f, 0xac, 13)
94318a0d
JM
64#define RSN_AUTH_KEY_MGMT_FILS_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 14)
65#define RSN_AUTH_KEY_MGMT_FILS_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 15)
66#define RSN_AUTH_KEY_MGMT_FT_FILS_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 16)
67#define RSN_AUTH_KEY_MGMT_FT_FILS_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 17)
369c8d7b 68#define RSN_AUTH_KEY_MGMT_CCKM RSN_SELECTOR(0x00, 0x40, 0x96, 0x00)
a5d75636 69#define RSN_AUTH_KEY_MGMT_OSEN RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x01)
0b60b0aa 70
6fc6879b 71#define RSN_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x0f, 0xac, 0)
6fc6879b
JM
72#define RSN_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
73#if 0
74#define RSN_CIPHER_SUITE_WRAP RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
75#endif
76#define RSN_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
6fc6879b 77#define RSN_CIPHER_SUITE_AES_128_CMAC RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
281ff0aa 78#define RSN_CIPHER_SUITE_NO_GROUP_ADDRESSED RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
eb7719ff 79#define RSN_CIPHER_SUITE_GCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 8)
30675c34
JM
80#define RSN_CIPHER_SUITE_GCMP_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
81#define RSN_CIPHER_SUITE_CCMP_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 10)
82#define RSN_CIPHER_SUITE_BIP_GMAC_128 RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
83#define RSN_CIPHER_SUITE_BIP_GMAC_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
84#define RSN_CIPHER_SUITE_BIP_CMAC_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 13)
6fc6879b
JM
85
86/* EAPOL-Key Key Data Encapsulation
87 * GroupKey and PeerKey require encryption, otherwise, encryption is optional.
88 */
89#define RSN_KEY_DATA_GROUPKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
90#if 0
91#define RSN_KEY_DATA_STAKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
92#endif
93#define RSN_KEY_DATA_MAC_ADDR RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
94#define RSN_KEY_DATA_PMKID RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
95#ifdef CONFIG_PEERKEY
96#define RSN_KEY_DATA_SMK RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
97#define RSN_KEY_DATA_NONCE RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
98#define RSN_KEY_DATA_LIFETIME RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
99#define RSN_KEY_DATA_ERROR RSN_SELECTOR(0x00, 0x0f, 0xac, 8)
100#endif /* CONFIG_PEERKEY */
101#ifdef CONFIG_IEEE80211W
102#define RSN_KEY_DATA_IGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
103#endif /* CONFIG_IEEE80211W */
eb7719ff
JM
104#define RSN_KEY_DATA_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 10)
105#define RSN_KEY_DATA_MULTIBAND_GTK RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
106#define RSN_KEY_DATA_MULTIBAND_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
6fc6879b 107
25ef8529
JM
108#define WFA_KEY_DATA_IP_ADDR_REQ RSN_SELECTOR(0x50, 0x6f, 0x9a, 4)
109#define WFA_KEY_DATA_IP_ADDR_ALLOC RSN_SELECTOR(0x50, 0x6f, 0x9a, 5)
110
6fc6879b
JM
111#define WPA_OUI_TYPE RSN_SELECTOR(0x00, 0x50, 0xf2, 1)
112
ccfab35a
JM
113#define RSN_SELECTOR_PUT(a, val) WPA_PUT_BE32((u8 *) (a), (val))
114#define RSN_SELECTOR_GET(a) WPA_GET_BE32((const u8 *) (a))
6fc6879b
JM
115
116#define RSN_NUM_REPLAY_COUNTERS_1 0
117#define RSN_NUM_REPLAY_COUNTERS_2 1
118#define RSN_NUM_REPLAY_COUNTERS_4 2
119#define RSN_NUM_REPLAY_COUNTERS_16 3
120
121
122#ifdef _MSC_VER
123#pragma pack(push, 1)
124#endif /* _MSC_VER */
125
126#ifdef CONFIG_IEEE80211W
127#define WPA_IGTK_LEN 16
8dd9f9cd 128#define WPA_IGTK_MAX_LEN 32
6fc6879b
JM
129#endif /* CONFIG_IEEE80211W */
130
131
132/* IEEE 802.11, 7.3.2.25.3 RSN Capabilities */
133#define WPA_CAPABILITY_PREAUTH BIT(0)
0b60b0aa
JM
134#define WPA_CAPABILITY_NO_PAIRWISE BIT(1)
135/* B2-B3: PTKSA Replay Counter */
136/* B4-B5: GTKSA Replay Counter */
137#define WPA_CAPABILITY_MFPR BIT(6)
138#define WPA_CAPABILITY_MFPC BIT(7)
cd9fc786 139/* B8: Reserved */
6fc6879b 140#define WPA_CAPABILITY_PEERKEY_ENABLED BIT(9)
cd9fc786
JM
141#define WPA_CAPABILITY_SPP_A_MSDU_CAPABLE BIT(10)
142#define WPA_CAPABILITY_SPP_A_MSDU_REQUIRED BIT(11)
143#define WPA_CAPABILITY_PBAC BIT(12)
144#define WPA_CAPABILITY_EXT_KEY_ID_FOR_UNICAST BIT(13)
145/* B14-B15: Reserved */
6fc6879b
JM
146
147
148/* IEEE 802.11r */
149#define MOBILITY_DOMAIN_ID_LEN 2
150#define FT_R0KH_ID_MAX_LEN 48
151#define FT_R1KH_ID_LEN 6
152#define WPA_PMK_NAME_LEN 16
153
154
155/* IEEE 802.11, 8.5.2 EAPOL-Key frames */
156#define WPA_KEY_INFO_TYPE_MASK ((u16) (BIT(0) | BIT(1) | BIT(2)))
a5d75636 157#define WPA_KEY_INFO_TYPE_AKM_DEFINED 0
6fc6879b
JM
158#define WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 BIT(0)
159#define WPA_KEY_INFO_TYPE_HMAC_SHA1_AES BIT(1)
160#define WPA_KEY_INFO_TYPE_AES_128_CMAC 3
161#define WPA_KEY_INFO_KEY_TYPE BIT(3) /* 1 = Pairwise, 0 = Group key */
162/* bit4..5 is used in WPA, but is reserved in IEEE 802.11i/RSN */
163#define WPA_KEY_INFO_KEY_INDEX_MASK (BIT(4) | BIT(5))
164#define WPA_KEY_INFO_KEY_INDEX_SHIFT 4
165#define WPA_KEY_INFO_INSTALL BIT(6) /* pairwise */
166#define WPA_KEY_INFO_TXRX BIT(6) /* group */
167#define WPA_KEY_INFO_ACK BIT(7)
168#define WPA_KEY_INFO_MIC BIT(8)
169#define WPA_KEY_INFO_SECURE BIT(9)
170#define WPA_KEY_INFO_ERROR BIT(10)
171#define WPA_KEY_INFO_REQUEST BIT(11)
172#define WPA_KEY_INFO_ENCR_KEY_DATA BIT(12) /* IEEE 802.11i/RSN only */
173#define WPA_KEY_INFO_SMK_MESSAGE BIT(13)
174
175
176struct wpa_eapol_key {
177 u8 type;
178 /* Note: key_info, key_length, and key_data_length are unaligned */
179 u8 key_info[2]; /* big endian */
180 u8 key_length[2]; /* big endian */
181 u8 replay_counter[WPA_REPLAY_COUNTER_LEN];
182 u8 key_nonce[WPA_NONCE_LEN];
183 u8 key_iv[16];
184 u8 key_rsc[WPA_KEY_RSC_LEN];
185 u8 key_id[8]; /* Reserved in IEEE 802.11i/RSN */
6d014ffc
JM
186 /* variable length Key MIC field */
187 /* big endian 2-octet Key Data Length field */
188 /* followed by Key Data Length bytes of Key Data */
5e3b5197
JM
189} STRUCT_PACKED;
190
191#define WPA_EAPOL_KEY_MIC_MAX_LEN 24
192#define WPA_KCK_MAX_LEN 24
94318a0d 193#define WPA_KEK_MAX_LEN 64
98cd3d1c
JM
194#define WPA_TK_MAX_LEN 32
195
6fc6879b
JM
196/**
197 * struct wpa_ptk - WPA Pairwise Transient Key
198 * IEEE Std 802.11i-2004 - 8.5.1.2 Pairwise key hierarchy
199 */
200struct wpa_ptk {
98cd3d1c
JM
201 u8 kck[WPA_KCK_MAX_LEN]; /* EAPOL-Key Key Confirmation Key (KCK) */
202 u8 kek[WPA_KEK_MAX_LEN]; /* EAPOL-Key Key Encryption Key (KEK) */
203 u8 tk[WPA_TK_MAX_LEN]; /* Temporal Key (TK) */
204 size_t kck_len;
205 size_t kek_len;
206 size_t tk_len;
207};
6fc6879b
JM
208
209
210/* WPA IE version 1
211 * 00-50-f2:1 (OUI:OUI type)
212 * 0x01 0x00 (version; little endian)
213 * (all following fields are optional:)
214 * Group Suite Selector (4 octets) (default: TKIP)
215 * Pairwise Suite Count (2 octets, little endian) (default: 1)
216 * Pairwise Suite List (4 * n octets) (default: TKIP)
217 * Authenticated Key Management Suite Count (2 octets, little endian)
218 * (default: 1)
219 * Authenticated Key Management Suite List (4 * n octets)
220 * (default: unspec 802.1X)
221 * WPA Capabilities (2 octets, little endian) (default: 0)
222 */
223
224struct wpa_ie_hdr {
225 u8 elem_id;
226 u8 len;
4fba48a5 227 u8 oui[4]; /* 24-bit OUI followed by 8-bit OUI type */
6fc6879b
JM
228 u8 version[2]; /* little endian */
229} STRUCT_PACKED;
230
231
232/* 1/4: PMKID
233 * 2/4: RSN IE
234 * 3/4: one or two RSN IEs + GTK IE (encrypted)
235 * 4/4: empty
236 * 1/2: GTK IE (encrypted)
237 * 2/2: empty
238 */
239
240/* RSN IE version 1
241 * 0x01 0x00 (version; little endian)
242 * (all following fields are optional:)
243 * Group Suite Selector (4 octets) (default: CCMP)
244 * Pairwise Suite Count (2 octets, little endian) (default: 1)
245 * Pairwise Suite List (4 * n octets) (default: CCMP)
246 * Authenticated Key Management Suite Count (2 octets, little endian)
247 * (default: 1)
248 * Authenticated Key Management Suite List (4 * n octets)
249 * (default: unspec 802.1X)
250 * RSN Capabilities (2 octets, little endian) (default: 0)
251 * PMKID Count (2 octets) (default: 0)
252 * PMKID List (16 * n octets)
253 * Management Group Cipher Suite (4 octets) (default: AES-128-CMAC)
254 */
255
256struct rsn_ie_hdr {
257 u8 elem_id; /* WLAN_EID_RSN */
258 u8 len;
259 u8 version[2]; /* little endian */
260} STRUCT_PACKED;
261
262
263#ifdef CONFIG_PEERKEY
264enum {
265 STK_MUI_4WAY_STA_AP = 1,
266 STK_MUI_4WAY_STAT_STA = 2,
267 STK_MUI_GTK = 3,
268 STK_MUI_SMK = 4
269};
270
271enum {
272 STK_ERR_STA_NR = 1,
273 STK_ERR_STA_NRSN = 2,
274 STK_ERR_CPHR_NS = 3,
275 STK_ERR_NO_STSL = 4
276};
277#endif /* CONFIG_PEERKEY */
278
279struct rsn_error_kde {
280 be16 mui;
281 be16 error_type;
282} STRUCT_PACKED;
283
284#ifdef CONFIG_IEEE80211W
8dd9f9cd 285#define WPA_IGTK_KDE_PREFIX_LEN (2 + 6)
6fc6879b
JM
286struct wpa_igtk_kde {
287 u8 keyid[2];
288 u8 pn[6];
8dd9f9cd 289 u8 igtk[WPA_IGTK_MAX_LEN];
6fc6879b
JM
290} STRUCT_PACKED;
291#endif /* CONFIG_IEEE80211W */
292
6fc6879b
JM
293struct rsn_mdie {
294 u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
295 u8 ft_capab;
296} STRUCT_PACKED;
297
298#define RSN_FT_CAPAB_FT_OVER_DS BIT(0)
299#define RSN_FT_CAPAB_FT_RESOURCE_REQ_SUPP BIT(1)
300
301struct rsn_ftie {
302 u8 mic_control[2];
303 u8 mic[16];
304 u8 anonce[WPA_NONCE_LEN];
305 u8 snonce[WPA_NONCE_LEN];
306 /* followed by optional parameters */
307} STRUCT_PACKED;
308
309#define FTIE_SUBELEM_R1KH_ID 1
310#define FTIE_SUBELEM_GTK 2
311#define FTIE_SUBELEM_R0KH_ID 3
0b60b0aa 312#define FTIE_SUBELEM_IGTK 4
6fc6879b 313
f238cf9f
JM
314struct rsn_rdie {
315 u8 id;
316 u8 descr_count;
317 le16 status_code;
318} STRUCT_PACKED;
319
6fc6879b
JM
320
321#ifdef _MSC_VER
322#pragma pack(pop)
323#endif /* _MSC_VER */
324
325
98cd3d1c
JM
326int wpa_eapol_key_mic(const u8 *key, size_t key_len, int akmp, int ver,
327 const u8 *buf, size_t len, u8 *mic);
328int wpa_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const char *label,
329 const u8 *addr1, const u8 *addr2,
330 const u8 *nonce1, const u8 *nonce2,
331 struct wpa_ptk *ptk, int akmp, int cipher);
6fc6879b
JM
332
333#ifdef CONFIG_IEEE80211R
98cd3d1c
JM
334int wpa_ft_mic(const u8 *kck, size_t kck_len, const u8 *sta_addr,
335 const u8 *ap_addr, u8 transaction_seqnum,
336 const u8 *mdie, size_t mdie_len,
6fc6879b
JM
337 const u8 *ftie, size_t ftie_len,
338 const u8 *rsnie, size_t rsnie_len,
339 const u8 *ric, size_t ric_len, u8 *mic);
340void wpa_derive_pmk_r0(const u8 *xxkey, size_t xxkey_len,
341 const u8 *ssid, size_t ssid_len,
342 const u8 *mdid, const u8 *r0kh_id, size_t r0kh_id_len,
343 const u8 *s0kh_id, u8 *pmk_r0, u8 *pmk_r0_name);
344void wpa_derive_pmk_r1_name(const u8 *pmk_r0_name, const u8 *r1kh_id,
345 const u8 *s1kh_id, u8 *pmk_r1_name);
346void wpa_derive_pmk_r1(const u8 *pmk_r0, const u8 *pmk_r0_name,
347 const u8 *r1kh_id, const u8 *s1kh_id,
348 u8 *pmk_r1, u8 *pmk_r1_name);
98cd3d1c
JM
349int wpa_pmk_r1_to_ptk(const u8 *pmk_r1, const u8 *snonce, const u8 *anonce,
350 const u8 *sta_addr, const u8 *bssid,
351 const u8 *pmk_r1_name,
352 struct wpa_ptk *ptk, u8 *ptk_name, int akmp, int cipher);
6fc6879b
JM
353#endif /* CONFIG_IEEE80211R */
354
355struct wpa_ie_data {
356 int proto;
357 int pairwise_cipher;
358 int group_cipher;
359 int key_mgmt;
360 int capabilities;
361 size_t num_pmkid;
362 const u8 *pmkid;
363 int mgmt_group_cipher;
364};
365
366
367int wpa_parse_wpa_ie_rsn(const u8 *rsn_ie, size_t rsn_ie_len,
368 struct wpa_ie_data *data);
f3b87561
JM
369int wpa_parse_wpa_ie_wpa(const u8 *wpa_ie, size_t wpa_ie_len,
370 struct wpa_ie_data *data);
6fc6879b 371
13268290
JM
372void rsn_pmkid(const u8 *pmk, size_t pmk_len, const u8 *aa, const u8 *spa,
373 u8 *pmkid, int use_sha256);
087a1f4e
JM
374#ifdef CONFIG_SUITEB
375int rsn_pmkid_suite_b(const u8 *kck, size_t kck_len, const u8 *aa,
376 const u8 *spa, u8 *pmkid);
377#else /* CONFIG_SUITEB */
378static inline int rsn_pmkid_suite_b(const u8 *kck, size_t kck_len, const u8 *aa,
379 const u8 *spa, u8 *pmkid)
380{
381 return -1;
382}
383#endif /* CONFIG_SUITEB */
5e3b5197
JM
384#ifdef CONFIG_SUITEB192
385int rsn_pmkid_suite_b_192(const u8 *kck, size_t kck_len, const u8 *aa,
386 const u8 *spa, u8 *pmkid);
387#else /* CONFIG_SUITEB192 */
388static inline int rsn_pmkid_suite_b_192(const u8 *kck, size_t kck_len,
389 const u8 *aa, const u8 *spa, u8 *pmkid)
390{
391 return -1;
392}
393#endif /* CONFIG_SUITEB192 */
13268290 394
43fb5297
JM
395const char * wpa_cipher_txt(int cipher);
396const char * wpa_key_mgmt_txt(int key_mgmt, int proto);
6c460eaf 397u32 wpa_akm_to_suite(int akm);
26e23750
JM
398int wpa_compare_rsn_ie(int ft_initial_assoc,
399 const u8 *ie1, size_t ie1len,
400 const u8 *ie2, size_t ie2len);
59e78c24 401int wpa_insert_pmkid(u8 *ies, size_t *ies_len, const u8 *pmkid);
43fb5297 402
6554237f
JM
403struct wpa_ft_ies {
404 const u8 *mdie;
405 size_t mdie_len;
406 const u8 *ftie;
407 size_t ftie_len;
408 const u8 *r1kh_id;
409 const u8 *gtk;
410 size_t gtk_len;
411 const u8 *r0kh_id;
412 size_t r0kh_id_len;
413 const u8 *rsn;
414 size_t rsn_len;
415 const u8 *rsn_pmkid;
416 const u8 *tie;
417 size_t tie_len;
418 const u8 *igtk;
419 size_t igtk_len;
420 const u8 *ric;
421 size_t ric_len;
96590564
MB
422 int key_mgmt;
423 int pairwise_cipher;
6554237f
JM
424};
425
426int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, struct wpa_ft_ies *parse);
427
c3550295
JM
428int wpa_cipher_key_len(int cipher);
429int wpa_cipher_rsc_len(int cipher);
430int wpa_cipher_to_alg(int cipher);
05a90d78 431int wpa_cipher_valid_group(int cipher);
c3550295 432int wpa_cipher_valid_pairwise(int cipher);
8dd9f9cd 433int wpa_cipher_valid_mgmt_group(int cipher);
c3550295
JM
434u32 wpa_cipher_to_suite(int proto, int cipher);
435int rsn_cipher_put_suites(u8 *pos, int ciphers);
436int wpa_cipher_put_suites(u8 *pos, int ciphers);
edbd2a19
JM
437int wpa_pick_pairwise_cipher(int ciphers, int none_allowed);
438int wpa_pick_group_cipher(int ciphers);
a39c78be 439int wpa_parse_cipher(const char *value);
0282a8c4 440int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim);
cf830c1c 441int wpa_select_ap_group_cipher(int wpa, int wpa_pairwise, int rsn_pairwise);
5e3b5197 442unsigned int wpa_mic_len(int akmp);
94f66e8a 443u16 fils_domain_name_hash(const char *domain);
c3550295 444
6fc6879b 445#endif /* WPA_COMMON_H */