1 /* 2 * FILS AEAD for (Re)Association Request/Response frames 3 * Copyright 2016, Qualcomm Atheros, Inc. 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License version 2 as 7 * published by the Free Software Foundation. 8 */ 9 10 #ifndef FILS_AEAD_H 11 #define FILS_AEAD_H 12 13 int fils_encrypt_assoc_req(struct sk_buff *skb, 14 struct ieee80211_mgd_assoc_data *assoc_data); 15 int fils_decrypt_assoc_resp(struct ieee80211_sub_if_data *sdata, 16 u8 *frame, size_t *frame_len, 17 struct ieee80211_mgd_assoc_data *assoc_data); 18 19 #endif /* FILS_AEAD_H */ 20