HPAVKeyDAK.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void HPAVKeyDAK (uint8_t DAK [], const char * string);
  11. *
  12. * HPAVKey.h
  13. *
  14. * compute the HomePlugAV compliant Device Access Key (DAK) for a
  15. * NUL terminated string; return the key in buffer DAK[]; the key
  16. * will be HPAVKEY_DAK_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. * Contributor(s);
  22. * Charles Maier <cmaier@qca.qualcomm.com>
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef HPAVKEYDAK_SOURCE
  26. #define HPAVKEYDAK_SOURCE
  27. #include <memory.h>
  28. #include "../key/HPAVKey.h"
  29. #include "../key/SHA256.h"
  30. void HPAVKeyDAK (uint8_t DAK [], const char * string)
  31. {
  32. struct sha256 sha256;
  33. uint8_t digest [SHA256_DIGEST_LENGTH];
  34. const uint8_t secret [] =
  35. {
  36. 0x08,
  37. 0x85,
  38. 0x6D,
  39. 0xAF,
  40. 0x7C,
  41. 0xF5,
  42. 0x81,
  43. 0x85
  44. };
  45. unsigned rehash = 999;
  46. SHA256Reset (& sha256);
  47. SHA256Write (& sha256, string, strlen (string));
  48. SHA256Write (& sha256, secret, sizeof (secret));
  49. SHA256Fetch (& sha256, digest);
  50. while (rehash--)
  51. {
  52. SHA256Reset (& sha256);
  53. SHA256Write (& sha256, digest, sizeof (digest));
  54. SHA256Fetch (& sha256, digest);
  55. }
  56. memcpy (DAK, digest, HPAVKEY_DAK_LEN);
  57. return;
  58. }
  59. #endif