3 * Copyright (c) 2006 CACE Technologies, Davis (California)
6 * SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0-only)
9 #ifndef __WEP_WPADEFS_H__
10 #define __WEP_WPADEFS_H__
17 * WEP and WPA definitions
19 * Copied from airpcap.h.
23 * Maximum number of encryption keys. This determines the size of
24 * structures in packet-ieee80211.c, as well as the number of keys
25 * in the IEEE 802.11 preferences.
27 #define MAX_ENCRYPTION_KEYS 64
30 * Maximum size of a WEP key, in bytes. This is the size of an entry in the
31 * AirpcapWepKeysCollection structure.
33 #define WEP_KEY_MAX_SIZE 32
36 * WEP_KEY_MAX_SIZE is in bytes, but each byte is represented as a
39 #define WEP_KEY_MAX_CHAR_SIZE (WEP_KEY_MAX_SIZE*2)
42 * WEP_KEY_MAX_SIZE is in bytes, this is in bits...
44 #define WEP_KEY_MAX_BIT_SIZE (WEP_KEY_MAX_SIZE*8)
46 #define WEP_KEY_MIN_CHAR_SIZE 2
47 #define WEP_KEY_MIN_BIT_SIZE 8
52 #define WPA_KEY_MAX_SIZE 63 /* 63 chars followed by a '\0' */
54 #define WPA_KEY_MAX_CHAR_SIZE (WPA_KEY_MAX_SIZE*1)
55 #define WPA_KEY_MAX_BIT_SIZE (WPA_KEY_MAX_SIZE*8)
56 #define WPA_KEY_MIN_CHAR_SIZE 8
57 #define WPA_KEY_MIN_BIT_SIZE (WPA_KEY_MIN_CHAR_SIZE*8)
62 #define WPA_SSID_MAX_SIZE 32
64 #define WPA_SSID_MAX_CHAR_SIZE (WPA_SSID_MAX_SIZE*1)
65 #define WPA_SSID_MAX_BIT_SIZE (WPA_SSID_MAX_SIZE*8)
66 #define WPA_SSID_MIN_CHAR_SIZE 0
67 #define WPA_SSID_MIN_BIT_SIZE (WPA_SSID_MIN_CHAR_SIZE*8)
70 * Prefix definitions for preferences
72 #define STRING_KEY_TYPE_WEP "wep"
73 #define STRING_KEY_TYPE_WPA_PWD "wpa-pwd"
74 #define STRING_KEY_TYPE_WPA_PSK "wpa-psk"
75 #define STRING_KEY_TYPE_TK "tk"
76 #define STRING_KEY_TYPE_MSK "msk"
83 #endif /* __WEP_WPADEFS_H__ */