/*1* Copyright 2008, Jouni Malinen <[email protected]>2*3* This program is free software; you can redistribute it and/or modify4* it under the terms of the GNU General Public License version 2 as5* published by the Free Software Foundation.6*/78#ifndef AES_CMAC_H9#define AES_CMAC_H1011#include <linux/crypto.h>1213struct crypto_cipher * ieee80211_aes_cmac_key_setup(const u8 key[]);14void ieee80211_aes_cmac(struct crypto_cipher *tfm, u8 *scratch, const u8 *aad,15const u8 *data, size_t data_len, u8 *mic);16void ieee80211_aes_cmac_key_free(struct crypto_cipher *tfm);1718#endif /* AES_CMAC_H */192021