blob: c868153f87206bbd5d11b14b9c1056eb57a0d2e6 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * FILS AEAD for (Re)Association Request/Response frames
4 * Copyright 2016, Qualcomm Atheros, Inc.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005 */
6
7#ifndef FILS_AEAD_H
8#define FILS_AEAD_H
9
10int fils_encrypt_assoc_req(struct sk_buff *skb,
11 struct ieee80211_mgd_assoc_data *assoc_data);
12int fils_decrypt_assoc_resp(struct ieee80211_sub_if_data *sdata,
13 u8 *frame, size_t *frame_len,
14 struct ieee80211_mgd_assoc_data *assoc_data);
15
16#endif /* FILS_AEAD_H */