key.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
  4. * All rights reserved.
  5. *
  6. * File: key.h
  7. *
  8. * Purpose: Implement functions for 802.11i Key management
  9. *
  10. * Author: Jerry Chen
  11. *
  12. * Date: May 29, 2003
  13. *
  14. */
  15. #ifndef __KEY_H__
  16. #define __KEY_H__
  17. #include <net/mac80211.h>
  18. /*--------------------- Export Definitions -------------------------*/
  19. #define MAX_GROUP_KEY 4
  20. #define MAX_KEY_TABLE 11
  21. #define MAX_KEY_LEN 32
  22. #define AES_KEY_LEN 16
  23. #define AUTHENTICATOR_KEY 0x10000000
  24. #define USE_KEYRSC 0x20000000
  25. #define PAIRWISE_KEY 0x40000000
  26. #define TRANSMIT_KEY 0x80000000
  27. #define GROUP_KEY 0x00000000
  28. #define KEY_CTL_WEP 0x00
  29. #define KEY_CTL_NONE 0x01
  30. #define KEY_CTL_TKIP 0x02
  31. #define KEY_CTL_CCMP 0x03
  32. #define KEY_CTL_INVALID 0xFF
  33. #define VNT_KEY_DEFAULTKEY 0x1
  34. #define VNT_KEY_GROUP_ADDRESS 0x2
  35. #define VNT_KEY_ALLGROUP 0x4
  36. #define VNT_KEY_GROUP 0x40
  37. #define VNT_KEY_PAIRWISE 0x00
  38. #define VNT_KEY_ONFLY 0x8000
  39. #define VNT_KEY_ONFLY_ALL 0x4000
  40. struct vnt_private;
  41. int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
  42. struct ieee80211_vif *vif, struct ieee80211_key_conf *key);
  43. #endif /* __KEY_H__ */