3
0

Config.in 740 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Busybox Library Tuning"
  6. config PASSWORD_MINLEN
  7. int "Minimum password length"
  8. default 6
  9. range 5 32
  10. help
  11. Minimum allowable password length.
  12. config MD5_SIZE_VS_SPEED
  13. int " MD5: Trade Bytes for Speed"
  14. default 2
  15. range 0 3
  16. help
  17. Trade binary size versus speed for the md5sum algorithm.
  18. Approximate values running uClibc and hashing
  19. linux-2.4.4.tar.bz2 were:
  20. user times (sec) text size (386)
  21. 0 (fastest) 1.1 6144
  22. 1 1.4 5392
  23. 2 3.0 5088
  24. 3 (smallest) 5.1 4912
  25. endmenu