HPAVKeyNMK.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void HPAVKeyNMK (uint8_t NMK [], const char * string);
  11. *
  12. * HPAVKey.h
  13. *
  14. * compute the HomePlugAV compliant Network Membership Key (NMK)
  15. * for a NUL terminated string; return the key in buffer NMK [];
  16. * the key will be HPAVKEY_NMK_LEN bytes as defined in HPAVKey.h;
  17. *
  18. * seed the digest then salt the digest then rehash the digest 999
  19. * times per HomePlug AV Specification;
  20. *
  21. *
  22. * Contributor(s);
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef HPAVKEYNMK_SOURCE
  27. #define HPAVKEYNMK_SOURCE
  28. #include <memory.h>
  29. #include "../key/HPAVKey.h"
  30. #include "../key/SHA256.h"
  31. void HPAVKeyNMK (uint8_t NMK [], const char * string)
  32. {
  33. struct sha256 sha256;
  34. uint8_t digest [SHA256_DIGEST_LENGTH];
  35. const uint8_t secret [] =
  36. {
  37. 0x08,
  38. 0x85,
  39. 0x6D,
  40. 0xAF,
  41. 0x7C,
  42. 0xF5,
  43. 0x81,
  44. 0x86
  45. };
  46. unsigned rehash = 999;
  47. SHA256Reset (& sha256);
  48. SHA256Write (& sha256, string, strlen (string));
  49. SHA256Write (& sha256, secret, sizeof (secret));
  50. SHA256Fetch (& sha256, digest);
  51. while (rehash--)
  52. {
  53. SHA256Reset (& sha256);
  54. SHA256Write (& sha256, digest, sizeof (digest));
  55. SHA256Fetch (& sha256, digest);
  56. }
  57. memcpy (NMK, digest, HPAVKEY_NMK_LEN);
  58. return;
  59. }
  60. #endif