Kconfig 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. config ZCRYPT
  48. tristate "Support for PCI-attached cryptographic adapters"
  49. depends on S390
  50. select ZCRYPT_MONOLITHIC if ZCRYPT="y"
  51. default "m"
  52. help
  53. Select this option if you want to use a PCI-attached cryptographic
  54. adapter like:
  55. + PCI Cryptographic Accelerator (PCICA)
  56. + PCI Cryptographic Coprocessor (PCICC)
  57. + PCI-X Cryptographic Coprocessor (PCIXCC)
  58. + Crypto Express2 Coprocessor (CEX2C)
  59. + Crypto Express2 Accelerator (CEX2A)
  60. config ZCRYPT_MONOLITHIC
  61. bool "Monolithic zcrypt module"
  62. depends on ZCRYPT="m"
  63. help
  64. Select this option if you want to have a single module z90crypt.ko
  65. that contains all parts of the crypto device driver (ap bus,
  66. request router and all the card drivers).
  67. endmenu