diff options
author | David Kilroy <kilroyd@gmail.com> | 2008-08-21 23:28:05 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-22 19:28:07 -0400 |
commit | 23edcc4147ad36f8d55f0eb79c21e245ffb9f211 (patch) | |
tree | 20aaa2208d7ba51769639bcedd6be3bc3cd8673c /drivers/net/wireless/orinoco.h | |
parent | 31afcef385bb8bf528c6fbe05b359af9f456f02a (diff) | |
download | linux-stable-23edcc4147ad36f8d55f0eb79c21e245ffb9f211.tar.gz linux-stable-23edcc4147ad36f8d55f0eb79c21e245ffb9f211.tar.bz2 linux-stable-23edcc4147ad36f8d55f0eb79c21e245ffb9f211.zip |
orinoco: Add MIC on TX and check on RX
Use the MIC algorithm from the crypto subsystem.
Signed-off-by: David Kilroy <kilroyd@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/orinoco.h')
-rw-r--r-- | drivers/net/wireless/orinoco.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/orinoco.h b/drivers/net/wireless/orinoco.h index e0c9be3daa30..981570bd3b9d 100644 --- a/drivers/net/wireless/orinoco.h +++ b/drivers/net/wireless/orinoco.h @@ -158,6 +158,8 @@ struct orinoco_private { int wpa_ie_len; struct orinoco_tkip_key tkip_key[ORINOCO_MAX_KEYS]; + struct crypto_hash *rx_tfm_mic; + struct crypto_hash *tx_tfm_mic; unsigned int wpa_enabled:1; unsigned int tkip_cm_active:1; |