/*1* Michael MIC implementation - optimized for TKIP MIC operations2* Copyright 2002-2003, Instant802 Networks, Inc.3*4* This program is free software; you can redistribute it and/or modify5* it under the terms of the GNU General Public License version 2 as6* published by the Free Software Foundation.7*/89#ifndef MICHAEL_H10#define MICHAEL_H1112#include <linux/types.h>1314#define MICHAEL_MIC_LEN 81516struct michael_mic_ctx {17u32 l, r;18};1920void michael_mic(const u8 *key, struct ieee80211_hdr *hdr,21const u8 *data, size_t data_len, u8 *mic);2223#endif /* MICHAEL_H */242526