1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| /*
| * wlantest - IEEE 802.11 protocol monitoring and testing tool
| * Copyright (c) 2010-2013, Jouni Malinen <j@w1.fi>
| *
| * This software may be distributed under the terms of the BSD license.
| * See README for more details.
| */
|
| #ifndef WLANCRYPTO_WRAP_H
| #define WLANCRYPTO_WRAP_H
|
| int sha256_vector(size_t num_elem, const u8 *addr[], const size_t *len,
| u8 *mac);
|
| u8* ccmp_decrypt(_adapter *padapter, const u8 *tk, const struct ieee80211_hdr *hdr,
| const u8 *data, size_t data_len, size_t *decrypted_len);
| u8* ccmp_encrypt(_adapter *padapter, const u8 *tk, u8 *frame, size_t len, size_t hdrlen, u8 *qos,
| u8 *pn, int keyid, size_t *encrypted_len);
| u8* ccmp_encrypt_pv1(const u8 *tk, const u8 *a1, const u8 *a2, const u8 *a3,
| const u8 *frame, size_t len,
| size_t hdrlen, const u8 *pn, int keyid,
| size_t *encrypted_len);
| u8* ccmp_256_decrypt(_adapter *padapter, const u8 *tk, const struct ieee80211_hdr *hdr,
| const u8 *data, size_t data_len, size_t *decrypted_len);
| u8* ccmp_256_encrypt(_adapter *padapter, const u8 *tk, u8 *frame, size_t len, size_t hdrlen,
| u8 *qos, u8 *pn, int keyid, size_t *encrypted_len);
|
| u8* gcmp_decrypt(_adapter *padapter, const u8 *tk, size_t tk_len, const struct ieee80211_hdr *hdr,
| const u8 *data, size_t data_len, size_t *decrypted_len);
| u8* gcmp_encrypt(_adapter *padapter, const u8 *tk, size_t tk_len, const u8 *frame, size_t len,
| size_t hdrlen, const u8 *qos,
| const u8 *pn, int keyid, size_t *encrypted_len);
|
| #endif /* WLANCRYPTO_WRAP_H */
|
|