blob: 8179ae62cec032000e51a04d198ca1e3b8b4a415 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
Dan Williams685784a2007-07-09 11:56:42 -07002# Generic algorithms support
3#
4config XOR_BLOCKS
5 tristate
6
7#
Dan Williams9bc89cd2007-01-02 11:10:44 -07008# async_tx api: hardware offloaded memory transfer/transform support
9#
10source "crypto/async_tx/Kconfig"
11
12#
Linus Torvalds1da177e2005-04-16 15:20:36 -070013# Cryptographic API Configuration
14#
Jan Engelhardt2e290f42007-05-18 15:11:01 +100015menuconfig CRYPTO
Sebastian Siewiorc3715cb92008-03-30 16:36:09 +080016 tristate "Cryptographic API"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 help
18 This option provides the core Cryptographic API.
19
Herbert Xucce9e062006-08-21 21:08:13 +100020if CRYPTO
21
Sebastian Siewior584fffc2008-04-05 21:04:48 +080022comment "Crypto core or helper"
23
Neil Hormanccb778e2008-08-05 14:13:08 +080024config CRYPTO_FIPS
25 bool "FIPS 200 compliance"
Chuck Ebberte84c5482010-09-03 19:17:49 +080026 depends on CRYPTO_ANSI_CPRNG && !CRYPTO_MANAGER_DISABLE_TESTS
Neil Hormanccb778e2008-08-05 14:13:08 +080027 help
28 This options enables the fips boot option which is
29 required if you want to system to operate in a FIPS 200
30 certification. You should say no unless you know what
Chuck Ebberte84c5482010-09-03 19:17:49 +080031 this is.
Neil Hormanccb778e2008-08-05 14:13:08 +080032
Herbert Xucce9e062006-08-21 21:08:13 +100033config CRYPTO_ALGAPI
34 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110035 select CRYPTO_ALGAPI2
Herbert Xucce9e062006-08-21 21:08:13 +100036 help
37 This option provides the API for cryptographic algorithms.
38
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110039config CRYPTO_ALGAPI2
40 tristate
41
Herbert Xu1ae97822007-08-30 15:36:14 +080042config CRYPTO_AEAD
43 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110044 select CRYPTO_AEAD2
Herbert Xu1ae97822007-08-30 15:36:14 +080045 select CRYPTO_ALGAPI
46
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110047config CRYPTO_AEAD2
48 tristate
49 select CRYPTO_ALGAPI2
50
Herbert Xu5cde0af2006-08-22 00:07:53 +100051config CRYPTO_BLKCIPHER
52 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110053 select CRYPTO_BLKCIPHER2
Herbert Xu5cde0af2006-08-22 00:07:53 +100054 select CRYPTO_ALGAPI
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110055
56config CRYPTO_BLKCIPHER2
57 tristate
58 select CRYPTO_ALGAPI2
59 select CRYPTO_RNG2
Huang Ying0a2e8212009-02-19 14:44:02 +080060 select CRYPTO_WORKQUEUE
Herbert Xu5cde0af2006-08-22 00:07:53 +100061
Herbert Xu055bcee2006-08-19 22:24:23 +100062config CRYPTO_HASH
63 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110064 select CRYPTO_HASH2
Herbert Xu055bcee2006-08-19 22:24:23 +100065 select CRYPTO_ALGAPI
66
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110067config CRYPTO_HASH2
68 tristate
69 select CRYPTO_ALGAPI2
70
Neil Horman17f0f4a2008-08-14 22:15:52 +100071config CRYPTO_RNG
72 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110073 select CRYPTO_RNG2
Neil Horman17f0f4a2008-08-14 22:15:52 +100074 select CRYPTO_ALGAPI
75
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110076config CRYPTO_RNG2
77 tristate
78 select CRYPTO_ALGAPI2
79
Geert Uytterhoevena1d2f092009-03-04 15:05:33 +080080config CRYPTO_PCOMP
81 tristate
Herbert Xubc94e592010-06-03 20:33:06 +100082 select CRYPTO_PCOMP2
83 select CRYPTO_ALGAPI
84
85config CRYPTO_PCOMP2
86 tristate
Geert Uytterhoevena1d2f092009-03-04 15:05:33 +080087 select CRYPTO_ALGAPI2
88
Herbert Xu2b8c19d2006-09-21 11:31:44 +100089config CRYPTO_MANAGER
90 tristate "Cryptographic algorithm manager"
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110091 select CRYPTO_MANAGER2
Herbert Xu2b8c19d2006-09-21 11:31:44 +100092 help
93 Create default cryptographic template instantiations such as
94 cbc(aes).
95
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110096config CRYPTO_MANAGER2
97 def_tristate CRYPTO_MANAGER || (CRYPTO_MANAGER!=n && CRYPTO_ALGAPI=y)
98 select CRYPTO_AEAD2
99 select CRYPTO_HASH2
100 select CRYPTO_BLKCIPHER2
Herbert Xubc94e592010-06-03 20:33:06 +1000101 select CRYPTO_PCOMP2
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100102
Steffen Klasserta38f7902011-09-27 07:23:50 +0200103config CRYPTO_USER
104 tristate "Userspace cryptographic algorithm configuration"
Herbert Xu5db017a2011-11-01 12:12:43 +1100105 depends on NET
Steffen Klasserta38f7902011-09-27 07:23:50 +0200106 select CRYPTO_MANAGER
107 help
Valdis.Kletnieks@vt.edud19978f2011-11-09 01:29:20 -0500108 Userspace configuration for cryptographic instantiations such as
Steffen Klasserta38f7902011-09-27 07:23:50 +0200109 cbc(aes).
110
Herbert Xu326a6342010-08-06 09:40:28 +0800111config CRYPTO_MANAGER_DISABLE_TESTS
112 bool "Disable run-time self tests"
Herbert Xu00ca28a2010-08-06 10:34:00 +0800113 default y
114 depends on CRYPTO_MANAGER2
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000115 help
Herbert Xu326a6342010-08-06 09:40:28 +0800116 Disable run-time self tests that normally take place at
117 algorithm registration.
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000118
Rik Snelc494e072006-11-29 18:59:44 +1100119config CRYPTO_GF128MUL
Jussi Kivilinna08c70fc2011-12-13 12:53:22 +0200120 tristate "GF(2^128) multiplication functions"
Rik Snelc494e072006-11-29 18:59:44 +1100121 help
122 Efficient table driven implementation of multiplications in the
123 field GF(2^128). This is needed by some cypher modes. This
124 option will be selected automatically if you select such a
125 cipher mode. Only select this option by hand if you expect to load
126 an external module that requires these functions.
127
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800128config CRYPTO_NULL
129 tristate "Null algorithms"
130 select CRYPTO_ALGAPI
131 select CRYPTO_BLKCIPHER
Herbert Xud35d2452008-11-08 08:09:56 +0800132 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800133 help
134 These are 'Null' algorithms, used by IPsec, which do nothing.
135
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100136config CRYPTO_PCRYPT
Kees Cook3b4afaf2012-10-02 11:16:49 -0700137 tristate "Parallel crypto engine"
138 depends on SMP
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100139 select PADATA
140 select CRYPTO_MANAGER
141 select CRYPTO_AEAD
142 help
143 This converts an arbitrary crypto algorithm into a parallel
144 algorithm that executes in kernel threads.
145
Huang Ying25c38d32009-02-19 14:33:40 +0800146config CRYPTO_WORKQUEUE
147 tristate
148
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800149config CRYPTO_CRYPTD
150 tristate "Software async crypto daemon"
Herbert Xudb131ef2006-09-21 11:44:08 +1000151 select CRYPTO_BLKCIPHER
Loc Hob8a28252008-05-14 21:23:00 +0800152 select CRYPTO_HASH
Herbert Xu43518402006-10-16 21:28:58 +1000153 select CRYPTO_MANAGER
Huang Ying254eff72009-02-19 14:42:19 +0800154 select CRYPTO_WORKQUEUE
Herbert Xudb131ef2006-09-21 11:44:08 +1000155 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800156 This is a generic software asynchronous crypto daemon that
157 converts an arbitrary synchronous software crypto algorithm
158 into an asynchronous algorithm that executes in a kernel thread.
159
160config CRYPTO_AUTHENC
161 tristate "Authenc support"
162 select CRYPTO_AEAD
163 select CRYPTO_BLKCIPHER
164 select CRYPTO_MANAGER
165 select CRYPTO_HASH
166 help
167 Authenc: Combined mode wrapper for IPsec.
168 This is required for IPSec.
169
170config CRYPTO_TEST
171 tristate "Testing module"
172 depends on m
Herbert Xuda7f0332008-07-31 17:08:25 +0800173 select CRYPTO_MANAGER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800174 help
175 Quick & dirty crypto test module.
176
Jussi Kivilinnaffaf9152012-06-18 14:06:58 +0300177config CRYPTO_ABLK_HELPER_X86
178 tristate
179 depends on X86
180 select CRYPTO_CRYPTD
181
Ard Biesheuvela62b01c2013-09-20 09:55:40 +0200182config CRYPTO_ABLK_HELPER
183 tristate
184 select CRYPTO_CRYPTD
185
Jussi Kivilinna596d8752012-06-18 14:07:19 +0300186config CRYPTO_GLUE_HELPER_X86
187 tristate
188 depends on X86
189 select CRYPTO_ALGAPI
190
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800191comment "Authenticated Encryption with Associated Data"
192
193config CRYPTO_CCM
194 tristate "CCM support"
195 select CRYPTO_CTR
196 select CRYPTO_AEAD
197 help
198 Support for Counter with CBC MAC. Required for IPsec.
199
200config CRYPTO_GCM
201 tristate "GCM/GMAC support"
202 select CRYPTO_CTR
203 select CRYPTO_AEAD
Huang Ying9382d972009-08-06 15:34:26 +1000204 select CRYPTO_GHASH
Jussi Kivilinna9489667d2013-04-07 16:43:41 +0300205 select CRYPTO_NULL
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800206 help
207 Support for Galois/Counter Mode (GCM) and Galois Message
208 Authentication Code (GMAC). Required for IPSec.
209
210config CRYPTO_SEQIV
211 tristate "Sequence Number IV Generator"
212 select CRYPTO_AEAD
213 select CRYPTO_BLKCIPHER
Herbert Xua0f000e2008-08-14 22:21:31 +1000214 select CRYPTO_RNG
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800215 help
216 This IV generator generates an IV based on a sequence number by
217 xoring it with a salt. This algorithm is mainly useful for CTR
218
219comment "Block modes"
Herbert Xudb131ef2006-09-21 11:44:08 +1000220
221config CRYPTO_CBC
222 tristate "CBC support"
223 select CRYPTO_BLKCIPHER
Herbert Xu43518402006-10-16 21:28:58 +1000224 select CRYPTO_MANAGER
Herbert Xudb131ef2006-09-21 11:44:08 +1000225 help
226 CBC: Cipher Block Chaining mode
227 This block cipher algorithm is required for IPSec.
228
Joy Latten23e353c2007-10-23 08:50:32 +0800229config CRYPTO_CTR
230 tristate "CTR support"
231 select CRYPTO_BLKCIPHER
Herbert Xu0a270322007-11-30 21:38:37 +1100232 select CRYPTO_SEQIV
Joy Latten23e353c2007-10-23 08:50:32 +0800233 select CRYPTO_MANAGER
Joy Latten23e353c2007-10-23 08:50:32 +0800234 help
235 CTR: Counter mode
236 This block cipher algorithm is required for IPSec.
237
Kevin Coffman76cb9522008-03-24 21:26:16 +0800238config CRYPTO_CTS
239 tristate "CTS support"
240 select CRYPTO_BLKCIPHER
241 help
242 CTS: Cipher Text Stealing
243 This is the Cipher Text Stealing mode as described by
244 Section 8 of rfc2040 and referenced by rfc3962.
245 (rfc3962 includes errata information in its Appendix A)
246 This mode is required for Kerberos gss mechanism support
247 for AES encryption.
248
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800249config CRYPTO_ECB
250 tristate "ECB support"
Herbert Xu653ebd92007-11-27 19:48:27 +0800251 select CRYPTO_BLKCIPHER
Herbert Xu124b53d2007-04-16 20:49:20 +1000252 select CRYPTO_MANAGER
253 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800254 ECB: Electronic CodeBook mode
255 This is the simplest block cipher algorithm. It simply encrypts
256 the input block by block.
Herbert Xu124b53d2007-04-16 20:49:20 +1000257
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800258config CRYPTO_LRW
Jussi Kivilinna2470a2b2011-12-13 12:52:51 +0200259 tristate "LRW support"
David Howells90831632006-12-16 12:13:14 +1100260 select CRYPTO_BLKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800261 select CRYPTO_MANAGER
262 select CRYPTO_GF128MUL
David Howells90831632006-12-16 12:13:14 +1100263 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800264 LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable
265 narrow block cipher mode for dm-crypt. Use it with cipher
266 specification string aes-lrw-benbi, the key must be 256, 320 or 384.
267 The first 128, 192 or 256 bits in the key are used for AES and the
268 rest is used to tie each cipher block to its logical position.
David Howells90831632006-12-16 12:13:14 +1100269
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800270config CRYPTO_PCBC
271 tristate "PCBC support"
272 select CRYPTO_BLKCIPHER
273 select CRYPTO_MANAGER
274 help
275 PCBC: Propagating Cipher Block Chaining mode
276 This block cipher algorithm is required for RxRPC.
277
278config CRYPTO_XTS
Jussi Kivilinna5bcf8e62011-12-13 12:52:56 +0200279 tristate "XTS support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800280 select CRYPTO_BLKCIPHER
281 select CRYPTO_MANAGER
282 select CRYPTO_GF128MUL
283 help
284 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain,
285 key size 256, 384 or 512 bits. This implementation currently
286 can't handle a sectorsize which is not a multiple of 16 bytes.
287
288comment "Hash modes"
289
Jussi Kivilinna93b5e862013-04-08 10:48:44 +0300290config CRYPTO_CMAC
291 tristate "CMAC support"
292 select CRYPTO_HASH
293 select CRYPTO_MANAGER
294 help
295 Cipher-based Message Authentication Code (CMAC) specified by
296 The National Institute of Standards and Technology (NIST).
297
298 https://tools.ietf.org/html/rfc4493
299 http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf
300
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800301config CRYPTO_HMAC
302 tristate "HMAC support"
303 select CRYPTO_HASH
304 select CRYPTO_MANAGER
305 help
306 HMAC: Keyed-Hashing for Message Authentication (RFC2104).
307 This is required for IPSec.
308
309config CRYPTO_XCBC
310 tristate "XCBC support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800311 select CRYPTO_HASH
312 select CRYPTO_MANAGER
313 help
314 XCBC: Keyed-Hashing with encryption algorithm
315 http://www.ietf.org/rfc/rfc3566.txt
316 http://csrc.nist.gov/encryption/modes/proposedmodes/
317 xcbc-mac/xcbc-mac-spec.pdf
318
Shane Wangf1939f72009-09-02 20:05:22 +1000319config CRYPTO_VMAC
320 tristate "VMAC support"
Shane Wangf1939f72009-09-02 20:05:22 +1000321 select CRYPTO_HASH
322 select CRYPTO_MANAGER
323 help
324 VMAC is a message authentication algorithm designed for
325 very high speed on 64-bit architectures.
326
327 See also:
328 <http://fastcrypto.org/vmac>
329
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800330comment "Digest"
331
332config CRYPTO_CRC32C
333 tristate "CRC32c CRC algorithm"
Herbert Xu5773a3e2008-07-08 20:54:28 +0800334 select CRYPTO_HASH
Darrick J. Wong6a0962b2012-03-23 15:02:25 -0700335 select CRC32
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800336 help
337 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
338 by iSCSI for header and data digests and by others.
Herbert Xu69c35ef2008-11-07 15:11:47 +0800339 See Castagnoli93. Module will be crc32c.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800340
Austin Zhang8cb51ba2008-08-07 09:57:03 +0800341config CRYPTO_CRC32C_INTEL
342 tristate "CRC32c INTEL hardware acceleration"
343 depends on X86
344 select CRYPTO_HASH
345 help
346 In Intel processor with SSE4.2 supported, the processor will
347 support CRC32C implementation using hardware accelerated CRC32
348 instruction. This option will create 'crc32c-intel' module,
349 which will enable any routine to use the CRC32 instruction to
350 gain performance compared with software implementation.
351 Module will be crc32c-intel.
352
David S. Miller442a7c42012-08-22 20:47:36 -0700353config CRYPTO_CRC32C_SPARC64
354 tristate "CRC32c CRC algorithm (SPARC64)"
355 depends on SPARC64
356 select CRYPTO_HASH
357 select CRC32
358 help
359 CRC32c CRC algorithm implemented using sparc64 crypto instructions,
360 when available.
361
Alexander Boyko78c37d12013-01-10 18:54:59 +0400362config CRYPTO_CRC32
363 tristate "CRC32 CRC algorithm"
364 select CRYPTO_HASH
365 select CRC32
366 help
367 CRC-32-IEEE 802.3 cyclic redundancy-check algorithm.
368 Shash crypto api wrappers to crc32_le function.
369
370config CRYPTO_CRC32_PCLMUL
371 tristate "CRC32 PCLMULQDQ hardware acceleration"
372 depends on X86
373 select CRYPTO_HASH
374 select CRC32
375 help
376 From Intel Westmere and AMD Bulldozer processor with SSE4.2
377 and PCLMULQDQ supported, the processor will support
378 CRC32 PCLMULQDQ implementation using hardware accelerated PCLMULQDQ
379 instruction. This option will create 'crc32-plcmul' module,
380 which will enable any routine to use the CRC-32-IEEE 802.3 checksum
381 and gain better performance as compared with the table implementation.
382
Herbert Xu684115212013-09-07 12:56:26 +1000383config CRYPTO_CRCT10DIF
384 tristate "CRCT10DIF algorithm"
385 select CRYPTO_HASH
386 help
387 CRC T10 Data Integrity Field computation is being cast as
388 a crypto transform. This allows for faster crc t10 diff
389 transforms to be used if they are available.
390
391config CRYPTO_CRCT10DIF_PCLMUL
392 tristate "CRCT10DIF PCLMULQDQ hardware acceleration"
393 depends on X86 && 64BIT && CRC_T10DIF
394 select CRYPTO_HASH
395 help
396 For x86_64 processors with SSE4.2 and PCLMULQDQ supported,
397 CRC T10 DIF PCLMULQDQ computation can be hardware
398 accelerated PCLMULQDQ instruction. This option will create
399 'crct10dif-plcmul' module, which is faster when computing the
400 crct10dif checksum as compared with the generic table implementation.
401
Huang Ying2cdc6892009-08-06 15:32:38 +1000402config CRYPTO_GHASH
403 tristate "GHASH digest algorithm"
Huang Ying2cdc6892009-08-06 15:32:38 +1000404 select CRYPTO_GF128MUL
405 help
406 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
407
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800408config CRYPTO_MD4
409 tristate "MD4 digest algorithm"
Adrian-Ken Rueegsegger808a1762008-12-03 19:55:27 +0800410 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800412 MD4 message digest algorithm (RFC1320).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800414config CRYPTO_MD5
415 tristate "MD5 digest algorithm"
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800416 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800418 MD5 message digest algorithm (RFC1321).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
David S. Millerfa4dfed2012-08-19 21:51:26 -0700420config CRYPTO_MD5_SPARC64
421 tristate "MD5 digest algorithm (SPARC64)"
422 depends on SPARC64
423 select CRYPTO_MD5
424 select CRYPTO_HASH
425 help
426 MD5 message digest algorithm (RFC1321) implemented
427 using sparc64 crypto instructions, when available.
428
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800429config CRYPTO_MICHAEL_MIC
430 tristate "Michael MIC keyed digest algorithm"
Adrian-Ken Rueegsegger19e2bf12008-12-07 19:35:38 +0800431 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800432 help
433 Michael MIC is used for message integrity protection in TKIP
434 (IEEE 802.11i). This algorithm is required for TKIP, but it
435 should not be used for other purposes because of the weakness
436 of the algorithm.
437
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800438config CRYPTO_RMD128
Adrian Bunkb6d44342008-07-16 19:28:00 +0800439 tristate "RIPEMD-128 digest algorithm"
Herbert Xu7c4468b2008-11-08 09:10:40 +0800440 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800441 help
442 RIPEMD-128 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800443
Adrian Bunkb6d44342008-07-16 19:28:00 +0800444 RIPEMD-128 is a 128-bit cryptographic hash function. It should only
Michael Witten35ed4b32011-07-09 04:02:31 +0000445 be used as a secure replacement for RIPEMD. For other use cases,
Adrian Bunkb6d44342008-07-16 19:28:00 +0800446 RIPEMD-160 should be used.
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800447
Adrian Bunkb6d44342008-07-16 19:28:00 +0800448 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800449 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800450
451config CRYPTO_RMD160
Adrian Bunkb6d44342008-07-16 19:28:00 +0800452 tristate "RIPEMD-160 digest algorithm"
Herbert Xue5835fb2008-11-08 09:18:51 +0800453 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800454 help
455 RIPEMD-160 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800456
Adrian Bunkb6d44342008-07-16 19:28:00 +0800457 RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
458 to be used as a secure replacement for the 128-bit hash functions
459 MD4, MD5 and it's predecessor RIPEMD
460 (not to be confused with RIPEMD-128).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800461
Adrian Bunkb6d44342008-07-16 19:28:00 +0800462 It's speed is comparable to SHA1 and there are no known attacks
463 against RIPEMD-160.
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800464
Adrian Bunkb6d44342008-07-16 19:28:00 +0800465 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800466 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800467
468config CRYPTO_RMD256
Adrian Bunkb6d44342008-07-16 19:28:00 +0800469 tristate "RIPEMD-256 digest algorithm"
Herbert Xud8a5e2e2008-11-08 09:58:10 +0800470 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800471 help
472 RIPEMD-256 is an optional extension of RIPEMD-128 with a
473 256 bit hash. It is intended for applications that require
474 longer hash-results, without needing a larger security level
475 (than RIPEMD-128).
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800476
Adrian Bunkb6d44342008-07-16 19:28:00 +0800477 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800478 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800479
480config CRYPTO_RMD320
Adrian Bunkb6d44342008-07-16 19:28:00 +0800481 tristate "RIPEMD-320 digest algorithm"
Herbert Xu3b8efb42008-11-08 10:11:09 +0800482 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800483 help
484 RIPEMD-320 is an optional extension of RIPEMD-160 with a
485 320 bit hash. It is intended for applications that require
486 longer hash-results, without needing a larger security level
487 (than RIPEMD-160).
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800488
Adrian Bunkb6d44342008-07-16 19:28:00 +0800489 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800490 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800491
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800492config CRYPTO_SHA1
493 tristate "SHA1 digest algorithm"
Adrian-Ken Rueegsegger54ccb362008-12-02 21:08:20 +0800494 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800495 help
496 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
497
Mathias Krause66be8952011-08-04 20:19:25 +0200498config CRYPTO_SHA1_SSSE3
499 tristate "SHA1 digest algorithm (SSSE3/AVX)"
500 depends on X86 && 64BIT
501 select CRYPTO_SHA1
502 select CRYPTO_HASH
503 help
504 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
505 using Supplemental SSE3 (SSSE3) instructions or Advanced Vector
506 Extensions (AVX), when available.
507
Tim Chen8275d1a2013-03-26 13:59:17 -0700508config CRYPTO_SHA256_SSSE3
509 tristate "SHA256 digest algorithm (SSSE3/AVX/AVX2)"
510 depends on X86 && 64BIT
511 select CRYPTO_SHA256
512 select CRYPTO_HASH
513 help
514 SHA-256 secure hash standard (DFIPS 180-2) implemented
515 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
516 Extensions version 1 (AVX1), or Advanced Vector Extensions
517 version 2 (AVX2) instructions, when available.
518
Tim Chen87de4572013-03-26 14:00:02 -0700519config CRYPTO_SHA512_SSSE3
520 tristate "SHA512 digest algorithm (SSSE3/AVX/AVX2)"
521 depends on X86 && 64BIT
522 select CRYPTO_SHA512
523 select CRYPTO_HASH
524 help
525 SHA-512 secure hash standard (DFIPS 180-2) implemented
526 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
527 Extensions version 1 (AVX1), or Advanced Vector Extensions
528 version 2 (AVX2) instructions, when available.
529
David S. Miller4ff28d42012-08-19 15:41:53 -0700530config CRYPTO_SHA1_SPARC64
531 tristate "SHA1 digest algorithm (SPARC64)"
532 depends on SPARC64
533 select CRYPTO_SHA1
534 select CRYPTO_HASH
535 help
536 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
537 using sparc64 crypto instructions, when available.
538
David McCulloughf0be44f2012-09-07 04:17:02 +0800539config CRYPTO_SHA1_ARM
540 tristate "SHA1 digest algorithm (ARM-asm)"
541 depends on ARM
542 select CRYPTO_SHA1
543 select CRYPTO_HASH
544 help
545 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
546 using optimized ARM assembler.
547
Michael Ellerman323a6bf2012-09-13 23:00:49 +0000548config CRYPTO_SHA1_PPC
549 tristate "SHA1 digest algorithm (powerpc)"
550 depends on PPC
551 help
552 This is the powerpc hardware accelerated implementation of the
553 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
554
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800555config CRYPTO_SHA256
556 tristate "SHA224 and SHA256 digest algorithm"
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +0800557 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800558 help
559 SHA256 secure hash standard (DFIPS 180-2).
560
561 This version of SHA implements a 256 bit hash with 128 bits of
562 security against collision attacks.
563
Adrian Bunkb6d44342008-07-16 19:28:00 +0800564 This code also includes SHA-224, a 224 bit hash with 112 bits
565 of security against collision attacks.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800566
David S. Miller86c93b22012-08-19 17:11:37 -0700567config CRYPTO_SHA256_SPARC64
568 tristate "SHA224 and SHA256 digest algorithm (SPARC64)"
569 depends on SPARC64
570 select CRYPTO_SHA256
571 select CRYPTO_HASH
572 help
573 SHA-256 secure hash standard (DFIPS 180-2) implemented
574 using sparc64 crypto instructions, when available.
575
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800576config CRYPTO_SHA512
577 tristate "SHA384 and SHA512 digest algorithms"
Adrian-Ken Rueegseggerbd9d20d2008-12-17 16:49:02 +1100578 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800579 help
580 SHA512 secure hash standard (DFIPS 180-2).
581
582 This version of SHA implements a 512 bit hash with 256 bits of
583 security against collision attacks.
584
585 This code also includes SHA-384, a 384 bit hash with 192 bits
586 of security against collision attacks.
587
David S. Miller775e0c62012-08-19 17:37:56 -0700588config CRYPTO_SHA512_SPARC64
589 tristate "SHA384 and SHA512 digest algorithm (SPARC64)"
590 depends on SPARC64
591 select CRYPTO_SHA512
592 select CRYPTO_HASH
593 help
594 SHA-512 secure hash standard (DFIPS 180-2) implemented
595 using sparc64 crypto instructions, when available.
596
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800597config CRYPTO_TGR192
598 tristate "Tiger digest algorithms"
Adrian-Ken Rueegseggerf63fbd32008-12-03 19:58:32 +0800599 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800600 help
601 Tiger hash algorithm 192, 160 and 128-bit hashes
602
603 Tiger is a hash function optimized for 64-bit processors while
604 still having decent performance on 32-bit processors.
605 Tiger was developed by Ross Anderson and Eli Biham.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 See also:
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800608 <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
609
610config CRYPTO_WP512
611 tristate "Whirlpool digest algorithms"
Adrian-Ken Rueegsegger49465102008-12-07 19:34:37 +0800612 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800613 help
614 Whirlpool hash algorithm 512, 384 and 256-bit hashes
615
616 Whirlpool-512 is part of the NESSIE cryptographic primitives.
617 Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard
618
619 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800620 <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800621
Huang Ying0e1227d2009-10-19 11:53:06 +0900622config CRYPTO_GHASH_CLMUL_NI_INTEL
623 tristate "GHASH digest algorithm (CLMUL-NI accelerated)"
Richard Weinberger8af00862011-06-08 20:56:29 +0800624 depends on X86 && 64BIT
Huang Ying0e1227d2009-10-19 11:53:06 +0900625 select CRYPTO_CRYPTD
626 help
627 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
628 The implementation is accelerated by CLMUL-NI of Intel.
629
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800630comment "Ciphers"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632config CRYPTO_AES
633 tristate "AES cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000634 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800636 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 algorithm.
638
639 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800640 both hardware and software across a wide range of computing
641 environments regardless of its use in feedback or non-feedback
642 modes. Its key setup time is excellent, and its key agility is
643 good. Rijndael's very low memory requirements make it very well
644 suited for restricted-space environments, in which it also
645 demonstrates excellent performance. Rijndael's operations are
646 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800648 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
651
652config CRYPTO_AES_586
653 tristate "AES cipher algorithms (i586)"
Herbert Xucce9e062006-08-21 21:08:13 +1000654 depends on (X86 || UML_X86) && !64BIT
655 select CRYPTO_ALGAPI
Sebastian Siewior5157dea2007-11-10 19:07:16 +0800656 select CRYPTO_AES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800658 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 algorithm.
660
661 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800662 both hardware and software across a wide range of computing
663 environments regardless of its use in feedback or non-feedback
664 modes. Its key setup time is excellent, and its key agility is
665 good. Rijndael's very low memory requirements make it very well
666 suited for restricted-space environments, in which it also
667 demonstrates excellent performance. Rijndael's operations are
668 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800670 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 See <http://csrc.nist.gov/encryption/aes/> for more information.
673
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700674config CRYPTO_AES_X86_64
675 tristate "AES cipher algorithms (x86_64)"
Herbert Xucce9e062006-08-21 21:08:13 +1000676 depends on (X86 || UML_X86) && 64BIT
677 select CRYPTO_ALGAPI
Sebastian Siewior81190b32007-11-08 21:25:04 +0800678 select CRYPTO_AES
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700679 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800680 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700681 algorithm.
682
683 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800684 both hardware and software across a wide range of computing
685 environments regardless of its use in feedback or non-feedback
686 modes. Its key setup time is excellent, and its key agility is
687 good. Rijndael's very low memory requirements make it very well
688 suited for restricted-space environments, in which it also
689 demonstrates excellent performance. Rijndael's operations are
690 among the easiest to defend against power and timing attacks.
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700691
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800692 The AES specifies three key sizes: 128, 192 and 256 bits
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700693
694 See <http://csrc.nist.gov/encryption/aes/> for more information.
695
Huang Ying54b6a1b2009-01-18 16:28:34 +1100696config CRYPTO_AES_NI_INTEL
697 tristate "AES cipher algorithms (AES-NI)"
Richard Weinberger8af00862011-06-08 20:56:29 +0800698 depends on X86
Mathias Krause0d258ef2010-11-27 16:34:46 +0800699 select CRYPTO_AES_X86_64 if 64BIT
700 select CRYPTO_AES_586 if !64BIT
Huang Ying54b6a1b2009-01-18 16:28:34 +1100701 select CRYPTO_CRYPTD
Jussi Kivilinnaa9629d72012-06-18 14:07:08 +0300702 select CRYPTO_ABLK_HELPER_X86
Huang Ying54b6a1b2009-01-18 16:28:34 +1100703 select CRYPTO_ALGAPI
Jussi Kivilinna7643a112013-04-10 18:39:20 +0300704 select CRYPTO_GLUE_HELPER_X86 if 64BIT
Jussi Kivilinna023af602012-07-22 18:18:37 +0300705 select CRYPTO_LRW
706 select CRYPTO_XTS
Huang Ying54b6a1b2009-01-18 16:28:34 +1100707 help
708 Use Intel AES-NI instructions for AES algorithm.
709
710 AES cipher algorithms (FIPS-197). AES uses the Rijndael
711 algorithm.
712
713 Rijndael appears to be consistently a very good performer in
714 both hardware and software across a wide range of computing
715 environments regardless of its use in feedback or non-feedback
716 modes. Its key setup time is excellent, and its key agility is
717 good. Rijndael's very low memory requirements make it very well
718 suited for restricted-space environments, in which it also
719 demonstrates excellent performance. Rijndael's operations are
720 among the easiest to defend against power and timing attacks.
721
722 The AES specifies three key sizes: 128, 192 and 256 bits
723
724 See <http://csrc.nist.gov/encryption/aes/> for more information.
725
Mathias Krause0d258ef2010-11-27 16:34:46 +0800726 In addition to AES cipher algorithm support, the acceleration
727 for some popular block cipher mode is supported too, including
728 ECB, CBC, LRW, PCBC, XTS. The 64 bit version has additional
729 acceleration for CTR.
Huang Ying2cf4ac82009-03-29 15:41:20 +0800730
David S. Miller9bf48522012-08-21 03:58:13 -0700731config CRYPTO_AES_SPARC64
732 tristate "AES cipher algorithms (SPARC64)"
733 depends on SPARC64
734 select CRYPTO_CRYPTD
735 select CRYPTO_ALGAPI
736 help
737 Use SPARC64 crypto opcodes for AES algorithm.
738
739 AES cipher algorithms (FIPS-197). AES uses the Rijndael
740 algorithm.
741
742 Rijndael appears to be consistently a very good performer in
743 both hardware and software across a wide range of computing
744 environments regardless of its use in feedback or non-feedback
745 modes. Its key setup time is excellent, and its key agility is
746 good. Rijndael's very low memory requirements make it very well
747 suited for restricted-space environments, in which it also
748 demonstrates excellent performance. Rijndael's operations are
749 among the easiest to defend against power and timing attacks.
750
751 The AES specifies three key sizes: 128, 192 and 256 bits
752
753 See <http://csrc.nist.gov/encryption/aes/> for more information.
754
755 In addition to AES cipher algorithm support, the acceleration
756 for some popular block cipher mode is supported too, including
757 ECB and CBC.
758
David McCulloughf0be44f2012-09-07 04:17:02 +0800759config CRYPTO_AES_ARM
760 tristate "AES cipher algorithms (ARM-asm)"
761 depends on ARM
762 select CRYPTO_ALGAPI
763 select CRYPTO_AES
764 help
765 Use optimized AES assembler routines for ARM platforms.
766
767 AES cipher algorithms (FIPS-197). AES uses the Rijndael
768 algorithm.
769
770 Rijndael appears to be consistently a very good performer in
771 both hardware and software across a wide range of computing
772 environments regardless of its use in feedback or non-feedback
773 modes. Its key setup time is excellent, and its key agility is
774 good. Rijndael's very low memory requirements make it very well
775 suited for restricted-space environments, in which it also
776 demonstrates excellent performance. Rijndael's operations are
777 among the easiest to defend against power and timing attacks.
778
779 The AES specifies three key sizes: 128, 192 and 256 bits
780
781 See <http://csrc.nist.gov/encryption/aes/> for more information.
782
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800783config CRYPTO_ANUBIS
784 tristate "Anubis cipher algorithm"
785 select CRYPTO_ALGAPI
786 help
787 Anubis cipher algorithm.
788
789 Anubis is a variable key length cipher which can use keys from
790 128 bits to 320 bits in length. It was evaluated as a entrant
791 in the NESSIE competition.
792
793 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800794 <https://www.cosic.esat.kuleuven.be/nessie/reports/>
795 <http://www.larc.usp.br/~pbarreto/AnubisPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800796
797config CRYPTO_ARC4
798 tristate "ARC4 cipher algorithm"
Sebastian Andrzej Siewiorb9b0f082012-06-26 18:13:46 +0200799 select CRYPTO_BLKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800800 help
801 ARC4 cipher algorithm.
802
803 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
804 bits in length. This algorithm is required for driver-based
805 WEP, but it should not be for other purposes because of the
806 weakness of the algorithm.
807
808config CRYPTO_BLOWFISH
809 tristate "Blowfish cipher algorithm"
810 select CRYPTO_ALGAPI
Jussi Kivilinna52ba8672011-09-02 01:45:07 +0300811 select CRYPTO_BLOWFISH_COMMON
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800812 help
813 Blowfish cipher algorithm, by Bruce Schneier.
814
815 This is a variable key length cipher which can use keys from 32
816 bits to 448 bits in length. It's fast, simple and specifically
817 designed for use on "large microprocessors".
818
819 See also:
820 <http://www.schneier.com/blowfish.html>
821
Jussi Kivilinna52ba8672011-09-02 01:45:07 +0300822config CRYPTO_BLOWFISH_COMMON
823 tristate
824 help
825 Common parts of the Blowfish cipher algorithm shared by the
826 generic c and the assembler implementations.
827
828 See also:
829 <http://www.schneier.com/blowfish.html>
830
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +0300831config CRYPTO_BLOWFISH_X86_64
832 tristate "Blowfish cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -0400833 depends on X86 && 64BIT
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +0300834 select CRYPTO_ALGAPI
835 select CRYPTO_BLOWFISH_COMMON
836 help
837 Blowfish cipher algorithm (x86_64), by Bruce Schneier.
838
839 This is a variable key length cipher which can use keys from 32
840 bits to 448 bits in length. It's fast, simple and specifically
841 designed for use on "large microprocessors".
842
843 See also:
844 <http://www.schneier.com/blowfish.html>
845
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800846config CRYPTO_CAMELLIA
847 tristate "Camellia cipher algorithms"
848 depends on CRYPTO
849 select CRYPTO_ALGAPI
850 help
851 Camellia cipher algorithms module.
852
853 Camellia is a symmetric key block cipher developed jointly
854 at NTT and Mitsubishi Electric Corporation.
855
856 The Camellia specifies three key sizes: 128, 192 and 256 bits.
857
858 See also:
859 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
860
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +0200861config CRYPTO_CAMELLIA_X86_64
862 tristate "Camellia cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -0400863 depends on X86 && 64BIT
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +0200864 depends on CRYPTO
865 select CRYPTO_ALGAPI
Jussi Kivilinna964263a2012-06-18 14:07:29 +0300866 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +0200867 select CRYPTO_LRW
868 select CRYPTO_XTS
869 help
870 Camellia cipher algorithm module (x86_64).
871
872 Camellia is a symmetric key block cipher developed jointly
873 at NTT and Mitsubishi Electric Corporation.
874
875 The Camellia specifies three key sizes: 128, 192 and 256 bits.
876
877 See also:
878 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
879
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +0300880config CRYPTO_CAMELLIA_AESNI_AVX_X86_64
881 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX)"
882 depends on X86 && 64BIT
883 depends on CRYPTO
884 select CRYPTO_ALGAPI
885 select CRYPTO_CRYPTD
886 select CRYPTO_ABLK_HELPER_X86
887 select CRYPTO_GLUE_HELPER_X86
888 select CRYPTO_CAMELLIA_X86_64
889 select CRYPTO_LRW
890 select CRYPTO_XTS
891 help
892 Camellia cipher algorithm module (x86_64/AES-NI/AVX).
893
894 Camellia is a symmetric key block cipher developed jointly
895 at NTT and Mitsubishi Electric Corporation.
896
897 The Camellia specifies three key sizes: 128, 192 and 256 bits.
898
899 See also:
900 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
901
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +0300902config CRYPTO_CAMELLIA_AESNI_AVX2_X86_64
903 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX2)"
904 depends on X86 && 64BIT
905 depends on CRYPTO
906 select CRYPTO_ALGAPI
907 select CRYPTO_CRYPTD
908 select CRYPTO_ABLK_HELPER_X86
909 select CRYPTO_GLUE_HELPER_X86
910 select CRYPTO_CAMELLIA_X86_64
911 select CRYPTO_CAMELLIA_AESNI_AVX_X86_64
912 select CRYPTO_LRW
913 select CRYPTO_XTS
914 help
915 Camellia cipher algorithm module (x86_64/AES-NI/AVX2).
916
917 Camellia is a symmetric key block cipher developed jointly
918 at NTT and Mitsubishi Electric Corporation.
919
920 The Camellia specifies three key sizes: 128, 192 and 256 bits.
921
922 See also:
923 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
924
David S. Miller81658ad2012-08-28 12:05:54 -0700925config CRYPTO_CAMELLIA_SPARC64
926 tristate "Camellia cipher algorithm (SPARC64)"
927 depends on SPARC64
928 depends on CRYPTO
929 select CRYPTO_ALGAPI
930 help
931 Camellia cipher algorithm module (SPARC64).
932
933 Camellia is a symmetric key block cipher developed jointly
934 at NTT and Mitsubishi Electric Corporation.
935
936 The Camellia specifies three key sizes: 128, 192 and 256 bits.
937
938 See also:
939 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
940
Jussi Kivilinna044ab522012-11-13 11:43:14 +0200941config CRYPTO_CAST_COMMON
942 tristate
943 help
944 Common parts of the CAST cipher algorithms shared by the
945 generic c and the assembler implementations.
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947config CRYPTO_CAST5
948 tristate "CAST5 (CAST-128) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000949 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +0200950 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 help
952 The CAST5 encryption algorithm (synonymous with CAST-128) is
953 described in RFC2144.
954
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +0200955config CRYPTO_CAST5_AVX_X86_64
956 tristate "CAST5 (CAST-128) cipher algorithm (x86_64/AVX)"
957 depends on X86 && 64BIT
958 select CRYPTO_ALGAPI
959 select CRYPTO_CRYPTD
960 select CRYPTO_ABLK_HELPER_X86
Jussi Kivilinna044ab522012-11-13 11:43:14 +0200961 select CRYPTO_CAST_COMMON
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +0200962 select CRYPTO_CAST5
963 help
964 The CAST5 encryption algorithm (synonymous with CAST-128) is
965 described in RFC2144.
966
967 This module provides the Cast5 cipher algorithm that processes
968 sixteen blocks parallel using the AVX instruction set.
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970config CRYPTO_CAST6
971 tristate "CAST6 (CAST-256) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000972 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +0200973 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 help
975 The CAST6 encryption algorithm (synonymous with CAST-256) is
976 described in RFC2612.
977
Johannes Goetzfried4ea12772012-07-11 19:38:57 +0200978config CRYPTO_CAST6_AVX_X86_64
979 tristate "CAST6 (CAST-256) cipher algorithm (x86_64/AVX)"
980 depends on X86 && 64BIT
981 select CRYPTO_ALGAPI
982 select CRYPTO_CRYPTD
983 select CRYPTO_ABLK_HELPER_X86
984 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna044ab522012-11-13 11:43:14 +0200985 select CRYPTO_CAST_COMMON
Johannes Goetzfried4ea12772012-07-11 19:38:57 +0200986 select CRYPTO_CAST6
987 select CRYPTO_LRW
988 select CRYPTO_XTS
989 help
990 The CAST6 encryption algorithm (synonymous with CAST-256) is
991 described in RFC2612.
992
993 This module provides the Cast6 cipher algorithm that processes
994 eight blocks parallel using the AVX instruction set.
995
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800996config CRYPTO_DES
997 tristate "DES and Triple DES EDE cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000998 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001000 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
David S. Millerc5aac2d2012-08-25 22:37:23 -07001002config CRYPTO_DES_SPARC64
1003 tristate "DES and Triple DES EDE cipher algorithms (SPARC64)"
Dave Jones97da37b2012-10-02 17:13:20 -04001004 depends on SPARC64
David S. Millerc5aac2d2012-08-25 22:37:23 -07001005 select CRYPTO_ALGAPI
1006 select CRYPTO_DES
1007 help
1008 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3),
1009 optimized using SPARC64 crypto opcodes.
1010
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001011config CRYPTO_FCRYPT
1012 tristate "FCrypt cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001013 select CRYPTO_ALGAPI
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001014 select CRYPTO_BLKCIPHER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001016 FCrypt algorithm used by RxRPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018config CRYPTO_KHAZAD
1019 tristate "Khazad cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001020 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 help
1022 Khazad cipher algorithm.
1023
1024 Khazad was a finalist in the initial NESSIE competition. It is
1025 an algorithm optimized for 64-bit processors with good performance
1026 on 32-bit processors. Khazad uses an 128 bit key size.
1027
1028 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001029 <http://www.larc.usp.br/~pbarreto/KhazadPage.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Tan Swee Heng2407d602007-11-23 19:45:00 +08001031config CRYPTO_SALSA20
Kees Cook3b4afaf2012-10-02 11:16:49 -07001032 tristate "Salsa20 stream cipher algorithm"
Tan Swee Heng2407d602007-11-23 19:45:00 +08001033 select CRYPTO_BLKCIPHER
1034 help
1035 Salsa20 stream cipher algorithm.
1036
1037 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1038 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1039
1040 The Salsa20 stream cipher algorithm is designed by Daniel J.
1041 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001043config CRYPTO_SALSA20_586
Kees Cook3b4afaf2012-10-02 11:16:49 -07001044 tristate "Salsa20 stream cipher algorithm (i586)"
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001045 depends on (X86 || UML_X86) && !64BIT
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001046 select CRYPTO_BLKCIPHER
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001047 help
1048 Salsa20 stream cipher algorithm.
1049
1050 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1051 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1052
1053 The Salsa20 stream cipher algorithm is designed by Daniel J.
1054 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1055
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001056config CRYPTO_SALSA20_X86_64
Kees Cook3b4afaf2012-10-02 11:16:49 -07001057 tristate "Salsa20 stream cipher algorithm (x86_64)"
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001058 depends on (X86 || UML_X86) && 64BIT
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001059 select CRYPTO_BLKCIPHER
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001060 help
1061 Salsa20 stream cipher algorithm.
1062
1063 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1064 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1065
1066 The Salsa20 stream cipher algorithm is designed by Daniel J.
1067 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1068
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001069config CRYPTO_SEED
1070 tristate "SEED cipher algorithm"
1071 select CRYPTO_ALGAPI
1072 help
1073 SEED cipher algorithm (RFC4269).
1074
1075 SEED is a 128-bit symmetric key block cipher that has been
1076 developed by KISA (Korea Information Security Agency) as a
1077 national standard encryption algorithm of the Republic of Korea.
1078 It is a 16 round block cipher with the key size of 128 bit.
1079
1080 See also:
1081 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
1082
1083config CRYPTO_SERPENT
1084 tristate "Serpent cipher algorithm"
1085 select CRYPTO_ALGAPI
1086 help
1087 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1088
1089 Keys are allowed to be from 0 to 256 bits in length, in steps
1090 of 8 bits. Also includes the 'Tnepres' algorithm, a reversed
1091 variant of Serpent for compatibility with old kerneli.org code.
1092
1093 See also:
1094 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1095
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001096config CRYPTO_SERPENT_SSE2_X86_64
1097 tristate "Serpent cipher algorithm (x86_64/SSE2)"
1098 depends on X86 && 64BIT
1099 select CRYPTO_ALGAPI
Jussi Kivilinna341975b2011-11-24 08:37:41 +02001100 select CRYPTO_CRYPTD
Jussi Kivilinnaffaf9152012-06-18 14:06:58 +03001101 select CRYPTO_ABLK_HELPER_X86
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001102 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001103 select CRYPTO_SERPENT
Jussi Kivilinnafeaf0cf2011-12-13 12:53:12 +02001104 select CRYPTO_LRW
1105 select CRYPTO_XTS
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001106 help
1107 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1108
1109 Keys are allowed to be from 0 to 256 bits in length, in steps
1110 of 8 bits.
1111
1112 This module provides Serpent cipher algorithm that processes eigth
1113 blocks parallel using SSE2 instruction set.
1114
1115 See also:
1116 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1117
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001118config CRYPTO_SERPENT_SSE2_586
1119 tristate "Serpent cipher algorithm (i586/SSE2)"
1120 depends on X86 && !64BIT
1121 select CRYPTO_ALGAPI
Jussi Kivilinna341975b2011-11-24 08:37:41 +02001122 select CRYPTO_CRYPTD
Jussi Kivilinnaffaf9152012-06-18 14:06:58 +03001123 select CRYPTO_ABLK_HELPER_X86
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001124 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001125 select CRYPTO_SERPENT
Jussi Kivilinnafeaf0cf2011-12-13 12:53:12 +02001126 select CRYPTO_LRW
1127 select CRYPTO_XTS
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001128 help
1129 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1130
1131 Keys are allowed to be from 0 to 256 bits in length, in steps
1132 of 8 bits.
1133
1134 This module provides Serpent cipher algorithm that processes four
1135 blocks parallel using SSE2 instruction set.
1136
1137 See also:
1138 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1139
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001140config CRYPTO_SERPENT_AVX_X86_64
1141 tristate "Serpent cipher algorithm (x86_64/AVX)"
1142 depends on X86 && 64BIT
1143 select CRYPTO_ALGAPI
1144 select CRYPTO_CRYPTD
Jussi Kivilinnaffaf9152012-06-18 14:06:58 +03001145 select CRYPTO_ABLK_HELPER_X86
Jussi Kivilinna1d0debb2012-06-18 14:07:24 +03001146 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001147 select CRYPTO_SERPENT
1148 select CRYPTO_LRW
1149 select CRYPTO_XTS
1150 help
1151 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1152
1153 Keys are allowed to be from 0 to 256 bits in length, in steps
1154 of 8 bits.
1155
1156 This module provides the Serpent cipher algorithm that processes
1157 eight blocks parallel using the AVX instruction set.
1158
1159 See also:
1160 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1161
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001162config CRYPTO_SERPENT_AVX2_X86_64
1163 tristate "Serpent cipher algorithm (x86_64/AVX2)"
1164 depends on X86 && 64BIT
1165 select CRYPTO_ALGAPI
1166 select CRYPTO_CRYPTD
1167 select CRYPTO_ABLK_HELPER_X86
1168 select CRYPTO_GLUE_HELPER_X86
1169 select CRYPTO_SERPENT
1170 select CRYPTO_SERPENT_AVX_X86_64
1171 select CRYPTO_LRW
1172 select CRYPTO_XTS
1173 help
1174 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1175
1176 Keys are allowed to be from 0 to 256 bits in length, in steps
1177 of 8 bits.
1178
1179 This module provides Serpent cipher algorithm that processes 16
1180 blocks parallel using AVX2 instruction set.
1181
1182 See also:
1183 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1184
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001185config CRYPTO_TEA
1186 tristate "TEA, XTEA and XETA cipher algorithms"
1187 select CRYPTO_ALGAPI
1188 help
1189 TEA cipher algorithm.
1190
1191 Tiny Encryption Algorithm is a simple cipher that uses
1192 many rounds for security. It is very fast and uses
1193 little memory.
1194
1195 Xtendend Tiny Encryption Algorithm is a modification to
1196 the TEA algorithm to address a potential key weakness
1197 in the TEA algorithm.
1198
1199 Xtendend Encryption Tiny Algorithm is a mis-implementation
1200 of the XTEA algorithm for compatibility purposes.
1201
1202config CRYPTO_TWOFISH
1203 tristate "Twofish cipher algorithm"
1204 select CRYPTO_ALGAPI
1205 select CRYPTO_TWOFISH_COMMON
1206 help
1207 Twofish cipher algorithm.
1208
1209 Twofish was submitted as an AES (Advanced Encryption Standard)
1210 candidate cipher by researchers at CounterPane Systems. It is a
1211 16 round block cipher supporting key sizes of 128, 192, and 256
1212 bits.
1213
1214 See also:
1215 <http://www.schneier.com/twofish.html>
1216
1217config CRYPTO_TWOFISH_COMMON
1218 tristate
1219 help
1220 Common parts of the Twofish cipher algorithm shared by the
1221 generic c and the assembler implementations.
1222
1223config CRYPTO_TWOFISH_586
1224 tristate "Twofish cipher algorithms (i586)"
1225 depends on (X86 || UML_X86) && !64BIT
1226 select CRYPTO_ALGAPI
1227 select CRYPTO_TWOFISH_COMMON
1228 help
1229 Twofish cipher algorithm.
1230
1231 Twofish was submitted as an AES (Advanced Encryption Standard)
1232 candidate cipher by researchers at CounterPane Systems. It is a
1233 16 round block cipher supporting key sizes of 128, 192, and 256
1234 bits.
1235
1236 See also:
1237 <http://www.schneier.com/twofish.html>
1238
1239config CRYPTO_TWOFISH_X86_64
1240 tristate "Twofish cipher algorithm (x86_64)"
1241 depends on (X86 || UML_X86) && 64BIT
1242 select CRYPTO_ALGAPI
1243 select CRYPTO_TWOFISH_COMMON
1244 help
1245 Twofish cipher algorithm (x86_64).
1246
1247 Twofish was submitted as an AES (Advanced Encryption Standard)
1248 candidate cipher by researchers at CounterPane Systems. It is a
1249 16 round block cipher supporting key sizes of 128, 192, and 256
1250 bits.
1251
1252 See also:
1253 <http://www.schneier.com/twofish.html>
1254
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001255config CRYPTO_TWOFISH_X86_64_3WAY
1256 tristate "Twofish cipher algorithm (x86_64, 3-way parallel)"
Al Virof21a7c12012-04-08 20:31:22 -04001257 depends on X86 && 64BIT
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001258 select CRYPTO_ALGAPI
1259 select CRYPTO_TWOFISH_COMMON
1260 select CRYPTO_TWOFISH_X86_64
Jussi Kivilinna414cb5e2012-06-18 14:07:34 +03001261 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinnae7cda5d2011-12-13 12:53:01 +02001262 select CRYPTO_LRW
1263 select CRYPTO_XTS
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001264 help
1265 Twofish cipher algorithm (x86_64, 3-way parallel).
1266
1267 Twofish was submitted as an AES (Advanced Encryption Standard)
1268 candidate cipher by researchers at CounterPane Systems. It is a
1269 16 round block cipher supporting key sizes of 128, 192, and 256
1270 bits.
1271
1272 This module provides Twofish cipher algorithm that processes three
1273 blocks parallel, utilizing resources of out-of-order CPUs better.
1274
1275 See also:
1276 <http://www.schneier.com/twofish.html>
1277
Johannes Goetzfried107778b2012-05-28 15:54:24 +02001278config CRYPTO_TWOFISH_AVX_X86_64
1279 tristate "Twofish cipher algorithm (x86_64/AVX)"
1280 depends on X86 && 64BIT
1281 select CRYPTO_ALGAPI
1282 select CRYPTO_CRYPTD
Jussi Kivilinna30a04002012-06-18 14:07:03 +03001283 select CRYPTO_ABLK_HELPER_X86
Jussi Kivilinnaa7378d42012-06-18 14:07:39 +03001284 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried107778b2012-05-28 15:54:24 +02001285 select CRYPTO_TWOFISH_COMMON
1286 select CRYPTO_TWOFISH_X86_64
1287 select CRYPTO_TWOFISH_X86_64_3WAY
1288 select CRYPTO_LRW
1289 select CRYPTO_XTS
1290 help
1291 Twofish cipher algorithm (x86_64/AVX).
1292
1293 Twofish was submitted as an AES (Advanced Encryption Standard)
1294 candidate cipher by researchers at CounterPane Systems. It is a
1295 16 round block cipher supporting key sizes of 128, 192, and 256
1296 bits.
1297
1298 This module provides the Twofish cipher algorithm that processes
1299 eight blocks parallel using the AVX Instruction Set.
1300
1301 See also:
1302 <http://www.schneier.com/twofish.html>
1303
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001304comment "Compression"
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306config CRYPTO_DEFLATE
1307 tristate "Deflate compression algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001308 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 select ZLIB_INFLATE
1310 select ZLIB_DEFLATE
1311 help
1312 This is the Deflate algorithm (RFC1951), specified for use in
1313 IPSec with the IPCOMP protocol (RFC3173, RFC2394).
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 You will most probably want this if using IPSec.
1316
Geert Uytterhoevenbf68e652009-03-04 15:15:49 +08001317config CRYPTO_ZLIB
1318 tristate "Zlib compression algorithm"
1319 select CRYPTO_PCOMP
1320 select ZLIB_INFLATE
1321 select ZLIB_DEFLATE
1322 select NLATTR
1323 help
1324 This is the zlib algorithm.
1325
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001326config CRYPTO_LZO
1327 tristate "LZO compression algorithm"
1328 select CRYPTO_ALGAPI
1329 select LZO_COMPRESS
1330 select LZO_DECOMPRESS
1331 help
1332 This is the LZO algorithm.
1333
Seth Jennings35a1fc12012-07-19 09:42:41 -05001334config CRYPTO_842
1335 tristate "842 compression algorithm"
1336 depends on CRYPTO_DEV_NX_COMPRESS
1337 # 842 uses lzo if the hardware becomes unavailable
1338 select LZO_COMPRESS
1339 select LZO_DECOMPRESS
1340 help
1341 This is the 842 algorithm.
1342
Chanho Min0ea85302013-07-08 16:01:51 -07001343config CRYPTO_LZ4
1344 tristate "LZ4 compression algorithm"
1345 select CRYPTO_ALGAPI
1346 select LZ4_COMPRESS
1347 select LZ4_DECOMPRESS
1348 help
1349 This is the LZ4 algorithm.
1350
1351config CRYPTO_LZ4HC
1352 tristate "LZ4HC compression algorithm"
1353 select CRYPTO_ALGAPI
1354 select LZ4HC_COMPRESS
1355 select LZ4_DECOMPRESS
1356 help
1357 This is the LZ4 high compression mode algorithm.
1358
Neil Horman17f0f4a2008-08-14 22:15:52 +10001359comment "Random Number Generation"
1360
1361config CRYPTO_ANSI_CPRNG
1362 tristate "Pseudo Random Number Generation for Cryptographic modules"
Neil Horman4e4ed832009-08-20 17:54:16 +10001363 default m
Neil Horman17f0f4a2008-08-14 22:15:52 +10001364 select CRYPTO_AES
1365 select CRYPTO_RNG
Neil Horman17f0f4a2008-08-14 22:15:52 +10001366 help
1367 This option enables the generic pseudo random number generator
1368 for cryptographic modules. Uses the Algorithm specified in
Jiri Kosina7dd607e2010-01-27 01:00:10 +01001369 ANSI X9.31 A.2.4. Note that this option must be enabled if
1370 CRYPTO_FIPS is selected
Neil Horman17f0f4a2008-08-14 22:15:52 +10001371
Herbert Xu03c8efc2010-10-19 21:12:39 +08001372config CRYPTO_USER_API
1373 tristate
1374
Herbert Xufe869cd2010-10-19 21:23:00 +08001375config CRYPTO_USER_API_HASH
1376 tristate "User-space interface for hash algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001377 depends on NET
Herbert Xufe869cd2010-10-19 21:23:00 +08001378 select CRYPTO_HASH
1379 select CRYPTO_USER_API
1380 help
1381 This option enables the user-spaces interface for hash
1382 algorithms.
1383
Herbert Xu8ff59092010-10-19 21:31:55 +08001384config CRYPTO_USER_API_SKCIPHER
1385 tristate "User-space interface for symmetric key cipher algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001386 depends on NET
Herbert Xu8ff59092010-10-19 21:31:55 +08001387 select CRYPTO_BLKCIPHER
1388 select CRYPTO_USER_API
1389 help
1390 This option enables the user-spaces interface for symmetric
1391 key cipher algorithms.
1392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393source "drivers/crypto/Kconfig"
David Howells964f3b32012-09-13 15:17:21 +01001394source crypto/asymmetric_keys/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Herbert Xucce9e062006-08-21 21:08:13 +10001396endif # if CRYPTO