Thomas Gleixner | 21042e4 | 2019-06-04 10:11:34 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 2 | /* |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 3 | * lib80211 crypt: host-based WEP encryption implementation for lib80211 |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 4 | * |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 5 | * Copyright (c) 2002-2004, Jouni Malinen <j@w1.fi> |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 6 | * Copyright (c) 2008, John W. Linville <linville@tuxdriver.com> |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 7 | */ |
| 8 | |
Herbert Xu | f12cc20 | 2006-08-22 20:36:13 +1000 | [diff] [blame] | 9 | #include <linux/err.h> |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 10 | #include <linux/module.h> |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/slab.h> |
| 13 | #include <linux/random.h> |
Ralf Baechle | 1176360 | 2007-10-23 20:42:11 +0200 | [diff] [blame] | 14 | #include <linux/scatterlist.h> |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 15 | #include <linux/skbuff.h> |
Al Viro | d7fe0f2 | 2006-12-03 23:15:30 -0500 | [diff] [blame] | 16 | #include <linux/mm.h> |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 17 | #include <asm/string.h> |
| 18 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 19 | #include <net/lib80211.h> |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 20 | |
Johannes Berg | b802a5d | 2018-10-01 09:16:08 +0200 | [diff] [blame] | 21 | #include <linux/crypto.h> |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 22 | #include <linux/crc32.h> |
| 23 | |
| 24 | MODULE_AUTHOR("Jouni Malinen"); |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 25 | MODULE_DESCRIPTION("lib80211 crypt: WEP"); |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 26 | MODULE_LICENSE("GPL"); |
| 27 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 28 | struct lib80211_wep_data { |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 29 | u32 iv; |
| 30 | #define WEP_KEY_LEN 13 |
| 31 | u8 key[WEP_KEY_LEN + 1]; |
| 32 | u8 key_len; |
| 33 | u8 key_idx; |
Johannes Berg | b802a5d | 2018-10-01 09:16:08 +0200 | [diff] [blame] | 34 | struct crypto_cipher *tx_tfm; |
| 35 | struct crypto_cipher *rx_tfm; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 36 | }; |
| 37 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 38 | static void *lib80211_wep_init(int keyidx) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 39 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 40 | struct lib80211_wep_data *priv; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 41 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 42 | priv = kzalloc(sizeof(*priv), GFP_ATOMIC); |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 43 | if (priv == NULL) |
| 44 | goto fail; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 45 | priv->key_idx = keyidx; |
| 46 | |
Eric Biggers | 1ad0f16 | 2018-11-14 12:19:39 -0800 | [diff] [blame] | 47 | priv->tx_tfm = crypto_alloc_cipher("arc4", 0, 0); |
Jeff Garzik | 28eb177 | 2006-09-22 20:10:23 -0400 | [diff] [blame] | 48 | if (IS_ERR(priv->tx_tfm)) { |
Jeff Garzik | 1837987 | 2006-09-22 21:19:05 -0400 | [diff] [blame] | 49 | priv->tx_tfm = NULL; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 50 | goto fail; |
| 51 | } |
| 52 | |
Eric Biggers | 1ad0f16 | 2018-11-14 12:19:39 -0800 | [diff] [blame] | 53 | priv->rx_tfm = crypto_alloc_cipher("arc4", 0, 0); |
Jeff Garzik | 28eb177 | 2006-09-22 20:10:23 -0400 | [diff] [blame] | 54 | if (IS_ERR(priv->rx_tfm)) { |
Jeff Garzik | 1837987 | 2006-09-22 21:19:05 -0400 | [diff] [blame] | 55 | priv->rx_tfm = NULL; |
Zhu Yi | 5a65694 | 2006-08-21 11:33:56 +0800 | [diff] [blame] | 56 | goto fail; |
| 57 | } |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 58 | /* start WEP IV from a random value */ |
| 59 | get_random_bytes(&priv->iv, 4); |
| 60 | |
| 61 | return priv; |
| 62 | |
Jeff Garzik | 0edd5b4 | 2005-09-07 00:48:31 -0400 | [diff] [blame] | 63 | fail: |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 64 | if (priv) { |
Johannes Berg | b802a5d | 2018-10-01 09:16:08 +0200 | [diff] [blame] | 65 | crypto_free_cipher(priv->tx_tfm); |
| 66 | crypto_free_cipher(priv->rx_tfm); |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 67 | kfree(priv); |
| 68 | } |
| 69 | return NULL; |
| 70 | } |
| 71 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 72 | static void lib80211_wep_deinit(void *priv) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 73 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 74 | struct lib80211_wep_data *_priv = priv; |
Zhu Yi | 5a65694 | 2006-08-21 11:33:56 +0800 | [diff] [blame] | 75 | if (_priv) { |
Johannes Berg | b802a5d | 2018-10-01 09:16:08 +0200 | [diff] [blame] | 76 | crypto_free_cipher(_priv->tx_tfm); |
| 77 | crypto_free_cipher(_priv->rx_tfm); |
Zhu Yi | 5a65694 | 2006-08-21 11:33:56 +0800 | [diff] [blame] | 78 | } |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 79 | kfree(priv); |
| 80 | } |
| 81 | |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 82 | /* Add WEP IV/key info to a frame that has at least 4 bytes of headroom */ |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 83 | static int lib80211_wep_build_iv(struct sk_buff *skb, int hdr_len, |
Zhu Yi | 9184d93 | 2006-01-19 16:22:32 +0800 | [diff] [blame] | 84 | u8 *key, int keylen, void *priv) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 85 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 86 | struct lib80211_wep_data *wep = priv; |
Rajkumar Manoharan | 6572e91 | 2011-04-25 15:56:16 +0530 | [diff] [blame] | 87 | u32 klen; |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 88 | u8 *pos; |
YOSHIFUJI Hideaki | 6426565 | 2007-02-09 23:24:46 +0900 | [diff] [blame] | 89 | |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 90 | if (skb_headroom(skb) < 4 || skb->len < hdr_len) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 91 | return -1; |
| 92 | |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 93 | pos = skb_push(skb, 4); |
| 94 | memmove(pos, pos + 4, hdr_len); |
| 95 | pos += hdr_len; |
| 96 | |
| 97 | klen = 3 + wep->key_len; |
| 98 | |
| 99 | wep->iv++; |
| 100 | |
| 101 | /* Fluhrer, Mantin, and Shamir have reported weaknesses in the key |
| 102 | * scheduling algorithm of RC4. At least IVs (KeyByte + 3, 0xff, N) |
| 103 | * can be used to speedup attacks, so avoid using them. */ |
| 104 | if ((wep->iv & 0xff00) == 0xff00) { |
| 105 | u8 B = (wep->iv >> 16) & 0xff; |
| 106 | if (B >= 3 && B < klen) |
| 107 | wep->iv += 0x0100; |
| 108 | } |
| 109 | |
| 110 | /* Prepend 24-bit IV to RC4 key and TX frame */ |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 111 | *pos++ = (wep->iv >> 16) & 0xff; |
| 112 | *pos++ = (wep->iv >> 8) & 0xff; |
| 113 | *pos++ = wep->iv & 0xff; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 114 | *pos++ = wep->key_idx << 6; |
| 115 | |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | /* Perform WEP encryption on given skb that has at least 4 bytes of headroom |
| 120 | * for IV and 4 bytes of tailroom for ICV. Both IV and ICV will be transmitted, |
| 121 | * so the payload length increases with 8 bytes. |
| 122 | * |
| 123 | * WEP frame payload: IV + TX key idx, RC4(data), ICV = RC4(CRC32(data)) |
| 124 | */ |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 125 | static int lib80211_wep_encrypt(struct sk_buff *skb, int hdr_len, void *priv) |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 126 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 127 | struct lib80211_wep_data *wep = priv; |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 128 | u32 crc, klen, len; |
| 129 | u8 *pos, *icv; |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 130 | u8 key[WEP_KEY_LEN + 3]; |
Johannes Berg | b802a5d | 2018-10-01 09:16:08 +0200 | [diff] [blame] | 131 | int i; |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 132 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 133 | /* other checks are in lib80211_wep_build_iv */ |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 134 | if (skb_tailroom(skb) < 4) |
| 135 | return -1; |
YOSHIFUJI Hideaki | 6426565 | 2007-02-09 23:24:46 +0900 | [diff] [blame] | 136 | |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 137 | /* add the IV to the frame */ |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 138 | if (lib80211_wep_build_iv(skb, hdr_len, NULL, 0, priv)) |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 139 | return -1; |
YOSHIFUJI Hideaki | 6426565 | 2007-02-09 23:24:46 +0900 | [diff] [blame] | 140 | |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 141 | /* Copy the IV into the first 3 bytes of the key */ |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 142 | skb_copy_from_linear_data_offset(skb, hdr_len, key, 3); |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 143 | |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 144 | /* Copy rest of the WEP key (the secret part) */ |
| 145 | memcpy(key + 3, wep->key, wep->key_len); |
YOSHIFUJI Hideaki | 6426565 | 2007-02-09 23:24:46 +0900 | [diff] [blame] | 146 | |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 147 | len = skb->len - hdr_len - 4; |
| 148 | pos = skb->data + hdr_len + 4; |
| 149 | klen = 3 + wep->key_len; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 150 | |
Johannes Berg | a4bf26f | 2005-12-31 11:35:20 +0100 | [diff] [blame] | 151 | /* Append little-endian CRC32 over only the data and encrypt it to produce ICV */ |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 152 | crc = ~crc32_le(~0, pos, len); |
| 153 | icv = skb_put(skb, 4); |
| 154 | icv[0] = crc; |
| 155 | icv[1] = crc >> 8; |
| 156 | icv[2] = crc >> 16; |
| 157 | icv[3] = crc >> 24; |
| 158 | |
Johannes Berg | b802a5d | 2018-10-01 09:16:08 +0200 | [diff] [blame] | 159 | crypto_cipher_setkey(wep->tx_tfm, key, klen); |
| 160 | |
| 161 | for (i = 0; i < len + 4; i++) |
| 162 | crypto_cipher_encrypt_one(wep->tx_tfm, pos + i, pos + i); |
| 163 | |
| 164 | return 0; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 165 | } |
| 166 | |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 167 | /* Perform WEP decryption on given buffer. Buffer includes whole WEP part of |
| 168 | * the frame: IV (4 bytes), encrypted payload (including SNAP header), |
| 169 | * ICV (4 bytes). len includes both IV and ICV. |
| 170 | * |
| 171 | * Returns 0 if frame was decrypted successfully and ICV was correct and -1 on |
| 172 | * failure. If frame is OK, IV and ICV will be removed. |
| 173 | */ |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 174 | static int lib80211_wep_decrypt(struct sk_buff *skb, int hdr_len, void *priv) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 175 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 176 | struct lib80211_wep_data *wep = priv; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 177 | u32 crc, klen, plen; |
| 178 | u8 key[WEP_KEY_LEN + 3]; |
| 179 | u8 keyidx, *pos, icv[4]; |
Johannes Berg | b802a5d | 2018-10-01 09:16:08 +0200 | [diff] [blame] | 180 | int i; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 181 | |
| 182 | if (skb->len < hdr_len + 8) |
| 183 | return -1; |
| 184 | |
| 185 | pos = skb->data + hdr_len; |
| 186 | key[0] = *pos++; |
| 187 | key[1] = *pos++; |
| 188 | key[2] = *pos++; |
| 189 | keyidx = *pos++ >> 6; |
| 190 | if (keyidx != wep->key_idx) |
| 191 | return -1; |
| 192 | |
| 193 | klen = 3 + wep->key_len; |
| 194 | |
| 195 | /* Copy rest of the WEP key (the secret part) */ |
| 196 | memcpy(key + 3, wep->key, wep->key_len); |
| 197 | |
| 198 | /* Apply RC4 to data and compute CRC32 over decrypted data */ |
| 199 | plen = skb->len - hdr_len - 8; |
| 200 | |
Johannes Berg | b802a5d | 2018-10-01 09:16:08 +0200 | [diff] [blame] | 201 | crypto_cipher_setkey(wep->rx_tfm, key, klen); |
| 202 | for (i = 0; i < plen + 4; i++) |
| 203 | crypto_cipher_decrypt_one(wep->rx_tfm, pos + i, pos + i); |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 204 | |
| 205 | crc = ~crc32_le(~0, pos, plen); |
| 206 | icv[0] = crc; |
| 207 | icv[1] = crc >> 8; |
| 208 | icv[2] = crc >> 16; |
| 209 | icv[3] = crc >> 24; |
| 210 | if (memcmp(icv, pos + plen, 4) != 0) { |
| 211 | /* ICV mismatch - drop frame */ |
| 212 | return -2; |
| 213 | } |
| 214 | |
| 215 | /* Remove IV and ICV */ |
| 216 | memmove(skb->data + 4, skb->data, hdr_len); |
| 217 | skb_pull(skb, 4); |
| 218 | skb_trim(skb, skb->len - 4); |
| 219 | |
| 220 | return 0; |
| 221 | } |
| 222 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 223 | static int lib80211_wep_set_key(void *key, int len, u8 * seq, void *priv) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 224 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 225 | struct lib80211_wep_data *wep = priv; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 226 | |
| 227 | if (len < 0 || len > WEP_KEY_LEN) |
| 228 | return -1; |
| 229 | |
| 230 | memcpy(wep->key, key, len); |
| 231 | wep->key_len = len; |
| 232 | |
| 233 | return 0; |
| 234 | } |
| 235 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 236 | static int lib80211_wep_get_key(void *key, int len, u8 * seq, void *priv) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 237 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 238 | struct lib80211_wep_data *wep = priv; |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 239 | |
| 240 | if (len < wep->key_len) |
| 241 | return -1; |
| 242 | |
| 243 | memcpy(key, wep->key, wep->key_len); |
| 244 | |
| 245 | return wep->key_len; |
| 246 | } |
| 247 | |
David Howells | 6bbefe8 | 2013-04-10 21:13:23 +0100 | [diff] [blame] | 248 | static void lib80211_wep_print_stats(struct seq_file *m, void *priv) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 249 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 250 | struct lib80211_wep_data *wep = priv; |
David Howells | 6bbefe8 | 2013-04-10 21:13:23 +0100 | [diff] [blame] | 251 | seq_printf(m, "key[%d] alg=WEP len=%d\n", wep->key_idx, wep->key_len); |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 252 | } |
| 253 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 254 | static struct lib80211_crypto_ops lib80211_crypt_wep = { |
James Ketrenos | 74079fd | 2005-09-13 17:35:21 -0500 | [diff] [blame] | 255 | .name = "WEP", |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 256 | .init = lib80211_wep_init, |
| 257 | .deinit = lib80211_wep_deinit, |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 258 | .encrypt_mpdu = lib80211_wep_encrypt, |
| 259 | .decrypt_mpdu = lib80211_wep_decrypt, |
James Ketrenos | 74079fd | 2005-09-13 17:35:21 -0500 | [diff] [blame] | 260 | .encrypt_msdu = NULL, |
| 261 | .decrypt_msdu = NULL, |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 262 | .set_key = lib80211_wep_set_key, |
| 263 | .get_key = lib80211_wep_get_key, |
| 264 | .print_stats = lib80211_wep_print_stats, |
James Ketrenos | 1264fc0 | 2005-09-21 11:54:53 -0500 | [diff] [blame] | 265 | .extra_mpdu_prefix_len = 4, /* IV */ |
| 266 | .extra_mpdu_postfix_len = 4, /* ICV */ |
James Ketrenos | 74079fd | 2005-09-13 17:35:21 -0500 | [diff] [blame] | 267 | .owner = THIS_MODULE, |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 268 | }; |
| 269 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 270 | static int __init lib80211_crypto_wep_init(void) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 271 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 272 | return lib80211_register_crypto_ops(&lib80211_crypt_wep); |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 273 | } |
| 274 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 275 | static void __exit lib80211_crypto_wep_exit(void) |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 276 | { |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 277 | lib80211_unregister_crypto_ops(&lib80211_crypt_wep); |
Jeff Garzik | b453872 | 2005-05-12 22:48:20 -0400 | [diff] [blame] | 278 | } |
| 279 | |
John W. Linville | 274bfb8 | 2008-10-29 11:35:05 -0400 | [diff] [blame] | 280 | module_init(lib80211_crypto_wep_init); |
| 281 | module_exit(lib80211_crypto_wep_exit); |