Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.
  14. config CRYPTO_DEV_PADLOCK_AES
  15. tristate "PadLock driver for AES algorithm"
  16. depends on CRYPTO_DEV_PADLOCK
  17. select CRYPTO_BLKCIPHER
  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. source "arch/s390/crypto/Kconfig"
  36. config CRYPTO_DEV_GEODE
  37. tristate "Support for the Geode LX AES engine"
  38. depends on X86_32 && PCI
  39. select CRYPTO_ALGAPI
  40. select CRYPTO_BLKCIPHER
  41. default m
  42. help
  43. Say 'Y' here to use the AMD Geode LX processor on-board AES
  44. engine for the CryptoAPI AES algorithm.
  45. To compile this driver as a module, choose M here: the module
  46. will be called geode-aes.
  47. endmenu