brintos

brintos / linux-shallow public Read only

0
0
Text · 1.2 KiB · d88da9d Raw
52 lines · c
1/* SPDX-License-Identifier: GPL-2.0+ */2/*3 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.4 * All rights reserved.5 *6 * Purpose: Implement functions for 802.11i Key management7 *8 * Author: Jerry Chen9 *10 * Date: May 29, 200311 *12 */13 14#ifndef __KEY_H__15#define __KEY_H__16 17#include <net/mac80211.h>18 19/*---------------------  Export Definitions -------------------------*/20#define MAX_GROUP_KEY       421#define MAX_KEY_TABLE       1122#define MAX_KEY_LEN         3223#define AES_KEY_LEN         1624 25#define AUTHENTICATOR_KEY   0x1000000026#define USE_KEYRSC          0x2000000027#define PAIRWISE_KEY        0x4000000028#define TRANSMIT_KEY        0x8000000029 30#define GROUP_KEY           0x0000000031 32#define KEY_CTL_WEP         0x0033#define KEY_CTL_NONE        0x0134#define KEY_CTL_TKIP        0x0235#define KEY_CTL_CCMP        0x0336#define KEY_CTL_INVALID     0xFF37 38#define VNT_KEY_DEFAULTKEY	0x139#define VNT_KEY_GROUP_ADDRESS	0x240#define VNT_KEY_ALLGROUP	0x441#define VNT_KEY_GROUP		0x4042#define VNT_KEY_PAIRWISE	0x0043#define VNT_KEY_ONFLY		0x800044#define VNT_KEY_ONFLY_ALL	0x400045 46struct vnt_private;47 48int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,49		 struct ieee80211_vif *vif, struct ieee80211_key_conf *key);50 51#endif /* __KEY_H__ */52