putpwd.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2015 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void putpwd (unsigned count, unsigned group, char space);
  11. *
  12. * keys.h
  13. *
  14. * print a random password on stdout; passwords consist of count
  15. * letters and digits; optionally, group letters and digits and
  16. * separate groups with a space character;
  17. *
  18. * alphabet is an array of 32 printable password characters;
  19. * count is the number of characters to be selected from alphabet;
  20. * group is the grouping factor;
  21. * space is the group separator;
  22. *
  23. * grouping is suppressed when group is zero or greater than or
  24. * equal to count;
  25. *
  26. * Contributors:
  27. * Charles Maier <cmaier@qca.qualcomm.com>
  28. *
  29. *--------------------------------------------------------------------*/
  30. #ifndef PUTPWD_SOURCE
  31. #define PUTPWD_SOURCE
  32. #include <unistd.h>
  33. #include <stdio.h>
  34. #include <fcntl.h>
  35. #include <errno.h>
  36. #ifdef WIN32
  37. #include <stdlib.h>
  38. #include <time.h>
  39. #endif
  40. #include "../tools/types.h"
  41. #include "../tools/error.h"
  42. #include "../key/keys.h"
  43. void putpwd (unsigned count, unsigned group, char space)
  44. {
  45. unsigned member;
  46. #ifndef WIN32
  47. signed fd;
  48. if ((fd = open ("/dev/urandom", O_RDONLY)) == -1)
  49. {
  50. error (1, errno, "can't open /dev/urandom");
  51. }
  52. #endif
  53. while (count--)
  54. {
  55. static const char alphabet [] =
  56. {
  57. '2',
  58. '3',
  59. '4',
  60. '5',
  61. '6',
  62. '7',
  63. '8',
  64. '9',
  65. 'A',
  66. 'B',
  67. 'C',
  68. 'D',
  69. 'E',
  70. 'F',
  71. 'G',
  72. 'H',
  73. 'J',
  74. 'K',
  75. 'L',
  76. 'M',
  77. 'N',
  78. 'P',
  79. 'Q',
  80. 'R',
  81. 'S',
  82. 'T',
  83. 'U',
  84. 'V',
  85. 'W',
  86. 'X',
  87. 'Y',
  88. 'Z'
  89. };
  90. #ifndef WIN32
  91. if (read (fd, & member, sizeof (member)) != sizeof (member))
  92. {
  93. error (1, errno, "can't read /dev/urandom");
  94. }
  95. #else
  96. member = rand();
  97. #endif
  98. member &= 0x1F;
  99. putc (alphabet [member % sizeof (alphabet)], stdout);
  100. if ((count) && (group) && ! (count % group))
  101. {
  102. putc (space, stdout);
  103. }
  104. }
  105. #ifndef WIN32
  106. close (fd);
  107. #endif
  108. return;
  109. }
  110. #endif