Kconfig 982 B

1234567891011121314151617181920212223242526272829303132
  1. config CRYPTO_SKEIN
  2. bool "Skein digest algorithm"
  3. depends on (X86 || UML_X86) && 64BIT && CRYPTO
  4. select CRYPTO_THREEFISH
  5. select CRYPTO_HASH
  6. help
  7. Skein secure hash algorithm is one of 5 finalists from the NIST SHA3
  8. competition.
  9. Skein is optimized for modern, 64bit processors and is highly
  10. customizable. See:
  11. http://www.skein-hash.info/sites/default/files/skein1.3.pdf
  12. for more information. This module depends on the threefish block
  13. cipher module.
  14. config CRYPTO_THREEFISH
  15. bool "Threefish tweakable block cipher"
  16. depends on (X86 || UML_X86) && 64BIT && CRYPTO
  17. select CRYPTO_ALGAPI
  18. help
  19. Threefish cipher algorithm is the tweakable block cipher underneath
  20. the Skein family of secure hash algorithms. Skein is one of 5
  21. finalists from the NIST SHA3 competition.
  22. Skein is optimized for modern, 64bit processors and is highly
  23. customizable. See:
  24. http://www.skein-hash.info/sites/default/files/skein1.3.pdf
  25. for more information.