mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
Added support for configuring IGTK
This needs changes in kernel code, too, but the cipher suite for IGTK is defined in IEEE 802.11w, so this code in hostapd side can be added now.
This commit is contained in:
parent
f598194e7a
commit
94e5af7948
@ -208,8 +208,13 @@ static int i802_set_encryption(const char *iface, void *priv, const char *alg,
|
|||||||
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER, 0x000FAC02);
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER, 0x000FAC02);
|
||||||
else if (strcmp(alg, "CCMP") == 0)
|
else if (strcmp(alg, "CCMP") == 0)
|
||||||
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER, 0x000FAC04);
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER, 0x000FAC04);
|
||||||
else
|
else if (strcmp(alg, "IGTK") == 0)
|
||||||
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER, 0x000FAC06);
|
||||||
|
else {
|
||||||
|
wpa_printf(MSG_ERROR, "%s: Unsupported encryption "
|
||||||
|
"algorithm '%s'", __func__, alg);
|
||||||
goto out;
|
goto out;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (addr)
|
if (addr)
|
||||||
|
Loading…
Reference in New Issue
Block a user