HPAVKeyNID.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void HPAVKeyNID (uint8_t NID [], const uint8_t NMK [], signed level);
  11. *
  12. * HPAVKey.h
  13. *
  14. * compute the HomePlugAV compliant Network Identification Key (NID)
  15. * for a given Network Membership Key (NMK); return the key in buffer
  16. * NID []; the key will be HPAVKEY_NID_LEN bytes as defined in
  17. * HPAVKey.h;
  18. *
  19. * unlike the NMK, the NID is 54-bits and includes a 2-bit security
  20. * level; See the HomePlug AV Specification for more info;
  21. *
  22. * hash the NMK then rehash the digest 4 times per HomePlug AV
  23. * Specification; no salt is used;
  24. *
  25. *
  26. * Contributor(s);
  27. * Charles Maier <cmaier@qca.qualcomm.com>
  28. *
  29. *--------------------------------------------------------------------*/
  30. #ifndef HPAVKEYNID_SOURCE
  31. #define HPAVKEYNID_SOURCE
  32. #include <memory.h>
  33. #include "../key/HPAVKey.h"
  34. #include "../key/SHA256.h"
  35. void HPAVKeyNID (uint8_t NID [], const uint8_t NMK [], uint8_t level)
  36. {
  37. struct sha256 sha256;
  38. uint8_t digest [SHA256_DIGEST_LENGTH];
  39. unsigned rehash = 4;
  40. SHA256Reset (& sha256);
  41. SHA256Write (& sha256, NMK, HPAVKEY_NMK_LEN);
  42. SHA256Fetch (& sha256, digest);
  43. while (rehash--)
  44. {
  45. SHA256Reset (& sha256);
  46. SHA256Write (& sha256, digest, sizeof (digest));
  47. SHA256Fetch (& sha256, digest);
  48. }
  49. #if 1
  50. level <<= 4;
  51. digest [HPAVKEY_NID_LEN -1] >>= 4;
  52. digest [HPAVKEY_NID_LEN -1] |= level;
  53. #else
  54. digest [HPAVKEY_NID_LEN -1] &= ~ 0xC0;
  55. digest [HPAVKEY_NID_LEN -1] |= level << 6;
  56. #endif
  57. memcpy (NID, digest, HPAVKEY_NID_LEN);
  58. return;
  59. }
  60. #endif