blob: c4b6c9125582acd63429a6dbe7f1ab35344d93cf [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 bool "Cryptographic API"
17 help
18 This option provides the core Cryptographic API.
19
Herbert Xucce9e062006-08-21 21:08:13 +100020if CRYPTO
21
22config CRYPTO_ALGAPI
23 tristate
24 help
25 This option provides the API for cryptographic algorithms.
26
Herbert Xu1ae97822007-08-30 15:36:14 +080027config CRYPTO_AEAD
28 tristate
29 select CRYPTO_ALGAPI
30
Herbert Xu5cde0af2006-08-22 00:07:53 +100031config CRYPTO_BLKCIPHER
32 tristate
33 select CRYPTO_ALGAPI
34
Herbert Xu055bcee2006-08-19 22:24:23 +100035config CRYPTO_HASH
36 tristate
37 select CRYPTO_ALGAPI
38
Herbert Xu2b8c19d2006-09-21 11:31:44 +100039config CRYPTO_MANAGER
40 tristate "Cryptographic algorithm manager"
41 select CRYPTO_ALGAPI
Herbert Xu2b8c19d2006-09-21 11:31:44 +100042 help
43 Create default cryptographic template instantiations such as
44 cbc(aes).
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046config CRYPTO_HMAC
Herbert Xu84251652006-08-20 15:25:22 +100047 tristate "HMAC support"
Herbert Xu0796ae02006-08-21 20:50:52 +100048 select CRYPTO_HASH
Herbert Xu43518402006-10-16 21:28:58 +100049 select CRYPTO_MANAGER
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 help
51 HMAC: Keyed-Hashing for Message Authentication (RFC2104).
52 This is required for IPSec.
53
Kazunori MIYAZAWA333b0d72006-10-28 13:15:24 +100054config CRYPTO_XCBC
55 tristate "XCBC support"
56 depends on EXPERIMENTAL
57 select CRYPTO_HASH
58 select CRYPTO_MANAGER
59 help
60 XCBC: Keyed-Hashing with encryption algorithm
61 http://www.ietf.org/rfc/rfc3566.txt
62 http://csrc.nist.gov/encryption/modes/proposedmodes/
63 xcbc-mac/xcbc-mac-spec.pdf
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065config CRYPTO_NULL
66 tristate "Null algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +100067 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 help
69 These are 'Null' algorithms, used by IPsec, which do nothing.
70
71config CRYPTO_MD4
72 tristate "MD4 digest algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +100073 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 help
75 MD4 message digest algorithm (RFC1320).
76
77config CRYPTO_MD5
78 tristate "MD5 digest algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +100079 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 help
81 MD5 message digest algorithm (RFC1321).
82
83config CRYPTO_SHA1
84 tristate "SHA1 digest algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +100085 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 help
87 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089config CRYPTO_SHA256
Jonathan Lynchcd12fb92007-11-10 20:08:25 +080090 tristate "SHA224 and SHA256 digest algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +100091 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 help
93 SHA256 secure hash standard (DFIPS 180-2).
94
95 This version of SHA implements a 256 bit hash with 128 bits of
96 security against collision attacks.
97
Jonathan Lynchcd12fb92007-11-10 20:08:25 +080098 This code also includes SHA-224, a 224 bit hash with 112 bits
99 of security against collision attacks.
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101config CRYPTO_SHA512
102 tristate "SHA384 and SHA512 digest algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000103 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 help
105 SHA512 secure hash standard (DFIPS 180-2).
106
107 This version of SHA implements a 512 bit hash with 256 bits of
108 security against collision attacks.
109
110 This code also includes SHA-384, a 384 bit hash with 192 bits
111 of security against collision attacks.
112
113config CRYPTO_WP512
114 tristate "Whirlpool digest algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000115 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 help
117 Whirlpool hash algorithm 512, 384 and 256-bit hashes
118
119 Whirlpool-512 is part of the NESSIE cryptographic primitives.
120 Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard
121
122 See also:
123 <http://planeta.terra.com.br/informatica/paulobarreto/WhirlpoolPage.html>
124
125config CRYPTO_TGR192
126 tristate "Tiger digest algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000127 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 help
129 Tiger hash algorithm 192, 160 and 128-bit hashes
130
131 Tiger is a hash function optimized for 64-bit processors while
132 still having decent performance on 32-bit processors.
133 Tiger was developed by Ross Anderson and Eli Biham.
134
135 See also:
136 <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
137
Rik Snelc494e072006-11-29 18:59:44 +1100138config CRYPTO_GF128MUL
139 tristate "GF(2^128) multiplication functions (EXPERIMENTAL)"
140 depends on EXPERIMENTAL
141 help
142 Efficient table driven implementation of multiplications in the
143 field GF(2^128). This is needed by some cypher modes. This
144 option will be selected automatically if you select such a
145 cipher mode. Only select this option by hand if you expect to load
146 an external module that requires these functions.
147
Herbert Xudb131ef2006-09-21 11:44:08 +1000148config CRYPTO_ECB
149 tristate "ECB support"
150 select CRYPTO_BLKCIPHER
Herbert Xu43518402006-10-16 21:28:58 +1000151 select CRYPTO_MANAGER
Herbert Xudb131ef2006-09-21 11:44:08 +1000152 help
153 ECB: Electronic CodeBook mode
154 This is the simplest block cipher algorithm. It simply encrypts
155 the input block by block.
156
157config CRYPTO_CBC
158 tristate "CBC support"
159 select CRYPTO_BLKCIPHER
Herbert Xu43518402006-10-16 21:28:58 +1000160 select CRYPTO_MANAGER
Herbert Xudb131ef2006-09-21 11:44:08 +1000161 help
162 CBC: Cipher Block Chaining mode
163 This block cipher algorithm is required for IPSec.
164
David Howells91652be2006-12-16 12:09:02 +1100165config CRYPTO_PCBC
166 tristate "PCBC support"
167 select CRYPTO_BLKCIPHER
168 select CRYPTO_MANAGER
David Howells91652be2006-12-16 12:09:02 +1100169 help
170 PCBC: Propagating Cipher Block Chaining mode
171 This block cipher algorithm is required for RxRPC.
172
Rik Snel64470f12006-11-26 09:43:10 +1100173config CRYPTO_LRW
174 tristate "LRW support (EXPERIMENTAL)"
175 depends on EXPERIMENTAL
176 select CRYPTO_BLKCIPHER
177 select CRYPTO_MANAGER
178 select CRYPTO_GF128MUL
179 help
180 LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable
181 narrow block cipher mode for dm-crypt. Use it with cipher
182 specification string aes-lrw-benbi, the key must be 256, 320 or 384.
183 The first 128, 192 or 256 bits in the key are used for AES and the
184 rest is used to tie each cipher block to its logical position.
185
Rik Snelf19f5112007-09-19 20:23:13 +0800186config CRYPTO_XTS
187 tristate "XTS support (EXPERIMENTAL)"
188 depends on EXPERIMENTAL
189 select CRYPTO_BLKCIPHER
190 select CRYPTO_MANAGER
191 select CRYPTO_GF128MUL
192 help
193 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain,
194 key size 256, 384 or 512 bits. This implementation currently
195 can't handle a sectorsize which is not a multiple of 16 bytes.
196
Joy Latten23e353c2007-10-23 08:50:32 +0800197config CRYPTO_CTR
198 tristate "CTR support"
199 select CRYPTO_BLKCIPHER
200 select CRYPTO_MANAGER
Joy Latten23e353c2007-10-23 08:50:32 +0800201 help
202 CTR: Counter mode
203 This block cipher algorithm is required for IPSec.
204
Mikko Herranen28db8e32007-11-26 22:24:11 +0800205config CRYPTO_GCM
206 tristate "GCM/GMAC support"
207 select CRYPTO_CTR
208 select CRYPTO_AEAD
209 select CRYPTO_GF128MUL
210 help
211 Support for Galois/Counter Mode (GCM) and Galois Message
212 Authentication Code (GMAC). Required for IPSec.
213
Herbert Xu124b53d2007-04-16 20:49:20 +1000214config CRYPTO_CRYPTD
215 tristate "Software async crypto daemon"
Herbert Xu653ebd92007-11-27 19:48:27 +0800216 select CRYPTO_BLKCIPHER
Herbert Xu124b53d2007-04-16 20:49:20 +1000217 select CRYPTO_MANAGER
218 help
219 This is a generic software asynchronous crypto daemon that
220 converts an arbitrary synchronous software crypto algorithm
221 into an asynchronous algorithm that executes in a kernel thread.
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223config CRYPTO_DES
224 tristate "DES and Triple DES EDE cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000225 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 help
227 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
228
David Howells90831632006-12-16 12:13:14 +1100229config CRYPTO_FCRYPT
230 tristate "FCrypt cipher algorithm"
231 select CRYPTO_ALGAPI
232 select CRYPTO_BLKCIPHER
233 help
234 FCrypt algorithm used by RxRPC.
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236config CRYPTO_BLOWFISH
237 tristate "Blowfish cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000238 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 help
240 Blowfish cipher algorithm, by Bruce Schneier.
241
242 This is a variable key length cipher which can use keys from 32
243 bits to 448 bits in length. It's fast, simple and specifically
244 designed for use on "large microprocessors".
245
246 See also:
247 <http://www.schneier.com/blowfish.html>
248
249config CRYPTO_TWOFISH
250 tristate "Twofish cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000251 select CRYPTO_ALGAPI
Joachim Fritschi2729bb42006-06-20 20:37:23 +1000252 select CRYPTO_TWOFISH_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 help
254 Twofish cipher algorithm.
255
256 Twofish was submitted as an AES (Advanced Encryption Standard)
257 candidate cipher by researchers at CounterPane Systems. It is a
258 16 round block cipher supporting key sizes of 128, 192, and 256
259 bits.
260
261 See also:
262 <http://www.schneier.com/twofish.html>
263
Joachim Fritschi2729bb42006-06-20 20:37:23 +1000264config CRYPTO_TWOFISH_COMMON
265 tristate
Joachim Fritschi2729bb42006-06-20 20:37:23 +1000266 help
267 Common parts of the Twofish cipher algorithm shared by the
268 generic c and the assembler implementations.
269
Joachim Fritschib9f535f2006-06-20 20:59:16 +1000270config CRYPTO_TWOFISH_586
271 tristate "Twofish cipher algorithms (i586)"
Herbert Xucce9e062006-08-21 21:08:13 +1000272 depends on (X86 || UML_X86) && !64BIT
273 select CRYPTO_ALGAPI
Joachim Fritschib9f535f2006-06-20 20:59:16 +1000274 select CRYPTO_TWOFISH_COMMON
275 help
276 Twofish cipher algorithm.
277
278 Twofish was submitted as an AES (Advanced Encryption Standard)
279 candidate cipher by researchers at CounterPane Systems. It is a
280 16 round block cipher supporting key sizes of 128, 192, and 256
281 bits.
282
283 See also:
284 <http://www.schneier.com/twofish.html>
285
Joachim Fritschieaf44082006-06-20 21:12:02 +1000286config CRYPTO_TWOFISH_X86_64
287 tristate "Twofish cipher algorithm (x86_64)"
Herbert Xucce9e062006-08-21 21:08:13 +1000288 depends on (X86 || UML_X86) && 64BIT
289 select CRYPTO_ALGAPI
Joachim Fritschieaf44082006-06-20 21:12:02 +1000290 select CRYPTO_TWOFISH_COMMON
291 help
292 Twofish cipher algorithm (x86_64).
293
294 Twofish was submitted as an AES (Advanced Encryption Standard)
295 candidate cipher by researchers at CounterPane Systems. It is a
296 16 round block cipher supporting key sizes of 128, 192, and 256
297 bits.
298
299 See also:
300 <http://www.schneier.com/twofish.html>
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302config CRYPTO_SERPENT
303 tristate "Serpent cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000304 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 help
306 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
307
308 Keys are allowed to be from 0 to 256 bits in length, in steps
309 of 8 bits. Also includes the 'Tnepres' algorithm, a reversed
David Sterba3dde6ad2007-05-09 07:12:20 +0200310 variant of Serpent for compatibility with old kerneli.org code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 See also:
313 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
314
315config CRYPTO_AES
316 tristate "AES cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000317 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 help
319 AES cipher algorithms (FIPS-197). AES uses the Rijndael
320 algorithm.
321
322 Rijndael appears to be consistently a very good performer in
323 both hardware and software across a wide range of computing
324 environments regardless of its use in feedback or non-feedback
325 modes. Its key setup time is excellent, and its key agility is
326 good. Rijndael's very low memory requirements make it very well
327 suited for restricted-space environments, in which it also
328 demonstrates excellent performance. Rijndael's operations are
329 among the easiest to defend against power and timing attacks.
330
331 The AES specifies three key sizes: 128, 192 and 256 bits
332
333 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
334
335config CRYPTO_AES_586
336 tristate "AES cipher algorithms (i586)"
Herbert Xucce9e062006-08-21 21:08:13 +1000337 depends on (X86 || UML_X86) && !64BIT
338 select CRYPTO_ALGAPI
Sebastian Siewior5157dea2007-11-10 19:07:16 +0800339 select CRYPTO_AES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 help
341 AES cipher algorithms (FIPS-197). AES uses the Rijndael
342 algorithm.
343
344 Rijndael appears to be consistently a very good performer in
345 both hardware and software across a wide range of computing
346 environments regardless of its use in feedback or non-feedback
347 modes. Its key setup time is excellent, and its key agility is
348 good. Rijndael's very low memory requirements make it very well
349 suited for restricted-space environments, in which it also
350 demonstrates excellent performance. Rijndael's operations are
351 among the easiest to defend against power and timing attacks.
352
353 The AES specifies three key sizes: 128, 192 and 256 bits
354
355 See <http://csrc.nist.gov/encryption/aes/> for more information.
356
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700357config CRYPTO_AES_X86_64
358 tristate "AES cipher algorithms (x86_64)"
Herbert Xucce9e062006-08-21 21:08:13 +1000359 depends on (X86 || UML_X86) && 64BIT
360 select CRYPTO_ALGAPI
Sebastian Siewior81190b32007-11-08 21:25:04 +0800361 select CRYPTO_AES
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700362 help
363 AES cipher algorithms (FIPS-197). AES uses the Rijndael
364 algorithm.
365
366 Rijndael appears to be consistently a very good performer in
367 both hardware and software across a wide range of computing
368 environments regardless of its use in feedback or non-feedback
369 modes. Its key setup time is excellent, and its key agility is
370 good. Rijndael's very low memory requirements make it very well
371 suited for restricted-space environments, in which it also
372 demonstrates excellent performance. Rijndael's operations are
373 among the easiest to defend against power and timing attacks.
374
375 The AES specifies three key sizes: 128, 192 and 256 bits
376
377 See <http://csrc.nist.gov/encryption/aes/> for more information.
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379config CRYPTO_CAST5
380 tristate "CAST5 (CAST-128) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000381 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 help
383 The CAST5 encryption algorithm (synonymous with CAST-128) is
384 described in RFC2144.
385
386config CRYPTO_CAST6
387 tristate "CAST6 (CAST-256) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000388 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 help
390 The CAST6 encryption algorithm (synonymous with CAST-256) is
391 described in RFC2612.
392
393config CRYPTO_TEA
Aaron Grothefb4f10e2005-09-01 17:42:46 -0700394 tristate "TEA, XTEA and XETA cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000395 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 help
397 TEA cipher algorithm.
398
399 Tiny Encryption Algorithm is a simple cipher that uses
400 many rounds for security. It is very fast and uses
401 little memory.
402
403 Xtendend Tiny Encryption Algorithm is a modification to
404 the TEA algorithm to address a potential key weakness
405 in the TEA algorithm.
406
Aaron Grothefb4f10e2005-09-01 17:42:46 -0700407 Xtendend Encryption Tiny Algorithm is a mis-implementation
408 of the XTEA algorithm for compatibility purposes.
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410config CRYPTO_ARC4
411 tristate "ARC4 cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000412 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 help
414 ARC4 cipher algorithm.
415
416 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
417 bits in length. This algorithm is required for driver-based
418 WEP, but it should not be for other purposes because of the
419 weakness of the algorithm.
420
421config CRYPTO_KHAZAD
422 tristate "Khazad cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000423 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 help
425 Khazad cipher algorithm.
426
427 Khazad was a finalist in the initial NESSIE competition. It is
428 an algorithm optimized for 64-bit processors with good performance
429 on 32-bit processors. Khazad uses an 128 bit key size.
430
431 See also:
432 <http://planeta.terra.com.br/informatica/paulobarreto/KhazadPage.html>
433
434config CRYPTO_ANUBIS
435 tristate "Anubis cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000436 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 help
438 Anubis cipher algorithm.
439
440 Anubis is a variable key length cipher which can use keys from
441 128 bits to 320 bits in length. It was evaluated as a entrant
442 in the NESSIE competition.
443
444 See also:
445 <https://www.cosic.esat.kuleuven.ac.be/nessie/reports/>
446 <http://planeta.terra.com.br/informatica/paulobarreto/AnubisPage.html>
447
Hye-Shik Change2ee95b2007-08-21 20:01:03 +0800448config CRYPTO_SEED
449 tristate "SEED cipher algorithm"
450 select CRYPTO_ALGAPI
451 help
452 SEED cipher algorithm (RFC4269).
453
454 SEED is a 128-bit symmetric key block cipher that has been
455 developed by KISA (Korea Information Security Agency) as a
456 national standard encryption algorithm of the Republic of Korea.
457 It is a 16 round block cipher with the key size of 128 bit.
458
459 See also:
460 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
461
Tan Swee Heng2407d602007-11-23 19:45:00 +0800462config CRYPTO_SALSA20
463 tristate "Salsa20 stream cipher algorithm (EXPERIMENTAL)"
464 depends on EXPERIMENTAL
465 select CRYPTO_BLKCIPHER
466 help
467 Salsa20 stream cipher algorithm.
468
469 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
470 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
471
472 The Salsa20 stream cipher algorithm is designed by Daniel J.
473 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475config CRYPTO_DEFLATE
476 tristate "Deflate compression algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000477 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 select ZLIB_INFLATE
479 select ZLIB_DEFLATE
480 help
481 This is the Deflate algorithm (RFC1951), specified for use in
482 IPSec with the IPCOMP protocol (RFC3173, RFC2394).
483
484 You will most probably want this if using IPSec.
485
486config CRYPTO_MICHAEL_MIC
487 tristate "Michael MIC keyed digest algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000488 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 help
490 Michael MIC is used for message integrity protection in TKIP
491 (IEEE 802.11i). This algorithm is required for TKIP, but it
492 should not be used for other purposes because of the weakness
493 of the algorithm.
494
495config CRYPTO_CRC32C
496 tristate "CRC32c CRC algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +1000497 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 select LIBCRC32C
499 help
500 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
501 by iSCSI for header and data digests and by others.
502 See Castagnoli93. This implementation uses lib/libcrc32c.
503 Module will be crc32c.
504
Noriaki TAKAMIYA04ac7db2006-10-22 14:49:17 +1000505config CRYPTO_CAMELLIA
506 tristate "Camellia cipher algorithms"
507 depends on CRYPTO
508 select CRYPTO_ALGAPI
509 help
510 Camellia cipher algorithms module.
511
512 Camellia is a symmetric key block cipher developed jointly
513 at NTT and Mitsubishi Electric Corporation.
514
515 The Camellia specifies three key sizes: 128, 192 and 256 bits.
516
517 See also:
518 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520config CRYPTO_TEST
521 tristate "Testing module"
Herbert Xucce9e062006-08-21 21:08:13 +1000522 depends on m
523 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 help
525 Quick & dirty crypto test module.
526
Herbert Xu3c09f172007-08-30 16:24:15 +0800527config CRYPTO_AUTHENC
528 tristate "Authenc support"
529 select CRYPTO_AEAD
530 select CRYPTO_MANAGER
Borislav Petkov5e553112007-12-14 16:43:32 +0800531 select CRYPTO_HASH
Herbert Xu3c09f172007-08-30 16:24:15 +0800532 help
533 Authenc: Combined mode wrapper for IPsec.
534 This is required for IPSec.
535
Zoltan Sogor0b77abb2007-12-07 16:53:23 +0800536config CRYPTO_LZO
537 tristate "LZO compression algorithm"
538 select CRYPTO_ALGAPI
539 select LZO_COMPRESS
540 select LZO_DECOMPRESS
541 help
542 This is the LZO algorithm.
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544source "drivers/crypto/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Herbert Xucce9e062006-08-21 21:08:13 +1000546endif # if CRYPTO