1ENUM IEEE80211_KEY_F(9) Advanced driver interface ENUM IEEE80211_KEY_F(9)
2
3
4
6 enum_ieee80211_key_flags - key flags
7
9 enum ieee80211_key_flags {
10 IEEE80211_KEY_FLAG_WMM_STA,
11 IEEE80211_KEY_FLAG_GENERATE_IV,
12 IEEE80211_KEY_FLAG_GENERATE_MMIC,
13 IEEE80211_KEY_FLAG_PAIRWISE,
14 IEEE80211_KEY_FLAG_SW_MGMT
15 };
16
18 IEEE80211_KEY_FLAG_WMM_STA
19 Set by mac80211, this flag indicates that the STA this key will be
20 used with could be using QoS.
21
22 IEEE80211_KEY_FLAG_GENERATE_IV
23 This flag should be set by the driver to indicate that it requires
24 IV generation for this particular key.
25
26 IEEE80211_KEY_FLAG_GENERATE_MMIC
27 This flag should be set by the driver for a TKIP key if it requires
28 Michael MIC generation in software.
29
30 IEEE80211_KEY_FLAG_PAIRWISE
31 Set by mac80211, this flag indicates that the key is pairwise
32 rather then a shared key.
33
34 IEEE80211_KEY_FLAG_SW_MGMT
35 This flag should be set by the driver for a CCMP key if it requires
36 CCMP encryption of management frames (MFP) to be done in software.
37
39 These flags are used for communication about keys between the driver
40 and mac80211, with the flags parameter of struct ieee80211_key_conf.
41
43 Johannes Berg <johannes@sipsolutions.net>
44 Author.
45
47Kernel Hackers Manual 2.6. November 2011 ENUM IEEE80211_KEY_F(9)