Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux...
[linux-2.6-block.git] / drivers / staging / vt6656 / key.h
CommitLineData
92b96797
FB
1/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
92b96797
FB
15 *
16 * File: key.h
17 *
18 * Purpose: Implement functions for 802.11i Key management
19 *
20 * Author: Jerry Chen
21 *
22 * Date: May 29, 2003
23 *
24 */
25
92b96797
FB
26#ifndef __KEY_H__
27#define __KEY_H__
28
4adc5a94 29#include "device.h"
92b96797 30
92b96797 31#define MAX_KEY_TABLE 11
92b96797
FB
32
33#define KEY_CTL_WEP 0x00
34#define KEY_CTL_NONE 0x01
35#define KEY_CTL_TKIP 0x02
36#define KEY_CTL_CCMP 0x03
92b96797 37
d1eb5003
MP
38#define VNT_KEY_DEFAULTKEY 0x1
39#define VNT_KEY_GROUP_ADDRESS 0x2
40#define VNT_KEY_ALLGROUP 0x4
41#define VNT_KEY_GROUP 0x40
42#define VNT_KEY_PAIRWISE 0x00
43#define VNT_KEY_ONFLY 0x8000
44#define VNT_KEY_ONFLY_ALL 0x4000
45
6ddcf34f 46int vnt_key_init_table(struct vnt_private *priv);
d1eb5003
MP
47
48int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
3781f887 49 struct ieee80211_vif *vif, struct ieee80211_key_conf *key);
d1eb5003 50
e7b07d1d 51#endif /* __KEY_H__ */