keys.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * keys.h -
  11. *
  12. *. Qualcomm Atheros HomePlug AV Powerline Toolkit
  13. *: Copyright (c) 2009-2013 by Qualcomm Atheros Inc. ALL RIGHTS RESERVED;
  14. *; For demonstration and evaluation only; Not for production use.
  15. *
  16. *--------------------------------------------------------------------*/
  17. #ifndef KEYS_HEADER
  18. #define KEYS_HEADER
  19. /*====================================================================*
  20. * system header files;
  21. *--------------------------------------------------------------------*/
  22. #include <stdint.h>
  23. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../tools/types.h"
  27. #include "../key/HPAVKey.h"
  28. /*====================================================================*
  29. * constants;
  30. *--------------------------------------------------------------------*/
  31. #define PASSWORD_SILENCE (1 << 0)
  32. #define PASSWORD_VERBOSE (1 << 1)
  33. #define DAK0 "00000000000000000000000000000000"
  34. #define DAK1 "689F074B8B0275A2710B0B5779AD1630"
  35. #define DAK2 "F084B4E8F6069FF1300C9BDB812367FF"
  36. #define NMK0 "00000000000000000000000000000000"
  37. #define NMK1 "50D3E4933F855B7040784DF815AA8DB7"
  38. #define NMK2 "B59319D7E8157BA001B018669CCEE30D"
  39. #define KEYS 3
  40. #define DAKS 6
  41. #define NMKS 5
  42. /*====================================================================*
  43. * variables;
  44. *--------------------------------------------------------------------*/
  45. typedef struct key
  46. {
  47. char const * phrase;
  48. uint8_t DAK [HPAVKEY_DAK_LEN];
  49. uint8_t NMK [HPAVKEY_NMK_LEN];
  50. }
  51. key;
  52. extern struct key const keys [KEYS];
  53. /*====================================================================*
  54. *
  55. *--------------------------------------------------------------------*/
  56. extern struct _term_ const daks [DAKS];
  57. extern struct _term_ const nmks [NMKS];
  58. /*====================================================================*
  59. * functions;
  60. *--------------------------------------------------------------------*/
  61. void MACPasswords (unsigned vendor, unsigned device, unsigned count, unsigned alpha, unsigned bunch, char space, flag_t flags);
  62. void RNDPasswords (unsigned vendor, unsigned device, unsigned count, unsigned alpha, unsigned bunch, char space, flag_t flags);
  63. char * strnpwd (char buffer [], unsigned length, unsigned count, unsigned group, char space);
  64. void putpwd (unsigned count, unsigned group, char space);
  65. /*====================================================================*
  66. *
  67. *--------------------------------------------------------------------*/
  68. #endif