keys.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * keys.c - Encryption Key Data and Functions;
  11. *
  12. * keys.h
  13. *
  14. * Tabulate default Atheros pass phrases and their DAK, NMK and
  15. * NID for search and conversion purposes;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef KEYS_SOURCE
  22. #define KEYS_SOURCE
  23. #include "../key/keys.h"
  24. struct key const keys [KEYS] =
  25. {
  26. {
  27. "none/secret",
  28. {
  29. 0x00,
  30. 0x00,
  31. 0x00,
  32. 0x00,
  33. 0x00,
  34. 0x00,
  35. 0x00,
  36. 0x00,
  37. 0x00,
  38. 0x00,
  39. 0x00,
  40. 0x00,
  41. 0x00,
  42. 0x00,
  43. 0x00,
  44. 0x00
  45. },
  46. {
  47. 0x00,
  48. 0x00,
  49. 0x00,
  50. 0x00,
  51. 0x00,
  52. 0x00,
  53. 0x00,
  54. 0x00,
  55. 0x00,
  56. 0x00,
  57. 0x00,
  58. 0x00,
  59. 0x00,
  60. 0x00,
  61. 0x00,
  62. 0x00
  63. }
  64. },
  65. {
  66. "HomePlugAV",
  67. {
  68. 0x68,
  69. 0x9F,
  70. 0x07,
  71. 0x4B,
  72. 0x8B,
  73. 0x02,
  74. 0x75,
  75. 0xA2,
  76. 0x71,
  77. 0x0B,
  78. 0x0B,
  79. 0x57,
  80. 0x79,
  81. 0xAD,
  82. 0x16,
  83. 0x30
  84. },
  85. {
  86. 0x50,
  87. 0xD3,
  88. 0xE4,
  89. 0x93,
  90. 0x3F,
  91. 0x85,
  92. 0x5B,
  93. 0x70,
  94. 0x40,
  95. 0x78,
  96. 0x4D,
  97. 0xF8,
  98. 0x15,
  99. 0xAA,
  100. 0x8D,
  101. 0xB7
  102. }
  103. },
  104. {
  105. "HomePlugAV0123",
  106. {
  107. 0xF0,
  108. 0x84,
  109. 0xB4,
  110. 0xE8,
  111. 0xF6,
  112. 0x06,
  113. 0x9F,
  114. 0xF1,
  115. 0x30,
  116. 0x0C,
  117. 0x9B,
  118. 0xDB,
  119. 0x81,
  120. 0x23,
  121. 0x67,
  122. 0xFF
  123. },
  124. {
  125. 0xB5,
  126. 0x93,
  127. 0x19,
  128. 0xD7,
  129. 0xE8,
  130. 0x15,
  131. 0x7B,
  132. 0xA0,
  133. 0x01,
  134. 0xB0,
  135. 0x18,
  136. 0x66,
  137. 0x9C,
  138. 0xCE,
  139. 0xE3,
  140. 0x0D
  141. }
  142. }
  143. };
  144. /*====================================================================*
  145. * device access key synonym table;
  146. *--------------------------------------------------------------------*/
  147. struct _term_ const daks [DAKS] =
  148. {
  149. {
  150. "key0",
  151. DAK0
  152. },
  153. {
  154. "key1",
  155. DAK1
  156. },
  157. {
  158. "key2",
  159. DAK2
  160. },
  161. {
  162. "none",
  163. DAK0
  164. },
  165. {
  166. "secret",
  167. DAK0
  168. },
  169. {
  170. "zero",
  171. DAK0
  172. }
  173. };
  174. /*====================================================================*
  175. * network membership key synonym table;
  176. *--------------------------------------------------------------------*/
  177. struct _term_ const nmks [NMKS] =
  178. {
  179. {
  180. "key0",
  181. NMK0
  182. },
  183. {
  184. "key1",
  185. NMK1
  186. },
  187. {
  188. "key2",
  189. NMK2
  190. },
  191. {
  192. "none",
  193. NMK0
  194. },
  195. {
  196. "zero",
  197. NMK0
  198. },
  199. };
  200. /*====================================================================*
  201. *
  202. *--------------------------------------------------------------------*/
  203. #endif