putpwd.c.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version='1.0' encoding='iso-8859-1'?>
  2. <!doctype html public '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
  3. <html xmlns='http://www.w3c.org/1999/xhtml' lang='en-us'>
  4. <head>
  5. <title>
  6. putpwd.c
  7. </title>
  8. <meta http-equiv='content-type' content='text/html;iso-8859-1'/>
  9. <meta name='generator' content='motley-tools 1.9.4 13:40:33 Feb 18 2015'/>
  10. <meta name='author' content='cmaier@cmassoc.net'/>
  11. <meta name='robots' content='noindex,nofollow'/>
  12. <link href='toolkit.css' rel='stylesheet' type='text/css'/>
  13. </head>
  14. <body>
  15. <div class='headerlink'>
  16. [<a href='putoptv.c.html' title=' putoptv.c '>PREV</a>]
  17. [<a href='toolkit.html' title=' Index '>HOME</a>]
  18. [<a href='qosinfo.c.html' title=' qosinfo.c '>NEXT</a>]
  19. </div>
  20. <pre>
  21. /*====================================================================*
  22. *
  23. * Copyright (c) 2015 Qualcomm Atheros, Inc.
  24. *
  25. * All rights reserved.
  26. *
  27. * Redistribution and use in source and binary forms, with or
  28. * without modification, are permitted (subject to the limitations
  29. * in the disclaimer below) provided that the following conditions
  30. * are met:
  31. *
  32. * * Redistributions of source code must retain the above copyright
  33. * notice, this list of conditions and the following disclaimer.
  34. *
  35. * * Redistributions in binary form must reproduce the above
  36. * copyright notice, this list of conditions and the following
  37. * disclaimer in the documentation and/or other materials
  38. * provided with the distribution.
  39. *
  40. * * Neither the name of Qualcomm Atheros nor the names of
  41. * its contributors may be used to endorse or promote products
  42. * derived from this software without specific prior written
  43. * permission.
  44. *
  45. * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
  46. * GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE
  47. * COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot; AND ANY EXPRESS OR
  48. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  49. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  50. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
  51. * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  52. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  53. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  54. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  55. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  56. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  57. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  58. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  59. *
  60. *--------------------------------------------------------------------*/
  61. /*====================================================================*
  62. *
  63. * void putpwd (unsigned count, unsigned group, char space);
  64. *
  65. * keys.h
  66. *
  67. * print a random password on stdout; passwords consist of count
  68. * letters and digits; optionally, group letters and digits and
  69. * separate groups with a space character;
  70. *
  71. * alphabet is an array of 32 printable password characters;
  72. * count is the number of characters to be selected from alphabet;
  73. * group is the grouping factor;
  74. * space is the group separator;
  75. *
  76. * grouping is suppressed when group is zero or greater than or
  77. * equal to count;
  78. *
  79. * Contributors:
  80. * Charles Maier &lt;cmaier@qca.qualcomm.com&gt;
  81. *
  82. *--------------------------------------------------------------------*/
  83. #ifndef PUTPWD_SOURCE
  84. #define PUTPWD_SOURCE
  85. #include &lt;unistd.h&gt;
  86. #include &lt;stdio.h&gt;
  87. #include &lt;fcntl.h&gt;
  88. #include &lt;errno.h&gt;
  89. #include &quot;../tools/types.h&quot;
  90. #include &quot;../tools/error.h&quot;
  91. #include &quot;../key/keys.h&quot;
  92. void putpwd (unsigned count, unsigned group, char space)
  93. {
  94. signed fd;
  95. if ((fd = open (&quot;/dev/urandom&quot;, O_RDONLY)) == -1)
  96. {
  97. error (1, errno, &quot;can't open /dev/urandom&quot;);
  98. }
  99. while (count--)
  100. {
  101. static const char alphabet [] =
  102. {
  103. '2',
  104. '3',
  105. '4',
  106. '5',
  107. '6',
  108. '7',
  109. '8',
  110. '9',
  111. 'A',
  112. 'B',
  113. 'C',
  114. 'D',
  115. 'E',
  116. 'F',
  117. 'G',
  118. 'H',
  119. 'J',
  120. 'K',
  121. 'L',
  122. 'M',
  123. 'N',
  124. 'P',
  125. 'Q',
  126. 'R',
  127. 'S',
  128. 'T',
  129. 'U',
  130. 'V',
  131. 'W',
  132. 'X',
  133. 'Y',
  134. 'Z'
  135. };
  136. unsigned member;
  137. if (read (fd, &amp; member, sizeof (member)) != sizeof (member))
  138. {
  139. error (1, errno, &quot;can't read /dev/urandom&quot;);
  140. }
  141. member &amp;= 0x1F;
  142. putc (alphabet [member % sizeof (alphabet)], stdout);
  143. if ((count) &amp;&amp; (group) &amp;&amp; ! (count % group))
  144. {
  145. putc (space, stdout);
  146. }
  147. }
  148. close (fd);
  149. return;
  150. }
  151. #endif
  152. </pre>
  153. <div class='footerlink'>
  154. [<a href='putoptv.c.html' title=' putoptv.c '>PREV</a>]
  155. [<a href='toolkit.html' title=' Index '>HOME</a>]
  156. [<a href='qosinfo.c.html' title=' qosinfo.c '>NEXT</a>]
  157. </div>
  158. </body>
  159. </html>