diff options
author | David Kilroy <kilroyd@googlemail.com> | 2009-02-04 23:05:51 +0000 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-13 13:44:13 -0500 |
commit | 4adb474b6b7e26e1318acab5e98864aa78f9b233 (patch) | |
tree | 741b26b984fd63b4e892cfeb7640794d7be509dd /drivers/net/wireless/orinoco/mic.h | |
parent | fb791b1cfb74937332a22d6bf06eed7866fbcc3c (diff) |
orinoco: Move MIC helpers into new file
No functional change.
Signed-off-by: David Kilroy <kilroyd@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/orinoco/mic.h')
-rw-r--r-- | drivers/net/wireless/orinoco/mic.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/net/wireless/orinoco/mic.h b/drivers/net/wireless/orinoco/mic.h new file mode 100644 index 00000000000..04d05bc566d --- /dev/null +++ b/drivers/net/wireless/orinoco/mic.h @@ -0,0 +1,22 @@ +/* Orinoco MIC helpers + * + * See copyright notice in main.c + */ +#ifndef _ORINOCO_MIC_H_ +#define _ORINOCO_MIC_H_ + +#include <linux/types.h> + +#define MICHAEL_MIC_LEN 8 + +/* Forward declarations */ +struct orinoco_private; +struct crypto_hash; + +int orinoco_mic_init(struct orinoco_private *priv); +void orinoco_mic_free(struct orinoco_private *priv); +int orinoco_mic(struct crypto_hash *tfm_michael, u8 *key, + u8 *da, u8 *sa, u8 priority, + u8 *data, size_t data_len, u8 *mic); + +#endif /* ORINOCO_MIC_H */ |