1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Copyright 2008, Jouni Malinen <j@w1.fi> 4 */ 5 6 #ifndef AES_CMAC_H 7 #define AES_CMAC_H 8 9 #include <crypto/aes-cbc-macs.h> 10 11 void ieee80211_aes_cmac(const struct aes_cmac_key *key, const u8 *aad, 12 const u8 *data, size_t data_len, u8 *mic, 13 unsigned int mic_len); 14 15 #endif /* AES_CMAC_H */ 16