blob: bec681fd84dbdd1f57ba395c20230dbddf54dce7 [file] [log] [blame]
mukesh agrawal7a4e4002011-09-06 11:26:05 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_IEEE80211_H
6#define SHILL_IEEE80211_H
7
8namespace shill {
9
10namespace IEEE_80211 {
11const unsigned int kMaxSSIDLen = 32;
12
13const unsigned int kWEP40AsciiLen = 5;
14const unsigned int kWEP40HexLen = 10;
15const unsigned int kWEP104AsciiLen = 13;
16const unsigned int kWEP104HexLen = 26;
mukesh agrawal8ede0522011-10-03 14:57:44 -070017
18const unsigned int kWPAAsciiMinLen = 8;
19const unsigned int kWPAAsciiMaxLen = 63;
20const unsigned int kWPAHexLen = 64;
mukesh agrawal7a4e4002011-09-06 11:26:05 -070021};
22
23} // namespace shill
24
25#endif // SHILL_IEEE_80211_H