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