blob: 16e4dba4aa700f09655577c9d3cd4b7a05945a51 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2004, Instant802 Networks, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef WPA_H
10#define WPA_H
11
12#include <linux/skbuff.h>
13#include <linux/types.h>
14#include "ieee80211_i.h"
15
Johannes Berg9ae54c82008-01-31 19:48:20 +010016ieee80211_tx_result
Jiri Bencf0706e82007-05-05 11:45:53 -070017ieee80211_tx_h_michael_mic_add(struct ieee80211_txrx_data *tx);
Johannes Berg9ae54c82008-01-31 19:48:20 +010018ieee80211_rx_result
Jiri Bencf0706e82007-05-05 11:45:53 -070019ieee80211_rx_h_michael_mic_verify(struct ieee80211_txrx_data *rx);
20
Johannes Berg9ae54c82008-01-31 19:48:20 +010021ieee80211_tx_result
Johannes Berg6a22a592007-09-26 15:19:41 +020022ieee80211_crypto_tkip_encrypt(struct ieee80211_txrx_data *tx);
Johannes Berg9ae54c82008-01-31 19:48:20 +010023ieee80211_rx_result
Johannes Berg4f0d18e2007-09-26 15:19:40 +020024ieee80211_crypto_tkip_decrypt(struct ieee80211_txrx_data *rx);
Jiri Bencf0706e82007-05-05 11:45:53 -070025
Johannes Berg9ae54c82008-01-31 19:48:20 +010026ieee80211_tx_result
Johannes Berg6a22a592007-09-26 15:19:41 +020027ieee80211_crypto_ccmp_encrypt(struct ieee80211_txrx_data *tx);
Johannes Berg9ae54c82008-01-31 19:48:20 +010028ieee80211_rx_result
Johannes Berg4f0d18e2007-09-26 15:19:40 +020029ieee80211_crypto_ccmp_decrypt(struct ieee80211_txrx_data *rx);
Jiri Bencf0706e82007-05-05 11:45:53 -070030
31#endif /* WPA_H */