add devicescape 802.11 stack
[openwrt/staging/mkresin.git] / openwrt / target / linux / package / ieee80211-dscape / src / michael.h
1 /*
2 * Michael MIC implementation - optimized for TKIP MIC operations
3 * Copyright 2002-2003, Instant802 Networks, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10 #ifndef MICHAEL_H
11 #define MICHAEL_H
12
13 #define MICHAEL_MIC_LEN 8
14
15 void michael_mic(u8 *key, u8 *da, u8 *sa, u8 priority,
16 u8 *data, size_t data_len, u8 *mic);
17
18 #endif /* MICHAEL_H */