oHPAVKey.cpp 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * oHPAVKey.cpp - oHPAVKey class definition;
  11. *
  12. * implement HomePlug AV compliant pass phrase hashing;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <charles.maier@intellon.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef ooHPAVKEY_SOURCE
  19. #define ooHPAVKEY_SOURCE
  20. /*====================================================================*
  21. * system header files;
  22. *--------------------------------------------------------------------*/
  23. #include <iostream>
  24. /*====================================================================*
  25. * custom header files;
  26. *--------------------------------------------------------------------*/
  27. #include "../classes/oHPAVKey.hpp"
  28. #include "../classes/omemory.hpp"
  29. #include "../classes/oerror.hpp"
  30. /*====================================================================*
  31. * class constants;
  32. *--------------------------------------------------------------------*/
  33. unsigned const oHPAVKey::DigestLength = oSHA256::DigestLength;
  34. unsigned const oHPAVKey::DAKLength = 16;
  35. unsigned const oHPAVKey::NMKLength = 16;
  36. unsigned const oHPAVKey::NIDLength = 7;
  37. unsigned const oHPAVKey::MinPhraseLength = 12;
  38. unsigned const oHPAVKey::MaxPhraseLength = 64;
  39. byte const oHPAVKey::MinCharValue = 0x20;
  40. byte const oHPAVKey::MaxCharValue = 0x7E;
  41. /*====================================================================*
  42. *
  43. * byte * Digest () const;
  44. *
  45. * return the address of the 32-byte digest; HomePlug AV keys only
  46. * use part of the digest; this points to the whole thing;
  47. *
  48. *--------------------------------------------------------------------*/
  49. byte * oHPAVKey::Digest () const
  50. {
  51. return (this->mdigest);
  52. }
  53. /*====================================================================*
  54. *
  55. * oHPAVKey & ExportKey (void * memory);
  56. *
  57. * copy all 32 bytes of the digest to external memory; HomePlug AV
  58. * keys only use part of the digest; this copies the whole thing;
  59. *
  60. *--------------------------------------------------------------------*/
  61. oHPAVKey & oHPAVKey::ExportKey (void * memory)
  62. {
  63. std::memcpy (memory, this->mdigest, this->mlength);
  64. return (*this);
  65. }
  66. /*====================================================================*
  67. *
  68. * oHPAVKey & ComputeNID (byte level);
  69. *
  70. * compute the HomePlugAV compliant Network Identification Key by
  71. * rehashing the NMK then encoding the security level; this method
  72. * assumes that the digest is already NMK encrypted;
  73. *
  74. *--------------------------------------------------------------------*/
  75. oHPAVKey & oHPAVKey::ComputeNID (byte level)
  76. {
  77. this->mlength = oHPAVKey::NIDLength;
  78. oSHA256::Write (this->mdigest, oHPAVKey::NMKLength);
  79. oSHA256::Fetch (this->mdigest);
  80. oHPAVKey::Hash (4);
  81. level <<= 4;
  82. this->mdigest [this->mlength - 1] >>= 4;
  83. this->mdigest [this->mlength - 1] |= level;
  84. return (*this);
  85. }
  86. /*====================================================================*
  87. *
  88. * oHPAVKey & ComputeDAK (char const * string);
  89. *
  90. * compute the HomePlugAV compliant Device Access Key of the NUL
  91. * terminated string argument; return the object instance
  92. * reference;
  93. *
  94. *--------------------------------------------------------------------*/
  95. oHPAVKey & oHPAVKey::ComputeDAK (char const * string)
  96. {
  97. const byte salt [] =
  98. {
  99. 0x08,
  100. 0x85,
  101. 0x6D,
  102. 0xAF,
  103. 0x7C,
  104. 0xF5,
  105. 0x81,
  106. 0x85
  107. };
  108. this->mlength = oHPAVKey::DAKLength;
  109. oSHA256::Write (string, std::strlen (string));
  110. oSHA256::Write (salt, sizeof (salt));
  111. oSHA256::Fetch (this->mdigest);
  112. oHPAVKey::Hash (999);
  113. return (*this);
  114. }
  115. /*====================================================================*
  116. *
  117. * oHPAVKey & ComputeNMK (char const * string);
  118. *
  119. * compute the HomePlugAV compliant Network Membership Key of the
  120. * the NUL terminated string argument; return the object instance
  121. * reference;
  122. *
  123. *--------------------------------------------------------------------*/
  124. oHPAVKey & oHPAVKey::ComputeNMK (char const * string)
  125. {
  126. const byte salt [] =
  127. {
  128. 0x08,
  129. 0x85,
  130. 0x6D,
  131. 0xAF,
  132. 0x7C,
  133. 0xF5,
  134. 0x81,
  135. 0x86
  136. };
  137. this->mlength = oHPAVKey::NMKLength;
  138. oSHA256::Write (string, std::strlen (string));
  139. oSHA256::Write (salt, sizeof (salt));
  140. oSHA256::Fetch (this->mdigest);
  141. oHPAVKey::Hash (999);
  142. return (*this);
  143. }
  144. /*====================================================================*
  145. *
  146. * bool IllegalPassPhrase (char const * phrase) const;
  147. *
  148. * return true if string argument is an illegal HomePlug AV phrase;
  149. * this method is provided for applications that do not wan to do
  150. * their own pass phrase validation;
  151. *
  152. *--------------------------------------------------------------------*/
  153. bool oHPAVKey::IllegalPassPhrase (char const * phrase) const
  154. {
  155. char const * string;
  156. for (string = phrase; *string; string++)
  157. {
  158. if (oHPAVKey::IllegalCharValue (*string))
  159. {
  160. oerror::error (0, EINVAL, "Phrase \"%s\" has illegal characters", phrase);
  161. return (true);
  162. }
  163. }
  164. if ((unsigned)(string - phrase) < oHPAVKey::MinPhraseLength)
  165. {
  166. oerror::error (0, EPERM, "Phrase \"%s\" is less than %d characters", phrase, oHPAVKEY_PHRASE_MIN);
  167. return (true);
  168. }
  169. if ((unsigned)(string - phrase) > oHPAVKey::MaxPhraseLength)
  170. {
  171. oerror::error (0, EPERM, "Phrase \"%s\" is more than %d characters", phrase, oHPAVKEY_PHRASE_MAX);
  172. return (true);
  173. }
  174. return (false);
  175. }
  176. /*====================================================================*
  177. *
  178. * oHPAVKey & Print (char const * phrase);
  179. *
  180. *--------------------------------------------------------------------*/
  181. oHPAVKey & oHPAVKey::Print (char const * phrase)
  182. {
  183. omemory::hexout (this->mdigest, this->mlength, (char)(0), &std::cout);
  184. if ((phrase) && (*phrase))
  185. {
  186. std::cout << " " << phrase;
  187. }
  188. std::cout << std::endl;
  189. return (*this);
  190. }
  191. /*====================================================================*
  192. *
  193. * bool oHPAVKey::IllegalCharValue (unsigned c) const;
  194. *
  195. * return true if character c is an illegal pass phrase character;
  196. *
  197. * this method is provided for applications that want to do their
  198. * own pass phrase validation;
  199. *
  200. *--------------------------------------------------------------------*/
  201. bool oHPAVKey::IllegalCharValue (unsigned c) const
  202. {
  203. return ((c < oHPAVKey::MinCharValue) || (c > oHPAVKey::MaxCharValue));
  204. }
  205. /*====================================================================*
  206. *
  207. * oHPAVKey & Hash (unsigned count);
  208. *
  209. * Encrypt the digest the specified number of times; this is used
  210. * to complicate things;
  211. *
  212. *--------------------------------------------------------------------*/
  213. oHPAVKey & oHPAVKey::Hash (unsigned count)
  214. {
  215. while (count--)
  216. {
  217. this->Write (this->mdigest, oSHA256::DigestLength);
  218. this->Fetch (this->mdigest);
  219. }
  220. return (*this);
  221. }
  222. /*====================================================================*
  223. *
  224. * oHPAVKey ();
  225. *
  226. * allocate the secret and digest buffers; the secret is the input
  227. * or password and the digest is the output or key;
  228. *
  229. *--------------------------------------------------------------------*/
  230. oHPAVKey::oHPAVKey ()
  231. {
  232. this->mdigest = new byte [oSHA256::DigestLength];
  233. this->mlength = 0;
  234. return;
  235. }
  236. /*====================================================================*
  237. *
  238. * ~oHPAVKey ();
  239. *
  240. * release secret and digest buffers;
  241. *
  242. *--------------------------------------------------------------------*/
  243. oHPAVKey::~oHPAVKey ()
  244. {
  245. delete [] this->mdigest;
  246. return;
  247. }
  248. /*====================================================================*
  249. * end definition;
  250. *--------------------------------------------------------------------*/
  251. #endif