blob: 0e4886f881f1e49f438fa0f61d5c2b021877bf30 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
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#include <linux/types.h>
Zhao, Gangaa511422014-04-09 09:28:09 +080014#include <linux/ieee80211.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015
16#define MICHAEL_MIC_LEN 8
17
Harvey Harrison1b19ca32008-05-14 16:26:17 -070018struct michael_mic_ctx {
19 u32 l, r;
20};
21
Harvey Harrison8e8862b2008-07-02 11:05:35 -070022void michael_mic(const u8 *key, struct ieee80211_hdr *hdr,
Harvey Harrisona7b6f0c2008-05-14 16:26:18 -070023 const u8 *data, size_t data_len, u8 *mic);
Jiri Bencf0706e82007-05-05 11:45:53 -070024
25#endif /* MICHAEL_H */