2019-06-04 16:11:33 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2009-01-08 19:32:01 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2008, Jouni Malinen <j@w1.fi>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AES_CMAC_H
|
|
|
|
#define AES_CMAC_H
|
|
|
|
|
|
|
|
#include <linux/crypto.h>
|
2017-02-06 18:49:28 +08:00
|
|
|
#include <crypto/hash.h>
|
2009-01-08 19:32:01 +08:00
|
|
|
|
2017-02-06 18:49:28 +08:00
|
|
|
struct crypto_shash *ieee80211_aes_cmac_key_setup(const u8 key[],
|
|
|
|
size_t key_len);
|
|
|
|
void ieee80211_aes_cmac(struct crypto_shash *tfm, const u8 *aad,
|
2009-01-08 19:32:01 +08:00
|
|
|
const u8 *data, size_t data_len, u8 *mic);
|
2017-02-06 18:49:28 +08:00
|
|
|
void ieee80211_aes_cmac_256(struct crypto_shash *tfm, const u8 *aad,
|
2015-01-25 01:52:08 +08:00
|
|
|
const u8 *data, size_t data_len, u8 *mic);
|
2017-02-06 18:49:28 +08:00
|
|
|
void ieee80211_aes_cmac_key_free(struct crypto_shash *tfm);
|
2009-01-08 19:32:01 +08:00
|
|
|
|
|
|
|
#endif /* AES_CMAC_H */
|