nmk2nid.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * nmk2nid.c
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <stdio.h>
  20. #include <ctype.h>
  21. #include <string.h>
  22. #include <unistd.h>
  23. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../tools/getoptv.h"
  27. #include "../tools/putoptv.h"
  28. #include "../tools/version.h"
  29. #include "../tools/memory.h"
  30. #include "../tools/types.h"
  31. #include "../tools/flags.h"
  32. #include "../tools/error.h"
  33. #include "../key/HPAVKey.h"
  34. #include "../key/SHA256.h"
  35. /*====================================================================*
  36. * custom source files;
  37. *--------------------------------------------------------------------*/
  38. #ifndef MAKEFILE
  39. #include "../tools/getoptv.c"
  40. #include "../tools/putoptv.c"
  41. #include "../tools/version.c"
  42. #include "../tools/uintspec.c"
  43. #include "../tools/hexencode.c"
  44. #include "../tools/todigit.c"
  45. #include "../tools/hexout.c"
  46. #include "../tools/error.c"
  47. #endif
  48. #ifndef MAKEFILE
  49. #include "../key/HPAVKeyNID.c"
  50. #include "../key/HPAVKeySHA.c"
  51. #include "../key/HPAVKeyOut.c"
  52. #include "../key/SHA256.c"
  53. #endif
  54. /*====================================================================*
  55. *
  56. * int main (int argc, const char * argv []);
  57. *
  58. *--------------------------------------------------------------------*/
  59. int main (int argc, const char * argv [])
  60. {
  61. static const char * optv [] =
  62. {
  63. "qv",
  64. "NMK [NMK] [...]",
  65. "HomePlug AV NMK-to-NID converter",
  66. "q\tquiet mode",
  67. "v\tverbose mode",
  68. (const char *) (0)
  69. };
  70. struct sha256 sha256;
  71. byte digest [SHA256_DIGEST_LENGTH];
  72. byte NMK [HPAVKEY_NMK_LEN];
  73. byte NID [HPAVKEY_NID_LEN];
  74. flag_t flags = (flag_t) (0);
  75. signed c;
  76. optind = 1;
  77. while (~ (c = getoptv (argc, argv, optv)))
  78. {
  79. switch (c)
  80. {
  81. case 'q':
  82. _setbits (flags, HPAVKEY_SILENCE);
  83. break;
  84. case 'v':
  85. _setbits (flags, HPAVKEY_VERBOSE);
  86. break;
  87. default:
  88. break;
  89. }
  90. }
  91. argc -= optind;
  92. argv += optind;
  93. while ((argc) && (* argv))
  94. {
  95. char const * sp = * argv;
  96. unsigned hash = 5;
  97. while (isxdigit ((unsigned char)* sp))
  98. {
  99. sp++;
  100. }
  101. if (* sp)
  102. {
  103. error (1, EINVAL, "%s", * argv);
  104. }
  105. if ((sp - * argv) != (HPAVKEY_NMK_LEN * 2))
  106. {
  107. error (1, EINVAL, "%s", * argv);
  108. }
  109. hexencode (NMK, sizeof (NMK), * argv);
  110. SHA256Reset (& sha256);
  111. SHA256Write (& sha256, NMK, sizeof (NMK));
  112. SHA256Fetch (& sha256, digest);
  113. while (-- hash)
  114. {
  115. SHA256Reset (& sha256);
  116. SHA256Write (& sha256, digest, sizeof (digest));
  117. SHA256Fetch (& sha256, digest);
  118. }
  119. memcpy (NID, digest, sizeof (NID));
  120. NID [sizeof (NID) -1] >>= 4;
  121. HPAVKeyOut (NID, sizeof (NID), * argv, flags);
  122. argc--;
  123. argv++;
  124. }
  125. return (0);
  126. }