diff options
| author | Adrian Chadd <adrian@FreeBSD.org> | 2026-06-09 04:27:12 +0000 |
|---|---|---|
| committer | Adrian Chadd <adrian@FreeBSD.org> | 2026-06-09 04:27:12 +0000 |
| commit | 62c1865c9aaef436498c444b460e6ec2fbcaf44d (patch) | |
| tree | 608368c2cd6697d34c1f4a55b5014cfbc391b96c | |
| parent | a653fd5560cfdd68f634cca7352c56f2cf7e1473 (diff) | |
net80211: delete the deprecated ieee80211_wepkey struct
This hasn't been used in a long time, and since I am shuffling around
the net80211 crypto API a bunch, let's just delete it instead of
leaving it here and trying to figure out how to support it if it's
used by userland somehow.
Reviewed by: guest-seuros
Differential Revision: https://reviews.freebsd.org/D57312
| -rw-r--r-- | sys/net80211/ieee80211_crypto.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/net80211/ieee80211_crypto.h b/sys/net80211/ieee80211_crypto.h index 824983ae4d2d..9ae91bcaeb5d 100644 --- a/sys/net80211/ieee80211_crypto.h +++ b/sys/net80211/ieee80211_crypto.h @@ -50,14 +50,6 @@ #define IEEE80211_KEYBUF_SIZE IEEE80211_KEYBUF_128_SIZE #define IEEE80211_MICBUF_SIZE IEEE80211_MICBUF_128_SIZE -/* - * Old WEP-style key. Deprecated. - */ -struct ieee80211_wepkey { - u_int wk_len; /* key length in bytes */ - uint8_t wk_key[IEEE80211_KEYBUF_SIZE]; -}; - struct ieee80211_rsnparms { uint8_t rsn_mcastcipher; /* mcast/group cipher */ uint8_t rsn_mcastkeylen; /* mcast key length */ |
