blob: f7911963bb79cfad6231e41aabdbb5073e0e45b1 [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
109
110config CRYPTO_ACOMP
111 tristate
112 select CRYPTO_ALGAPI
113 select CRYPTO_ACOMP2
114
Tadeusz Strukcfc2bb32015-06-16 10:31:01 -0700115config CRYPTO_RSA
116 tristate "RSA algorithm"
Tadeusz Struk425e0172015-06-19 10:27:39 -0700117 select CRYPTO_AKCIPHER
Tadeusz Struk58446fe2016-05-04 06:38:46 -0700118 select CRYPTO_MANAGER
Tadeusz Strukcfc2bb32015-06-16 10:31:01 -0700119 select MPILIB
120 select ASN1
121 help
122 Generic implementation of the RSA public key algorithm.
123
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100124config CRYPTO_DH
125 tristate "Diffie-Hellman algorithm"
126 select CRYPTO_KPP
127 select MPILIB
128 help
129 Generic implementation of the Diffie-Hellman algorithm.
130
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +0100131config CRYPTO_ECDH
132 tristate "ECDH algorithm"
133 select CRYTPO_KPP
Tudor-Dan Ambarus6755fd22017-05-30 17:52:48 +0300134 select CRYPTO_RNG_DEFAULT
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +0100135 help
136 Generic implementation of the ECDH algorithm
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100137
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000138config CRYPTO_MANAGER
139 tristate "Cryptographic algorithm manager"
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100140 select CRYPTO_MANAGER2
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000141 help
142 Create default cryptographic template instantiations such as
143 cbc(aes).
144
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100145config CRYPTO_MANAGER2
146 def_tristate CRYPTO_MANAGER || (CRYPTO_MANAGER!=n && CRYPTO_ALGAPI=y)
147 select CRYPTO_AEAD2
148 select CRYPTO_HASH2
149 select CRYPTO_BLKCIPHER2
Tadeusz Struk946cc462015-06-16 10:31:06 -0700150 select CRYPTO_AKCIPHER2
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100151 select CRYPTO_KPP2
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100152 select CRYPTO_ACOMP2
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100153
Steffen Klasserta38f7902011-09-27 07:23:50 +0200154config CRYPTO_USER
155 tristate "Userspace cryptographic algorithm configuration"
Herbert Xu5db017a2011-11-01 12:12:43 +1100156 depends on NET
Steffen Klasserta38f7902011-09-27 07:23:50 +0200157 select CRYPTO_MANAGER
158 help
Valdis.Kletnieks@vt.edud19978f2011-11-09 01:29:20 -0500159 Userspace configuration for cryptographic instantiations such as
Steffen Klasserta38f7902011-09-27 07:23:50 +0200160 cbc(aes).
161
Herbert Xu326a6342010-08-06 09:40:28 +0800162config CRYPTO_MANAGER_DISABLE_TESTS
163 bool "Disable run-time self tests"
Herbert Xu00ca28a2010-08-06 10:34:00 +0800164 default y
165 depends on CRYPTO_MANAGER2
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000166 help
Herbert Xu326a6342010-08-06 09:40:28 +0800167 Disable run-time self tests that normally take place at
168 algorithm registration.
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000169
Rik Snelc494e072006-11-29 18:59:44 +1100170config CRYPTO_GF128MUL
Jussi Kivilinna08c70fc2011-12-13 12:53:22 +0200171 tristate "GF(2^128) multiplication functions"
Rik Snelc494e072006-11-29 18:59:44 +1100172 help
173 Efficient table driven implementation of multiplications in the
174 field GF(2^128). This is needed by some cypher modes. This
175 option will be selected automatically if you select such a
176 cipher mode. Only select this option by hand if you expect to load
177 an external module that requires these functions.
178
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800179config CRYPTO_NULL
180 tristate "Null algorithms"
Herbert Xu149a3972015-08-13 17:28:58 +0800181 select CRYPTO_NULL2
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800182 help
183 These are 'Null' algorithms, used by IPsec, which do nothing.
184
Herbert Xu149a3972015-08-13 17:28:58 +0800185config CRYPTO_NULL2
Herbert Xudd43c4e2015-08-17 20:39:40 +0800186 tristate
Herbert Xu149a3972015-08-13 17:28:58 +0800187 select CRYPTO_ALGAPI2
188 select CRYPTO_BLKCIPHER2
189 select CRYPTO_HASH2
190
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100191config CRYPTO_PCRYPT
Kees Cook3b4afaf2012-10-02 11:16:49 -0700192 tristate "Parallel crypto engine"
193 depends on SMP
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100194 select PADATA
195 select CRYPTO_MANAGER
196 select CRYPTO_AEAD
197 help
198 This converts an arbitrary crypto algorithm into a parallel
199 algorithm that executes in kernel threads.
200
Huang Ying25c38d32009-02-19 14:33:40 +0800201config CRYPTO_WORKQUEUE
202 tristate
203
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800204config CRYPTO_CRYPTD
205 tristate "Software async crypto daemon"
Herbert Xudb131ef2006-09-21 11:44:08 +1000206 select CRYPTO_BLKCIPHER
Loc Hob8a28252008-05-14 21:23:00 +0800207 select CRYPTO_HASH
Herbert Xu43518402006-10-16 21:28:58 +1000208 select CRYPTO_MANAGER
Huang Ying254eff72009-02-19 14:42:19 +0800209 select CRYPTO_WORKQUEUE
Herbert Xudb131ef2006-09-21 11:44:08 +1000210 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800211 This is a generic software asynchronous crypto daemon that
212 converts an arbitrary synchronous software crypto algorithm
213 into an asynchronous algorithm that executes in a kernel thread.
214
Tim Chen1e65b812014-07-31 10:29:51 -0700215config CRYPTO_MCRYPTD
216 tristate "Software async multi-buffer crypto daemon"
217 select CRYPTO_BLKCIPHER
218 select CRYPTO_HASH
219 select CRYPTO_MANAGER
220 select CRYPTO_WORKQUEUE
221 help
222 This is a generic software asynchronous crypto daemon that
223 provides the kernel thread to assist multi-buffer crypto
224 algorithms for submitting jobs and flushing jobs in multi-buffer
225 crypto algorithms. Multi-buffer crypto algorithms are executed
226 in the context of this kernel thread and drivers can post
Ted Percival0e566732014-09-04 15:18:21 +0800227 their crypto request asynchronously to be processed by this daemon.
Tim Chen1e65b812014-07-31 10:29:51 -0700228
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800229config CRYPTO_AUTHENC
230 tristate "Authenc support"
231 select CRYPTO_AEAD
232 select CRYPTO_BLKCIPHER
233 select CRYPTO_MANAGER
234 select CRYPTO_HASH
Herbert Xue94c6a72015-08-04 21:23:14 +0800235 select CRYPTO_NULL
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800236 help
237 Authenc: Combined mode wrapper for IPsec.
238 This is required for IPSec.
239
240config CRYPTO_TEST
241 tristate "Testing module"
242 depends on m
Herbert Xuda7f0332008-07-31 17:08:25 +0800243 select CRYPTO_MANAGER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800244 help
245 Quick & dirty crypto test module.
246
Ard Biesheuvela62b01c2013-09-20 09:55:40 +0200247config CRYPTO_ABLK_HELPER
Jussi Kivilinnaffaf9152012-06-18 14:06:58 +0300248 tristate
Jussi Kivilinnaffaf9152012-06-18 14:06:58 +0300249 select CRYPTO_CRYPTD
250
Herbert Xu266d0512016-11-22 20:08:25 +0800251config CRYPTO_SIMD
252 tristate
253 select CRYPTO_CRYPTD
254
Jussi Kivilinna596d8752012-06-18 14:07:19 +0300255config CRYPTO_GLUE_HELPER_X86
256 tristate
257 depends on X86
Herbert Xu065ce322016-11-22 20:08:29 +0800258 select CRYPTO_BLKCIPHER
Jussi Kivilinna596d8752012-06-18 14:07:19 +0300259
Baolin Wang735d37b2016-01-26 20:25:39 +0800260config CRYPTO_ENGINE
261 tristate
262
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800263comment "Authenticated Encryption with Associated Data"
264
265config CRYPTO_CCM
266 tristate "CCM support"
267 select CRYPTO_CTR
Ard Biesheuvelf15f05b2017-02-03 14:49:36 +0000268 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800269 select CRYPTO_AEAD
270 help
271 Support for Counter with CBC MAC. Required for IPsec.
272
273config CRYPTO_GCM
274 tristate "GCM/GMAC support"
275 select CRYPTO_CTR
276 select CRYPTO_AEAD
Huang Ying9382d972009-08-06 15:34:26 +1000277 select CRYPTO_GHASH
Jussi Kivilinna9489667d2013-04-07 16:43:41 +0300278 select CRYPTO_NULL
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800279 help
280 Support for Galois/Counter Mode (GCM) and Galois Message
281 Authentication Code (GMAC). Required for IPSec.
282
Martin Willi71ebc4d2015-06-01 13:44:00 +0200283config CRYPTO_CHACHA20POLY1305
284 tristate "ChaCha20-Poly1305 AEAD support"
285 select CRYPTO_CHACHA20
286 select CRYPTO_POLY1305
287 select CRYPTO_AEAD
288 help
289 ChaCha20-Poly1305 AEAD support, RFC7539.
290
291 Support for the AEAD wrapper using the ChaCha20 stream cipher combined
292 with the Poly1305 authenticator. It is defined in RFC7539 for use in
293 IETF protocols.
294
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800295config CRYPTO_SEQIV
296 tristate "Sequence Number IV Generator"
297 select CRYPTO_AEAD
298 select CRYPTO_BLKCIPHER
Herbert Xu856e3f402015-05-21 15:11:13 +0800299 select CRYPTO_NULL
Herbert Xu401e4232015-06-03 14:49:31 +0800300 select CRYPTO_RNG_DEFAULT
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800301 help
302 This IV generator generates an IV based on a sequence number by
303 xoring it with a salt. This algorithm is mainly useful for CTR
304
Herbert Xua10f5542015-05-21 15:11:15 +0800305config CRYPTO_ECHAINIV
306 tristate "Encrypted Chain IV Generator"
307 select CRYPTO_AEAD
308 select CRYPTO_NULL
Herbert Xu401e4232015-06-03 14:49:31 +0800309 select CRYPTO_RNG_DEFAULT
Herbert Xu34912442015-06-03 14:49:29 +0800310 default m
Herbert Xua10f5542015-05-21 15:11:15 +0800311 help
312 This IV generator generates an IV based on the encryption of
313 a sequence number xored with a salt. This is the default
314 algorithm for CBC.
315
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800316comment "Block modes"
Herbert Xudb131ef2006-09-21 11:44:08 +1000317
318config CRYPTO_CBC
319 tristate "CBC support"
320 select CRYPTO_BLKCIPHER
Herbert Xu43518402006-10-16 21:28:58 +1000321 select CRYPTO_MANAGER
Herbert Xudb131ef2006-09-21 11:44:08 +1000322 help
323 CBC: Cipher Block Chaining mode
324 This block cipher algorithm is required for IPSec.
325
Joy Latten23e353c2007-10-23 08:50:32 +0800326config CRYPTO_CTR
327 tristate "CTR support"
328 select CRYPTO_BLKCIPHER
Herbert Xu0a270322007-11-30 21:38:37 +1100329 select CRYPTO_SEQIV
Joy Latten23e353c2007-10-23 08:50:32 +0800330 select CRYPTO_MANAGER
Joy Latten23e353c2007-10-23 08:50:32 +0800331 help
332 CTR: Counter mode
333 This block cipher algorithm is required for IPSec.
334
Kevin Coffman76cb9522008-03-24 21:26:16 +0800335config CRYPTO_CTS
336 tristate "CTS support"
337 select CRYPTO_BLKCIPHER
338 help
339 CTS: Cipher Text Stealing
340 This is the Cipher Text Stealing mode as described by
341 Section 8 of rfc2040 and referenced by rfc3962.
342 (rfc3962 includes errata information in its Appendix A)
343 This mode is required for Kerberos gss mechanism support
344 for AES encryption.
345
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800346config CRYPTO_ECB
347 tristate "ECB support"
Herbert Xu653ebd92007-11-27 19:48:27 +0800348 select CRYPTO_BLKCIPHER
Herbert Xu124b53d2007-04-16 20:49:20 +1000349 select CRYPTO_MANAGER
350 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800351 ECB: Electronic CodeBook mode
352 This is the simplest block cipher algorithm. It simply encrypts
353 the input block by block.
Herbert Xu124b53d2007-04-16 20:49:20 +1000354
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800355config CRYPTO_LRW
Jussi Kivilinna2470a2b2011-12-13 12:52:51 +0200356 tristate "LRW support"
David Howells90831632006-12-16 12:13:14 +1100357 select CRYPTO_BLKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800358 select CRYPTO_MANAGER
359 select CRYPTO_GF128MUL
David Howells90831632006-12-16 12:13:14 +1100360 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800361 LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable
362 narrow block cipher mode for dm-crypt. Use it with cipher
363 specification string aes-lrw-benbi, the key must be 256, 320 or 384.
364 The first 128, 192 or 256 bits in the key are used for AES and the
365 rest is used to tie each cipher block to its logical position.
David Howells90831632006-12-16 12:13:14 +1100366
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800367config CRYPTO_PCBC
368 tristate "PCBC support"
369 select CRYPTO_BLKCIPHER
370 select CRYPTO_MANAGER
371 help
372 PCBC: Propagating Cipher Block Chaining mode
373 This block cipher algorithm is required for RxRPC.
374
375config CRYPTO_XTS
Jussi Kivilinna5bcf8e62011-12-13 12:52:56 +0200376 tristate "XTS support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800377 select CRYPTO_BLKCIPHER
378 select CRYPTO_MANAGER
Milan Broz12cb3a12017-02-23 08:38:26 +0100379 select CRYPTO_ECB
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800380 help
381 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain,
382 key size 256, 384 or 512 bits. This implementation currently
383 can't handle a sectorsize which is not a multiple of 16 bytes.
384
Stephan Mueller1c49678e2015-09-21 20:58:56 +0200385config CRYPTO_KEYWRAP
386 tristate "Key wrapping support"
387 select CRYPTO_BLKCIPHER
388 help
389 Support for key wrapping (NIST SP800-38F / RFC3394) without
390 padding.
391
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800392comment "Hash modes"
393
Jussi Kivilinna93b5e862013-04-08 10:48:44 +0300394config CRYPTO_CMAC
395 tristate "CMAC support"
396 select CRYPTO_HASH
397 select CRYPTO_MANAGER
398 help
399 Cipher-based Message Authentication Code (CMAC) specified by
400 The National Institute of Standards and Technology (NIST).
401
402 https://tools.ietf.org/html/rfc4493
403 http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf
404
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800405config CRYPTO_HMAC
406 tristate "HMAC support"
407 select CRYPTO_HASH
408 select CRYPTO_MANAGER
409 help
410 HMAC: Keyed-Hashing for Message Authentication (RFC2104).
411 This is required for IPSec.
412
413config CRYPTO_XCBC
414 tristate "XCBC support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800415 select CRYPTO_HASH
416 select CRYPTO_MANAGER
417 help
418 XCBC: Keyed-Hashing with encryption algorithm
419 http://www.ietf.org/rfc/rfc3566.txt
420 http://csrc.nist.gov/encryption/modes/proposedmodes/
421 xcbc-mac/xcbc-mac-spec.pdf
422
Shane Wangf1939f72009-09-02 20:05:22 +1000423config CRYPTO_VMAC
424 tristate "VMAC support"
Shane Wangf1939f72009-09-02 20:05:22 +1000425 select CRYPTO_HASH
426 select CRYPTO_MANAGER
427 help
428 VMAC is a message authentication algorithm designed for
429 very high speed on 64-bit architectures.
430
431 See also:
432 <http://fastcrypto.org/vmac>
433
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800434comment "Digest"
435
436config CRYPTO_CRC32C
437 tristate "CRC32c CRC algorithm"
Herbert Xu5773a3e2008-07-08 20:54:28 +0800438 select CRYPTO_HASH
Darrick J. Wong6a0962b2012-03-23 15:02:25 -0700439 select CRC32
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800440 help
441 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
442 by iSCSI for header and data digests and by others.
Herbert Xu69c35ef2008-11-07 15:11:47 +0800443 See Castagnoli93. Module will be crc32c.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800444
Austin Zhang8cb51ba2008-08-07 09:57:03 +0800445config CRYPTO_CRC32C_INTEL
446 tristate "CRC32c INTEL hardware acceleration"
447 depends on X86
448 select CRYPTO_HASH
449 help
450 In Intel processor with SSE4.2 supported, the processor will
451 support CRC32C implementation using hardware accelerated CRC32
452 instruction. This option will create 'crc32c-intel' module,
453 which will enable any routine to use the CRC32 instruction to
454 gain performance compared with software implementation.
455 Module will be crc32c-intel.
456
Jean Delvare7cf31862016-11-22 10:32:44 +0100457config CRYPTO_CRC32C_VPMSUM
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000458 tristate "CRC32c CRC algorithm (powerpc64)"
Michael Ellermanc12abf32016-08-09 08:46:15 +1000459 depends on PPC64 && ALTIVEC
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000460 select CRYPTO_HASH
461 select CRC32
462 help
463 CRC32c algorithm implemented using vector polynomial multiply-sum
464 (vpmsum) instructions, introduced in POWER8. Enable on POWER8
465 and newer processors for improved performance.
466
467
David S. Miller442a7c42012-08-22 20:47:36 -0700468config CRYPTO_CRC32C_SPARC64
469 tristate "CRC32c CRC algorithm (SPARC64)"
470 depends on SPARC64
471 select CRYPTO_HASH
472 select CRC32
473 help
474 CRC32c CRC algorithm implemented using sparc64 crypto instructions,
475 when available.
476
Alexander Boyko78c37d12013-01-10 18:54:59 +0400477config CRYPTO_CRC32
478 tristate "CRC32 CRC algorithm"
479 select CRYPTO_HASH
480 select CRC32
481 help
482 CRC-32-IEEE 802.3 cyclic redundancy-check algorithm.
483 Shash crypto api wrappers to crc32_le function.
484
485config CRYPTO_CRC32_PCLMUL
486 tristate "CRC32 PCLMULQDQ hardware acceleration"
487 depends on X86
488 select CRYPTO_HASH
489 select CRC32
490 help
491 From Intel Westmere and AMD Bulldozer processor with SSE4.2
492 and PCLMULQDQ supported, the processor will support
493 CRC32 PCLMULQDQ implementation using hardware accelerated PCLMULQDQ
494 instruction. This option will create 'crc32-plcmul' module,
495 which will enable any routine to use the CRC-32-IEEE 802.3 checksum
496 and gain better performance as compared with the table implementation.
497
Herbert Xu684115212013-09-07 12:56:26 +1000498config CRYPTO_CRCT10DIF
499 tristate "CRCT10DIF algorithm"
500 select CRYPTO_HASH
501 help
502 CRC T10 Data Integrity Field computation is being cast as
503 a crypto transform. This allows for faster crc t10 diff
504 transforms to be used if they are available.
505
506config CRYPTO_CRCT10DIF_PCLMUL
507 tristate "CRCT10DIF PCLMULQDQ hardware acceleration"
508 depends on X86 && 64BIT && CRC_T10DIF
509 select CRYPTO_HASH
510 help
511 For x86_64 processors with SSE4.2 and PCLMULQDQ supported,
512 CRC T10 DIF PCLMULQDQ computation can be hardware
513 accelerated PCLMULQDQ instruction. This option will create
514 'crct10dif-plcmul' module, which is faster when computing the
515 crct10dif checksum as compared with the generic table implementation.
516
Daniel Axtensb01df1c2017-03-15 23:37:36 +1100517config CRYPTO_CRCT10DIF_VPMSUM
518 tristate "CRC32T10DIF powerpc64 hardware acceleration"
519 depends on PPC64 && ALTIVEC && CRC_T10DIF
520 select CRYPTO_HASH
521 help
522 CRC10T10DIF algorithm implemented using vector polynomial
523 multiply-sum (vpmsum) instructions, introduced in POWER8. Enable on
524 POWER8 and newer processors for improved performance.
525
Daniel Axtens146c8682017-03-15 23:37:37 +1100526config CRYPTO_VPMSUM_TESTER
527 tristate "Powerpc64 vpmsum hardware acceleration tester"
528 depends on CRYPTO_CRCT10DIF_VPMSUM && CRYPTO_CRC32C_VPMSUM
529 help
530 Stress test for CRC32c and CRC-T10DIF algorithms implemented with
531 POWER8 vpmsum instructions.
532 Unless you are testing these algorithms, you don't need this.
533
Huang Ying2cdc6892009-08-06 15:32:38 +1000534config CRYPTO_GHASH
535 tristate "GHASH digest algorithm"
Huang Ying2cdc6892009-08-06 15:32:38 +1000536 select CRYPTO_GF128MUL
Arnd Bergmann578c60f2016-01-25 17:51:21 +0100537 select CRYPTO_HASH
Huang Ying2cdc6892009-08-06 15:32:38 +1000538 help
539 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
540
Martin Willif979e012015-06-01 13:43:58 +0200541config CRYPTO_POLY1305
542 tristate "Poly1305 authenticator algorithm"
Arnd Bergmann578c60f2016-01-25 17:51:21 +0100543 select CRYPTO_HASH
Martin Willif979e012015-06-01 13:43:58 +0200544 help
545 Poly1305 authenticator algorithm, RFC7539.
546
547 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
548 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
549 in IETF protocols. This is the portable C implementation of Poly1305.
550
Martin Willic70f4ab2015-07-16 19:14:06 +0200551config CRYPTO_POLY1305_X86_64
Martin Willib1ccc8f2015-07-16 19:14:08 +0200552 tristate "Poly1305 authenticator algorithm (x86_64/SSE2/AVX2)"
Martin Willic70f4ab2015-07-16 19:14:06 +0200553 depends on X86 && 64BIT
554 select CRYPTO_POLY1305
555 help
556 Poly1305 authenticator algorithm, RFC7539.
557
558 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
559 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
560 in IETF protocols. This is the x86_64 assembler implementation using SIMD
561 instructions.
562
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800563config CRYPTO_MD4
564 tristate "MD4 digest algorithm"
Adrian-Ken Rueegsegger808a1762008-12-03 19:55:27 +0800565 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800567 MD4 message digest algorithm (RFC1320).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800569config CRYPTO_MD5
570 tristate "MD5 digest algorithm"
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800571 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800573 MD5 message digest algorithm (RFC1321).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Aaro Koskinend69e75d2014-12-21 22:54:02 +0200575config CRYPTO_MD5_OCTEON
576 tristate "MD5 digest algorithm (OCTEON)"
577 depends on CPU_CAVIUM_OCTEON
578 select CRYPTO_MD5
579 select CRYPTO_HASH
580 help
581 MD5 message digest algorithm (RFC1321) implemented
582 using OCTEON crypto instructions, when available.
583
Markus Stockhausene8e59952015-03-01 19:30:46 +0100584config CRYPTO_MD5_PPC
585 tristate "MD5 digest algorithm (PPC)"
586 depends on PPC
587 select CRYPTO_HASH
588 help
589 MD5 message digest algorithm (RFC1321) implemented
590 in PPC assembler.
591
David S. Millerfa4dfed2012-08-19 21:51:26 -0700592config CRYPTO_MD5_SPARC64
593 tristate "MD5 digest algorithm (SPARC64)"
594 depends on SPARC64
595 select CRYPTO_MD5
596 select CRYPTO_HASH
597 help
598 MD5 message digest algorithm (RFC1321) implemented
599 using sparc64 crypto instructions, when available.
600
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800601config CRYPTO_MICHAEL_MIC
602 tristate "Michael MIC keyed digest algorithm"
Adrian-Ken Rueegsegger19e2bf12008-12-07 19:35:38 +0800603 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800604 help
605 Michael MIC is used for message integrity protection in TKIP
606 (IEEE 802.11i). This algorithm is required for TKIP, but it
607 should not be used for other purposes because of the weakness
608 of the algorithm.
609
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800610config CRYPTO_RMD128
Adrian Bunkb6d44342008-07-16 19:28:00 +0800611 tristate "RIPEMD-128 digest algorithm"
Herbert Xu7c4468b2008-11-08 09:10:40 +0800612 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800613 help
614 RIPEMD-128 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800615
Adrian Bunkb6d44342008-07-16 19:28:00 +0800616 RIPEMD-128 is a 128-bit cryptographic hash function. It should only
Michael Witten35ed4b32011-07-09 04:02:31 +0000617 be used as a secure replacement for RIPEMD. For other use cases,
Adrian Bunkb6d44342008-07-16 19:28:00 +0800618 RIPEMD-160 should be used.
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800619
Adrian Bunkb6d44342008-07-16 19:28:00 +0800620 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800621 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800622
623config CRYPTO_RMD160
Adrian Bunkb6d44342008-07-16 19:28:00 +0800624 tristate "RIPEMD-160 digest algorithm"
Herbert Xue5835fb2008-11-08 09:18:51 +0800625 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800626 help
627 RIPEMD-160 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800628
Adrian Bunkb6d44342008-07-16 19:28:00 +0800629 RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
630 to be used as a secure replacement for the 128-bit hash functions
631 MD4, MD5 and it's predecessor RIPEMD
632 (not to be confused with RIPEMD-128).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800633
Adrian Bunkb6d44342008-07-16 19:28:00 +0800634 It's speed is comparable to SHA1 and there are no known attacks
635 against RIPEMD-160.
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800636
Adrian Bunkb6d44342008-07-16 19:28:00 +0800637 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800638 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800639
640config CRYPTO_RMD256
Adrian Bunkb6d44342008-07-16 19:28:00 +0800641 tristate "RIPEMD-256 digest algorithm"
Herbert Xud8a5e2e2008-11-08 09:58:10 +0800642 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800643 help
644 RIPEMD-256 is an optional extension of RIPEMD-128 with a
645 256 bit hash. It is intended for applications that require
646 longer hash-results, without needing a larger security level
647 (than RIPEMD-128).
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800648
Adrian Bunkb6d44342008-07-16 19:28:00 +0800649 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800650 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800651
652config CRYPTO_RMD320
Adrian Bunkb6d44342008-07-16 19:28:00 +0800653 tristate "RIPEMD-320 digest algorithm"
Herbert Xu3b8efb42008-11-08 10:11:09 +0800654 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800655 help
656 RIPEMD-320 is an optional extension of RIPEMD-160 with a
657 320 bit hash. It is intended for applications that require
658 longer hash-results, without needing a larger security level
659 (than RIPEMD-160).
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800660
Adrian Bunkb6d44342008-07-16 19:28:00 +0800661 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800662 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800663
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800664config CRYPTO_SHA1
665 tristate "SHA1 digest algorithm"
Adrian-Ken Rueegsegger54ccb362008-12-02 21:08:20 +0800666 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800667 help
668 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
669
Mathias Krause66be8952011-08-04 20:19:25 +0200670config CRYPTO_SHA1_SSSE3
time38b6b72015-09-10 15:27:26 -0700671 tristate "SHA1 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Mathias Krause66be8952011-08-04 20:19:25 +0200672 depends on X86 && 64BIT
673 select CRYPTO_SHA1
674 select CRYPTO_HASH
675 help
676 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
677 using Supplemental SSE3 (SSSE3) instructions or Advanced Vector
time38b6b72015-09-10 15:27:26 -0700678 Extensions (AVX/AVX2) or SHA-NI(SHA Extensions New Instructions),
679 when available.
Mathias Krause66be8952011-08-04 20:19:25 +0200680
Tim Chen8275d1a2013-03-26 13:59:17 -0700681config CRYPTO_SHA256_SSSE3
time38b6b72015-09-10 15:27:26 -0700682 tristate "SHA256 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Tim Chen8275d1a2013-03-26 13:59:17 -0700683 depends on X86 && 64BIT
684 select CRYPTO_SHA256
685 select CRYPTO_HASH
686 help
687 SHA-256 secure hash standard (DFIPS 180-2) implemented
688 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
689 Extensions version 1 (AVX1), or Advanced Vector Extensions
time38b6b72015-09-10 15:27:26 -0700690 version 2 (AVX2) instructions, or SHA-NI (SHA Extensions New
691 Instructions) when available.
Tim Chen8275d1a2013-03-26 13:59:17 -0700692
Tim Chen87de4572013-03-26 14:00:02 -0700693config CRYPTO_SHA512_SSSE3
694 tristate "SHA512 digest algorithm (SSSE3/AVX/AVX2)"
695 depends on X86 && 64BIT
696 select CRYPTO_SHA512
697 select CRYPTO_HASH
698 help
699 SHA-512 secure hash standard (DFIPS 180-2) implemented
700 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
701 Extensions version 1 (AVX1), or Advanced Vector Extensions
702 version 2 (AVX2) instructions, when available.
703
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200704config CRYPTO_SHA1_OCTEON
705 tristate "SHA1 digest algorithm (OCTEON)"
706 depends on CPU_CAVIUM_OCTEON
707 select CRYPTO_SHA1
708 select CRYPTO_HASH
709 help
710 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
711 using OCTEON crypto instructions, when available.
712
David S. Miller4ff28d42012-08-19 15:41:53 -0700713config CRYPTO_SHA1_SPARC64
714 tristate "SHA1 digest algorithm (SPARC64)"
715 depends on SPARC64
716 select CRYPTO_SHA1
717 select CRYPTO_HASH
718 help
719 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
720 using sparc64 crypto instructions, when available.
721
Michael Ellerman323a6bf2012-09-13 23:00:49 +0000722config CRYPTO_SHA1_PPC
723 tristate "SHA1 digest algorithm (powerpc)"
724 depends on PPC
725 help
726 This is the powerpc hardware accelerated implementation of the
727 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
728
Markus Stockhausend9850fc2015-02-24 20:36:50 +0100729config CRYPTO_SHA1_PPC_SPE
730 tristate "SHA1 digest algorithm (PPC SPE)"
731 depends on PPC && SPE
732 help
733 SHA-1 secure hash standard (DFIPS 180-4) implemented
734 using powerpc SPE SIMD instruction set.
735
Tim Chen1e65b812014-07-31 10:29:51 -0700736config CRYPTO_SHA1_MB
737 tristate "SHA1 digest algorithm (x86_64 Multi-Buffer, Experimental)"
738 depends on X86 && 64BIT
739 select CRYPTO_SHA1
740 select CRYPTO_HASH
741 select CRYPTO_MCRYPTD
742 help
743 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
744 using multi-buffer technique. This algorithm computes on
745 multiple data lanes concurrently with SIMD instructions for
746 better throughput. It should not be enabled by default but
747 used when there is significant amount of work to keep the keep
748 the data lanes filled to get performance benefit. If the data
749 lanes remain unfilled, a flush operation will be initiated to
750 process the crypto jobs, adding a slight latency.
751
Megha Dey9be7e242016-06-23 18:40:43 -0700752config CRYPTO_SHA256_MB
753 tristate "SHA256 digest algorithm (x86_64 Multi-Buffer, Experimental)"
754 depends on X86 && 64BIT
755 select CRYPTO_SHA256
756 select CRYPTO_HASH
757 select CRYPTO_MCRYPTD
758 help
759 SHA-256 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
760 using multi-buffer technique. This algorithm computes on
761 multiple data lanes concurrently with SIMD instructions for
762 better throughput. It should not be enabled by default but
763 used when there is significant amount of work to keep the keep
764 the data lanes filled to get performance benefit. If the data
765 lanes remain unfilled, a flush operation will be initiated to
766 process the crypto jobs, adding a slight latency.
767
Megha Dey026bb8a2016-06-27 10:20:05 -0700768config CRYPTO_SHA512_MB
769 tristate "SHA512 digest algorithm (x86_64 Multi-Buffer, Experimental)"
770 depends on X86 && 64BIT
771 select CRYPTO_SHA512
772 select CRYPTO_HASH
773 select CRYPTO_MCRYPTD
774 help
775 SHA-512 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
776 using multi-buffer technique. This algorithm computes on
777 multiple data lanes concurrently with SIMD instructions for
778 better throughput. It should not be enabled by default but
779 used when there is significant amount of work to keep the keep
780 the data lanes filled to get performance benefit. If the data
781 lanes remain unfilled, a flush operation will be initiated to
782 process the crypto jobs, adding a slight latency.
783
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800784config CRYPTO_SHA256
785 tristate "SHA224 and SHA256 digest algorithm"
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +0800786 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800787 help
788 SHA256 secure hash standard (DFIPS 180-2).
789
790 This version of SHA implements a 256 bit hash with 128 bits of
791 security against collision attacks.
792
Adrian Bunkb6d44342008-07-16 19:28:00 +0800793 This code also includes SHA-224, a 224 bit hash with 112 bits
794 of security against collision attacks.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800795
Markus Stockhausen2ecc1e92015-01-30 15:39:34 +0100796config CRYPTO_SHA256_PPC_SPE
797 tristate "SHA224 and SHA256 digest algorithm (PPC SPE)"
798 depends on PPC && SPE
799 select CRYPTO_SHA256
800 select CRYPTO_HASH
801 help
802 SHA224 and SHA256 secure hash standard (DFIPS 180-2)
803 implemented using powerpc SPE SIMD instruction set.
804
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200805config CRYPTO_SHA256_OCTEON
806 tristate "SHA224 and SHA256 digest algorithm (OCTEON)"
807 depends on CPU_CAVIUM_OCTEON
808 select CRYPTO_SHA256
809 select CRYPTO_HASH
810 help
811 SHA-256 secure hash standard (DFIPS 180-2) implemented
812 using OCTEON crypto instructions, when available.
813
David S. Miller86c93b22012-08-19 17:11:37 -0700814config CRYPTO_SHA256_SPARC64
815 tristate "SHA224 and SHA256 digest algorithm (SPARC64)"
816 depends on SPARC64
817 select CRYPTO_SHA256
818 select CRYPTO_HASH
819 help
820 SHA-256 secure hash standard (DFIPS 180-2) implemented
821 using sparc64 crypto instructions, when available.
822
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800823config CRYPTO_SHA512
824 tristate "SHA384 and SHA512 digest algorithms"
Adrian-Ken Rueegseggerbd9d20d2008-12-17 16:49:02 +1100825 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800826 help
827 SHA512 secure hash standard (DFIPS 180-2).
828
829 This version of SHA implements a 512 bit hash with 256 bits of
830 security against collision attacks.
831
832 This code also includes SHA-384, a 384 bit hash with 192 bits
833 of security against collision attacks.
834
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200835config CRYPTO_SHA512_OCTEON
836 tristate "SHA384 and SHA512 digest algorithms (OCTEON)"
837 depends on CPU_CAVIUM_OCTEON
838 select CRYPTO_SHA512
839 select CRYPTO_HASH
840 help
841 SHA-512 secure hash standard (DFIPS 180-2) implemented
842 using OCTEON crypto instructions, when available.
843
David S. Miller775e0c62012-08-19 17:37:56 -0700844config CRYPTO_SHA512_SPARC64
845 tristate "SHA384 and SHA512 digest algorithm (SPARC64)"
846 depends on SPARC64
847 select CRYPTO_SHA512
848 select CRYPTO_HASH
849 help
850 SHA-512 secure hash standard (DFIPS 180-2) implemented
851 using sparc64 crypto instructions, when available.
852
Jeff Garzik53964b92016-06-17 10:30:35 +0530853config CRYPTO_SHA3
854 tristate "SHA3 digest algorithm"
855 select CRYPTO_HASH
856 help
857 SHA-3 secure hash standard (DFIPS 202). It's based on
858 cryptographic sponge function family called Keccak.
859
860 References:
861 http://keccak.noekeon.org/
862
Gilad Ben-Yossef4f0fc162017-08-21 13:51:28 +0300863config CRYPTO_SM3
864 tristate "SM3 digest algorithm"
865 select CRYPTO_HASH
866 help
867 SM3 secure hash function as defined by OSCCA GM/T 0004-2012 SM3).
868 It is part of the Chinese Commercial Cryptography suite.
869
870 References:
871 http://www.oscca.gov.cn/UpFile/20101222141857786.pdf
872 https://datatracker.ietf.org/doc/html/draft-shen-sm3-hash
873
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800874config CRYPTO_TGR192
875 tristate "Tiger digest algorithms"
Adrian-Ken Rueegseggerf63fbd32008-12-03 19:58:32 +0800876 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800877 help
878 Tiger hash algorithm 192, 160 and 128-bit hashes
879
880 Tiger is a hash function optimized for 64-bit processors while
881 still having decent performance on 32-bit processors.
882 Tiger was developed by Ross Anderson and Eli Biham.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 See also:
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800885 <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
886
887config CRYPTO_WP512
888 tristate "Whirlpool digest algorithms"
Adrian-Ken Rueegsegger49465102008-12-07 19:34:37 +0800889 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800890 help
891 Whirlpool hash algorithm 512, 384 and 256-bit hashes
892
893 Whirlpool-512 is part of the NESSIE cryptographic primitives.
894 Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard
895
896 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800897 <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800898
Huang Ying0e1227d2009-10-19 11:53:06 +0900899config CRYPTO_GHASH_CLMUL_NI_INTEL
900 tristate "GHASH digest algorithm (CLMUL-NI accelerated)"
Richard Weinberger8af00862011-06-08 20:56:29 +0800901 depends on X86 && 64BIT
Huang Ying0e1227d2009-10-19 11:53:06 +0900902 select CRYPTO_CRYPTD
903 help
904 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
905 The implementation is accelerated by CLMUL-NI of Intel.
906
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800907comment "Ciphers"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909config CRYPTO_AES
910 tristate "AES cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000911 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800913 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 algorithm.
915
916 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800917 both hardware and software across a wide range of computing
918 environments regardless of its use in feedback or non-feedback
919 modes. Its key setup time is excellent, and its key agility is
920 good. Rijndael's very low memory requirements make it very well
921 suited for restricted-space environments, in which it also
922 demonstrates excellent performance. Rijndael's operations are
923 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800925 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
928
Ard Biesheuvelb5e0b032017-02-02 16:37:40 +0000929config CRYPTO_AES_TI
930 tristate "Fixed time AES cipher"
931 select CRYPTO_ALGAPI
932 help
933 This is a generic implementation of AES that attempts to eliminate
934 data dependent latencies as much as possible without affecting
935 performance too much. It is intended for use by the generic CCM
936 and GCM drivers, and other CTR or CMAC/XCBC based modes that rely
937 solely on encryption (although decryption is supported as well, but
938 with a more dramatic performance hit)
939
940 Instead of using 16 lookup tables of 1 KB each, (8 for encryption and
941 8 for decryption), this implementation only uses just two S-boxes of
942 256 bytes each, and attempts to eliminate data dependent latencies by
943 prefetching the entire table into the cache at the start of each
944 block.
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946config CRYPTO_AES_586
947 tristate "AES cipher algorithms (i586)"
Herbert Xucce9e062006-08-21 21:08:13 +1000948 depends on (X86 || UML_X86) && !64BIT
949 select CRYPTO_ALGAPI
Sebastian Siewior5157dea2007-11-10 19:07:16 +0800950 select CRYPTO_AES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800952 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 algorithm.
954
955 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800956 both hardware and software across a wide range of computing
957 environments regardless of its use in feedback or non-feedback
958 modes. Its key setup time is excellent, and its key agility is
959 good. Rijndael's very low memory requirements make it very well
960 suited for restricted-space environments, in which it also
961 demonstrates excellent performance. Rijndael's operations are
962 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800964 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 See <http://csrc.nist.gov/encryption/aes/> for more information.
967
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700968config CRYPTO_AES_X86_64
969 tristate "AES cipher algorithms (x86_64)"
Herbert Xucce9e062006-08-21 21:08:13 +1000970 depends on (X86 || UML_X86) && 64BIT
971 select CRYPTO_ALGAPI
Sebastian Siewior81190b32007-11-08 21:25:04 +0800972 select CRYPTO_AES
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700973 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800974 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700975 algorithm.
976
977 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800978 both hardware and software across a wide range of computing
979 environments regardless of its use in feedback or non-feedback
980 modes. Its key setup time is excellent, and its key agility is
981 good. Rijndael's very low memory requirements make it very well
982 suited for restricted-space environments, in which it also
983 demonstrates excellent performance. Rijndael's operations are
984 among the easiest to defend against power and timing attacks.
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700985
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800986 The AES specifies three key sizes: 128, 192 and 256 bits
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700987
988 See <http://csrc.nist.gov/encryption/aes/> for more information.
989
Huang Ying54b6a1b2009-01-18 16:28:34 +1100990config CRYPTO_AES_NI_INTEL
991 tristate "AES cipher algorithms (AES-NI)"
Richard Weinberger8af00862011-06-08 20:56:29 +0800992 depends on X86
Herbert Xu85671862016-11-22 20:08:33 +0800993 select CRYPTO_AEAD
Mathias Krause0d258ef2010-11-27 16:34:46 +0800994 select CRYPTO_AES_X86_64 if 64BIT
995 select CRYPTO_AES_586 if !64BIT
Huang Ying54b6a1b2009-01-18 16:28:34 +1100996 select CRYPTO_ALGAPI
Herbert Xu85671862016-11-22 20:08:33 +0800997 select CRYPTO_BLKCIPHER
Jussi Kivilinna7643a112013-04-10 18:39:20 +0300998 select CRYPTO_GLUE_HELPER_X86 if 64BIT
Herbert Xu85671862016-11-22 20:08:33 +0800999 select CRYPTO_SIMD
Huang Ying54b6a1b2009-01-18 16:28:34 +11001000 help
1001 Use Intel AES-NI instructions for AES algorithm.
1002
1003 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1004 algorithm.
1005
1006 Rijndael appears to be consistently a very good performer in
1007 both hardware and software across a wide range of computing
1008 environments regardless of its use in feedback or non-feedback
1009 modes. Its key setup time is excellent, and its key agility is
1010 good. Rijndael's very low memory requirements make it very well
1011 suited for restricted-space environments, in which it also
1012 demonstrates excellent performance. Rijndael's operations are
1013 among the easiest to defend against power and timing attacks.
1014
1015 The AES specifies three key sizes: 128, 192 and 256 bits
1016
1017 See <http://csrc.nist.gov/encryption/aes/> for more information.
1018
Mathias Krause0d258ef2010-11-27 16:34:46 +08001019 In addition to AES cipher algorithm support, the acceleration
1020 for some popular block cipher mode is supported too, including
1021 ECB, CBC, LRW, PCBC, XTS. The 64 bit version has additional
1022 acceleration for CTR.
Huang Ying2cf4ac82009-03-29 15:41:20 +08001023
David S. Miller9bf48522012-08-21 03:58:13 -07001024config CRYPTO_AES_SPARC64
1025 tristate "AES cipher algorithms (SPARC64)"
1026 depends on SPARC64
1027 select CRYPTO_CRYPTD
1028 select CRYPTO_ALGAPI
1029 help
1030 Use SPARC64 crypto opcodes for AES algorithm.
1031
1032 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1033 algorithm.
1034
1035 Rijndael appears to be consistently a very good performer in
1036 both hardware and software across a wide range of computing
1037 environments regardless of its use in feedback or non-feedback
1038 modes. Its key setup time is excellent, and its key agility is
1039 good. Rijndael's very low memory requirements make it very well
1040 suited for restricted-space environments, in which it also
1041 demonstrates excellent performance. Rijndael's operations are
1042 among the easiest to defend against power and timing attacks.
1043
1044 The AES specifies three key sizes: 128, 192 and 256 bits
1045
1046 See <http://csrc.nist.gov/encryption/aes/> for more information.
1047
1048 In addition to AES cipher algorithm support, the acceleration
1049 for some popular block cipher mode is supported too, including
1050 ECB and CBC.
1051
Markus Stockhausen504c6142015-02-22 10:00:10 +01001052config CRYPTO_AES_PPC_SPE
1053 tristate "AES cipher algorithms (PPC SPE)"
1054 depends on PPC && SPE
1055 help
1056 AES cipher algorithms (FIPS-197). Additionally the acceleration
1057 for popular block cipher modes ECB, CBC, CTR and XTS is supported.
1058 This module should only be used for low power (router) devices
1059 without hardware AES acceleration (e.g. caam crypto). It reduces the
1060 size of the AES tables from 16KB to 8KB + 256 bytes and mitigates
1061 timining attacks. Nevertheless it might be not as secure as other
1062 architecture specific assembler implementations that work on 1KB
1063 tables or 256 bytes S-boxes.
1064
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001065config CRYPTO_ANUBIS
1066 tristate "Anubis cipher algorithm"
1067 select CRYPTO_ALGAPI
1068 help
1069 Anubis cipher algorithm.
1070
1071 Anubis is a variable key length cipher which can use keys from
1072 128 bits to 320 bits in length. It was evaluated as a entrant
1073 in the NESSIE competition.
1074
1075 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001076 <https://www.cosic.esat.kuleuven.be/nessie/reports/>
1077 <http://www.larc.usp.br/~pbarreto/AnubisPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001078
1079config CRYPTO_ARC4
1080 tristate "ARC4 cipher algorithm"
Sebastian Andrzej Siewiorb9b0f082012-06-26 18:13:46 +02001081 select CRYPTO_BLKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001082 help
1083 ARC4 cipher algorithm.
1084
1085 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
1086 bits in length. This algorithm is required for driver-based
1087 WEP, but it should not be for other purposes because of the
1088 weakness of the algorithm.
1089
1090config CRYPTO_BLOWFISH
1091 tristate "Blowfish cipher algorithm"
1092 select CRYPTO_ALGAPI
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001093 select CRYPTO_BLOWFISH_COMMON
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001094 help
1095 Blowfish cipher algorithm, by Bruce Schneier.
1096
1097 This is a variable key length cipher which can use keys from 32
1098 bits to 448 bits in length. It's fast, simple and specifically
1099 designed for use on "large microprocessors".
1100
1101 See also:
1102 <http://www.schneier.com/blowfish.html>
1103
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001104config CRYPTO_BLOWFISH_COMMON
1105 tristate
1106 help
1107 Common parts of the Blowfish cipher algorithm shared by the
1108 generic c and the assembler implementations.
1109
1110 See also:
1111 <http://www.schneier.com/blowfish.html>
1112
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001113config CRYPTO_BLOWFISH_X86_64
1114 tristate "Blowfish cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001115 depends on X86 && 64BIT
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001116 select CRYPTO_ALGAPI
1117 select CRYPTO_BLOWFISH_COMMON
1118 help
1119 Blowfish cipher algorithm (x86_64), by Bruce Schneier.
1120
1121 This is a variable key length cipher which can use keys from 32
1122 bits to 448 bits in length. It's fast, simple and specifically
1123 designed for use on "large microprocessors".
1124
1125 See also:
1126 <http://www.schneier.com/blowfish.html>
1127
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001128config CRYPTO_CAMELLIA
1129 tristate "Camellia cipher algorithms"
1130 depends on CRYPTO
1131 select CRYPTO_ALGAPI
1132 help
1133 Camellia cipher algorithms module.
1134
1135 Camellia is a symmetric key block cipher developed jointly
1136 at NTT and Mitsubishi Electric Corporation.
1137
1138 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1139
1140 See also:
1141 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1142
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001143config CRYPTO_CAMELLIA_X86_64
1144 tristate "Camellia cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001145 depends on X86 && 64BIT
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001146 depends on CRYPTO
1147 select CRYPTO_ALGAPI
Jussi Kivilinna964263a2012-06-18 14:07:29 +03001148 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001149 select CRYPTO_LRW
1150 select CRYPTO_XTS
1151 help
1152 Camellia cipher algorithm module (x86_64).
1153
1154 Camellia is a symmetric key block cipher developed jointly
1155 at NTT and Mitsubishi Electric Corporation.
1156
1157 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1158
1159 See also:
1160 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1161
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001162config CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1163 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX)"
1164 depends on X86 && 64BIT
1165 depends on CRYPTO
1166 select CRYPTO_ALGAPI
1167 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001168 select CRYPTO_ABLK_HELPER
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001169 select CRYPTO_GLUE_HELPER_X86
1170 select CRYPTO_CAMELLIA_X86_64
1171 select CRYPTO_LRW
1172 select CRYPTO_XTS
1173 help
1174 Camellia cipher algorithm module (x86_64/AES-NI/AVX).
1175
1176 Camellia is a symmetric key block cipher developed jointly
1177 at NTT and Mitsubishi Electric Corporation.
1178
1179 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1180
1181 See also:
1182 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1183
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001184config CRYPTO_CAMELLIA_AESNI_AVX2_X86_64
1185 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX2)"
1186 depends on X86 && 64BIT
1187 depends on CRYPTO
1188 select CRYPTO_ALGAPI
1189 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001190 select CRYPTO_ABLK_HELPER
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001191 select CRYPTO_GLUE_HELPER_X86
1192 select CRYPTO_CAMELLIA_X86_64
1193 select CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1194 select CRYPTO_LRW
1195 select CRYPTO_XTS
1196 help
1197 Camellia cipher algorithm module (x86_64/AES-NI/AVX2).
1198
1199 Camellia is a symmetric key block cipher developed jointly
1200 at NTT and Mitsubishi Electric Corporation.
1201
1202 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1203
1204 See also:
1205 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1206
David S. Miller81658ad2012-08-28 12:05:54 -07001207config CRYPTO_CAMELLIA_SPARC64
1208 tristate "Camellia cipher algorithm (SPARC64)"
1209 depends on SPARC64
1210 depends on CRYPTO
1211 select CRYPTO_ALGAPI
1212 help
1213 Camellia cipher algorithm module (SPARC64).
1214
1215 Camellia is a symmetric key block cipher developed jointly
1216 at NTT and Mitsubishi Electric Corporation.
1217
1218 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1219
1220 See also:
1221 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1222
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001223config CRYPTO_CAST_COMMON
1224 tristate
1225 help
1226 Common parts of the CAST cipher algorithms shared by the
1227 generic c and the assembler implementations.
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229config CRYPTO_CAST5
1230 tristate "CAST5 (CAST-128) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001231 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001232 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 help
1234 The CAST5 encryption algorithm (synonymous with CAST-128) is
1235 described in RFC2144.
1236
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001237config CRYPTO_CAST5_AVX_X86_64
1238 tristate "CAST5 (CAST-128) cipher algorithm (x86_64/AVX)"
1239 depends on X86 && 64BIT
1240 select CRYPTO_ALGAPI
1241 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001242 select CRYPTO_ABLK_HELPER
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001243 select CRYPTO_CAST_COMMON
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001244 select CRYPTO_CAST5
1245 help
1246 The CAST5 encryption algorithm (synonymous with CAST-128) is
1247 described in RFC2144.
1248
1249 This module provides the Cast5 cipher algorithm that processes
1250 sixteen blocks parallel using the AVX instruction set.
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252config CRYPTO_CAST6
1253 tristate "CAST6 (CAST-256) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001254 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001255 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 help
1257 The CAST6 encryption algorithm (synonymous with CAST-256) is
1258 described in RFC2612.
1259
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001260config CRYPTO_CAST6_AVX_X86_64
1261 tristate "CAST6 (CAST-256) cipher algorithm (x86_64/AVX)"
1262 depends on X86 && 64BIT
1263 select CRYPTO_ALGAPI
1264 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001265 select CRYPTO_ABLK_HELPER
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001266 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001267 select CRYPTO_CAST_COMMON
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001268 select CRYPTO_CAST6
1269 select CRYPTO_LRW
1270 select CRYPTO_XTS
1271 help
1272 The CAST6 encryption algorithm (synonymous with CAST-256) is
1273 described in RFC2612.
1274
1275 This module provides the Cast6 cipher algorithm that processes
1276 eight blocks parallel using the AVX instruction set.
1277
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001278config CRYPTO_DES
1279 tristate "DES and Triple DES EDE cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +10001280 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001282 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
David S. Millerc5aac2d2012-08-25 22:37:23 -07001284config CRYPTO_DES_SPARC64
1285 tristate "DES and Triple DES EDE cipher algorithms (SPARC64)"
Dave Jones97da37b2012-10-02 17:13:20 -04001286 depends on SPARC64
David S. Millerc5aac2d2012-08-25 22:37:23 -07001287 select CRYPTO_ALGAPI
1288 select CRYPTO_DES
1289 help
1290 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3),
1291 optimized using SPARC64 crypto opcodes.
1292
Jussi Kivilinna6574e6c2014-06-09 20:59:54 +03001293config CRYPTO_DES3_EDE_X86_64
1294 tristate "Triple DES EDE cipher algorithm (x86-64)"
1295 depends on X86 && 64BIT
1296 select CRYPTO_ALGAPI
1297 select CRYPTO_DES
1298 help
1299 Triple DES EDE (FIPS 46-3) algorithm.
1300
1301 This module provides implementation of the Triple DES EDE cipher
1302 algorithm that is optimized for x86-64 processors. Two versions of
1303 algorithm are provided; regular processing one input block and
1304 one that processes three blocks parallel.
1305
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001306config CRYPTO_FCRYPT
1307 tristate "FCrypt cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001308 select CRYPTO_ALGAPI
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001309 select CRYPTO_BLKCIPHER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001311 FCrypt algorithm used by RxRPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313config CRYPTO_KHAZAD
1314 tristate "Khazad cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001315 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 help
1317 Khazad cipher algorithm.
1318
1319 Khazad was a finalist in the initial NESSIE competition. It is
1320 an algorithm optimized for 64-bit processors with good performance
1321 on 32-bit processors. Khazad uses an 128 bit key size.
1322
1323 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001324 <http://www.larc.usp.br/~pbarreto/KhazadPage.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Tan Swee Heng2407d602007-11-23 19:45:00 +08001326config CRYPTO_SALSA20
Kees Cook3b4afaf2012-10-02 11:16:49 -07001327 tristate "Salsa20 stream cipher algorithm"
Tan Swee Heng2407d602007-11-23 19:45:00 +08001328 select CRYPTO_BLKCIPHER
1329 help
1330 Salsa20 stream cipher algorithm.
1331
1332 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1333 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1334
1335 The Salsa20 stream cipher algorithm is designed by Daniel J.
1336 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001338config CRYPTO_SALSA20_586
Kees Cook3b4afaf2012-10-02 11:16:49 -07001339 tristate "Salsa20 stream cipher algorithm (i586)"
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001340 depends on (X86 || UML_X86) && !64BIT
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001341 select CRYPTO_BLKCIPHER
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001342 help
1343 Salsa20 stream cipher algorithm.
1344
1345 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1346 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1347
1348 The Salsa20 stream cipher algorithm is designed by Daniel J.
1349 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1350
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001351config CRYPTO_SALSA20_X86_64
Kees Cook3b4afaf2012-10-02 11:16:49 -07001352 tristate "Salsa20 stream cipher algorithm (x86_64)"
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001353 depends on (X86 || UML_X86) && 64BIT
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001354 select CRYPTO_BLKCIPHER
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001355 help
1356 Salsa20 stream cipher algorithm.
1357
1358 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1359 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1360
1361 The Salsa20 stream cipher algorithm is designed by Daniel J.
1362 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1363
Martin Willic08d0e62015-06-01 13:43:56 +02001364config CRYPTO_CHACHA20
1365 tristate "ChaCha20 cipher algorithm"
1366 select CRYPTO_BLKCIPHER
1367 help
1368 ChaCha20 cipher algorithm, RFC7539.
1369
1370 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1371 Bernstein and further specified in RFC7539 for use in IETF protocols.
1372 This is the portable C implementation of ChaCha20.
1373
1374 See also:
1375 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1376
Martin Willic9320b62015-07-16 19:14:01 +02001377config CRYPTO_CHACHA20_X86_64
Martin Willi3d1e93c2015-07-16 19:14:03 +02001378 tristate "ChaCha20 cipher algorithm (x86_64/SSSE3/AVX2)"
Martin Willic9320b62015-07-16 19:14:01 +02001379 depends on X86 && 64BIT
1380 select CRYPTO_BLKCIPHER
1381 select CRYPTO_CHACHA20
1382 help
1383 ChaCha20 cipher algorithm, RFC7539.
1384
1385 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1386 Bernstein and further specified in RFC7539 for use in IETF protocols.
1387 This is the x86_64 assembler implementation using SIMD instructions.
1388
1389 See also:
1390 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1391
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001392config CRYPTO_SEED
1393 tristate "SEED cipher algorithm"
1394 select CRYPTO_ALGAPI
1395 help
1396 SEED cipher algorithm (RFC4269).
1397
1398 SEED is a 128-bit symmetric key block cipher that has been
1399 developed by KISA (Korea Information Security Agency) as a
1400 national standard encryption algorithm of the Republic of Korea.
1401 It is a 16 round block cipher with the key size of 128 bit.
1402
1403 See also:
1404 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
1405
1406config CRYPTO_SERPENT
1407 tristate "Serpent cipher algorithm"
1408 select CRYPTO_ALGAPI
1409 help
1410 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1411
1412 Keys are allowed to be from 0 to 256 bits in length, in steps
1413 of 8 bits. Also includes the 'Tnepres' algorithm, a reversed
1414 variant of Serpent for compatibility with old kerneli.org code.
1415
1416 See also:
1417 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1418
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001419config CRYPTO_SERPENT_SSE2_X86_64
1420 tristate "Serpent cipher algorithm (x86_64/SSE2)"
1421 depends on X86 && 64BIT
1422 select CRYPTO_ALGAPI
Jussi Kivilinna341975b2011-11-24 08:37:41 +02001423 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001424 select CRYPTO_ABLK_HELPER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001425 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001426 select CRYPTO_SERPENT
Jussi Kivilinnafeaf0cf2011-12-13 12:53:12 +02001427 select CRYPTO_LRW
1428 select CRYPTO_XTS
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001429 help
1430 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1431
1432 Keys are allowed to be from 0 to 256 bits in length, in steps
1433 of 8 bits.
1434
Masanari Iida1e6232f2015-04-04 00:20:30 +09001435 This module provides Serpent cipher algorithm that processes eight
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001436 blocks parallel using SSE2 instruction set.
1437
1438 See also:
1439 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1440
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001441config CRYPTO_SERPENT_SSE2_586
1442 tristate "Serpent cipher algorithm (i586/SSE2)"
1443 depends on X86 && !64BIT
1444 select CRYPTO_ALGAPI
Jussi Kivilinna341975b2011-11-24 08:37:41 +02001445 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001446 select CRYPTO_ABLK_HELPER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001447 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001448 select CRYPTO_SERPENT
Jussi Kivilinnafeaf0cf2011-12-13 12:53:12 +02001449 select CRYPTO_LRW
1450 select CRYPTO_XTS
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001451 help
1452 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1453
1454 Keys are allowed to be from 0 to 256 bits in length, in steps
1455 of 8 bits.
1456
1457 This module provides Serpent cipher algorithm that processes four
1458 blocks parallel using SSE2 instruction set.
1459
1460 See also:
1461 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1462
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001463config CRYPTO_SERPENT_AVX_X86_64
1464 tristate "Serpent cipher algorithm (x86_64/AVX)"
1465 depends on X86 && 64BIT
1466 select CRYPTO_ALGAPI
1467 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001468 select CRYPTO_ABLK_HELPER
Jussi Kivilinna1d0debb2012-06-18 14:07:24 +03001469 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001470 select CRYPTO_SERPENT
1471 select CRYPTO_LRW
1472 select CRYPTO_XTS
1473 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
1479 This module provides the Serpent cipher algorithm that processes
1480 eight blocks parallel using the AVX instruction set.
1481
1482 See also:
1483 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1484
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001485config CRYPTO_SERPENT_AVX2_X86_64
1486 tristate "Serpent cipher algorithm (x86_64/AVX2)"
1487 depends on X86 && 64BIT
1488 select CRYPTO_ALGAPI
1489 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001490 select CRYPTO_ABLK_HELPER
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001491 select CRYPTO_GLUE_HELPER_X86
1492 select CRYPTO_SERPENT
1493 select CRYPTO_SERPENT_AVX_X86_64
1494 select CRYPTO_LRW
1495 select CRYPTO_XTS
1496 help
1497 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1498
1499 Keys are allowed to be from 0 to 256 bits in length, in steps
1500 of 8 bits.
1501
1502 This module provides Serpent cipher algorithm that processes 16
1503 blocks parallel using AVX2 instruction set.
1504
1505 See also:
1506 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1507
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001508config CRYPTO_TEA
1509 tristate "TEA, XTEA and XETA cipher algorithms"
1510 select CRYPTO_ALGAPI
1511 help
1512 TEA cipher algorithm.
1513
1514 Tiny Encryption Algorithm is a simple cipher that uses
1515 many rounds for security. It is very fast and uses
1516 little memory.
1517
1518 Xtendend Tiny Encryption Algorithm is a modification to
1519 the TEA algorithm to address a potential key weakness
1520 in the TEA algorithm.
1521
1522 Xtendend Encryption Tiny Algorithm is a mis-implementation
1523 of the XTEA algorithm for compatibility purposes.
1524
1525config CRYPTO_TWOFISH
1526 tristate "Twofish cipher algorithm"
1527 select CRYPTO_ALGAPI
1528 select CRYPTO_TWOFISH_COMMON
1529 help
1530 Twofish cipher algorithm.
1531
1532 Twofish was submitted as an AES (Advanced Encryption Standard)
1533 candidate cipher by researchers at CounterPane Systems. It is a
1534 16 round block cipher supporting key sizes of 128, 192, and 256
1535 bits.
1536
1537 See also:
1538 <http://www.schneier.com/twofish.html>
1539
1540config CRYPTO_TWOFISH_COMMON
1541 tristate
1542 help
1543 Common parts of the Twofish cipher algorithm shared by the
1544 generic c and the assembler implementations.
1545
1546config CRYPTO_TWOFISH_586
1547 tristate "Twofish cipher algorithms (i586)"
1548 depends on (X86 || UML_X86) && !64BIT
1549 select CRYPTO_ALGAPI
1550 select CRYPTO_TWOFISH_COMMON
1551 help
1552 Twofish cipher algorithm.
1553
1554 Twofish was submitted as an AES (Advanced Encryption Standard)
1555 candidate cipher by researchers at CounterPane Systems. It is a
1556 16 round block cipher supporting key sizes of 128, 192, and 256
1557 bits.
1558
1559 See also:
1560 <http://www.schneier.com/twofish.html>
1561
1562config CRYPTO_TWOFISH_X86_64
1563 tristate "Twofish cipher algorithm (x86_64)"
1564 depends on (X86 || UML_X86) && 64BIT
1565 select CRYPTO_ALGAPI
1566 select CRYPTO_TWOFISH_COMMON
1567 help
1568 Twofish cipher algorithm (x86_64).
1569
1570 Twofish was submitted as an AES (Advanced Encryption Standard)
1571 candidate cipher by researchers at CounterPane Systems. It is a
1572 16 round block cipher supporting key sizes of 128, 192, and 256
1573 bits.
1574
1575 See also:
1576 <http://www.schneier.com/twofish.html>
1577
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001578config CRYPTO_TWOFISH_X86_64_3WAY
1579 tristate "Twofish cipher algorithm (x86_64, 3-way parallel)"
Al Virof21a7c12012-04-08 20:31:22 -04001580 depends on X86 && 64BIT
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001581 select CRYPTO_ALGAPI
1582 select CRYPTO_TWOFISH_COMMON
1583 select CRYPTO_TWOFISH_X86_64
Jussi Kivilinna414cb5e2012-06-18 14:07:34 +03001584 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinnae7cda5d2011-12-13 12:53:01 +02001585 select CRYPTO_LRW
1586 select CRYPTO_XTS
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001587 help
1588 Twofish cipher algorithm (x86_64, 3-way parallel).
1589
1590 Twofish was submitted as an AES (Advanced Encryption Standard)
1591 candidate cipher by researchers at CounterPane Systems. It is a
1592 16 round block cipher supporting key sizes of 128, 192, and 256
1593 bits.
1594
1595 This module provides Twofish cipher algorithm that processes three
1596 blocks parallel, utilizing resources of out-of-order CPUs better.
1597
1598 See also:
1599 <http://www.schneier.com/twofish.html>
1600
Johannes Goetzfried107778b2012-05-28 15:54:24 +02001601config CRYPTO_TWOFISH_AVX_X86_64
1602 tristate "Twofish cipher algorithm (x86_64/AVX)"
1603 depends on X86 && 64BIT
1604 select CRYPTO_ALGAPI
1605 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001606 select CRYPTO_ABLK_HELPER
Jussi Kivilinnaa7378d42012-06-18 14:07:39 +03001607 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried107778b2012-05-28 15:54:24 +02001608 select CRYPTO_TWOFISH_COMMON
1609 select CRYPTO_TWOFISH_X86_64
1610 select CRYPTO_TWOFISH_X86_64_3WAY
1611 select CRYPTO_LRW
1612 select CRYPTO_XTS
1613 help
1614 Twofish cipher algorithm (x86_64/AVX).
1615
1616 Twofish was submitted as an AES (Advanced Encryption Standard)
1617 candidate cipher by researchers at CounterPane Systems. It is a
1618 16 round block cipher supporting key sizes of 128, 192, and 256
1619 bits.
1620
1621 This module provides the Twofish cipher algorithm that processes
1622 eight blocks parallel using the AVX Instruction Set.
1623
1624 See also:
1625 <http://www.schneier.com/twofish.html>
1626
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001627comment "Compression"
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629config CRYPTO_DEFLATE
1630 tristate "Deflate compression algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001631 select CRYPTO_ALGAPI
Giovanni Cabidduf6ded092016-10-21 13:19:53 +01001632 select CRYPTO_ACOMP2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 select ZLIB_INFLATE
1634 select ZLIB_DEFLATE
1635 help
1636 This is the Deflate algorithm (RFC1951), specified for use in
1637 IPSec with the IPCOMP protocol (RFC3173, RFC2394).
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 You will most probably want this if using IPSec.
1640
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001641config CRYPTO_LZO
1642 tristate "LZO compression algorithm"
1643 select CRYPTO_ALGAPI
Giovanni Cabidduac9d2c42016-10-21 13:19:49 +01001644 select CRYPTO_ACOMP2
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001645 select LZO_COMPRESS
1646 select LZO_DECOMPRESS
1647 help
1648 This is the LZO algorithm.
1649
Seth Jennings35a1fc12012-07-19 09:42:41 -05001650config CRYPTO_842
1651 tristate "842 compression algorithm"
Dan Streetman2062c5b2015-05-07 13:49:15 -04001652 select CRYPTO_ALGAPI
Giovanni Cabiddu6a8de3a2016-10-21 13:19:52 +01001653 select CRYPTO_ACOMP2
Dan Streetman2062c5b2015-05-07 13:49:15 -04001654 select 842_COMPRESS
1655 select 842_DECOMPRESS
Seth Jennings35a1fc12012-07-19 09:42:41 -05001656 help
1657 This is the 842 algorithm.
1658
Chanho Min0ea85302013-07-08 16:01:51 -07001659config CRYPTO_LZ4
1660 tristate "LZ4 compression algorithm"
1661 select CRYPTO_ALGAPI
Giovanni Cabiddu8cd93302016-10-21 13:19:50 +01001662 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001663 select LZ4_COMPRESS
1664 select LZ4_DECOMPRESS
1665 help
1666 This is the LZ4 algorithm.
1667
1668config CRYPTO_LZ4HC
1669 tristate "LZ4HC compression algorithm"
1670 select CRYPTO_ALGAPI
Giovanni Cabiddu91d53d92016-10-21 13:19:51 +01001671 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001672 select LZ4HC_COMPRESS
1673 select LZ4_DECOMPRESS
1674 help
1675 This is the LZ4 high compression mode algorithm.
1676
Neil Horman17f0f4a2008-08-14 22:15:52 +10001677comment "Random Number Generation"
1678
1679config CRYPTO_ANSI_CPRNG
1680 tristate "Pseudo Random Number Generation for Cryptographic modules"
1681 select CRYPTO_AES
1682 select CRYPTO_RNG
Neil Horman17f0f4a2008-08-14 22:15:52 +10001683 help
1684 This option enables the generic pseudo random number generator
1685 for cryptographic modules. Uses the Algorithm specified in
Jiri Kosina7dd607e2010-01-27 01:00:10 +01001686 ANSI X9.31 A.2.4. Note that this option must be enabled if
1687 CRYPTO_FIPS is selected
Neil Horman17f0f4a2008-08-14 22:15:52 +10001688
Herbert Xuf2c89a12014-07-04 22:15:08 +08001689menuconfig CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001690 tristate "NIST SP800-90A DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001691 help
1692 NIST SP800-90A compliant DRBG. In the following submenu, one or
1693 more of the DRBG types must be selected.
1694
Herbert Xuf2c89a12014-07-04 22:15:08 +08001695if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001696
1697config CRYPTO_DRBG_HMAC
Herbert Xu401e4232015-06-03 14:49:31 +08001698 bool
Stephan Mueller419090c2014-05-31 17:22:31 +02001699 default y
Stephan Mueller419090c2014-05-31 17:22:31 +02001700 select CRYPTO_HMAC
Herbert Xu826775b2015-06-11 08:55:10 +08001701 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001702
1703config CRYPTO_DRBG_HASH
1704 bool "Enable Hash DRBG"
Herbert Xu826775b2015-06-11 08:55:10 +08001705 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001706 help
1707 Enable the Hash DRBG variant as defined in NIST SP800-90A.
1708
1709config CRYPTO_DRBG_CTR
1710 bool "Enable CTR DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001711 select CRYPTO_AES
Stephan Mueller35591282016-06-14 07:34:13 +02001712 depends on CRYPTO_CTR
Stephan Mueller419090c2014-05-31 17:22:31 +02001713 help
1714 Enable the CTR DRBG variant as defined in NIST SP800-90A.
1715
Herbert Xuf2c89a12014-07-04 22:15:08 +08001716config CRYPTO_DRBG
1717 tristate
Herbert Xu401e4232015-06-03 14:49:31 +08001718 default CRYPTO_DRBG_MENU
Herbert Xuf2c89a12014-07-04 22:15:08 +08001719 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001720 select CRYPTO_JITTERENTROPY
Herbert Xuf2c89a12014-07-04 22:15:08 +08001721
1722endif # if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001723
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001724config CRYPTO_JITTERENTROPY
1725 tristate "Jitterentropy Non-Deterministic Random Number Generator"
Arnd Bergmann2f313e02016-01-26 14:47:10 +01001726 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001727 help
1728 The Jitterentropy RNG is a noise that is intended
1729 to provide seed to another RNG. The RNG does not
1730 perform any cryptographic whitening of the generated
1731 random numbers. This Jitterentropy RNG registers with
1732 the kernel crypto API and can be used by any caller.
1733
Herbert Xu03c8efc2010-10-19 21:12:39 +08001734config CRYPTO_USER_API
1735 tristate
1736
Herbert Xufe869cd2010-10-19 21:23:00 +08001737config CRYPTO_USER_API_HASH
1738 tristate "User-space interface for hash algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001739 depends on NET
Herbert Xufe869cd2010-10-19 21:23:00 +08001740 select CRYPTO_HASH
1741 select CRYPTO_USER_API
1742 help
1743 This option enables the user-spaces interface for hash
1744 algorithms.
1745
Herbert Xu8ff59092010-10-19 21:31:55 +08001746config CRYPTO_USER_API_SKCIPHER
1747 tristate "User-space interface for symmetric key cipher algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001748 depends on NET
Herbert Xu8ff59092010-10-19 21:31:55 +08001749 select CRYPTO_BLKCIPHER
1750 select CRYPTO_USER_API
1751 help
1752 This option enables the user-spaces interface for symmetric
1753 key cipher algorithms.
1754
Stephan Mueller2f3755382014-12-25 23:00:39 +01001755config CRYPTO_USER_API_RNG
1756 tristate "User-space interface for random number generator algorithms"
1757 depends on NET
1758 select CRYPTO_RNG
1759 select CRYPTO_USER_API
1760 help
1761 This option enables the user-spaces interface for random
1762 number generator algorithms.
1763
Herbert Xub64a2d92015-05-28 11:30:35 +08001764config CRYPTO_USER_API_AEAD
1765 tristate "User-space interface for AEAD cipher algorithms"
1766 depends on NET
1767 select CRYPTO_AEAD
Stephan Mueller72548b02017-07-30 14:32:58 +02001768 select CRYPTO_BLKCIPHER
1769 select CRYPTO_NULL
Herbert Xub64a2d92015-05-28 11:30:35 +08001770 select CRYPTO_USER_API
1771 help
1772 This option enables the user-spaces interface for AEAD
1773 cipher algorithms.
1774
Dmitry Kasatkinee089972013-05-06 15:40:01 +03001775config CRYPTO_HASH_INFO
1776 bool
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778source "drivers/crypto/Kconfig"
David Howells964f3b32012-09-13 15:17:21 +01001779source crypto/asymmetric_keys/Kconfig
David Howellscfc411e2015-08-14 15:20:41 +01001780source certs/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Herbert Xucce9e062006-08-21 21:08:13 +10001782endif # if CRYPTO