Kconfig 643 B

1234567891011121314151617181920212223
  1. menu "Hardware crypto devices"
  2. config CRYPTO_DEV_PADLOCK
  3. tristate "Support for VIA PadLock ACE"
  4. depends on CRYPTO && X86_32
  5. help
  6. Some VIA processors come with an integrated crypto engine
  7. (so called VIA PadLock ACE, Advanced Cryptography Engine)
  8. that provides instructions for very fast {en,de}cryption
  9. with some algorithms.
  10. The instructions are used only when the CPU supports them.
  11. Otherwise software encryption is used. If you are unsure,
  12. say Y.
  13. config CRYPTO_DEV_PADLOCK_AES
  14. bool "Support for AES in VIA PadLock"
  15. depends on CRYPTO_DEV_PADLOCK
  16. default y
  17. help
  18. Use VIA PadLock for AES algorithm.
  19. endmenu