Blame view

net/mac80211/wpa.h 1.09 KB
f0706e828   Jiri Benc   [MAC80211]: Add m...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  /*
   * Copyright 2002-2004, Instant802 Networks, Inc.
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  
  #ifndef WPA_H
  #define WPA_H
  
  #include <linux/skbuff.h>
  #include <linux/types.h>
  #include "ieee80211_i.h"
9ae54c846   Johannes Berg   mac80211: split i...
15
  ieee80211_tx_result
5cf121c3c   Johannes Berg   mac80211: split i...
16
  ieee80211_tx_h_michael_mic_add(struct ieee80211_tx_data *tx);
9ae54c846   Johannes Berg   mac80211: split i...
17
  ieee80211_rx_result
5cf121c3c   Johannes Berg   mac80211: split i...
18
  ieee80211_rx_h_michael_mic_verify(struct ieee80211_rx_data *rx);
f0706e828   Jiri Benc   [MAC80211]: Add m...
19

9ae54c846   Johannes Berg   mac80211: split i...
20
  ieee80211_tx_result
5cf121c3c   Johannes Berg   mac80211: split i...
21
  ieee80211_crypto_tkip_encrypt(struct ieee80211_tx_data *tx);
9ae54c846   Johannes Berg   mac80211: split i...
22
  ieee80211_rx_result
5cf121c3c   Johannes Berg   mac80211: split i...
23
  ieee80211_crypto_tkip_decrypt(struct ieee80211_rx_data *rx);
f0706e828   Jiri Benc   [MAC80211]: Add m...
24

9ae54c846   Johannes Berg   mac80211: split i...
25
  ieee80211_tx_result
5cf121c3c   Johannes Berg   mac80211: split i...
26
  ieee80211_crypto_ccmp_encrypt(struct ieee80211_tx_data *tx);
9ae54c846   Johannes Berg   mac80211: split i...
27
  ieee80211_rx_result
5cf121c3c   Johannes Berg   mac80211: split i...
28
  ieee80211_crypto_ccmp_decrypt(struct ieee80211_rx_data *rx);
f0706e828   Jiri Benc   [MAC80211]: Add m...
29

765cb46a3   Jouni Malinen   mac80211: 802.11w...
30
31
32
33
  ieee80211_tx_result
  ieee80211_crypto_aes_cmac_encrypt(struct ieee80211_tx_data *tx);
  ieee80211_rx_result
  ieee80211_crypto_aes_cmac_decrypt(struct ieee80211_rx_data *rx);
d32a10281   Yoni Divinsky   mac80211: fix tx-...
34
35
  ieee80211_tx_result
  ieee80211_crypto_hw_encrypt(struct ieee80211_tx_data *tx);
765cb46a3   Jouni Malinen   mac80211: 802.11w...
36

f0706e828   Jiri Benc   [MAC80211]: Add m...
37
  #endif /* WPA_H */