blob: d8d123ea47c662ab017e54c555a68e68b437f75c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#
Dan Williams685784a2007-07-09 11:56:42 -07003# Generic algorithms support
4#
5config XOR_BLOCKS
6 tristate
7
8#
Dan Williams9bc89cd2007-01-02 11:10:44 -07009# async_tx api: hardware offloaded memory transfer/transform support
10#
11source "crypto/async_tx/Kconfig"
12
13#
Linus Torvalds1da177e2005-04-16 15:20:36 -070014# Cryptographic API Configuration
15#
Jan Engelhardt2e290f42007-05-18 15:11:01 +100016menuconfig CRYPTO
Sebastian Siewiorc3715cb92008-03-30 16:36:09 +080017 tristate "Cryptographic API"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 help
19 This option provides the core Cryptographic API.
20
Herbert Xucce9e062006-08-21 21:08:13 +100021if CRYPTO
22
Sebastian Siewior584fffc2008-04-05 21:04:48 +080023comment "Crypto core or helper"
24
Neil Hormanccb778e2008-08-05 14:13:08 +080025config CRYPTO_FIPS
26 bool "FIPS 200 compliance"
Herbert Xuf2c89a12014-07-04 22:15:08 +080027 depends on (CRYPTO_ANSI_CPRNG || CRYPTO_DRBG) && !CRYPTO_MANAGER_DISABLE_TESTS
Alec Ari1f696092016-10-04 19:34:30 -030028 depends on (MODULE_SIG || !MODULES)
Neil Hormanccb778e2008-08-05 14:13:08 +080029 help
30 This options enables the fips boot option which is
31 required if you want to system to operate in a FIPS 200
32 certification. You should say no unless you know what
Chuck Ebberte84c5482010-09-03 19:17:49 +080033 this is.
Neil Hormanccb778e2008-08-05 14:13:08 +080034
Herbert Xucce9e062006-08-21 21:08:13 +100035config CRYPTO_ALGAPI
36 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110037 select CRYPTO_ALGAPI2
Herbert Xucce9e062006-08-21 21:08:13 +100038 help
39 This option provides the API for cryptographic algorithms.
40
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110041config CRYPTO_ALGAPI2
42 tristate
43
Herbert Xu1ae97822007-08-30 15:36:14 +080044config CRYPTO_AEAD
45 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110046 select CRYPTO_AEAD2
Herbert Xu1ae97822007-08-30 15:36:14 +080047 select CRYPTO_ALGAPI
48
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110049config CRYPTO_AEAD2
50 tristate
51 select CRYPTO_ALGAPI2
Herbert Xu149a3972015-08-13 17:28:58 +080052 select CRYPTO_NULL2
53 select CRYPTO_RNG2
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110054
Herbert Xu5cde0af2006-08-22 00:07:53 +100055config CRYPTO_BLKCIPHER
56 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110057 select CRYPTO_BLKCIPHER2
Herbert Xu5cde0af2006-08-22 00:07:53 +100058 select CRYPTO_ALGAPI
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110059
60config CRYPTO_BLKCIPHER2
61 tristate
62 select CRYPTO_ALGAPI2
63 select CRYPTO_RNG2
Huang Ying0a2e8212009-02-19 14:44:02 +080064 select CRYPTO_WORKQUEUE
Herbert Xu5cde0af2006-08-22 00:07:53 +100065
Herbert Xu055bcee2006-08-19 22:24:23 +100066config CRYPTO_HASH
67 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110068 select CRYPTO_HASH2
Herbert Xu055bcee2006-08-19 22:24:23 +100069 select CRYPTO_ALGAPI
70
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110071config CRYPTO_HASH2
72 tristate
73 select CRYPTO_ALGAPI2
74
Neil Horman17f0f4a2008-08-14 22:15:52 +100075config CRYPTO_RNG
76 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110077 select CRYPTO_RNG2
Neil Horman17f0f4a2008-08-14 22:15:52 +100078 select CRYPTO_ALGAPI
79
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110080config CRYPTO_RNG2
81 tristate
82 select CRYPTO_ALGAPI2
83
Herbert Xu401e4232015-06-03 14:49:31 +080084config CRYPTO_RNG_DEFAULT
85 tristate
86 select CRYPTO_DRBG_MENU
87
Tadeusz Struk3c339ab2015-06-16 10:30:55 -070088config CRYPTO_AKCIPHER2
89 tristate
90 select CRYPTO_ALGAPI2
91
92config CRYPTO_AKCIPHER
93 tristate
94 select CRYPTO_AKCIPHER2
95 select CRYPTO_ALGAPI
96
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +010097config CRYPTO_KPP2
98 tristate
99 select CRYPTO_ALGAPI2
100
101config CRYPTO_KPP
102 tristate
103 select CRYPTO_ALGAPI
104 select CRYPTO_KPP2
105
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100106config CRYPTO_ACOMP2
107 tristate
108 select CRYPTO_ALGAPI2
Bart Van Assche8cd579d2018-01-05 08:26:47 -0800109 select SGL_ALLOC
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100110
111config CRYPTO_ACOMP
112 tristate
113 select CRYPTO_ALGAPI
114 select CRYPTO_ACOMP2
115
Tadeusz Strukcfc2bb32015-06-16 10:31:01 -0700116config CRYPTO_RSA
117 tristate "RSA algorithm"
Tadeusz Struk425e0172015-06-19 10:27:39 -0700118 select CRYPTO_AKCIPHER
Tadeusz Struk58446fe2016-05-04 06:38:46 -0700119 select CRYPTO_MANAGER
Tadeusz Strukcfc2bb32015-06-16 10:31:01 -0700120 select MPILIB
121 select ASN1
122 help
123 Generic implementation of the RSA public key algorithm.
124
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100125config CRYPTO_DH
126 tristate "Diffie-Hellman algorithm"
127 select CRYPTO_KPP
128 select MPILIB
129 help
130 Generic implementation of the Diffie-Hellman algorithm.
131
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +0100132config CRYPTO_ECDH
133 tristate "ECDH algorithm"
Hauke Mehrtensb5b90072017-11-26 00:16:46 +0100134 select CRYPTO_KPP
Tudor-Dan Ambarus6755fd22017-05-30 17:52:48 +0300135 select CRYPTO_RNG_DEFAULT
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +0100136 help
137 Generic implementation of the ECDH algorithm
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100138
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000139config CRYPTO_MANAGER
140 tristate "Cryptographic algorithm manager"
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100141 select CRYPTO_MANAGER2
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000142 help
143 Create default cryptographic template instantiations such as
144 cbc(aes).
145
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100146config CRYPTO_MANAGER2
147 def_tristate CRYPTO_MANAGER || (CRYPTO_MANAGER!=n && CRYPTO_ALGAPI=y)
148 select CRYPTO_AEAD2
149 select CRYPTO_HASH2
150 select CRYPTO_BLKCIPHER2
Tadeusz Struk946cc462015-06-16 10:31:06 -0700151 select CRYPTO_AKCIPHER2
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100152 select CRYPTO_KPP2
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100153 select CRYPTO_ACOMP2
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100154
Steffen Klasserta38f7902011-09-27 07:23:50 +0200155config CRYPTO_USER
156 tristate "Userspace cryptographic algorithm configuration"
Herbert Xu5db017a2011-11-01 12:12:43 +1100157 depends on NET
Steffen Klasserta38f7902011-09-27 07:23:50 +0200158 select CRYPTO_MANAGER
159 help
Valdis.Kletnieks@vt.edud19978f2011-11-09 01:29:20 -0500160 Userspace configuration for cryptographic instantiations such as
Steffen Klasserta38f7902011-09-27 07:23:50 +0200161 cbc(aes).
162
Herbert Xu326a6342010-08-06 09:40:28 +0800163config CRYPTO_MANAGER_DISABLE_TESTS
164 bool "Disable run-time self tests"
Herbert Xu00ca28a2010-08-06 10:34:00 +0800165 default y
166 depends on CRYPTO_MANAGER2
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000167 help
Herbert Xu326a6342010-08-06 09:40:28 +0800168 Disable run-time self tests that normally take place at
169 algorithm registration.
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000170
Rik Snelc494e072006-11-29 18:59:44 +1100171config CRYPTO_GF128MUL
Jussi Kivilinna08c70fc2011-12-13 12:53:22 +0200172 tristate "GF(2^128) multiplication functions"
Rik Snelc494e072006-11-29 18:59:44 +1100173 help
174 Efficient table driven implementation of multiplications in the
175 field GF(2^128). This is needed by some cypher modes. This
176 option will be selected automatically if you select such a
177 cipher mode. Only select this option by hand if you expect to load
178 an external module that requires these functions.
179
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800180config CRYPTO_NULL
181 tristate "Null algorithms"
Herbert Xu149a3972015-08-13 17:28:58 +0800182 select CRYPTO_NULL2
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800183 help
184 These are 'Null' algorithms, used by IPsec, which do nothing.
185
Herbert Xu149a3972015-08-13 17:28:58 +0800186config CRYPTO_NULL2
Herbert Xudd43c4e2015-08-17 20:39:40 +0800187 tristate
Herbert Xu149a3972015-08-13 17:28:58 +0800188 select CRYPTO_ALGAPI2
189 select CRYPTO_BLKCIPHER2
190 select CRYPTO_HASH2
191
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100192config CRYPTO_PCRYPT
Kees Cook3b4afaf2012-10-02 11:16:49 -0700193 tristate "Parallel crypto engine"
194 depends on SMP
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100195 select PADATA
196 select CRYPTO_MANAGER
197 select CRYPTO_AEAD
198 help
199 This converts an arbitrary crypto algorithm into a parallel
200 algorithm that executes in kernel threads.
201
Huang Ying25c38d32009-02-19 14:33:40 +0800202config CRYPTO_WORKQUEUE
203 tristate
204
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800205config CRYPTO_CRYPTD
206 tristate "Software async crypto daemon"
Herbert Xudb131ef2006-09-21 11:44:08 +1000207 select CRYPTO_BLKCIPHER
Loc Hob8a28252008-05-14 21:23:00 +0800208 select CRYPTO_HASH
Herbert Xu43518402006-10-16 21:28:58 +1000209 select CRYPTO_MANAGER
Huang Ying254eff72009-02-19 14:42:19 +0800210 select CRYPTO_WORKQUEUE
Herbert Xudb131ef2006-09-21 11:44:08 +1000211 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800212 This is a generic software asynchronous crypto daemon that
213 converts an arbitrary synchronous software crypto algorithm
214 into an asynchronous algorithm that executes in a kernel thread.
215
Tim Chen1e65b812014-07-31 10:29:51 -0700216config CRYPTO_MCRYPTD
217 tristate "Software async multi-buffer crypto daemon"
218 select CRYPTO_BLKCIPHER
219 select CRYPTO_HASH
220 select CRYPTO_MANAGER
221 select CRYPTO_WORKQUEUE
222 help
223 This is a generic software asynchronous crypto daemon that
224 provides the kernel thread to assist multi-buffer crypto
225 algorithms for submitting jobs and flushing jobs in multi-buffer
226 crypto algorithms. Multi-buffer crypto algorithms are executed
227 in the context of this kernel thread and drivers can post
Ted Percival0e566732014-09-04 15:18:21 +0800228 their crypto request asynchronously to be processed by this daemon.
Tim Chen1e65b812014-07-31 10:29:51 -0700229
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800230config CRYPTO_AUTHENC
231 tristate "Authenc support"
232 select CRYPTO_AEAD
233 select CRYPTO_BLKCIPHER
234 select CRYPTO_MANAGER
235 select CRYPTO_HASH
Herbert Xue94c6a72015-08-04 21:23:14 +0800236 select CRYPTO_NULL
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800237 help
238 Authenc: Combined mode wrapper for IPsec.
239 This is required for IPSec.
240
241config CRYPTO_TEST
242 tristate "Testing module"
243 depends on m
Herbert Xuda7f0332008-07-31 17:08:25 +0800244 select CRYPTO_MANAGER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800245 help
246 Quick & dirty crypto test module.
247
Herbert Xu266d0512016-11-22 20:08:25 +0800248config CRYPTO_SIMD
249 tristate
250 select CRYPTO_CRYPTD
251
Jussi Kivilinna596d8752012-06-18 14:07:19 +0300252config CRYPTO_GLUE_HELPER_X86
253 tristate
254 depends on X86
Herbert Xu065ce322016-11-22 20:08:29 +0800255 select CRYPTO_BLKCIPHER
Jussi Kivilinna596d8752012-06-18 14:07:19 +0300256
Baolin Wang735d37b2016-01-26 20:25:39 +0800257config CRYPTO_ENGINE
258 tristate
259
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800260comment "Authenticated Encryption with Associated Data"
261
262config CRYPTO_CCM
263 tristate "CCM support"
264 select CRYPTO_CTR
Ard Biesheuvelf15f05b2017-02-03 14:49:36 +0000265 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800266 select CRYPTO_AEAD
267 help
268 Support for Counter with CBC MAC. Required for IPsec.
269
270config CRYPTO_GCM
271 tristate "GCM/GMAC support"
272 select CRYPTO_CTR
273 select CRYPTO_AEAD
Huang Ying9382d972009-08-06 15:34:26 +1000274 select CRYPTO_GHASH
Jussi Kivilinna9489667d2013-04-07 16:43:41 +0300275 select CRYPTO_NULL
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800276 help
277 Support for Galois/Counter Mode (GCM) and Galois Message
278 Authentication Code (GMAC). Required for IPSec.
279
Martin Willi71ebc4d2015-06-01 13:44:00 +0200280config CRYPTO_CHACHA20POLY1305
281 tristate "ChaCha20-Poly1305 AEAD support"
282 select CRYPTO_CHACHA20
283 select CRYPTO_POLY1305
284 select CRYPTO_AEAD
285 help
286 ChaCha20-Poly1305 AEAD support, RFC7539.
287
288 Support for the AEAD wrapper using the ChaCha20 stream cipher combined
289 with the Poly1305 authenticator. It is defined in RFC7539 for use in
290 IETF protocols.
291
Ondrej Mosnacekf606a882018-05-11 14:12:49 +0200292config CRYPTO_AEGIS128
293 tristate "AEGIS-128 AEAD algorithm"
294 select CRYPTO_AEAD
295 select CRYPTO_AES # for AES S-box tables
296 help
297 Support for the AEGIS-128 dedicated AEAD algorithm.
298
299config CRYPTO_AEGIS128L
300 tristate "AEGIS-128L AEAD algorithm"
301 select CRYPTO_AEAD
302 select CRYPTO_AES # for AES S-box tables
303 help
304 Support for the AEGIS-128L dedicated AEAD algorithm.
305
306config CRYPTO_AEGIS256
307 tristate "AEGIS-256 AEAD algorithm"
308 select CRYPTO_AEAD
309 select CRYPTO_AES # for AES S-box tables
310 help
311 Support for the AEGIS-256 dedicated AEAD algorithm.
312
Ondrej Mosnacek1d373d42018-05-11 14:12:51 +0200313config CRYPTO_AEGIS128_AESNI_SSE2
314 tristate "AEGIS-128 AEAD algorithm (x86_64 AESNI+SSE2 implementation)"
315 depends on X86 && 64BIT
316 select CRYPTO_AEAD
317 select CRYPTO_CRYPTD
318 help
319 AESNI+SSE2 implementation of the AEGSI-128 dedicated AEAD algorithm.
320
321config CRYPTO_AEGIS128L_AESNI_SSE2
322 tristate "AEGIS-128L AEAD algorithm (x86_64 AESNI+SSE2 implementation)"
323 depends on X86 && 64BIT
324 select CRYPTO_AEAD
325 select CRYPTO_CRYPTD
326 help
327 AESNI+SSE2 implementation of the AEGSI-128L dedicated AEAD algorithm.
328
329config CRYPTO_AEGIS256_AESNI_SSE2
330 tristate "AEGIS-256 AEAD algorithm (x86_64 AESNI+SSE2 implementation)"
331 depends on X86 && 64BIT
332 select CRYPTO_AEAD
333 select CRYPTO_CRYPTD
334 help
335 AESNI+SSE2 implementation of the AEGSI-256 dedicated AEAD algorithm.
336
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800337config CRYPTO_SEQIV
338 tristate "Sequence Number IV Generator"
339 select CRYPTO_AEAD
340 select CRYPTO_BLKCIPHER
Herbert Xu856e3f402015-05-21 15:11:13 +0800341 select CRYPTO_NULL
Herbert Xu401e4232015-06-03 14:49:31 +0800342 select CRYPTO_RNG_DEFAULT
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800343 help
344 This IV generator generates an IV based on a sequence number by
345 xoring it with a salt. This algorithm is mainly useful for CTR
346
Herbert Xua10f5542015-05-21 15:11:15 +0800347config CRYPTO_ECHAINIV
348 tristate "Encrypted Chain IV Generator"
349 select CRYPTO_AEAD
350 select CRYPTO_NULL
Herbert Xu401e4232015-06-03 14:49:31 +0800351 select CRYPTO_RNG_DEFAULT
Herbert Xu34912442015-06-03 14:49:29 +0800352 default m
Herbert Xua10f5542015-05-21 15:11:15 +0800353 help
354 This IV generator generates an IV based on the encryption of
355 a sequence number xored with a salt. This is the default
356 algorithm for CBC.
357
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800358comment "Block modes"
Herbert Xudb131ef2006-09-21 11:44:08 +1000359
360config CRYPTO_CBC
361 tristate "CBC support"
362 select CRYPTO_BLKCIPHER
Herbert Xu43518402006-10-16 21:28:58 +1000363 select CRYPTO_MANAGER
Herbert Xudb131ef2006-09-21 11:44:08 +1000364 help
365 CBC: Cipher Block Chaining mode
366 This block cipher algorithm is required for IPSec.
367
James Bottomleya7d85e02018-03-01 14:36:17 -0800368config CRYPTO_CFB
369 tristate "CFB support"
370 select CRYPTO_BLKCIPHER
371 select CRYPTO_MANAGER
372 help
373 CFB: Cipher FeedBack mode
374 This block cipher algorithm is required for TPM2 Cryptography.
375
Joy Latten23e353c2007-10-23 08:50:32 +0800376config CRYPTO_CTR
377 tristate "CTR support"
378 select CRYPTO_BLKCIPHER
Herbert Xu0a270322007-11-30 21:38:37 +1100379 select CRYPTO_SEQIV
Joy Latten23e353c2007-10-23 08:50:32 +0800380 select CRYPTO_MANAGER
Joy Latten23e353c2007-10-23 08:50:32 +0800381 help
382 CTR: Counter mode
383 This block cipher algorithm is required for IPSec.
384
Kevin Coffman76cb9522008-03-24 21:26:16 +0800385config CRYPTO_CTS
386 tristate "CTS support"
387 select CRYPTO_BLKCIPHER
388 help
389 CTS: Cipher Text Stealing
390 This is the Cipher Text Stealing mode as described by
391 Section 8 of rfc2040 and referenced by rfc3962.
392 (rfc3962 includes errata information in its Appendix A)
393 This mode is required for Kerberos gss mechanism support
394 for AES encryption.
395
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800396config CRYPTO_ECB
397 tristate "ECB support"
Herbert Xu653ebd9c2007-11-27 19:48:27 +0800398 select CRYPTO_BLKCIPHER
Herbert Xu124b53d2007-04-16 20:49:20 +1000399 select CRYPTO_MANAGER
400 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800401 ECB: Electronic CodeBook mode
402 This is the simplest block cipher algorithm. It simply encrypts
403 the input block by block.
Herbert Xu124b53d2007-04-16 20:49:20 +1000404
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800405config CRYPTO_LRW
Jussi Kivilinna2470a2b2011-12-13 12:52:51 +0200406 tristate "LRW support"
David Howells90831632006-12-16 12:13:14 +1100407 select CRYPTO_BLKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800408 select CRYPTO_MANAGER
409 select CRYPTO_GF128MUL
David Howells90831632006-12-16 12:13:14 +1100410 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800411 LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable
412 narrow block cipher mode for dm-crypt. Use it with cipher
413 specification string aes-lrw-benbi, the key must be 256, 320 or 384.
414 The first 128, 192 or 256 bits in the key are used for AES and the
415 rest is used to tie each cipher block to its logical position.
David Howells90831632006-12-16 12:13:14 +1100416
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800417config CRYPTO_PCBC
418 tristate "PCBC support"
419 select CRYPTO_BLKCIPHER
420 select CRYPTO_MANAGER
421 help
422 PCBC: Propagating Cipher Block Chaining mode
423 This block cipher algorithm is required for RxRPC.
424
425config CRYPTO_XTS
Jussi Kivilinna5bcf8e62011-12-13 12:52:56 +0200426 tristate "XTS support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800427 select CRYPTO_BLKCIPHER
428 select CRYPTO_MANAGER
Milan Broz12cb3a12017-02-23 08:38:26 +0100429 select CRYPTO_ECB
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800430 help
431 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain,
432 key size 256, 384 or 512 bits. This implementation currently
433 can't handle a sectorsize which is not a multiple of 16 bytes.
434
Stephan Mueller1c49678e2015-09-21 20:58:56 +0200435config CRYPTO_KEYWRAP
436 tristate "Key wrapping support"
437 select CRYPTO_BLKCIPHER
438 help
439 Support for key wrapping (NIST SP800-38F / RFC3394) without
440 padding.
441
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800442comment "Hash modes"
443
Jussi Kivilinna93b5e862013-04-08 10:48:44 +0300444config CRYPTO_CMAC
445 tristate "CMAC support"
446 select CRYPTO_HASH
447 select CRYPTO_MANAGER
448 help
449 Cipher-based Message Authentication Code (CMAC) specified by
450 The National Institute of Standards and Technology (NIST).
451
452 https://tools.ietf.org/html/rfc4493
453 http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf
454
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800455config CRYPTO_HMAC
456 tristate "HMAC support"
457 select CRYPTO_HASH
458 select CRYPTO_MANAGER
459 help
460 HMAC: Keyed-Hashing for Message Authentication (RFC2104).
461 This is required for IPSec.
462
463config CRYPTO_XCBC
464 tristate "XCBC support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800465 select CRYPTO_HASH
466 select CRYPTO_MANAGER
467 help
468 XCBC: Keyed-Hashing with encryption algorithm
469 http://www.ietf.org/rfc/rfc3566.txt
470 http://csrc.nist.gov/encryption/modes/proposedmodes/
471 xcbc-mac/xcbc-mac-spec.pdf
472
Shane Wangf1939f72009-09-02 20:05:22 +1000473config CRYPTO_VMAC
474 tristate "VMAC support"
Shane Wangf1939f72009-09-02 20:05:22 +1000475 select CRYPTO_HASH
476 select CRYPTO_MANAGER
477 help
478 VMAC is a message authentication algorithm designed for
479 very high speed on 64-bit architectures.
480
481 See also:
482 <http://fastcrypto.org/vmac>
483
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800484comment "Digest"
485
486config CRYPTO_CRC32C
487 tristate "CRC32c CRC algorithm"
Herbert Xu5773a3e2008-07-08 20:54:28 +0800488 select CRYPTO_HASH
Darrick J. Wong6a0962b2012-03-23 15:02:25 -0700489 select CRC32
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800490 help
491 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
492 by iSCSI for header and data digests and by others.
Herbert Xu69c35ef2008-11-07 15:11:47 +0800493 See Castagnoli93. Module will be crc32c.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800494
Austin Zhang8cb51ba2008-08-07 09:57:03 +0800495config CRYPTO_CRC32C_INTEL
496 tristate "CRC32c INTEL hardware acceleration"
497 depends on X86
498 select CRYPTO_HASH
499 help
500 In Intel processor with SSE4.2 supported, the processor will
501 support CRC32C implementation using hardware accelerated CRC32
502 instruction. This option will create 'crc32c-intel' module,
503 which will enable any routine to use the CRC32 instruction to
504 gain performance compared with software implementation.
505 Module will be crc32c-intel.
506
Jean Delvare7cf31862016-11-22 10:32:44 +0100507config CRYPTO_CRC32C_VPMSUM
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000508 tristate "CRC32c CRC algorithm (powerpc64)"
Michael Ellermanc12abf32016-08-09 08:46:15 +1000509 depends on PPC64 && ALTIVEC
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000510 select CRYPTO_HASH
511 select CRC32
512 help
513 CRC32c algorithm implemented using vector polynomial multiply-sum
514 (vpmsum) instructions, introduced in POWER8. Enable on POWER8
515 and newer processors for improved performance.
516
517
David S. Miller442a7c42012-08-22 20:47:36 -0700518config CRYPTO_CRC32C_SPARC64
519 tristate "CRC32c CRC algorithm (SPARC64)"
520 depends on SPARC64
521 select CRYPTO_HASH
522 select CRC32
523 help
524 CRC32c CRC algorithm implemented using sparc64 crypto instructions,
525 when available.
526
Alexander Boyko78c37d12013-01-10 18:54:59 +0400527config CRYPTO_CRC32
528 tristate "CRC32 CRC algorithm"
529 select CRYPTO_HASH
530 select CRC32
531 help
532 CRC-32-IEEE 802.3 cyclic redundancy-check algorithm.
533 Shash crypto api wrappers to crc32_le function.
534
535config CRYPTO_CRC32_PCLMUL
536 tristate "CRC32 PCLMULQDQ hardware acceleration"
537 depends on X86
538 select CRYPTO_HASH
539 select CRC32
540 help
541 From Intel Westmere and AMD Bulldozer processor with SSE4.2
542 and PCLMULQDQ supported, the processor will support
543 CRC32 PCLMULQDQ implementation using hardware accelerated PCLMULQDQ
544 instruction. This option will create 'crc32-plcmul' module,
545 which will enable any routine to use the CRC-32-IEEE 802.3 checksum
546 and gain better performance as compared with the table implementation.
547
Marcin Nowakowski4a5dc512018-02-09 22:11:06 +0000548config CRYPTO_CRC32_MIPS
549 tristate "CRC32c and CRC32 CRC algorithm (MIPS)"
550 depends on MIPS_CRC_SUPPORT
551 select CRYPTO_HASH
552 help
553 CRC32c and CRC32 CRC algorithms implemented using mips crypto
554 instructions, when available.
555
556
Herbert Xu684115212013-09-07 12:56:26 +1000557config CRYPTO_CRCT10DIF
558 tristate "CRCT10DIF algorithm"
559 select CRYPTO_HASH
560 help
561 CRC T10 Data Integrity Field computation is being cast as
562 a crypto transform. This allows for faster crc t10 diff
563 transforms to be used if they are available.
564
565config CRYPTO_CRCT10DIF_PCLMUL
566 tristate "CRCT10DIF PCLMULQDQ hardware acceleration"
567 depends on X86 && 64BIT && CRC_T10DIF
568 select CRYPTO_HASH
569 help
570 For x86_64 processors with SSE4.2 and PCLMULQDQ supported,
571 CRC T10 DIF PCLMULQDQ computation can be hardware
572 accelerated PCLMULQDQ instruction. This option will create
573 'crct10dif-plcmul' module, which is faster when computing the
574 crct10dif checksum as compared with the generic table implementation.
575
Daniel Axtensb01df1c2017-03-15 23:37:36 +1100576config CRYPTO_CRCT10DIF_VPMSUM
577 tristate "CRC32T10DIF powerpc64 hardware acceleration"
578 depends on PPC64 && ALTIVEC && CRC_T10DIF
579 select CRYPTO_HASH
580 help
581 CRC10T10DIF algorithm implemented using vector polynomial
582 multiply-sum (vpmsum) instructions, introduced in POWER8. Enable on
583 POWER8 and newer processors for improved performance.
584
Daniel Axtens146c8682017-03-15 23:37:37 +1100585config CRYPTO_VPMSUM_TESTER
586 tristate "Powerpc64 vpmsum hardware acceleration tester"
587 depends on CRYPTO_CRCT10DIF_VPMSUM && CRYPTO_CRC32C_VPMSUM
588 help
589 Stress test for CRC32c and CRC-T10DIF algorithms implemented with
590 POWER8 vpmsum instructions.
591 Unless you are testing these algorithms, you don't need this.
592
Huang Ying2cdc6892009-08-06 15:32:38 +1000593config CRYPTO_GHASH
594 tristate "GHASH digest algorithm"
Huang Ying2cdc6892009-08-06 15:32:38 +1000595 select CRYPTO_GF128MUL
Arnd Bergmann578c60f2016-01-25 17:51:21 +0100596 select CRYPTO_HASH
Huang Ying2cdc6892009-08-06 15:32:38 +1000597 help
598 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
599
Martin Willif979e012015-06-01 13:43:58 +0200600config CRYPTO_POLY1305
601 tristate "Poly1305 authenticator algorithm"
Arnd Bergmann578c60f2016-01-25 17:51:21 +0100602 select CRYPTO_HASH
Martin Willif979e012015-06-01 13:43:58 +0200603 help
604 Poly1305 authenticator algorithm, RFC7539.
605
606 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
607 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
608 in IETF protocols. This is the portable C implementation of Poly1305.
609
Martin Willic70f4ab2015-07-16 19:14:06 +0200610config CRYPTO_POLY1305_X86_64
Martin Willib1ccc8f2015-07-16 19:14:08 +0200611 tristate "Poly1305 authenticator algorithm (x86_64/SSE2/AVX2)"
Martin Willic70f4ab2015-07-16 19:14:06 +0200612 depends on X86 && 64BIT
613 select CRYPTO_POLY1305
614 help
615 Poly1305 authenticator algorithm, RFC7539.
616
617 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
618 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
619 in IETF protocols. This is the x86_64 assembler implementation using SIMD
620 instructions.
621
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800622config CRYPTO_MD4
623 tristate "MD4 digest algorithm"
Adrian-Ken Rueegsegger808a1762008-12-03 19:55:27 +0800624 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800626 MD4 message digest algorithm (RFC1320).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800628config CRYPTO_MD5
629 tristate "MD5 digest algorithm"
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800630 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800632 MD5 message digest algorithm (RFC1321).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Aaro Koskinend69e75d2014-12-21 22:54:02 +0200634config CRYPTO_MD5_OCTEON
635 tristate "MD5 digest algorithm (OCTEON)"
636 depends on CPU_CAVIUM_OCTEON
637 select CRYPTO_MD5
638 select CRYPTO_HASH
639 help
640 MD5 message digest algorithm (RFC1321) implemented
641 using OCTEON crypto instructions, when available.
642
Markus Stockhausene8e59952015-03-01 19:30:46 +0100643config CRYPTO_MD5_PPC
644 tristate "MD5 digest algorithm (PPC)"
645 depends on PPC
646 select CRYPTO_HASH
647 help
648 MD5 message digest algorithm (RFC1321) implemented
649 in PPC assembler.
650
David S. Millerfa4dfed2012-08-19 21:51:26 -0700651config CRYPTO_MD5_SPARC64
652 tristate "MD5 digest algorithm (SPARC64)"
653 depends on SPARC64
654 select CRYPTO_MD5
655 select CRYPTO_HASH
656 help
657 MD5 message digest algorithm (RFC1321) implemented
658 using sparc64 crypto instructions, when available.
659
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800660config CRYPTO_MICHAEL_MIC
661 tristate "Michael MIC keyed digest algorithm"
Adrian-Ken Rueegsegger19e2bf12008-12-07 19:35:38 +0800662 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800663 help
664 Michael MIC is used for message integrity protection in TKIP
665 (IEEE 802.11i). This algorithm is required for TKIP, but it
666 should not be used for other purposes because of the weakness
667 of the algorithm.
668
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800669config CRYPTO_RMD128
Adrian Bunkb6d44342008-07-16 19:28:00 +0800670 tristate "RIPEMD-128 digest algorithm"
Herbert Xu7c4468b2008-11-08 09:10:40 +0800671 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800672 help
673 RIPEMD-128 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800674
Adrian Bunkb6d44342008-07-16 19:28:00 +0800675 RIPEMD-128 is a 128-bit cryptographic hash function. It should only
Michael Witten35ed4b32011-07-09 04:02:31 +0000676 be used as a secure replacement for RIPEMD. For other use cases,
Adrian Bunkb6d44342008-07-16 19:28:00 +0800677 RIPEMD-160 should be used.
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800678
Adrian Bunkb6d44342008-07-16 19:28:00 +0800679 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800680 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800681
682config CRYPTO_RMD160
Adrian Bunkb6d44342008-07-16 19:28:00 +0800683 tristate "RIPEMD-160 digest algorithm"
Herbert Xue5835fb2008-11-08 09:18:51 +0800684 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800685 help
686 RIPEMD-160 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800687
Adrian Bunkb6d44342008-07-16 19:28:00 +0800688 RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
689 to be used as a secure replacement for the 128-bit hash functions
690 MD4, MD5 and it's predecessor RIPEMD
691 (not to be confused with RIPEMD-128).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800692
Adrian Bunkb6d44342008-07-16 19:28:00 +0800693 It's speed is comparable to SHA1 and there are no known attacks
694 against RIPEMD-160.
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800695
Adrian Bunkb6d44342008-07-16 19:28:00 +0800696 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800697 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800698
699config CRYPTO_RMD256
Adrian Bunkb6d44342008-07-16 19:28:00 +0800700 tristate "RIPEMD-256 digest algorithm"
Herbert Xud8a5e2e2008-11-08 09:58:10 +0800701 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800702 help
703 RIPEMD-256 is an optional extension of RIPEMD-128 with a
704 256 bit hash. It is intended for applications that require
705 longer hash-results, without needing a larger security level
706 (than RIPEMD-128).
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800707
Adrian Bunkb6d44342008-07-16 19:28:00 +0800708 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800709 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800710
711config CRYPTO_RMD320
Adrian Bunkb6d44342008-07-16 19:28:00 +0800712 tristate "RIPEMD-320 digest algorithm"
Herbert Xu3b8efb42008-11-08 10:11:09 +0800713 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800714 help
715 RIPEMD-320 is an optional extension of RIPEMD-160 with a
716 320 bit hash. It is intended for applications that require
717 longer hash-results, without needing a larger security level
718 (than RIPEMD-160).
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800719
Adrian Bunkb6d44342008-07-16 19:28:00 +0800720 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800721 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800722
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800723config CRYPTO_SHA1
724 tristate "SHA1 digest algorithm"
Adrian-Ken Rueegsegger54ccb362008-12-02 21:08:20 +0800725 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800726 help
727 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
728
Mathias Krause66be8952011-08-04 20:19:25 +0200729config CRYPTO_SHA1_SSSE3
time38b6b7f2015-09-10 15:27:26 -0700730 tristate "SHA1 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Mathias Krause66be8952011-08-04 20:19:25 +0200731 depends on X86 && 64BIT
732 select CRYPTO_SHA1
733 select CRYPTO_HASH
734 help
735 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
736 using Supplemental SSE3 (SSSE3) instructions or Advanced Vector
time38b6b7f2015-09-10 15:27:26 -0700737 Extensions (AVX/AVX2) or SHA-NI(SHA Extensions New Instructions),
738 when available.
Mathias Krause66be8952011-08-04 20:19:25 +0200739
Tim Chen8275d1a2013-03-26 13:59:17 -0700740config CRYPTO_SHA256_SSSE3
time38b6b7f2015-09-10 15:27:26 -0700741 tristate "SHA256 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Tim Chen8275d1a2013-03-26 13:59:17 -0700742 depends on X86 && 64BIT
743 select CRYPTO_SHA256
744 select CRYPTO_HASH
745 help
746 SHA-256 secure hash standard (DFIPS 180-2) implemented
747 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
748 Extensions version 1 (AVX1), or Advanced Vector Extensions
time38b6b7f2015-09-10 15:27:26 -0700749 version 2 (AVX2) instructions, or SHA-NI (SHA Extensions New
750 Instructions) when available.
Tim Chen8275d1a2013-03-26 13:59:17 -0700751
Tim Chen87de4572013-03-26 14:00:02 -0700752config CRYPTO_SHA512_SSSE3
753 tristate "SHA512 digest algorithm (SSSE3/AVX/AVX2)"
754 depends on X86 && 64BIT
755 select CRYPTO_SHA512
756 select CRYPTO_HASH
757 help
758 SHA-512 secure hash standard (DFIPS 180-2) implemented
759 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
760 Extensions version 1 (AVX1), or Advanced Vector Extensions
761 version 2 (AVX2) instructions, when available.
762
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200763config CRYPTO_SHA1_OCTEON
764 tristate "SHA1 digest algorithm (OCTEON)"
765 depends on CPU_CAVIUM_OCTEON
766 select CRYPTO_SHA1
767 select CRYPTO_HASH
768 help
769 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
770 using OCTEON crypto instructions, when available.
771
David S. Miller4ff28d42012-08-19 15:41:53 -0700772config CRYPTO_SHA1_SPARC64
773 tristate "SHA1 digest algorithm (SPARC64)"
774 depends on SPARC64
775 select CRYPTO_SHA1
776 select CRYPTO_HASH
777 help
778 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
779 using sparc64 crypto instructions, when available.
780
Michael Ellerman323a6bf2012-09-13 23:00:49 +0000781config CRYPTO_SHA1_PPC
782 tristate "SHA1 digest algorithm (powerpc)"
783 depends on PPC
784 help
785 This is the powerpc hardware accelerated implementation of the
786 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
787
Markus Stockhausend9850fc2015-02-24 20:36:50 +0100788config CRYPTO_SHA1_PPC_SPE
789 tristate "SHA1 digest algorithm (PPC SPE)"
790 depends on PPC && SPE
791 help
792 SHA-1 secure hash standard (DFIPS 180-4) implemented
793 using powerpc SPE SIMD instruction set.
794
Tim Chen1e65b812014-07-31 10:29:51 -0700795config CRYPTO_SHA1_MB
796 tristate "SHA1 digest algorithm (x86_64 Multi-Buffer, Experimental)"
797 depends on X86 && 64BIT
798 select CRYPTO_SHA1
799 select CRYPTO_HASH
800 select CRYPTO_MCRYPTD
801 help
802 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
803 using multi-buffer technique. This algorithm computes on
804 multiple data lanes concurrently with SIMD instructions for
805 better throughput. It should not be enabled by default but
806 used when there is significant amount of work to keep the keep
807 the data lanes filled to get performance benefit. If the data
808 lanes remain unfilled, a flush operation will be initiated to
809 process the crypto jobs, adding a slight latency.
810
Megha Dey9be7e242016-06-23 18:40:43 -0700811config CRYPTO_SHA256_MB
812 tristate "SHA256 digest algorithm (x86_64 Multi-Buffer, Experimental)"
813 depends on X86 && 64BIT
814 select CRYPTO_SHA256
815 select CRYPTO_HASH
816 select CRYPTO_MCRYPTD
817 help
818 SHA-256 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
819 using multi-buffer technique. This algorithm computes on
820 multiple data lanes concurrently with SIMD instructions for
821 better throughput. It should not be enabled by default but
822 used when there is significant amount of work to keep the keep
823 the data lanes filled to get performance benefit. If the data
824 lanes remain unfilled, a flush operation will be initiated to
825 process the crypto jobs, adding a slight latency.
826
Megha Dey026bb8a2016-06-27 10:20:05 -0700827config CRYPTO_SHA512_MB
828 tristate "SHA512 digest algorithm (x86_64 Multi-Buffer, Experimental)"
829 depends on X86 && 64BIT
830 select CRYPTO_SHA512
831 select CRYPTO_HASH
832 select CRYPTO_MCRYPTD
833 help
834 SHA-512 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
835 using multi-buffer technique. This algorithm computes on
836 multiple data lanes concurrently with SIMD instructions for
837 better throughput. It should not be enabled by default but
838 used when there is significant amount of work to keep the keep
839 the data lanes filled to get performance benefit. If the data
840 lanes remain unfilled, a flush operation will be initiated to
841 process the crypto jobs, adding a slight latency.
842
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800843config CRYPTO_SHA256
844 tristate "SHA224 and SHA256 digest algorithm"
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +0800845 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800846 help
847 SHA256 secure hash standard (DFIPS 180-2).
848
849 This version of SHA implements a 256 bit hash with 128 bits of
850 security against collision attacks.
851
Adrian Bunkb6d44342008-07-16 19:28:00 +0800852 This code also includes SHA-224, a 224 bit hash with 112 bits
853 of security against collision attacks.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800854
Markus Stockhausen2ecc1e92015-01-30 15:39:34 +0100855config CRYPTO_SHA256_PPC_SPE
856 tristate "SHA224 and SHA256 digest algorithm (PPC SPE)"
857 depends on PPC && SPE
858 select CRYPTO_SHA256
859 select CRYPTO_HASH
860 help
861 SHA224 and SHA256 secure hash standard (DFIPS 180-2)
862 implemented using powerpc SPE SIMD instruction set.
863
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200864config CRYPTO_SHA256_OCTEON
865 tristate "SHA224 and SHA256 digest algorithm (OCTEON)"
866 depends on CPU_CAVIUM_OCTEON
867 select CRYPTO_SHA256
868 select CRYPTO_HASH
869 help
870 SHA-256 secure hash standard (DFIPS 180-2) implemented
871 using OCTEON crypto instructions, when available.
872
David S. Miller86c93b22012-08-19 17:11:37 -0700873config CRYPTO_SHA256_SPARC64
874 tristate "SHA224 and SHA256 digest algorithm (SPARC64)"
875 depends on SPARC64
876 select CRYPTO_SHA256
877 select CRYPTO_HASH
878 help
879 SHA-256 secure hash standard (DFIPS 180-2) implemented
880 using sparc64 crypto instructions, when available.
881
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800882config CRYPTO_SHA512
883 tristate "SHA384 and SHA512 digest algorithms"
Adrian-Ken Rueegseggerbd9d20d2008-12-17 16:49:02 +1100884 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800885 help
886 SHA512 secure hash standard (DFIPS 180-2).
887
888 This version of SHA implements a 512 bit hash with 256 bits of
889 security against collision attacks.
890
891 This code also includes SHA-384, a 384 bit hash with 192 bits
892 of security against collision attacks.
893
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200894config CRYPTO_SHA512_OCTEON
895 tristate "SHA384 and SHA512 digest algorithms (OCTEON)"
896 depends on CPU_CAVIUM_OCTEON
897 select CRYPTO_SHA512
898 select CRYPTO_HASH
899 help
900 SHA-512 secure hash standard (DFIPS 180-2) implemented
901 using OCTEON crypto instructions, when available.
902
David S. Miller775e0c62012-08-19 17:37:56 -0700903config CRYPTO_SHA512_SPARC64
904 tristate "SHA384 and SHA512 digest algorithm (SPARC64)"
905 depends on SPARC64
906 select CRYPTO_SHA512
907 select CRYPTO_HASH
908 help
909 SHA-512 secure hash standard (DFIPS 180-2) implemented
910 using sparc64 crypto instructions, when available.
911
Jeff Garzik53964b92016-06-17 10:30:35 +0530912config CRYPTO_SHA3
913 tristate "SHA3 digest algorithm"
914 select CRYPTO_HASH
915 help
916 SHA-3 secure hash standard (DFIPS 202). It's based on
917 cryptographic sponge function family called Keccak.
918
919 References:
920 http://keccak.noekeon.org/
921
Gilad Ben-Yossef4f0fc162017-08-21 13:51:28 +0300922config CRYPTO_SM3
923 tristate "SM3 digest algorithm"
924 select CRYPTO_HASH
925 help
926 SM3 secure hash function as defined by OSCCA GM/T 0004-2012 SM3).
927 It is part of the Chinese Commercial Cryptography suite.
928
929 References:
930 http://www.oscca.gov.cn/UpFile/20101222141857786.pdf
931 https://datatracker.ietf.org/doc/html/draft-shen-sm3-hash
932
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800933config CRYPTO_TGR192
934 tristate "Tiger digest algorithms"
Adrian-Ken Rueegseggerf63fbd32008-12-03 19:58:32 +0800935 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800936 help
937 Tiger hash algorithm 192, 160 and 128-bit hashes
938
939 Tiger is a hash function optimized for 64-bit processors while
940 still having decent performance on 32-bit processors.
941 Tiger was developed by Ross Anderson and Eli Biham.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 See also:
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800944 <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
945
946config CRYPTO_WP512
947 tristate "Whirlpool digest algorithms"
Adrian-Ken Rueegsegger49465102008-12-07 19:34:37 +0800948 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800949 help
950 Whirlpool hash algorithm 512, 384 and 256-bit hashes
951
952 Whirlpool-512 is part of the NESSIE cryptographic primitives.
953 Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard
954
955 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800956 <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800957
Huang Ying0e1227d2009-10-19 11:53:06 +0900958config CRYPTO_GHASH_CLMUL_NI_INTEL
959 tristate "GHASH digest algorithm (CLMUL-NI accelerated)"
Richard Weinberger8af00862011-06-08 20:56:29 +0800960 depends on X86 && 64BIT
Huang Ying0e1227d2009-10-19 11:53:06 +0900961 select CRYPTO_CRYPTD
962 help
963 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
964 The implementation is accelerated by CLMUL-NI of Intel.
965
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800966comment "Ciphers"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968config CRYPTO_AES
969 tristate "AES cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000970 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800972 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 algorithm.
974
975 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800976 both hardware and software across a wide range of computing
977 environments regardless of its use in feedback or non-feedback
978 modes. Its key setup time is excellent, and its key agility is
979 good. Rijndael's very low memory requirements make it very well
980 suited for restricted-space environments, in which it also
981 demonstrates excellent performance. Rijndael's operations are
982 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800984 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
987
Ard Biesheuvelb5e0b032017-02-02 16:37:40 +0000988config CRYPTO_AES_TI
989 tristate "Fixed time AES cipher"
990 select CRYPTO_ALGAPI
991 help
992 This is a generic implementation of AES that attempts to eliminate
993 data dependent latencies as much as possible without affecting
994 performance too much. It is intended for use by the generic CCM
995 and GCM drivers, and other CTR or CMAC/XCBC based modes that rely
996 solely on encryption (although decryption is supported as well, but
997 with a more dramatic performance hit)
998
999 Instead of using 16 lookup tables of 1 KB each, (8 for encryption and
1000 8 for decryption), this implementation only uses just two S-boxes of
1001 256 bytes each, and attempts to eliminate data dependent latencies by
1002 prefetching the entire table into the cache at the start of each
1003 block.
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005config CRYPTO_AES_586
1006 tristate "AES cipher algorithms (i586)"
Herbert Xucce9e062006-08-21 21:08:13 +10001007 depends on (X86 || UML_X86) && !64BIT
1008 select CRYPTO_ALGAPI
Sebastian Siewior5157dea2007-11-10 19:07:16 +08001009 select CRYPTO_AES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001011 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 algorithm.
1013
1014 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001015 both hardware and software across a wide range of computing
1016 environments regardless of its use in feedback or non-feedback
1017 modes. Its key setup time is excellent, and its key agility is
1018 good. Rijndael's very low memory requirements make it very well
1019 suited for restricted-space environments, in which it also
1020 demonstrates excellent performance. Rijndael's operations are
1021 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001023 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 See <http://csrc.nist.gov/encryption/aes/> for more information.
1026
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001027config CRYPTO_AES_X86_64
1028 tristate "AES cipher algorithms (x86_64)"
Herbert Xucce9e062006-08-21 21:08:13 +10001029 depends on (X86 || UML_X86) && 64BIT
1030 select CRYPTO_ALGAPI
Sebastian Siewior81190b32007-11-08 21:25:04 +08001031 select CRYPTO_AES
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001032 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001033 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001034 algorithm.
1035
1036 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001037 both hardware and software across a wide range of computing
1038 environments regardless of its use in feedback or non-feedback
1039 modes. Its key setup time is excellent, and its key agility is
1040 good. Rijndael's very low memory requirements make it very well
1041 suited for restricted-space environments, in which it also
1042 demonstrates excellent performance. Rijndael's operations are
1043 among the easiest to defend against power and timing attacks.
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001044
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001045 The AES specifies three key sizes: 128, 192 and 256 bits
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001046
1047 See <http://csrc.nist.gov/encryption/aes/> for more information.
1048
Huang Ying54b6a1b2009-01-18 16:28:34 +11001049config CRYPTO_AES_NI_INTEL
1050 tristate "AES cipher algorithms (AES-NI)"
Richard Weinberger8af00862011-06-08 20:56:29 +08001051 depends on X86
Herbert Xu85671862016-11-22 20:08:33 +08001052 select CRYPTO_AEAD
Mathias Krause0d258ef2010-11-27 16:34:46 +08001053 select CRYPTO_AES_X86_64 if 64BIT
1054 select CRYPTO_AES_586 if !64BIT
Huang Ying54b6a1b2009-01-18 16:28:34 +11001055 select CRYPTO_ALGAPI
Herbert Xu85671862016-11-22 20:08:33 +08001056 select CRYPTO_BLKCIPHER
Jussi Kivilinna7643a112013-04-10 18:39:20 +03001057 select CRYPTO_GLUE_HELPER_X86 if 64BIT
Herbert Xu85671862016-11-22 20:08:33 +08001058 select CRYPTO_SIMD
Huang Ying54b6a1b2009-01-18 16:28:34 +11001059 help
1060 Use Intel AES-NI instructions for AES algorithm.
1061
1062 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1063 algorithm.
1064
1065 Rijndael appears to be consistently a very good performer in
1066 both hardware and software across a wide range of computing
1067 environments regardless of its use in feedback or non-feedback
1068 modes. Its key setup time is excellent, and its key agility is
1069 good. Rijndael's very low memory requirements make it very well
1070 suited for restricted-space environments, in which it also
1071 demonstrates excellent performance. Rijndael's operations are
1072 among the easiest to defend against power and timing attacks.
1073
1074 The AES specifies three key sizes: 128, 192 and 256 bits
1075
1076 See <http://csrc.nist.gov/encryption/aes/> for more information.
1077
Mathias Krause0d258ef2010-11-27 16:34:46 +08001078 In addition to AES cipher algorithm support, the acceleration
1079 for some popular block cipher mode is supported too, including
1080 ECB, CBC, LRW, PCBC, XTS. The 64 bit version has additional
1081 acceleration for CTR.
Huang Ying2cf4ac82009-03-29 15:41:20 +08001082
David S. Miller9bf48522012-08-21 03:58:13 -07001083config CRYPTO_AES_SPARC64
1084 tristate "AES cipher algorithms (SPARC64)"
1085 depends on SPARC64
1086 select CRYPTO_CRYPTD
1087 select CRYPTO_ALGAPI
1088 help
1089 Use SPARC64 crypto opcodes for AES algorithm.
1090
1091 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1092 algorithm.
1093
1094 Rijndael appears to be consistently a very good performer in
1095 both hardware and software across a wide range of computing
1096 environments regardless of its use in feedback or non-feedback
1097 modes. Its key setup time is excellent, and its key agility is
1098 good. Rijndael's very low memory requirements make it very well
1099 suited for restricted-space environments, in which it also
1100 demonstrates excellent performance. Rijndael's operations are
1101 among the easiest to defend against power and timing attacks.
1102
1103 The AES specifies three key sizes: 128, 192 and 256 bits
1104
1105 See <http://csrc.nist.gov/encryption/aes/> for more information.
1106
1107 In addition to AES cipher algorithm support, the acceleration
1108 for some popular block cipher mode is supported too, including
1109 ECB and CBC.
1110
Markus Stockhausen504c6142015-02-22 10:00:10 +01001111config CRYPTO_AES_PPC_SPE
1112 tristate "AES cipher algorithms (PPC SPE)"
1113 depends on PPC && SPE
1114 help
1115 AES cipher algorithms (FIPS-197). Additionally the acceleration
1116 for popular block cipher modes ECB, CBC, CTR and XTS is supported.
1117 This module should only be used for low power (router) devices
1118 without hardware AES acceleration (e.g. caam crypto). It reduces the
1119 size of the AES tables from 16KB to 8KB + 256 bytes and mitigates
1120 timining attacks. Nevertheless it might be not as secure as other
1121 architecture specific assembler implementations that work on 1KB
1122 tables or 256 bytes S-boxes.
1123
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001124config CRYPTO_ANUBIS
1125 tristate "Anubis cipher algorithm"
1126 select CRYPTO_ALGAPI
1127 help
1128 Anubis cipher algorithm.
1129
1130 Anubis is a variable key length cipher which can use keys from
1131 128 bits to 320 bits in length. It was evaluated as a entrant
1132 in the NESSIE competition.
1133
1134 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001135 <https://www.cosic.esat.kuleuven.be/nessie/reports/>
1136 <http://www.larc.usp.br/~pbarreto/AnubisPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001137
1138config CRYPTO_ARC4
1139 tristate "ARC4 cipher algorithm"
Sebastian Andrzej Siewiorb9b0f082012-06-26 18:13:46 +02001140 select CRYPTO_BLKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001141 help
1142 ARC4 cipher algorithm.
1143
1144 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
1145 bits in length. This algorithm is required for driver-based
1146 WEP, but it should not be for other purposes because of the
1147 weakness of the algorithm.
1148
1149config CRYPTO_BLOWFISH
1150 tristate "Blowfish cipher algorithm"
1151 select CRYPTO_ALGAPI
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001152 select CRYPTO_BLOWFISH_COMMON
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001153 help
1154 Blowfish cipher algorithm, by Bruce Schneier.
1155
1156 This is a variable key length cipher which can use keys from 32
1157 bits to 448 bits in length. It's fast, simple and specifically
1158 designed for use on "large microprocessors".
1159
1160 See also:
1161 <http://www.schneier.com/blowfish.html>
1162
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001163config CRYPTO_BLOWFISH_COMMON
1164 tristate
1165 help
1166 Common parts of the Blowfish cipher algorithm shared by the
1167 generic c and the assembler implementations.
1168
1169 See also:
1170 <http://www.schneier.com/blowfish.html>
1171
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001172config CRYPTO_BLOWFISH_X86_64
1173 tristate "Blowfish cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001174 depends on X86 && 64BIT
Eric Biggersc1679172018-02-19 23:48:16 -08001175 select CRYPTO_BLKCIPHER
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001176 select CRYPTO_BLOWFISH_COMMON
1177 help
1178 Blowfish cipher algorithm (x86_64), by Bruce Schneier.
1179
1180 This is a variable key length cipher which can use keys from 32
1181 bits to 448 bits in length. It's fast, simple and specifically
1182 designed for use on "large microprocessors".
1183
1184 See also:
1185 <http://www.schneier.com/blowfish.html>
1186
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001187config CRYPTO_CAMELLIA
1188 tristate "Camellia cipher algorithms"
1189 depends on CRYPTO
1190 select CRYPTO_ALGAPI
1191 help
1192 Camellia cipher algorithms module.
1193
1194 Camellia is a symmetric key block cipher developed jointly
1195 at NTT and Mitsubishi Electric Corporation.
1196
1197 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1198
1199 See also:
1200 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1201
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001202config CRYPTO_CAMELLIA_X86_64
1203 tristate "Camellia cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001204 depends on X86 && 64BIT
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001205 depends on CRYPTO
Eric Biggers1af6d032018-02-19 23:48:22 -08001206 select CRYPTO_BLKCIPHER
Jussi Kivilinna964263a2012-06-18 14:07:29 +03001207 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001208 help
1209 Camellia cipher algorithm module (x86_64).
1210
1211 Camellia is a symmetric key block cipher developed jointly
1212 at NTT and Mitsubishi Electric Corporation.
1213
1214 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1215
1216 See also:
1217 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1218
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001219config CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1220 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX)"
1221 depends on X86 && 64BIT
1222 depends on CRYPTO
Eric Biggers44893bc2018-02-19 23:48:23 -08001223 select CRYPTO_BLKCIPHER
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001224 select CRYPTO_CAMELLIA_X86_64
Eric Biggers44893bc2018-02-19 23:48:23 -08001225 select CRYPTO_GLUE_HELPER_X86
1226 select CRYPTO_SIMD
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001227 select CRYPTO_XTS
1228 help
1229 Camellia cipher algorithm module (x86_64/AES-NI/AVX).
1230
1231 Camellia is a symmetric key block cipher developed jointly
1232 at NTT and Mitsubishi Electric Corporation.
1233
1234 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1235
1236 See also:
1237 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1238
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001239config CRYPTO_CAMELLIA_AESNI_AVX2_X86_64
1240 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX2)"
1241 depends on X86 && 64BIT
1242 depends on CRYPTO
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001243 select CRYPTO_CAMELLIA_AESNI_AVX_X86_64
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001244 help
1245 Camellia cipher algorithm module (x86_64/AES-NI/AVX2).
1246
1247 Camellia is a symmetric key block cipher developed jointly
1248 at NTT and Mitsubishi Electric Corporation.
1249
1250 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1251
1252 See also:
1253 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1254
David S. Miller81658ad2012-08-28 12:05:54 -07001255config CRYPTO_CAMELLIA_SPARC64
1256 tristate "Camellia cipher algorithm (SPARC64)"
1257 depends on SPARC64
1258 depends on CRYPTO
1259 select CRYPTO_ALGAPI
1260 help
1261 Camellia cipher algorithm module (SPARC64).
1262
1263 Camellia is a symmetric key block cipher developed jointly
1264 at NTT and Mitsubishi Electric Corporation.
1265
1266 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1267
1268 See also:
1269 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1270
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001271config CRYPTO_CAST_COMMON
1272 tristate
1273 help
1274 Common parts of the CAST cipher algorithms shared by the
1275 generic c and the assembler implementations.
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277config CRYPTO_CAST5
1278 tristate "CAST5 (CAST-128) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001279 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001280 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 help
1282 The CAST5 encryption algorithm (synonymous with CAST-128) is
1283 described in RFC2144.
1284
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001285config CRYPTO_CAST5_AVX_X86_64
1286 tristate "CAST5 (CAST-128) cipher algorithm (x86_64/AVX)"
1287 depends on X86 && 64BIT
Eric Biggers1e631832018-02-19 23:48:13 -08001288 select CRYPTO_BLKCIPHER
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001289 select CRYPTO_CAST5
Eric Biggers1e631832018-02-19 23:48:13 -08001290 select CRYPTO_CAST_COMMON
1291 select CRYPTO_SIMD
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001292 help
1293 The CAST5 encryption algorithm (synonymous with CAST-128) is
1294 described in RFC2144.
1295
1296 This module provides the Cast5 cipher algorithm that processes
1297 sixteen blocks parallel using the AVX instruction set.
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299config CRYPTO_CAST6
1300 tristate "CAST6 (CAST-256) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001301 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001302 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 help
1304 The CAST6 encryption algorithm (synonymous with CAST-256) is
1305 described in RFC2612.
1306
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001307config CRYPTO_CAST6_AVX_X86_64
1308 tristate "CAST6 (CAST-256) cipher algorithm (x86_64/AVX)"
1309 depends on X86 && 64BIT
Eric Biggers4bd96922018-02-19 23:48:15 -08001310 select CRYPTO_BLKCIPHER
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001311 select CRYPTO_CAST6
Eric Biggers4bd96922018-02-19 23:48:15 -08001312 select CRYPTO_CAST_COMMON
1313 select CRYPTO_GLUE_HELPER_X86
1314 select CRYPTO_SIMD
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001315 select CRYPTO_XTS
1316 help
1317 The CAST6 encryption algorithm (synonymous with CAST-256) is
1318 described in RFC2612.
1319
1320 This module provides the Cast6 cipher algorithm that processes
1321 eight blocks parallel using the AVX instruction set.
1322
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001323config CRYPTO_DES
1324 tristate "DES and Triple DES EDE cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +10001325 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001327 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
David S. Millerc5aac2d2012-08-25 22:37:23 -07001329config CRYPTO_DES_SPARC64
1330 tristate "DES and Triple DES EDE cipher algorithms (SPARC64)"
Dave Jones97da37b2012-10-02 17:13:20 -04001331 depends on SPARC64
David S. Millerc5aac2d2012-08-25 22:37:23 -07001332 select CRYPTO_ALGAPI
1333 select CRYPTO_DES
1334 help
1335 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3),
1336 optimized using SPARC64 crypto opcodes.
1337
Jussi Kivilinna6574e6c2014-06-09 20:59:54 +03001338config CRYPTO_DES3_EDE_X86_64
1339 tristate "Triple DES EDE cipher algorithm (x86-64)"
1340 depends on X86 && 64BIT
Eric Biggers09c0f032018-02-19 23:48:17 -08001341 select CRYPTO_BLKCIPHER
Jussi Kivilinna6574e6c2014-06-09 20:59:54 +03001342 select CRYPTO_DES
1343 help
1344 Triple DES EDE (FIPS 46-3) algorithm.
1345
1346 This module provides implementation of the Triple DES EDE cipher
1347 algorithm that is optimized for x86-64 processors. Two versions of
1348 algorithm are provided; regular processing one input block and
1349 one that processes three blocks parallel.
1350
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001351config CRYPTO_FCRYPT
1352 tristate "FCrypt cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001353 select CRYPTO_ALGAPI
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001354 select CRYPTO_BLKCIPHER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001356 FCrypt algorithm used by RxRPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358config CRYPTO_KHAZAD
1359 tristate "Khazad cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001360 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 help
1362 Khazad cipher algorithm.
1363
1364 Khazad was a finalist in the initial NESSIE competition. It is
1365 an algorithm optimized for 64-bit processors with good performance
1366 on 32-bit processors. Khazad uses an 128 bit key size.
1367
1368 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001369 <http://www.larc.usp.br/~pbarreto/KhazadPage.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Tan Swee Heng2407d602007-11-23 19:45:00 +08001371config CRYPTO_SALSA20
Kees Cook3b4afaf2012-10-02 11:16:49 -07001372 tristate "Salsa20 stream cipher algorithm"
Tan Swee Heng2407d602007-11-23 19:45:00 +08001373 select CRYPTO_BLKCIPHER
1374 help
1375 Salsa20 stream cipher algorithm.
1376
1377 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1378 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1379
1380 The Salsa20 stream cipher algorithm is designed by Daniel J.
1381 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001383config CRYPTO_SALSA20_586
Kees Cook3b4afaf2012-10-02 11:16:49 -07001384 tristate "Salsa20 stream cipher algorithm (i586)"
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001385 depends on (X86 || UML_X86) && !64BIT
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001386 select CRYPTO_BLKCIPHER
Eric Biggersc9a3ff82018-01-05 11:09:59 -08001387 select CRYPTO_SALSA20
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001388 help
1389 Salsa20 stream cipher algorithm.
1390
1391 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1392 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1393
1394 The Salsa20 stream cipher algorithm is designed by Daniel J.
1395 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1396
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001397config CRYPTO_SALSA20_X86_64
Kees Cook3b4afaf2012-10-02 11:16:49 -07001398 tristate "Salsa20 stream cipher algorithm (x86_64)"
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001399 depends on (X86 || UML_X86) && 64BIT
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001400 select CRYPTO_BLKCIPHER
Eric Biggersc9a3ff82018-01-05 11:09:59 -08001401 select CRYPTO_SALSA20
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001402 help
1403 Salsa20 stream cipher algorithm.
1404
1405 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1406 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1407
1408 The Salsa20 stream cipher algorithm is designed by Daniel J.
1409 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1410
Martin Willic08d0e62015-06-01 13:43:56 +02001411config CRYPTO_CHACHA20
1412 tristate "ChaCha20 cipher algorithm"
1413 select CRYPTO_BLKCIPHER
1414 help
1415 ChaCha20 cipher algorithm, RFC7539.
1416
1417 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1418 Bernstein and further specified in RFC7539 for use in IETF protocols.
1419 This is the portable C implementation of ChaCha20.
1420
1421 See also:
1422 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1423
Martin Willic9320b62015-07-16 19:14:01 +02001424config CRYPTO_CHACHA20_X86_64
Martin Willi3d1e93c2015-07-16 19:14:03 +02001425 tristate "ChaCha20 cipher algorithm (x86_64/SSSE3/AVX2)"
Martin Willic9320b62015-07-16 19:14:01 +02001426 depends on X86 && 64BIT
1427 select CRYPTO_BLKCIPHER
1428 select CRYPTO_CHACHA20
1429 help
1430 ChaCha20 cipher algorithm, RFC7539.
1431
1432 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1433 Bernstein and further specified in RFC7539 for use in IETF protocols.
1434 This is the x86_64 assembler implementation using SIMD instructions.
1435
1436 See also:
1437 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1438
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001439config CRYPTO_SEED
1440 tristate "SEED cipher algorithm"
1441 select CRYPTO_ALGAPI
1442 help
1443 SEED cipher algorithm (RFC4269).
1444
1445 SEED is a 128-bit symmetric key block cipher that has been
1446 developed by KISA (Korea Information Security Agency) as a
1447 national standard encryption algorithm of the Republic of Korea.
1448 It is a 16 round block cipher with the key size of 128 bit.
1449
1450 See also:
1451 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
1452
1453config CRYPTO_SERPENT
1454 tristate "Serpent cipher algorithm"
1455 select CRYPTO_ALGAPI
1456 help
1457 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1458
1459 Keys are allowed to be from 0 to 256 bits in length, in steps
1460 of 8 bits. Also includes the 'Tnepres' algorithm, a reversed
1461 variant of Serpent for compatibility with old kerneli.org code.
1462
1463 See also:
1464 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1465
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001466config CRYPTO_SERPENT_SSE2_X86_64
1467 tristate "Serpent cipher algorithm (x86_64/SSE2)"
1468 depends on X86 && 64BIT
Eric Biggerse0f409d2018-02-19 23:48:03 -08001469 select CRYPTO_BLKCIPHER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001470 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001471 select CRYPTO_SERPENT
Eric Biggerse0f409d2018-02-19 23:48:03 -08001472 select CRYPTO_SIMD
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001473 help
1474 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1475
1476 Keys are allowed to be from 0 to 256 bits in length, in steps
1477 of 8 bits.
1478
Masanari Iida1e6232f2015-04-04 00:20:30 +09001479 This module provides Serpent cipher algorithm that processes eight
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001480 blocks parallel using SSE2 instruction set.
1481
1482 See also:
1483 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1484
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001485config CRYPTO_SERPENT_SSE2_586
1486 tristate "Serpent cipher algorithm (i586/SSE2)"
1487 depends on X86 && !64BIT
Eric Biggerse0f409d2018-02-19 23:48:03 -08001488 select CRYPTO_BLKCIPHER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001489 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001490 select CRYPTO_SERPENT
Eric Biggerse0f409d2018-02-19 23:48:03 -08001491 select CRYPTO_SIMD
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001492 help
1493 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1494
1495 Keys are allowed to be from 0 to 256 bits in length, in steps
1496 of 8 bits.
1497
1498 This module provides Serpent cipher algorithm that processes four
1499 blocks parallel using SSE2 instruction set.
1500
1501 See also:
1502 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1503
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001504config CRYPTO_SERPENT_AVX_X86_64
1505 tristate "Serpent cipher algorithm (x86_64/AVX)"
1506 depends on X86 && 64BIT
Eric Biggerse16bf972018-02-19 23:48:06 -08001507 select CRYPTO_BLKCIPHER
Jussi Kivilinna1d0debb2012-06-18 14:07:24 +03001508 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001509 select CRYPTO_SERPENT
Eric Biggerse16bf972018-02-19 23:48:06 -08001510 select CRYPTO_SIMD
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001511 select CRYPTO_XTS
1512 help
1513 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1514
1515 Keys are allowed to be from 0 to 256 bits in length, in steps
1516 of 8 bits.
1517
1518 This module provides the Serpent cipher algorithm that processes
1519 eight blocks parallel using the AVX instruction set.
1520
1521 See also:
1522 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1523
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001524config CRYPTO_SERPENT_AVX2_X86_64
1525 tristate "Serpent cipher algorithm (x86_64/AVX2)"
1526 depends on X86 && 64BIT
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001527 select CRYPTO_SERPENT_AVX_X86_64
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001528 help
1529 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1530
1531 Keys are allowed to be from 0 to 256 bits in length, in steps
1532 of 8 bits.
1533
1534 This module provides Serpent cipher algorithm that processes 16
1535 blocks parallel using AVX2 instruction set.
1536
1537 See also:
1538 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1539
Gilad Ben-Yossef747c8ce2018-03-06 09:44:42 +00001540config CRYPTO_SM4
1541 tristate "SM4 cipher algorithm"
1542 select CRYPTO_ALGAPI
1543 help
1544 SM4 cipher algorithms (OSCCA GB/T 32907-2016).
1545
1546 SM4 (GBT.32907-2016) is a cryptographic standard issued by the
1547 Organization of State Commercial Administration of China (OSCCA)
1548 as an authorized cryptographic algorithms for the use within China.
1549
1550 SMS4 was originally created for use in protecting wireless
1551 networks, and is mandated in the Chinese National Standard for
1552 Wireless LAN WAPI (Wired Authentication and Privacy Infrastructure)
1553 (GB.15629.11-2003).
1554
1555 The latest SM4 standard (GBT.32907-2016) was proposed by OSCCA and
1556 standardized through TC 260 of the Standardization Administration
1557 of the People's Republic of China (SAC).
1558
1559 The input, output, and key of SMS4 are each 128 bits.
1560
1561 See also: <https://eprint.iacr.org/2008/329.pdf>
1562
1563 If unsure, say N.
1564
Eric Biggersda7a0ab2018-02-14 10:42:19 -08001565config CRYPTO_SPECK
1566 tristate "Speck cipher algorithm"
1567 select CRYPTO_ALGAPI
1568 help
1569 Speck is a lightweight block cipher that is tuned for optimal
1570 performance in software (rather than hardware).
1571
1572 Speck may not be as secure as AES, and should only be used on systems
1573 where AES is not fast enough.
1574
1575 See also: <https://eprint.iacr.org/2013/404.pdf>
1576
1577 If unsure, say N.
1578
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001579config CRYPTO_TEA
1580 tristate "TEA, XTEA and XETA cipher algorithms"
1581 select CRYPTO_ALGAPI
1582 help
1583 TEA cipher algorithm.
1584
1585 Tiny Encryption Algorithm is a simple cipher that uses
1586 many rounds for security. It is very fast and uses
1587 little memory.
1588
1589 Xtendend Tiny Encryption Algorithm is a modification to
1590 the TEA algorithm to address a potential key weakness
1591 in the TEA algorithm.
1592
1593 Xtendend Encryption Tiny Algorithm is a mis-implementation
1594 of the XTEA algorithm for compatibility purposes.
1595
1596config CRYPTO_TWOFISH
1597 tristate "Twofish cipher algorithm"
1598 select CRYPTO_ALGAPI
1599 select CRYPTO_TWOFISH_COMMON
1600 help
1601 Twofish cipher algorithm.
1602
1603 Twofish was submitted as an AES (Advanced Encryption Standard)
1604 candidate cipher by researchers at CounterPane Systems. It is a
1605 16 round block cipher supporting key sizes of 128, 192, and 256
1606 bits.
1607
1608 See also:
1609 <http://www.schneier.com/twofish.html>
1610
1611config CRYPTO_TWOFISH_COMMON
1612 tristate
1613 help
1614 Common parts of the Twofish cipher algorithm shared by the
1615 generic c and the assembler implementations.
1616
1617config CRYPTO_TWOFISH_586
1618 tristate "Twofish cipher algorithms (i586)"
1619 depends on (X86 || UML_X86) && !64BIT
1620 select CRYPTO_ALGAPI
1621 select CRYPTO_TWOFISH_COMMON
1622 help
1623 Twofish cipher algorithm.
1624
1625 Twofish was submitted as an AES (Advanced Encryption Standard)
1626 candidate cipher by researchers at CounterPane Systems. It is a
1627 16 round block cipher supporting key sizes of 128, 192, and 256
1628 bits.
1629
1630 See also:
1631 <http://www.schneier.com/twofish.html>
1632
1633config CRYPTO_TWOFISH_X86_64
1634 tristate "Twofish cipher algorithm (x86_64)"
1635 depends on (X86 || UML_X86) && 64BIT
1636 select CRYPTO_ALGAPI
1637 select CRYPTO_TWOFISH_COMMON
1638 help
1639 Twofish cipher algorithm (x86_64).
1640
1641 Twofish was submitted as an AES (Advanced Encryption Standard)
1642 candidate cipher by researchers at CounterPane Systems. It is a
1643 16 round block cipher supporting key sizes of 128, 192, and 256
1644 bits.
1645
1646 See also:
1647 <http://www.schneier.com/twofish.html>
1648
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001649config CRYPTO_TWOFISH_X86_64_3WAY
1650 tristate "Twofish cipher algorithm (x86_64, 3-way parallel)"
Al Virof21a7c12012-04-08 20:31:22 -04001651 depends on X86 && 64BIT
Eric Biggers37992fa2018-02-19 23:48:09 -08001652 select CRYPTO_BLKCIPHER
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001653 select CRYPTO_TWOFISH_COMMON
1654 select CRYPTO_TWOFISH_X86_64
Jussi Kivilinna414cb5e2012-06-18 14:07:34 +03001655 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001656 help
1657 Twofish cipher algorithm (x86_64, 3-way parallel).
1658
1659 Twofish was submitted as an AES (Advanced Encryption Standard)
1660 candidate cipher by researchers at CounterPane Systems. It is a
1661 16 round block cipher supporting key sizes of 128, 192, and 256
1662 bits.
1663
1664 This module provides Twofish cipher algorithm that processes three
1665 blocks parallel, utilizing resources of out-of-order CPUs better.
1666
1667 See also:
1668 <http://www.schneier.com/twofish.html>
1669
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001670config CRYPTO_TWOFISH_AVX_X86_64
1671 tristate "Twofish cipher algorithm (x86_64/AVX)"
1672 depends on X86 && 64BIT
Eric Biggers0e6ab462018-02-19 23:48:11 -08001673 select CRYPTO_BLKCIPHER
Jussi Kivilinnaa7378d42012-06-18 14:07:39 +03001674 select CRYPTO_GLUE_HELPER_X86
Eric Biggers0e6ab462018-02-19 23:48:11 -08001675 select CRYPTO_SIMD
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001676 select CRYPTO_TWOFISH_COMMON
1677 select CRYPTO_TWOFISH_X86_64
1678 select CRYPTO_TWOFISH_X86_64_3WAY
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001679 help
1680 Twofish cipher algorithm (x86_64/AVX).
1681
1682 Twofish was submitted as an AES (Advanced Encryption Standard)
1683 candidate cipher by researchers at CounterPane Systems. It is a
1684 16 round block cipher supporting key sizes of 128, 192, and 256
1685 bits.
1686
1687 This module provides the Twofish cipher algorithm that processes
1688 eight blocks parallel using the AVX Instruction Set.
1689
1690 See also:
1691 <http://www.schneier.com/twofish.html>
1692
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001693comment "Compression"
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695config CRYPTO_DEFLATE
1696 tristate "Deflate compression algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001697 select CRYPTO_ALGAPI
Giovanni Cabidduf6ded092016-10-21 13:19:53 +01001698 select CRYPTO_ACOMP2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 select ZLIB_INFLATE
1700 select ZLIB_DEFLATE
1701 help
1702 This is the Deflate algorithm (RFC1951), specified for use in
1703 IPSec with the IPCOMP protocol (RFC3173, RFC2394).
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 You will most probably want this if using IPSec.
1706
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001707config CRYPTO_LZO
1708 tristate "LZO compression algorithm"
1709 select CRYPTO_ALGAPI
Giovanni Cabidduac9d2c42016-10-21 13:19:49 +01001710 select CRYPTO_ACOMP2
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001711 select LZO_COMPRESS
1712 select LZO_DECOMPRESS
1713 help
1714 This is the LZO algorithm.
1715
Seth Jennings35a1fc12012-07-19 09:42:41 -05001716config CRYPTO_842
1717 tristate "842 compression algorithm"
Dan Streetman2062c5b2015-05-07 13:49:15 -04001718 select CRYPTO_ALGAPI
Giovanni Cabiddu6a8de3a2016-10-21 13:19:52 +01001719 select CRYPTO_ACOMP2
Dan Streetman2062c5b2015-05-07 13:49:15 -04001720 select 842_COMPRESS
1721 select 842_DECOMPRESS
Seth Jennings35a1fc12012-07-19 09:42:41 -05001722 help
1723 This is the 842 algorithm.
1724
Chanho Min0ea85302013-07-08 16:01:51 -07001725config CRYPTO_LZ4
1726 tristate "LZ4 compression algorithm"
1727 select CRYPTO_ALGAPI
Giovanni Cabiddu8cd93302016-10-21 13:19:50 +01001728 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001729 select LZ4_COMPRESS
1730 select LZ4_DECOMPRESS
1731 help
1732 This is the LZ4 algorithm.
1733
1734config CRYPTO_LZ4HC
1735 tristate "LZ4HC compression algorithm"
1736 select CRYPTO_ALGAPI
Giovanni Cabiddu91d53d92016-10-21 13:19:51 +01001737 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001738 select LZ4HC_COMPRESS
1739 select LZ4_DECOMPRESS
1740 help
1741 This is the LZ4 high compression mode algorithm.
1742
Nick Terrelld28fc3d2018-03-30 12:14:53 -07001743config CRYPTO_ZSTD
1744 tristate "Zstd compression algorithm"
1745 select CRYPTO_ALGAPI
1746 select CRYPTO_ACOMP2
1747 select ZSTD_COMPRESS
1748 select ZSTD_DECOMPRESS
1749 help
1750 This is the zstd algorithm.
1751
Neil Horman17f0f4a2008-08-14 22:15:52 +10001752comment "Random Number Generation"
1753
1754config CRYPTO_ANSI_CPRNG
1755 tristate "Pseudo Random Number Generation for Cryptographic modules"
1756 select CRYPTO_AES
1757 select CRYPTO_RNG
Neil Horman17f0f4a2008-08-14 22:15:52 +10001758 help
1759 This option enables the generic pseudo random number generator
1760 for cryptographic modules. Uses the Algorithm specified in
Jiri Kosina7dd607e2010-01-27 01:00:10 +01001761 ANSI X9.31 A.2.4. Note that this option must be enabled if
1762 CRYPTO_FIPS is selected
Neil Horman17f0f4a2008-08-14 22:15:52 +10001763
Herbert Xuf2c89a12014-07-04 22:15:08 +08001764menuconfig CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001765 tristate "NIST SP800-90A DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001766 help
1767 NIST SP800-90A compliant DRBG. In the following submenu, one or
1768 more of the DRBG types must be selected.
1769
Herbert Xuf2c89a12014-07-04 22:15:08 +08001770if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001771
1772config CRYPTO_DRBG_HMAC
Herbert Xu401e4232015-06-03 14:49:31 +08001773 bool
Stephan Mueller419090c2014-05-31 17:22:31 +02001774 default y
Stephan Mueller419090c2014-05-31 17:22:31 +02001775 select CRYPTO_HMAC
Herbert Xu826775b2015-06-11 08:55:10 +08001776 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001777
1778config CRYPTO_DRBG_HASH
1779 bool "Enable Hash DRBG"
Herbert Xu826775b2015-06-11 08:55:10 +08001780 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001781 help
1782 Enable the Hash DRBG variant as defined in NIST SP800-90A.
1783
1784config CRYPTO_DRBG_CTR
1785 bool "Enable CTR DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001786 select CRYPTO_AES
Stephan Mueller35591282016-06-14 07:34:13 +02001787 depends on CRYPTO_CTR
Stephan Mueller419090c2014-05-31 17:22:31 +02001788 help
1789 Enable the CTR DRBG variant as defined in NIST SP800-90A.
1790
Herbert Xuf2c89a12014-07-04 22:15:08 +08001791config CRYPTO_DRBG
1792 tristate
Herbert Xu401e4232015-06-03 14:49:31 +08001793 default CRYPTO_DRBG_MENU
Herbert Xuf2c89a12014-07-04 22:15:08 +08001794 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001795 select CRYPTO_JITTERENTROPY
Herbert Xuf2c89a12014-07-04 22:15:08 +08001796
1797endif # if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001798
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001799config CRYPTO_JITTERENTROPY
1800 tristate "Jitterentropy Non-Deterministic Random Number Generator"
Arnd Bergmann2f313e02016-01-26 14:47:10 +01001801 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001802 help
1803 The Jitterentropy RNG is a noise that is intended
1804 to provide seed to another RNG. The RNG does not
1805 perform any cryptographic whitening of the generated
1806 random numbers. This Jitterentropy RNG registers with
1807 the kernel crypto API and can be used by any caller.
1808
Herbert Xu03c8efc2010-10-19 21:12:39 +08001809config CRYPTO_USER_API
1810 tristate
1811
Herbert Xufe869cd2010-10-19 21:23:00 +08001812config CRYPTO_USER_API_HASH
1813 tristate "User-space interface for hash algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001814 depends on NET
Herbert Xufe869cd2010-10-19 21:23:00 +08001815 select CRYPTO_HASH
1816 select CRYPTO_USER_API
1817 help
1818 This option enables the user-spaces interface for hash
1819 algorithms.
1820
Herbert Xu8ff59092010-10-19 21:31:55 +08001821config CRYPTO_USER_API_SKCIPHER
1822 tristate "User-space interface for symmetric key cipher algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001823 depends on NET
Herbert Xu8ff59092010-10-19 21:31:55 +08001824 select CRYPTO_BLKCIPHER
1825 select CRYPTO_USER_API
1826 help
1827 This option enables the user-spaces interface for symmetric
1828 key cipher algorithms.
1829
Stephan Mueller2f3755382014-12-25 23:00:39 +01001830config CRYPTO_USER_API_RNG
1831 tristate "User-space interface for random number generator algorithms"
1832 depends on NET
1833 select CRYPTO_RNG
1834 select CRYPTO_USER_API
1835 help
1836 This option enables the user-spaces interface for random
1837 number generator algorithms.
1838
Herbert Xub64a2d92015-05-28 11:30:35 +08001839config CRYPTO_USER_API_AEAD
1840 tristate "User-space interface for AEAD cipher algorithms"
1841 depends on NET
1842 select CRYPTO_AEAD
Stephan Mueller72548b02017-07-30 14:32:58 +02001843 select CRYPTO_BLKCIPHER
1844 select CRYPTO_NULL
Herbert Xub64a2d92015-05-28 11:30:35 +08001845 select CRYPTO_USER_API
1846 help
1847 This option enables the user-spaces interface for AEAD
1848 cipher algorithms.
1849
Dmitry Kasatkinee089972013-05-06 15:40:01 +03001850config CRYPTO_HASH_INFO
1851 bool
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853source "drivers/crypto/Kconfig"
David Howells964f3b32012-09-13 15:17:21 +01001854source crypto/asymmetric_keys/Kconfig
David Howellscfc411e2015-08-14 15:20:41 +01001855source certs/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Herbert Xucce9e062006-08-21 21:08:13 +10001857endif # if CRYPTO