Deleted Added
full compact
wpa_common.h (296373) wpa_common.h (324740)
1/*
2 * WPA definitions shared between hostapd and wpa_supplicant
3 * Copyright (c) 2002-2008, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8

--- 173 unchanged lines hidden (view full) ---

182 u8 tk2[16]; /* Temporal Key 2 (TK2) */
183 struct {
184 u8 tx_mic_key[8];
185 u8 rx_mic_key[8];
186 } auth;
187 } u;
188} STRUCT_PACKED;
189
1/*
2 * WPA definitions shared between hostapd and wpa_supplicant
3 * Copyright (c) 2002-2008, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8

--- 173 unchanged lines hidden (view full) ---

182 u8 tk2[16]; /* Temporal Key 2 (TK2) */
183 struct {
184 u8 tx_mic_key[8];
185 u8 rx_mic_key[8];
186 } auth;
187 } u;
188} STRUCT_PACKED;
189
190struct wpa_gtk {
191 u8 gtk[WPA_GTK_MAX_LEN];
192 size_t gtk_len;
193};
190
194
195#ifdef CONFIG_IEEE80211W
196struct wpa_igtk {
197 u8 igtk[WPA_IGTK_MAX_LEN];
198 size_t igtk_len;
199};
200#endif /* CONFIG_IEEE80211W */
201
191/* WPA IE version 1
192 * 00-50-f2:1 (OUI:OUI type)
193 * 0x01 0x00 (version; little endian)
194 * (all following fields are optional:)
195 * Group Suite Selector (4 octets) (default: TKIP)
196 * Pairwise Suite Count (2 octets, little endian) (default: 1)
197 * Pairwise Suite List (4 * n octets) (default: TKIP)
198 * Authenticated Key Management Suite Count (2 octets, little endian)

--- 196 unchanged lines hidden ---
202/* WPA IE version 1
203 * 00-50-f2:1 (OUI:OUI type)
204 * 0x01 0x00 (version; little endian)
205 * (all following fields are optional:)
206 * Group Suite Selector (4 octets) (default: TKIP)
207 * Pairwise Suite Count (2 octets, little endian) (default: 1)
208 * Pairwise Suite List (4 * n octets) (default: TKIP)
209 * Authenticated Key Management Suite Count (2 octets, little endian)

--- 196 unchanged lines hidden ---