/* * Copyright 2008, Jouni Malinen <j@w1.fi> * * 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 AES_CMAC_H#define AES_CMAC_H#include <linux/crypto.h>structcrypto_cipher*ieee80211_aes_cmac_key_setup(constu8key[]);voidieee80211_aes_cmac(structcrypto_cipher*tfm,constu8*aad,constu8*data,size_tdata_len,u8*mic);voidieee80211_aes_cmac_key_free(structcrypto_cipher*tfm);#endif /* AES_CMAC_H */