Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. menu "Hardware crypto devices"
  2. config CRYPTO_DEV_PADLOCK
  3. tristate "Support for VIA PadLock ACE"
  4. depends on X86_32
  5. select CRYPTO_ALGAPI
  6. default m
  7. help
  8. Some VIA processors come with an integrated crypto engine
  9. (so called VIA PadLock ACE, Advanced Cryptography Engine)
  10. that provides instructions for very fast cryptographic
  11. operations with supported algorithms.
  12. The instructions are used only when the CPU supports them.
  13. Otherwise software encryption is used.
  14. Selecting M for this option will compile a helper module
  15. padlock.ko that should autoload all below configured
  16. algorithms. Don't worry if your hardware does not support
  17. some or all of them. In such case padlock.ko will
  18. simply write a single line into the kernel log informing
  19. about its failure but everything will keep working fine.
  20. If you are unsure, say M. The compiled module will be
  21. called padlock.ko
  22. config CRYPTO_DEV_PADLOCK_AES
  23. tristate "PadLock driver for AES algorithm"
  24. depends on CRYPTO_DEV_PADLOCK
  25. select CRYPTO_BLKCIPHER
  26. default m
  27. help
  28. Use VIA PadLock for AES algorithm.
  29. Available in VIA C3 and newer CPUs.
  30. If unsure say M. The compiled module will be
  31. called padlock-aes.ko
  32. config CRYPTO_DEV_PADLOCK_SHA
  33. tristate "PadLock driver for SHA1 and SHA256 algorithms"
  34. depends on CRYPTO_DEV_PADLOCK
  35. select CRYPTO_SHA1
  36. select CRYPTO_SHA256
  37. default m
  38. help
  39. Use VIA PadLock for SHA1/SHA256 algorithms.
  40. Available in VIA C7 and newer processors.
  41. If unsure say M. The compiled module will be
  42. called padlock-sha.ko
  43. endmenu