Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. menu "Hardware crypto devices"
  2. config CRYPTO_DEV_PADLOCK
  3. bool "Support for VIA PadLock ACE"
  4. depends on X86_32
  5. select CRYPTO_ALGAPI
  6. default y
  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. If you are unsure,
  14. say Y.
  15. config CRYPTO_DEV_PADLOCK_AES
  16. tristate "PadLock driver for AES algorithm"
  17. depends on CRYPTO_DEV_PADLOCK
  18. default m
  19. help
  20. Use VIA PadLock for AES algorithm.
  21. Available in VIA C3 and newer CPUs.
  22. If unsure say M. The compiled module will be
  23. called padlock-aes.ko
  24. config CRYPTO_DEV_PADLOCK_SHA
  25. tristate "PadLock driver for SHA1 and SHA256 algorithms"
  26. depends on CRYPTO_DEV_PADLOCK
  27. select CRYPTO_SHA1
  28. select CRYPTO_SHA256
  29. default m
  30. help
  31. Use VIA PadLock for SHA1/SHA256 algorithms.
  32. Available in VIA C7 and newer processors.
  33. If unsure say M. The compiled module will be
  34. called padlock-sha.ko
  35. endmenu