Config.in 840 B

12345678910111213141516171819202122232425262728
  1. config BR2_PACKAGE_CRACKLIB
  2. bool "cracklib"
  3. help
  4. CrackLib tests passwords to determine whether they match
  5. certain security-oriented characteristics, with the purpose
  6. of stopping users from choosing passwords that are easy to
  7. guess. CrackLib performs several tests on passwords: it
  8. tries to generate words from a username and gecos entry and
  9. checks those words against the password; it checks for
  10. simplistic patterns in passwords; and it checks for the
  11. password in a dictionary.
  12. https://github.com/cracklib/cracklib
  13. if BR2_PACKAGE_CRACKLIB
  14. config BR2_PACKAGE_CRACKLIB_TOOLS
  15. bool "install tools"
  16. help
  17. Install cracklib command line tools for creating dicts.
  18. config BR2_PACKAGE_CRACKLIB_FULL_DICT
  19. bool "full dict"
  20. help
  21. Install the full cracklib dict (requires about 8Mb extra
  22. target space).
  23. endif