strnpwd.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2015 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * char * strnpwd (char buffer [], unsigned length, unsigned count, unsigned group, char space);
  11. *
  12. * keys.h
  13. *
  14. * encode a buffer with a password containing the specified number
  15. * of random letters and digits; optionally, group the letters and
  16. * digits and separate groups with a space character; return the
  17. * address of the byte following the encoded password;
  18. *
  19. * alphabet is an array of 32 printable password characters;
  20. * count is the number of characters to be selected from alphabet;
  21. * group is the grouping factor;
  22. * space is the group separator;
  23. *
  24. * grouping is suppressed when group is zero or greater than or
  25. * equal to count;
  26. *
  27. * Contributors:
  28. * Charles Maier <cmaier@qca.qualcomm.com>
  29. *
  30. *--------------------------------------------------------------------*/
  31. #ifndef STRNPWD_SOURCE
  32. #define STRNPWD_SOURCE
  33. #include <unistd.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. char * strnpwd (char buffer [], unsigned length, 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. if (length)
  99. {
  100. *buffer = alphabet [member % sizeof (alphabet)];
  101. buffer++;
  102. length--;
  103. }
  104. if ((count) && (group) && ! (count % group))
  105. {
  106. if (length)
  107. {
  108. *buffer = space;
  109. buffer++;
  110. length--;
  111. }
  112. }
  113. }
  114. #ifndef WIN32
  115. close (fd);
  116. #endif
  117. return (buffer);
  118. }
  119. #endif