Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. menu "OCF Configuration"
  2. config OCF_OCF
  3. tristate "OCF (Open Cryptograhic Framework)"
  4. help
  5. A linux port of the OpenBSD/FreeBSD crypto framework.
  6. config OCF_RANDOMHARVEST
  7. bool "crypto random --- harvest entropy for /dev/random"
  8. depends on OCF_OCF
  9. help
  10. Includes code to harvest random numbers from devices that support it.
  11. config OCF_FIPS
  12. bool "enable fips RNG checks"
  13. depends on OCF_OCF && OCF_RANDOMHARVEST
  14. help
  15. Run all RNG provided data through a fips check before
  16. adding it /dev/random's entropy pool.
  17. config OCF_CRYPTODEV
  18. tristate "cryptodev (user space support)"
  19. depends on OCF_OCF
  20. help
  21. The user space API to access crypto hardware.
  22. config OCF_CRYPTOSOFT
  23. tristate "cryptosoft (software crypto engine)"
  24. depends on OCF_OCF
  25. select CRYPTO
  26. select CRYPTO_HASH
  27. select CRYPTO_BLKCIPHER
  28. help
  29. A software driver for the OCF framework that uses
  30. the kernel CryptoAPI.
  31. config OCF_SAFE
  32. tristate "safenet (HW crypto engine)"
  33. depends on OCF_OCF
  34. help
  35. A driver for a number of the safenet Excel crypto accelerators.
  36. Currently tested and working on the 1141 and 1741.
  37. config OCF_IXP4XX
  38. tristate "IXP4xx (HW crypto engine)"
  39. depends on OCF_OCF
  40. help
  41. XScale IXP4xx crypto accelerator driver. Requires the
  42. Intel Access library.
  43. config OCF_IXP4XX_SHA1_MD5
  44. bool "IXP4xx SHA1 and MD5 Hashing"
  45. depends on OCF_IXP4XX
  46. help
  47. Allows the IXP4xx crypto accelerator to perform SHA1 and MD5 hashing.
  48. Note: this is MUCH slower than using cryptosoft (software crypto engine).
  49. config OCF_HIFN
  50. tristate "hifn (HW crypto engine)"
  51. depends on OCF_OCF && PCI
  52. help
  53. OCF driver for various HIFN based crypto accelerators.
  54. (7951, 7955, 7956, 7751, 7811)
  55. config OCF_HIFNHIPP
  56. tristate "Hifn HIPP (HW packet crypto engine)"
  57. depends on OCF_OCF
  58. help
  59. OCF driver for various HIFN (HIPP) based crypto accelerators
  60. (7855)
  61. config OCF_TALITOS
  62. tristate "talitos (HW crypto engine)"
  63. depends on OCF_OCF
  64. help
  65. OCF driver for Freescale's security engine (SEC/talitos).
  66. config OCF_PASEMI
  67. tristate "pasemi (HW crypto engine)"
  68. depends on OCF_OCF && PPC_PASEMI
  69. help
  70. OCF driver for the PA Semi PWRficient DMA Engine
  71. config OCF_EP80579
  72. tristate "ep80579 (HW crypto engine)"
  73. depends on OCF_OCF
  74. help
  75. OCF driver for the Intel EP80579 Integrated Processor Product Line.
  76. config OCF_CRYPTOCTEON
  77. tristate "cryptocteon (HW crypto engine)"
  78. depends on OCF_OCF
  79. help
  80. OCF driver for the Cavium OCTEON Processors.
  81. config OCF_KIRKWOOD
  82. tristate "kirkwood (HW crypto engine)"
  83. depends on OCF_OCF
  84. help
  85. OCF driver for the Marvell Kirkwood (88F6xxx) Processors.
  86. config OCF_C7108
  87. tristate "Micronas 7108 (HW crypto engine)"
  88. depends on OCF_OCF
  89. help
  90. OCF driver for the Microna 7108 Cipher processors.
  91. config OCF_UBSEC_SSB
  92. tristate "uBsec BCM5365 (HW crypto engine)"
  93. depends on OCF_OCF
  94. help
  95. OCF driver for uBsec BCM5365 hardware crypto accelerator.
  96. config OCF_OCFNULL
  97. tristate "ocfnull (fake crypto engine)"
  98. depends on OCF_OCF
  99. help
  100. OCF driver for measuring ipsec overheads (does no crypto)
  101. config OCF_BENCH
  102. tristate "ocf-bench (HW crypto in-kernel benchmark)"
  103. depends on OCF_OCF
  104. help
  105. A very simple encryption test for the in-kernel interface
  106. of OCF. Also includes code to benchmark the IXP Access library
  107. for comparison.
  108. endmenu