Linux 5.7.7
[linux/fpc-iii.git] / net / mac80211 / wpa.h
blobaf3272284e852c23e64c78d534ac09ac5befa821
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright 2002-2004, Instant802 Networks, Inc.
4 */
6 #ifndef WPA_H
7 #define WPA_H
9 #include <linux/skbuff.h>
10 #include <linux/types.h>
11 #include "ieee80211_i.h"
13 ieee80211_tx_result
14 ieee80211_tx_h_michael_mic_add(struct ieee80211_tx_data *tx);
15 ieee80211_rx_result
16 ieee80211_rx_h_michael_mic_verify(struct ieee80211_rx_data *rx);
18 ieee80211_tx_result
19 ieee80211_crypto_tkip_encrypt(struct ieee80211_tx_data *tx);
20 ieee80211_rx_result
21 ieee80211_crypto_tkip_decrypt(struct ieee80211_rx_data *rx);
23 ieee80211_tx_result
24 ieee80211_crypto_ccmp_encrypt(struct ieee80211_tx_data *tx,
25 unsigned int mic_len);
26 ieee80211_rx_result
27 ieee80211_crypto_ccmp_decrypt(struct ieee80211_rx_data *rx,
28 unsigned int mic_len);
30 ieee80211_tx_result
31 ieee80211_crypto_aes_cmac_encrypt(struct ieee80211_tx_data *tx);
32 ieee80211_tx_result
33 ieee80211_crypto_aes_cmac_256_encrypt(struct ieee80211_tx_data *tx);
34 ieee80211_rx_result
35 ieee80211_crypto_aes_cmac_decrypt(struct ieee80211_rx_data *rx);
36 ieee80211_rx_result
37 ieee80211_crypto_aes_cmac_256_decrypt(struct ieee80211_rx_data *rx);
38 ieee80211_tx_result
39 ieee80211_crypto_aes_gmac_encrypt(struct ieee80211_tx_data *tx);
40 ieee80211_rx_result
41 ieee80211_crypto_aes_gmac_decrypt(struct ieee80211_rx_data *rx);
42 ieee80211_tx_result
43 ieee80211_crypto_hw_encrypt(struct ieee80211_tx_data *tx);
44 ieee80211_rx_result
45 ieee80211_crypto_hw_decrypt(struct ieee80211_rx_data *rx);
47 ieee80211_tx_result
48 ieee80211_crypto_gcmp_encrypt(struct ieee80211_tx_data *tx);
49 ieee80211_rx_result
50 ieee80211_crypto_gcmp_decrypt(struct ieee80211_rx_data *rx);
52 #endif /* WPA_H */