Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. help
  26. A software driver for the OCF framework that uses
  27. the kernel CryptoAPI.
  28. config OCF_SAFE
  29. tristate "safenet (HW crypto engine)"
  30. depends on OCF_OCF
  31. help
  32. A driver for a number of the safenet Excel crypto accelerators.
  33. Currently tested and working on the 1141 and 1741.
  34. config OCF_IXP4XX
  35. tristate "IXP4xx (HW crypto engine)"
  36. depends on OCF_OCF
  37. help
  38. XScale IXP4xx crypto accelerator driver. Requires the
  39. Intel Access library.
  40. config OCF_IXP4XX_SHA1_MD5
  41. bool "IXP4xx SHA1 and MD5 Hashing"
  42. depends on OCF_IXP4XX
  43. help
  44. Allows the IXP4xx crypto accelerator to perform SHA1 and MD5 hashing.
  45. Note: this is MUCH slower than using cryptosoft (software crypto engine).
  46. config OCF_HIFN
  47. tristate "hifn (HW crypto engine)"
  48. depends on OCF_OCF
  49. help
  50. OCF driver for various HIFN based crypto accelerators.
  51. (7951, 7955, 7956, 7751, 7811)
  52. config OCF_HIFNHIPP
  53. tristate "Hifn HIPP (HW packet crypto engine)"
  54. depends on OCF_OCF
  55. help
  56. OCF driver for various HIFN (HIPP) based crypto accelerators
  57. (7855)
  58. config OCF_TALITOS
  59. tristate "talitos (HW crypto engine)"
  60. depends on OCF_OCF
  61. help
  62. OCF driver for Freescale's security engine (SEC/talitos).
  63. config OCF_PASEMI
  64. tristate "pasemi (HW crypto engine)"
  65. depends on OCF_OCF && PPC_PASEMI
  66. help
  67. OCF driver for the PA Semi PWRficient DMA Engine
  68. config OCF_EP80579
  69. tristate "ep80579 (HW crypto engine)"
  70. depends on OCF_OCF
  71. help
  72. OCF driver for the Intel EP80579 Integrated Processor Product Line.
  73. config OCF_OCFNULL
  74. tristate "ocfnull (fake crypto engine)"
  75. depends on OCF_OCF
  76. help
  77. OCF driver for measuring ipsec overheads (does no crypto)
  78. config OCF_BENCH
  79. tristate "ocf-bench (HW crypto in-kernel benchmark)"
  80. depends on OCF_OCF
  81. help
  82. A very simple encryption test for the in-kernel interface
  83. of OCF. Also includes code to benchmark the IXP Access library
  84. for comparison.
  85. endmenu