oHPAVKey.hpp 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * oHPAVKey.hpp - oHPAVKey class declaration;
  11. *
  12. * implement HomePlug AV compliant password encryption;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <charles.maier@intellon.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef ooHPAVKEY_HEADER
  19. #define ooHPAVKEY_HEADER
  20. /*====================================================================*
  21. * system header files;
  22. *--------------------------------------------------------------------*/
  23. #include <stdint.h>
  24. #include <string.h>
  25. /*====================================================================*
  26. * system header files;
  27. *--------------------------------------------------------------------*/
  28. #include "../classes/stdafx.hpp"
  29. #include "../classes/oSHA256.hpp"
  30. /*====================================================================*
  31. * class constants;
  32. *--------------------------------------------------------------------*/
  33. #define oHPAVKEY_CHAR_MIN 0x20
  34. #define oHPAVKEY_CHAR_MAX 0x7E
  35. #define oHPAVKEY_PHRASE_MIN 12
  36. #define oHPAVKEY_PHRASE_MAX 64
  37. #define oHPAVKEY_N_SHA 0
  38. #define oHPAVKEY_N_DAK 1
  39. #define oHPAVKEY_N_NMK 2
  40. #define oHPAVKEY_N_NID 3
  41. #define oHPAVKEY_B_VERBOSE (1 << 0)
  42. #define oHPAVKEY_B_SILENCE (1 << 1)
  43. #define oHPAVKEY_B_ENFORCE (1 << 2)
  44. /*====================================================================*
  45. * class interface;
  46. *--------------------------------------------------------------------*/
  47. class __declspec (dllexport) oHPAVKey: private oSHA256
  48. {
  49. public:
  50. oHPAVKey ();
  51. ~oHPAVKey ();
  52. byte * Digest () const;
  53. bool IllegalPassPhrase (char const * phrase) const;
  54. bool IllegalCharValue (unsigned c) const;
  55. oHPAVKey & ExportKey (void * memory);
  56. oHPAVKey & ComputeNMK (char const * string);
  57. oHPAVKey & ComputeDAK (char const * string);
  58. oHPAVKey & ComputeNID (byte level);
  59. static unsigned const DigestLength;
  60. static unsigned const DAKLength;
  61. static unsigned const NMKLength;
  62. static unsigned const NIDLength;
  63. static unsigned const MinPhraseLength;
  64. static unsigned const MaxPhraseLength;
  65. static byte const MinCharValue;
  66. static byte const MaxCharValue;
  67. oHPAVKey & Print (char const * phrase);
  68. private:
  69. oHPAVKey & Hash (unsigned count);
  70. byte * mdigest;
  71. size_t mlength;
  72. };
  73. /*====================================================================*
  74. *
  75. *--------------------------------------------------------------------*/
  76. #endif