Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * FILS AEAD for (Re)Association Request/Response frames
0004  * Copyright 2016, Qualcomm Atheros, Inc.
0005  */
0006 
0007 #ifndef FILS_AEAD_H
0008 #define FILS_AEAD_H
0009 
0010 int fils_encrypt_assoc_req(struct sk_buff *skb,
0011                struct ieee80211_mgd_assoc_data *assoc_data);
0012 int fils_decrypt_assoc_resp(struct ieee80211_sub_if_data *sdata,
0013                 u8 *frame, size_t *frame_len,
0014                 struct ieee80211_mgd_assoc_data *assoc_data);
0015 
0016 #endif /* FILS_AEAD_H */