rkey.1 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. .TH rkey 1 "Feb 2015" "plc-utils-2.1.8" "Qualcomm Atheros Powerline Toolkit"
  2. .SH NAME
  3. rkey - HomePlug AV Random Key Generator
  4. .SH SYNOPSIS
  5. .BR rkey
  6. .RI [ options ]
  7. .IR file
  8. .SH DESCRIPTION
  9. Dynamically generate distinct HomePlug AV compliant keys.
  10. A new key is printed on stdout with each program invocation or iteration, unless this is suppressed.
  11. Key computation is seeded using a 64 ASCII character string stored in a user created seedfile.
  12. The program automatically increments the seedfile string to preserve continuity and uniqueness across program invocations, program iterations, console sessions, host reboots and production sites.
  13. .PP
  14. This program is part of the Qualcomm Atheros Powerline Toolkit.
  15. See the \fBAMP\fR man page for an overview and installation instructions.
  16. .SH OPTIONS
  17. .TP
  18. .RB - D
  19. Uses HomePlug AV rules for computing a Device Access Key (DAK) from a pass phrase.
  20. A DAK is 16 bytes expressed as 32 hexadecimal digits.
  21. This option over-rides any \fB-M\fR and \fB-N\fR options previously specified on the command line.
  22. .TP
  23. -\fBL \fIlevel\fR
  24. Set security level.
  25. The security level is encoded into the NID.
  26. Level \fB0\fR enables pushbutton pairing.
  27. Level \fB1\fR disables it.
  28. This option has no effect unless a NID is computed.
  29. .TP
  30. .RB - M
  31. Uses HomePlug AV rules for computing a Network Membership Key (NMK) from a pass phrase.
  32. An NMK is 16 bytes expressed as 32 hexadecimal digits.
  33. This option over-rides any \fB-D\fR or \fB-N\fR options previsously specified on the command line.
  34. .TP
  35. .RB - N
  36. Uses HomePlug AV rules for computing a Network Identification Key (NID) from a pass phrase.
  37. An NID is 7 bytes expressed as 14 hexadecimal digits.
  38. This option over-rides any \fB-D\fR or \fB-M\fR options previously specified on the command line.
  39. .TP
  40. -\fBn \fIcount\fR
  41. The number of keys to generate and print.
  42. This program prints the specified number of distinct keys of the specified type, one key per line.
  43. Normally, program output is directed to a file or a pipe when this option is used.
  44. It is useful for creating a file of random keys.
  45. .TP
  46. .RB - o
  47. Use the \fBold\fR seedfile string.
  48. This option prevents the seedfile string from being incremented before a \fBnew\fR key is computed.
  49. This feature allows additional key types to be computed from the same seedfile string.
  50. .TP
  51. .RB - q
  52. Enable quiet mode which, for this application, has no effect.
  53. .TP
  54. .RB - v
  55. Enable verbose mode which, for this application, prints the pass phrase for each key.
  56. .TP
  57. --\fB?\fR, --\fBhelp\fR
  58. Print program help summary on stdout.
  59. This option takes precedence over other options on the command line.
  60. .TP
  61. \fB-!\fR, \fB--version\fR
  62. Print program version information on stdout.
  63. This option takes precedence over other options on the command line.
  64. Use this option when sending screen dumps to Atheros Technical Support so that they know exactly which version of the Linux Toolkit you are using.
  65. .SH ARGUMENTS
  66. .TP
  67. .BR seedfile
  68. The text file containing the seed string.
  69. This file may be any length but only the first 64 characters are significant.
  70. If it is less than 64 characters then it will be extended to 64 characters after the first use.
  71. The full 64 character string is incremented, character by character, right to left each time this program is run.
  72. The seedfile string is salted differently for each type of key requested and used to seed the SHA256 key engine.
  73. One property of the SHA256 algorithm is that small changes in the seed will produce radically different output having an extremely small chance of collision.
  74. .SH EXAMPLES
  75. The following example shows how to create a seedfile.
  76. The seedfile acts as the seed for the SHA256 algorithm.
  77. The seed is then salted (modified) differently for each type of key generated by this program.
  78. The seedfile string is then incremented and re-written each time the program is executed, unless behaviors is suppressed.
  79. Initially, the seedfile must contain at least one character or an error will occur.
  80. .PP
  81. # echo "My Company Name, Inc." > secret.key
  82. .PP
  83. The following example prints an SHA256 key on stdout.
  84. An SHA256 key is 256 bits or 32 bytes expressed as 64 hexadecimal digits.
  85. An SHA256 key is the default output when no key type is specified.
  86. SHA256 is a public domain standard, not a HomePlug AV standard.
  87. .PP
  88. # rkey secret.key
  89. BFF0F6E3C83CE13829EA7F1F6D25042F4B05052E44C0B801EEA7CD6317F3622E
  90. .PP
  91. The following command prints a new Device Access Key (DAK) on stdout using the seedfile \fBsecret.key\fR as the seed.
  92. The key will be different each time this program is executed because the seedfile string is incremented each time.
  93. .PP
  94. # rkey -D secret.key
  95. F084B4E8F6069FF1300C9BDB812367FF
  96. .PP
  97. To observe the seedfile string, use option \fB-v\fR.
  98. Notice that the seedfile string is 64 characters long and that spaces are significant.
  99. .PP
  100. # rkey -D secret.key -v
  101. 89F96BC11480B0E1A37441397695E676 Qualcomm Atheros, Ocala FL [8@Z
  102. .PP
  103. The following command prints a new Network Membership Key (NMK) on stdout, instead of a DAK, using the seedfile \fBsecret.key\fR as the seed.
  104. Of course, one could specify another seedfile.
  105. .PP
  106. # rkey -M secret.key
  107. B59319D7E8157BA001B018669CCEE30D
  108. .PP
  109. The following command prints 10 random SHA256 keys on stdout.
  110. SHA256 keys were printed because no other type of key was specified.
  111. Program output could have been directed to a file or a pipe for further processing.
  112. .PP
  113. # rkey secret.key -n 10
  114. 780AC153CD47AB01520B5B0246DE7B78584C0413393EDA4430773DED80DDF01A
  115. C7FF68DB206B1E98B8752CC95296692D45AB3DFA418F5CF5DD13479836FEDD4E
  116. 127C8E27F4C8AC7DB27EC8F977968F64D950830B8D511B798FA5A20BE807A7E1
  117. 79E00DBD57A0E22DCEE2C9CF29F3B7DBA95137BEDC8C76EBE3C32BFFA653D136
  118. AC9B8DA1B480EF0ECD7A734383DC1B0F3886D0959BAE77F30F1F16C069D2FE4A
  119. B1F57B211EE774B506106DEC90B7D18FE0328377FCFD9A4D523B632DFAEFF87A
  120. B1C1C746BDC3E45EBE65FC8D5C15D68F41E9981757024A25A4C3261A154BE6F2
  121. 06E6CCEA8C919162D22CE2ADCB2DDFBDCBB876631CE73F48525EC27E435934E9
  122. F26C0636C6B2D51956D04AD73DE03BE6D112661040CB23DD74922C6E05EC7E6B
  123. A62219B0BBABA1DBC444574D0D73A52954847E6DB2BE44441C73E12B9F8EA6E7
  124. .PP
  125. The following three commands use the \fB-o\fR option to prevent the seedfile from being incremented before or after the key is computed.
  126. Notice that a DAK is first generated then regenerated again.
  127. The third command generates an NMK using the same seedfile value used to compute the previous two keys.
  128. .PP
  129. # rkey -D secret.key
  130. B12E8BA7B0FF31D107BE15E96EF65B86
  131. # rkey -oD secret.key
  132. B12E8BA7B0FF31D107BE15E96EF65B86
  133. # rkey -oM secret.key
  134. FAD7EA3713497F2E134299FF1118F6B0
  135. .PP
  136. This utterly useless example demonstrates how to generate 10 identical device access keys by suppressing the normal string increment between each key computation.
  137. .PP
  138. # rkey -oDn 10 secret.key
  139. B12E8BA7B0FF31D107BE15E96EF65B86
  140. B12E8BA7B0FF31D107BE15E96EF65B86
  141. B12E8BA7B0FF31D107BE15E96EF65B86
  142. B12E8BA7B0FF31D107BE15E96EF65B86
  143. B12E8BA7B0FF31D107BE15E96EF65B86
  144. B12E8BA7B0FF31D107BE15E96EF65B86
  145. B12E8BA7B0FF31D107BE15E96EF65B86
  146. B12E8BA7B0FF31D107BE15E96EF65B86
  147. B12E8BA7B0FF31D107BE15E96EF65B86
  148. B12E8BA7B0FF31D107BE15E96EF65B86
  149. .PP
  150. This example demonstrates how to assign distinct keys to script variables or insert them on a command line using this program.
  151. Read the GNU \fBbash\fR manual for more information on shell scripting.
  152. See the \fBmodpib\fR man page for an explanation of program options shown.
  153. .PP
  154. # DAK=$(rkey -D secret.key)
  155. # NMK=$(rkey -M secret.key)
  156. # echo DAK=${DAK} NMK=${NMK}
  157. # modpib -D $(rkey -D secret.key) -N ${NMK}
  158. .SH RECOMMENDATIONS
  159. The seedfile is critical to the continuity and uniqueness of generated keys.
  160. The 64 character string stored in the seedfile is incremented, character by character, right to left, with each file access unless that behavior is suppressed using the \fB-o\fR option.
  161. The SHA256 algorithm generates radially different output given minor changes in this string.
  162. The key space is huge and the probability of collision is statistically small.
  163. .PP
  164. Be aware that two seedfiles containing the same start string will generate the same key sequence.
  165. To minimize the chance of duplicate key values across production lines, each production line should use seedfiles having different start strings.
  166. The length of the start string is not important but it should be different for each production line.
  167. If a seedfile is lost, merely replace it with another one, as though you are opening another production line.
  168. .PP
  169. Mathematically, the shorter the start string the longer it will take for two different seedfiles to coincidentally produce identical output.
  170. From 12 to 24 character is a reasonable length but this is not a restriction.
  171. If you have several production lines, you may want to maintain a record of the start strings used on each line in case a new seedfile must be created.
  172. .SH REFERENCES
  173. See the \fBHomePlug AV Specification\fR for more information on encryption keys, pass phrases and hash algorithms used and standard \fBFIPS180-2 sec 5.3.2\fR for more information on SHA256 encoding.
  174. .SH DISCLAIMER
  175. Qualcomm Atheros reserves the right to modify program names, functionality, input format or output format in future toolkit releases without any obligation to notify or compensate toolkit users.
  176. .SH SEE ALSO
  177. .BR hpavkey ( 1 ),
  178. .BR hpavkeys ( 1 ),
  179. .BR keys ( 1 ),
  180. .BR mac2pw ( 1 ),
  181. .BR mac2pwd ( 1 )
  182. .SH CREDITS
  183. Charles Maier <cmaier@qca.qualcomm.com>
  184. ]