mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 11:32:04 +00:00
a7b6f0c555
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Cc: "John W. Linville" <linville@tuxdriver.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
25 lines
587 B
C
25 lines
587 B
C
/*
|
|
* Michael MIC implementation - optimized for TKIP MIC operations
|
|
* Copyright 2002-2003, Instant802 Networks, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef MICHAEL_H
|
|
#define MICHAEL_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define MICHAEL_MIC_LEN 8
|
|
|
|
struct michael_mic_ctx {
|
|
u32 l, r;
|
|
};
|
|
|
|
void michael_mic(const u8 *key, const u8 *da, const u8 *sa, u8 priority,
|
|
const u8 *data, size_t data_len, u8 *mic);
|
|
|
|
#endif /* MICHAEL_H */
|