RNDPasswords.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void RNDPasswords (unsigned vendor, unsigned device, unsigned number, unsigned count, unsigned group, unsigned space, flag_t flags);
  11. *
  12. * keys.h
  13. *
  14. * print a number of device address/password pairs on stdout; print
  15. * an optional usage flag in the first column for PTS compatability;
  16. *
  17. * vendor is the 24-bit OUI expressed as an integer; device is the
  18. * 24-bit starting unit address expressed as an integer; number is
  19. * the number of address/password pairs to generate; count is the
  20. * number of letters/numbers in the password excluding delimiters;
  21. * group is the number of letters or numbers appear between space
  22. * characters; space characters are suppressed when group is zero
  23. * or greater than count;
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef RNDPASSWORDS_SOURCE
  27. #define RNDPASSWORDS_SOURCE
  28. #include <stdio.h>
  29. #include <unistd.h>
  30. #include <fcntl.h>
  31. #include <errno.h>
  32. #include "../tools/types.h"
  33. #include "../tools/error.h"
  34. #include "../tools/files.h"
  35. #include "../tools/flags.h"
  36. #include "../key/keys.h"
  37. void RNDPasswords (unsigned vendor, unsigned device, unsigned number, unsigned count, unsigned group, char space, flag_t flags)
  38. {
  39. if (vendor >> 24)
  40. {
  41. return;
  42. }
  43. if (device >> 24)
  44. {
  45. return;
  46. }
  47. if (number >> 24)
  48. {
  49. return;
  50. }
  51. while (number--)
  52. {
  53. if (_anyset (flags, PASSWORD_VERBOSE))
  54. {
  55. putc ('0', stdout);
  56. putc (' ', stdout);
  57. }
  58. if (_allclr (flags, PASSWORD_SILENCE))
  59. {
  60. printf ("%06X", vendor);
  61. printf ("%06X", device);
  62. putc (' ', stdout);
  63. }
  64. putpwd (count, group, space);
  65. putc ('\n', stdout);
  66. device++;
  67. }
  68. return;
  69. }
  70. #endif