Kconfig 655 B

123456789101112131415161718192021222324
  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. help
  7. Some VIA processors come with an integrated crypto engine
  8. (so called VIA PadLock ACE, Advanced Cryptography Engine)
  9. that provides instructions for very fast {en,de}cryption
  10. with some algorithms.
  11. The instructions are used only when the CPU supports them.
  12. Otherwise software encryption is used. If you are unsure,
  13. say Y.
  14. config CRYPTO_DEV_PADLOCK_AES
  15. bool "Support for AES in VIA PadLock"
  16. depends on CRYPTO_DEV_PADLOCK
  17. default y
  18. help
  19. Use VIA PadLock for AES algorithm.
  20. endmenu