blob: 6ea544a6775788fca7d7f6d630f2b0920bf2ddfa [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"
Hauke Mehrtens29921822017-11-26 00:16:46 +0100133 select CRYPTO_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
Eric Biggers7db2b9c2018-11-16 17:26:29 -0800392config CRYPTO_NHPOLY1305
393 tristate
394 select CRYPTO_HASH
395 select CRYPTO_POLY1305
396
Eric Biggers3975a6f2018-11-16 17:26:31 -0800397config CRYPTO_ADIANTUM
398 tristate "Adiantum support"
399 select CRYPTO_CHACHA20
400 select CRYPTO_POLY1305
401 select CRYPTO_NHPOLY1305
402 help
403 Adiantum is a tweakable, length-preserving encryption mode
404 designed for fast and secure disk encryption, especially on
405 CPUs without dedicated crypto instructions. It encrypts
406 each sector using the XChaCha12 stream cipher, two passes of
407 an ε-almost-∆-universal hash function, and an invocation of
408 the AES-256 block cipher on a single 16-byte block. On CPUs
409 without AES instructions, Adiantum is much faster than
410 AES-XTS.
411
412 Adiantum's security is provably reducible to that of its
413 underlying stream and block ciphers, subject to a security
414 bound. Unlike XTS, Adiantum is a true wide-block encryption
415 mode, so it actually provides an even stronger notion of
416 security than XTS, subject to the security bound.
417
418 If unsure, say N.
419
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800420comment "Hash modes"
421
Jussi Kivilinna93b5e862013-04-08 10:48:44 +0300422config CRYPTO_CMAC
423 tristate "CMAC support"
424 select CRYPTO_HASH
425 select CRYPTO_MANAGER
426 help
427 Cipher-based Message Authentication Code (CMAC) specified by
428 The National Institute of Standards and Technology (NIST).
429
430 https://tools.ietf.org/html/rfc4493
431 http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf
432
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800433config CRYPTO_HMAC
434 tristate "HMAC support"
435 select CRYPTO_HASH
436 select CRYPTO_MANAGER
437 help
438 HMAC: Keyed-Hashing for Message Authentication (RFC2104).
439 This is required for IPSec.
440
441config CRYPTO_XCBC
442 tristate "XCBC support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800443 select CRYPTO_HASH
444 select CRYPTO_MANAGER
445 help
446 XCBC: Keyed-Hashing with encryption algorithm
447 http://www.ietf.org/rfc/rfc3566.txt
448 http://csrc.nist.gov/encryption/modes/proposedmodes/
449 xcbc-mac/xcbc-mac-spec.pdf
450
Shane Wangf1939f72009-09-02 20:05:22 +1000451config CRYPTO_VMAC
452 tristate "VMAC support"
Shane Wangf1939f72009-09-02 20:05:22 +1000453 select CRYPTO_HASH
454 select CRYPTO_MANAGER
455 help
456 VMAC is a message authentication algorithm designed for
457 very high speed on 64-bit architectures.
458
459 See also:
460 <http://fastcrypto.org/vmac>
461
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800462comment "Digest"
463
464config CRYPTO_CRC32C
465 tristate "CRC32c CRC algorithm"
Herbert Xu5773a3e2008-07-08 20:54:28 +0800466 select CRYPTO_HASH
Darrick J. Wong6a0962b2012-03-23 15:02:25 -0700467 select CRC32
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800468 help
469 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
470 by iSCSI for header and data digests and by others.
Herbert Xu69c35ef2008-11-07 15:11:47 +0800471 See Castagnoli93. Module will be crc32c.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800472
Austin Zhang8cb51ba2008-08-07 09:57:03 +0800473config CRYPTO_CRC32C_INTEL
474 tristate "CRC32c INTEL hardware acceleration"
475 depends on X86
476 select CRYPTO_HASH
477 help
478 In Intel processor with SSE4.2 supported, the processor will
479 support CRC32C implementation using hardware accelerated CRC32
480 instruction. This option will create 'crc32c-intel' module,
481 which will enable any routine to use the CRC32 instruction to
482 gain performance compared with software implementation.
483 Module will be crc32c-intel.
484
Jean Delvare7cf31862016-11-22 10:32:44 +0100485config CRYPTO_CRC32C_VPMSUM
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000486 tristate "CRC32c CRC algorithm (powerpc64)"
Michael Ellermanc12abf32016-08-09 08:46:15 +1000487 depends on PPC64 && ALTIVEC
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000488 select CRYPTO_HASH
489 select CRC32
490 help
491 CRC32c algorithm implemented using vector polynomial multiply-sum
492 (vpmsum) instructions, introduced in POWER8. Enable on POWER8
493 and newer processors for improved performance.
494
495
David S. Miller442a7c42012-08-22 20:47:36 -0700496config CRYPTO_CRC32C_SPARC64
497 tristate "CRC32c CRC algorithm (SPARC64)"
498 depends on SPARC64
499 select CRYPTO_HASH
500 select CRC32
501 help
502 CRC32c CRC algorithm implemented using sparc64 crypto instructions,
503 when available.
504
Alexander Boyko78c37d12013-01-10 18:54:59 +0400505config CRYPTO_CRC32
506 tristate "CRC32 CRC algorithm"
507 select CRYPTO_HASH
508 select CRC32
509 help
510 CRC-32-IEEE 802.3 cyclic redundancy-check algorithm.
511 Shash crypto api wrappers to crc32_le function.
512
513config CRYPTO_CRC32_PCLMUL
514 tristate "CRC32 PCLMULQDQ hardware acceleration"
515 depends on X86
516 select CRYPTO_HASH
517 select CRC32
518 help
519 From Intel Westmere and AMD Bulldozer processor with SSE4.2
520 and PCLMULQDQ supported, the processor will support
521 CRC32 PCLMULQDQ implementation using hardware accelerated PCLMULQDQ
522 instruction. This option will create 'crc32-plcmul' module,
523 which will enable any routine to use the CRC-32-IEEE 802.3 checksum
524 and gain better performance as compared with the table implementation.
525
David Sterba07ad0ef2019-10-24 18:28:31 +0200526config CRYPTO_BLAKE2B
527 tristate "BLAKE2b digest algorithm"
528 select CRYPTO_HASH
529 help
530 Implementation of cryptographic hash function BLAKE2b (or just BLAKE2),
531 optimized for 64bit platforms and can produce digests of any size
532 between 1 to 64. The keyed hash is also implemented.
533
534 This module provides the following algorithms:
535
536 - blake2b-160
537 - blake2b-256
538 - blake2b-384
539 - blake2b-512
540
541 See https://blake2.net for further information.
542
Herbert Xu684115212013-09-07 12:56:26 +1000543config CRYPTO_CRCT10DIF
544 tristate "CRCT10DIF algorithm"
545 select CRYPTO_HASH
546 help
547 CRC T10 Data Integrity Field computation is being cast as
548 a crypto transform. This allows for faster crc t10 diff
549 transforms to be used if they are available.
550
551config CRYPTO_CRCT10DIF_PCLMUL
552 tristate "CRCT10DIF PCLMULQDQ hardware acceleration"
553 depends on X86 && 64BIT && CRC_T10DIF
554 select CRYPTO_HASH
555 help
556 For x86_64 processors with SSE4.2 and PCLMULQDQ supported,
557 CRC T10 DIF PCLMULQDQ computation can be hardware
558 accelerated PCLMULQDQ instruction. This option will create
559 'crct10dif-plcmul' module, which is faster when computing the
560 crct10dif checksum as compared with the generic table implementation.
561
Daniel Axtensb01df1c2017-03-15 23:37:36 +1100562config CRYPTO_CRCT10DIF_VPMSUM
563 tristate "CRC32T10DIF powerpc64 hardware acceleration"
564 depends on PPC64 && ALTIVEC && CRC_T10DIF
565 select CRYPTO_HASH
566 help
567 CRC10T10DIF algorithm implemented using vector polynomial
568 multiply-sum (vpmsum) instructions, introduced in POWER8. Enable on
569 POWER8 and newer processors for improved performance.
570
Daniel Axtens146c8682017-03-15 23:37:37 +1100571config CRYPTO_VPMSUM_TESTER
572 tristate "Powerpc64 vpmsum hardware acceleration tester"
573 depends on CRYPTO_CRCT10DIF_VPMSUM && CRYPTO_CRC32C_VPMSUM
574 help
575 Stress test for CRC32c and CRC-T10DIF algorithms implemented with
576 POWER8 vpmsum instructions.
577 Unless you are testing these algorithms, you don't need this.
578
Huang Ying2cdc6892009-08-06 15:32:38 +1000579config CRYPTO_GHASH
580 tristate "GHASH digest algorithm"
Huang Ying2cdc6892009-08-06 15:32:38 +1000581 select CRYPTO_GF128MUL
Arnd Bergmann578c60fbe2016-01-25 17:51:21 +0100582 select CRYPTO_HASH
Huang Ying2cdc6892009-08-06 15:32:38 +1000583 help
584 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
585
Martin Willif979e012015-06-01 13:43:58 +0200586config CRYPTO_POLY1305
587 tristate "Poly1305 authenticator algorithm"
Arnd Bergmann578c60fbe2016-01-25 17:51:21 +0100588 select CRYPTO_HASH
Martin Willif979e012015-06-01 13:43:58 +0200589 help
590 Poly1305 authenticator algorithm, RFC7539.
591
592 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
593 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
594 in IETF protocols. This is the portable C implementation of Poly1305.
595
Martin Willic70f4ab2015-07-16 19:14:06 +0200596config CRYPTO_POLY1305_X86_64
Martin Willib1ccc8f2015-07-16 19:14:08 +0200597 tristate "Poly1305 authenticator algorithm (x86_64/SSE2/AVX2)"
Martin Willic70f4ab2015-07-16 19:14:06 +0200598 depends on X86 && 64BIT
599 select CRYPTO_POLY1305
600 help
601 Poly1305 authenticator algorithm, RFC7539.
602
603 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
604 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
605 in IETF protocols. This is the x86_64 assembler implementation using SIMD
606 instructions.
607
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800608config CRYPTO_MD4
609 tristate "MD4 digest algorithm"
Adrian-Ken Rueegsegger808a1762008-12-03 19:55:27 +0800610 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800612 MD4 message digest algorithm (RFC1320).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800614config CRYPTO_MD5
615 tristate "MD5 digest algorithm"
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800616 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800618 MD5 message digest algorithm (RFC1321).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Aaro Koskinend69e75d2014-12-21 22:54:02 +0200620config CRYPTO_MD5_OCTEON
621 tristate "MD5 digest algorithm (OCTEON)"
622 depends on CPU_CAVIUM_OCTEON
623 select CRYPTO_MD5
624 select CRYPTO_HASH
625 help
626 MD5 message digest algorithm (RFC1321) implemented
627 using OCTEON crypto instructions, when available.
628
Markus Stockhausene8e59952015-03-01 19:30:46 +0100629config CRYPTO_MD5_PPC
630 tristate "MD5 digest algorithm (PPC)"
631 depends on PPC
632 select CRYPTO_HASH
633 help
634 MD5 message digest algorithm (RFC1321) implemented
635 in PPC assembler.
636
David S. Millerfa4dfed2012-08-19 21:51:26 -0700637config CRYPTO_MD5_SPARC64
638 tristate "MD5 digest algorithm (SPARC64)"
639 depends on SPARC64
640 select CRYPTO_MD5
641 select CRYPTO_HASH
642 help
643 MD5 message digest algorithm (RFC1321) implemented
644 using sparc64 crypto instructions, when available.
645
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800646config CRYPTO_MICHAEL_MIC
647 tristate "Michael MIC keyed digest algorithm"
Adrian-Ken Rueegsegger19e2bf12008-12-07 19:35:38 +0800648 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800649 help
650 Michael MIC is used for message integrity protection in TKIP
651 (IEEE 802.11i). This algorithm is required for TKIP, but it
652 should not be used for other purposes because of the weakness
653 of the algorithm.
654
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800655config CRYPTO_RMD128
Adrian Bunkb6d44342008-07-16 19:28:00 +0800656 tristate "RIPEMD-128 digest algorithm"
Herbert Xu7c4468b2008-11-08 09:10:40 +0800657 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800658 help
659 RIPEMD-128 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800660
Adrian Bunkb6d44342008-07-16 19:28:00 +0800661 RIPEMD-128 is a 128-bit cryptographic hash function. It should only
Michael Witten35ed4b32011-07-09 04:02:31 +0000662 be used as a secure replacement for RIPEMD. For other use cases,
Adrian Bunkb6d44342008-07-16 19:28:00 +0800663 RIPEMD-160 should be used.
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800664
Adrian Bunkb6d44342008-07-16 19:28:00 +0800665 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800666 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800667
668config CRYPTO_RMD160
Adrian Bunkb6d44342008-07-16 19:28:00 +0800669 tristate "RIPEMD-160 digest algorithm"
Herbert Xue5835fb2008-11-08 09:18:51 +0800670 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800671 help
672 RIPEMD-160 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800673
Adrian Bunkb6d44342008-07-16 19:28:00 +0800674 RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
675 to be used as a secure replacement for the 128-bit hash functions
676 MD4, MD5 and it's predecessor RIPEMD
677 (not to be confused with RIPEMD-128).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800678
Adrian Bunkb6d44342008-07-16 19:28:00 +0800679 It's speed is comparable to SHA1 and there are no known attacks
680 against RIPEMD-160.
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800681
Adrian Bunkb6d44342008-07-16 19:28:00 +0800682 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800683 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800684
685config CRYPTO_RMD256
Adrian Bunkb6d44342008-07-16 19:28:00 +0800686 tristate "RIPEMD-256 digest algorithm"
Herbert Xud8a5e2e2008-11-08 09:58:10 +0800687 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800688 help
689 RIPEMD-256 is an optional extension of RIPEMD-128 with a
690 256 bit hash. It is intended for applications that require
691 longer hash-results, without needing a larger security level
692 (than RIPEMD-128).
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800693
Adrian Bunkb6d44342008-07-16 19:28:00 +0800694 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800695 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800696
697config CRYPTO_RMD320
Adrian Bunkb6d44342008-07-16 19:28:00 +0800698 tristate "RIPEMD-320 digest algorithm"
Herbert Xu3b8efb42008-11-08 10:11:09 +0800699 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800700 help
701 RIPEMD-320 is an optional extension of RIPEMD-160 with a
702 320 bit hash. It is intended for applications that require
703 longer hash-results, without needing a larger security level
704 (than RIPEMD-160).
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800705
Adrian Bunkb6d44342008-07-16 19:28:00 +0800706 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800707 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800708
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800709config CRYPTO_SHA1
710 tristate "SHA1 digest algorithm"
Adrian-Ken Rueegsegger54ccb362008-12-02 21:08:20 +0800711 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800712 help
713 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
714
Mathias Krause66be8952011-08-04 20:19:25 +0200715config CRYPTO_SHA1_SSSE3
time38b6b72015-09-10 15:27:26 -0700716 tristate "SHA1 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Mathias Krause66be8952011-08-04 20:19:25 +0200717 depends on X86 && 64BIT
718 select CRYPTO_SHA1
719 select CRYPTO_HASH
720 help
721 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
722 using Supplemental SSE3 (SSSE3) instructions or Advanced Vector
time38b6b72015-09-10 15:27:26 -0700723 Extensions (AVX/AVX2) or SHA-NI(SHA Extensions New Instructions),
724 when available.
Mathias Krause66be8952011-08-04 20:19:25 +0200725
Tim Chen8275d1a2013-03-26 13:59:17 -0700726config CRYPTO_SHA256_SSSE3
time38b6b72015-09-10 15:27:26 -0700727 tristate "SHA256 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Tim Chen8275d1a2013-03-26 13:59:17 -0700728 depends on X86 && 64BIT
729 select CRYPTO_SHA256
730 select CRYPTO_HASH
731 help
732 SHA-256 secure hash standard (DFIPS 180-2) implemented
733 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
734 Extensions version 1 (AVX1), or Advanced Vector Extensions
time38b6b72015-09-10 15:27:26 -0700735 version 2 (AVX2) instructions, or SHA-NI (SHA Extensions New
736 Instructions) when available.
Tim Chen8275d1a2013-03-26 13:59:17 -0700737
Tim Chen87de4572013-03-26 14:00:02 -0700738config CRYPTO_SHA512_SSSE3
739 tristate "SHA512 digest algorithm (SSSE3/AVX/AVX2)"
740 depends on X86 && 64BIT
741 select CRYPTO_SHA512
742 select CRYPTO_HASH
743 help
744 SHA-512 secure hash standard (DFIPS 180-2) implemented
745 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
746 Extensions version 1 (AVX1), or Advanced Vector Extensions
747 version 2 (AVX2) instructions, when available.
748
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200749config CRYPTO_SHA1_OCTEON
750 tristate "SHA1 digest algorithm (OCTEON)"
751 depends on CPU_CAVIUM_OCTEON
752 select CRYPTO_SHA1
753 select CRYPTO_HASH
754 help
755 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
756 using OCTEON crypto instructions, when available.
757
David S. Miller4ff28d42012-08-19 15:41:53 -0700758config CRYPTO_SHA1_SPARC64
759 tristate "SHA1 digest algorithm (SPARC64)"
760 depends on SPARC64
761 select CRYPTO_SHA1
762 select CRYPTO_HASH
763 help
764 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
765 using sparc64 crypto instructions, when available.
766
Michael Ellerman323a6bf2012-09-13 23:00:49 +0000767config CRYPTO_SHA1_PPC
768 tristate "SHA1 digest algorithm (powerpc)"
769 depends on PPC
770 help
771 This is the powerpc hardware accelerated implementation of the
772 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
773
Markus Stockhausend9850fc2015-02-24 20:36:50 +0100774config CRYPTO_SHA1_PPC_SPE
775 tristate "SHA1 digest algorithm (PPC SPE)"
776 depends on PPC && SPE
777 help
778 SHA-1 secure hash standard (DFIPS 180-4) implemented
779 using powerpc SPE SIMD instruction set.
780
Tim Chen1e65b812014-07-31 10:29:51 -0700781config CRYPTO_SHA1_MB
782 tristate "SHA1 digest algorithm (x86_64 Multi-Buffer, Experimental)"
783 depends on X86 && 64BIT
784 select CRYPTO_SHA1
785 select CRYPTO_HASH
786 select CRYPTO_MCRYPTD
787 help
788 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
789 using multi-buffer technique. This algorithm computes on
790 multiple data lanes concurrently with SIMD instructions for
791 better throughput. It should not be enabled by default but
792 used when there is significant amount of work to keep the keep
793 the data lanes filled to get performance benefit. If the data
794 lanes remain unfilled, a flush operation will be initiated to
795 process the crypto jobs, adding a slight latency.
796
Megha Dey9be7e242016-06-23 18:40:43 -0700797config CRYPTO_SHA256_MB
798 tristate "SHA256 digest algorithm (x86_64 Multi-Buffer, Experimental)"
799 depends on X86 && 64BIT
800 select CRYPTO_SHA256
801 select CRYPTO_HASH
802 select CRYPTO_MCRYPTD
803 help
804 SHA-256 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
805 using multi-buffer technique. This algorithm computes on
806 multiple data lanes concurrently with SIMD instructions for
807 better throughput. It should not be enabled by default but
808 used when there is significant amount of work to keep the keep
809 the data lanes filled to get performance benefit. If the data
810 lanes remain unfilled, a flush operation will be initiated to
811 process the crypto jobs, adding a slight latency.
812
Megha Dey026bb8a2016-06-27 10:20:05 -0700813config CRYPTO_SHA512_MB
814 tristate "SHA512 digest algorithm (x86_64 Multi-Buffer, Experimental)"
815 depends on X86 && 64BIT
816 select CRYPTO_SHA512
817 select CRYPTO_HASH
818 select CRYPTO_MCRYPTD
819 help
820 SHA-512 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
821 using multi-buffer technique. This algorithm computes on
822 multiple data lanes concurrently with SIMD instructions for
823 better throughput. It should not be enabled by default but
824 used when there is significant amount of work to keep the keep
825 the data lanes filled to get performance benefit. If the data
826 lanes remain unfilled, a flush operation will be initiated to
827 process the crypto jobs, adding a slight latency.
828
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800829config CRYPTO_SHA256
830 tristate "SHA224 and SHA256 digest algorithm"
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +0800831 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800832 help
833 SHA256 secure hash standard (DFIPS 180-2).
834
835 This version of SHA implements a 256 bit hash with 128 bits of
836 security against collision attacks.
837
Adrian Bunkb6d44342008-07-16 19:28:00 +0800838 This code also includes SHA-224, a 224 bit hash with 112 bits
839 of security against collision attacks.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800840
Markus Stockhausen2ecc1e92015-01-30 15:39:34 +0100841config CRYPTO_SHA256_PPC_SPE
842 tristate "SHA224 and SHA256 digest algorithm (PPC SPE)"
843 depends on PPC && SPE
844 select CRYPTO_SHA256
845 select CRYPTO_HASH
846 help
847 SHA224 and SHA256 secure hash standard (DFIPS 180-2)
848 implemented using powerpc SPE SIMD instruction set.
849
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200850config CRYPTO_SHA256_OCTEON
851 tristate "SHA224 and SHA256 digest algorithm (OCTEON)"
852 depends on CPU_CAVIUM_OCTEON
853 select CRYPTO_SHA256
854 select CRYPTO_HASH
855 help
856 SHA-256 secure hash standard (DFIPS 180-2) implemented
857 using OCTEON crypto instructions, when available.
858
David S. Miller86c93b22012-08-19 17:11:37 -0700859config CRYPTO_SHA256_SPARC64
860 tristate "SHA224 and SHA256 digest algorithm (SPARC64)"
861 depends on SPARC64
862 select CRYPTO_SHA256
863 select CRYPTO_HASH
864 help
865 SHA-256 secure hash standard (DFIPS 180-2) implemented
866 using sparc64 crypto instructions, when available.
867
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800868config CRYPTO_SHA512
869 tristate "SHA384 and SHA512 digest algorithms"
Adrian-Ken Rueegseggerbd9d20d2008-12-17 16:49:02 +1100870 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800871 help
872 SHA512 secure hash standard (DFIPS 180-2).
873
874 This version of SHA implements a 512 bit hash with 256 bits of
875 security against collision attacks.
876
877 This code also includes SHA-384, a 384 bit hash with 192 bits
878 of security against collision attacks.
879
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200880config CRYPTO_SHA512_OCTEON
881 tristate "SHA384 and SHA512 digest algorithms (OCTEON)"
882 depends on CPU_CAVIUM_OCTEON
883 select CRYPTO_SHA512
884 select CRYPTO_HASH
885 help
886 SHA-512 secure hash standard (DFIPS 180-2) implemented
887 using OCTEON crypto instructions, when available.
888
David S. Miller775e0c62012-08-19 17:37:56 -0700889config CRYPTO_SHA512_SPARC64
890 tristate "SHA384 and SHA512 digest algorithm (SPARC64)"
891 depends on SPARC64
892 select CRYPTO_SHA512
893 select CRYPTO_HASH
894 help
895 SHA-512 secure hash standard (DFIPS 180-2) implemented
896 using sparc64 crypto instructions, when available.
897
Jeff Garzik53964b92016-06-17 10:30:35 +0530898config CRYPTO_SHA3
899 tristate "SHA3 digest algorithm"
900 select CRYPTO_HASH
901 help
902 SHA-3 secure hash standard (DFIPS 202). It's based on
903 cryptographic sponge function family called Keccak.
904
905 References:
906 http://keccak.noekeon.org/
907
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800908config CRYPTO_TGR192
909 tristate "Tiger digest algorithms"
Adrian-Ken Rueegseggerf63fbd32008-12-03 19:58:32 +0800910 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800911 help
912 Tiger hash algorithm 192, 160 and 128-bit hashes
913
914 Tiger is a hash function optimized for 64-bit processors while
915 still having decent performance on 32-bit processors.
916 Tiger was developed by Ross Anderson and Eli Biham.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 See also:
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800919 <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
920
921config CRYPTO_WP512
922 tristate "Whirlpool digest algorithms"
Adrian-Ken Rueegsegger49465102008-12-07 19:34:37 +0800923 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800924 help
925 Whirlpool hash algorithm 512, 384 and 256-bit hashes
926
927 Whirlpool-512 is part of the NESSIE cryptographic primitives.
928 Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard
929
930 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800931 <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800932
Huang Ying0e1227d2009-10-19 11:53:06 +0900933config CRYPTO_GHASH_CLMUL_NI_INTEL
934 tristate "GHASH digest algorithm (CLMUL-NI accelerated)"
Richard Weinberger8af00862011-06-08 20:56:29 +0800935 depends on X86 && 64BIT
Huang Ying0e1227d2009-10-19 11:53:06 +0900936 select CRYPTO_CRYPTD
937 help
938 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
939 The implementation is accelerated by CLMUL-NI of Intel.
940
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800941comment "Ciphers"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943config CRYPTO_AES
944 tristate "AES cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000945 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800947 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 algorithm.
949
950 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800951 both hardware and software across a wide range of computing
952 environments regardless of its use in feedback or non-feedback
953 modes. Its key setup time is excellent, and its key agility is
954 good. Rijndael's very low memory requirements make it very well
955 suited for restricted-space environments, in which it also
956 demonstrates excellent performance. Rijndael's operations are
957 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800959 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
962
Ard Biesheuvelb5e0b032017-02-02 16:37:40 +0000963config CRYPTO_AES_TI
964 tristate "Fixed time AES cipher"
965 select CRYPTO_ALGAPI
966 help
967 This is a generic implementation of AES that attempts to eliminate
968 data dependent latencies as much as possible without affecting
969 performance too much. It is intended for use by the generic CCM
970 and GCM drivers, and other CTR or CMAC/XCBC based modes that rely
971 solely on encryption (although decryption is supported as well, but
972 with a more dramatic performance hit)
973
974 Instead of using 16 lookup tables of 1 KB each, (8 for encryption and
975 8 for decryption), this implementation only uses just two S-boxes of
976 256 bytes each, and attempts to eliminate data dependent latencies by
977 prefetching the entire table into the cache at the start of each
Eric Biggerse867d752018-10-17 21:37:58 -0700978 block. Interrupts are also disabled to avoid races where cachelines
979 are evicted when the CPU is interrupted to do something else.
Ard Biesheuvelb5e0b032017-02-02 16:37:40 +0000980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981config CRYPTO_AES_586
982 tristate "AES cipher algorithms (i586)"
Herbert Xucce9e062006-08-21 21:08:13 +1000983 depends on (X86 || UML_X86) && !64BIT
984 select CRYPTO_ALGAPI
Sebastian Siewior5157dea2007-11-10 19:07:16 +0800985 select CRYPTO_AES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800987 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 algorithm.
989
990 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800991 both hardware and software across a wide range of computing
992 environments regardless of its use in feedback or non-feedback
993 modes. Its key setup time is excellent, and its key agility is
994 good. Rijndael's very low memory requirements make it very well
995 suited for restricted-space environments, in which it also
996 demonstrates excellent performance. Rijndael's operations are
997 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800999 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 See <http://csrc.nist.gov/encryption/aes/> for more information.
1002
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001003config CRYPTO_AES_X86_64
1004 tristate "AES cipher algorithms (x86_64)"
Herbert Xucce9e062006-08-21 21:08:13 +10001005 depends on (X86 || UML_X86) && 64BIT
1006 select CRYPTO_ALGAPI
Sebastian Siewior81190b32007-11-08 21:25:04 +08001007 select CRYPTO_AES
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001008 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001009 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001010 algorithm.
1011
1012 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001013 both hardware and software across a wide range of computing
1014 environments regardless of its use in feedback or non-feedback
1015 modes. Its key setup time is excellent, and its key agility is
1016 good. Rijndael's very low memory requirements make it very well
1017 suited for restricted-space environments, in which it also
1018 demonstrates excellent performance. Rijndael's operations are
1019 among the easiest to defend against power and timing attacks.
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001020
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001021 The AES specifies three key sizes: 128, 192 and 256 bits
Andreas Steinmetza2a892a2005-07-06 13:55:00 -07001022
1023 See <http://csrc.nist.gov/encryption/aes/> for more information.
1024
Huang Ying54b6a1b2009-01-18 16:28:34 +11001025config CRYPTO_AES_NI_INTEL
1026 tristate "AES cipher algorithms (AES-NI)"
Richard Weinberger8af00862011-06-08 20:56:29 +08001027 depends on X86
Herbert Xu85671862016-11-22 20:08:33 +08001028 select CRYPTO_AEAD
Mathias Krause0d258ef2010-11-27 16:34:46 +08001029 select CRYPTO_AES_X86_64 if 64BIT
1030 select CRYPTO_AES_586 if !64BIT
Huang Ying54b6a1b2009-01-18 16:28:34 +11001031 select CRYPTO_ALGAPI
Herbert Xu85671862016-11-22 20:08:33 +08001032 select CRYPTO_BLKCIPHER
Jussi Kivilinna7643a112013-04-10 18:39:20 +03001033 select CRYPTO_GLUE_HELPER_X86 if 64BIT
Herbert Xu85671862016-11-22 20:08:33 +08001034 select CRYPTO_SIMD
Huang Ying54b6a1b2009-01-18 16:28:34 +11001035 help
1036 Use Intel AES-NI instructions for AES algorithm.
1037
1038 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1039 algorithm.
1040
1041 Rijndael appears to be consistently a very good performer in
1042 both hardware and software across a wide range of computing
1043 environments regardless of its use in feedback or non-feedback
1044 modes. Its key setup time is excellent, and its key agility is
1045 good. Rijndael's very low memory requirements make it very well
1046 suited for restricted-space environments, in which it also
1047 demonstrates excellent performance. Rijndael's operations are
1048 among the easiest to defend against power and timing attacks.
1049
1050 The AES specifies three key sizes: 128, 192 and 256 bits
1051
1052 See <http://csrc.nist.gov/encryption/aes/> for more information.
1053
Mathias Krause0d258ef2010-11-27 16:34:46 +08001054 In addition to AES cipher algorithm support, the acceleration
1055 for some popular block cipher mode is supported too, including
1056 ECB, CBC, LRW, PCBC, XTS. The 64 bit version has additional
1057 acceleration for CTR.
Huang Ying2cf4ac82009-03-29 15:41:20 +08001058
David S. Miller9bf4852d2012-08-21 03:58:13 -07001059config CRYPTO_AES_SPARC64
1060 tristate "AES cipher algorithms (SPARC64)"
1061 depends on SPARC64
1062 select CRYPTO_CRYPTD
1063 select CRYPTO_ALGAPI
1064 help
1065 Use SPARC64 crypto opcodes for AES algorithm.
1066
1067 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1068 algorithm.
1069
1070 Rijndael appears to be consistently a very good performer in
1071 both hardware and software across a wide range of computing
1072 environments regardless of its use in feedback or non-feedback
1073 modes. Its key setup time is excellent, and its key agility is
1074 good. Rijndael's very low memory requirements make it very well
1075 suited for restricted-space environments, in which it also
1076 demonstrates excellent performance. Rijndael's operations are
1077 among the easiest to defend against power and timing attacks.
1078
1079 The AES specifies three key sizes: 128, 192 and 256 bits
1080
1081 See <http://csrc.nist.gov/encryption/aes/> for more information.
1082
1083 In addition to AES cipher algorithm support, the acceleration
1084 for some popular block cipher mode is supported too, including
1085 ECB and CBC.
1086
Markus Stockhausen504c6142015-02-22 10:00:10 +01001087config CRYPTO_AES_PPC_SPE
1088 tristate "AES cipher algorithms (PPC SPE)"
1089 depends on PPC && SPE
1090 help
1091 AES cipher algorithms (FIPS-197). Additionally the acceleration
1092 for popular block cipher modes ECB, CBC, CTR and XTS is supported.
1093 This module should only be used for low power (router) devices
1094 without hardware AES acceleration (e.g. caam crypto). It reduces the
1095 size of the AES tables from 16KB to 8KB + 256 bytes and mitigates
1096 timining attacks. Nevertheless it might be not as secure as other
1097 architecture specific assembler implementations that work on 1KB
1098 tables or 256 bytes S-boxes.
1099
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001100config CRYPTO_ANUBIS
1101 tristate "Anubis cipher algorithm"
1102 select CRYPTO_ALGAPI
1103 help
1104 Anubis cipher algorithm.
1105
1106 Anubis is a variable key length cipher which can use keys from
1107 128 bits to 320 bits in length. It was evaluated as a entrant
1108 in the NESSIE competition.
1109
1110 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001111 <https://www.cosic.esat.kuleuven.be/nessie/reports/>
1112 <http://www.larc.usp.br/~pbarreto/AnubisPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001113
1114config CRYPTO_ARC4
1115 tristate "ARC4 cipher algorithm"
Sebastian Andrzej Siewiorb9b0f082012-06-26 18:13:46 +02001116 select CRYPTO_BLKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001117 help
1118 ARC4 cipher algorithm.
1119
1120 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
1121 bits in length. This algorithm is required for driver-based
1122 WEP, but it should not be for other purposes because of the
1123 weakness of the algorithm.
1124
1125config CRYPTO_BLOWFISH
1126 tristate "Blowfish cipher algorithm"
1127 select CRYPTO_ALGAPI
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001128 select CRYPTO_BLOWFISH_COMMON
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001129 help
1130 Blowfish cipher algorithm, by Bruce Schneier.
1131
1132 This is a variable key length cipher which can use keys from 32
1133 bits to 448 bits in length. It's fast, simple and specifically
1134 designed for use on "large microprocessors".
1135
1136 See also:
1137 <http://www.schneier.com/blowfish.html>
1138
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001139config CRYPTO_BLOWFISH_COMMON
1140 tristate
1141 help
1142 Common parts of the Blowfish cipher algorithm shared by the
1143 generic c and the assembler implementations.
1144
1145 See also:
1146 <http://www.schneier.com/blowfish.html>
1147
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001148config CRYPTO_BLOWFISH_X86_64
1149 tristate "Blowfish cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001150 depends on X86 && 64BIT
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001151 select CRYPTO_ALGAPI
1152 select CRYPTO_BLOWFISH_COMMON
1153 help
1154 Blowfish cipher algorithm (x86_64), 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
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001163config CRYPTO_CAMELLIA
1164 tristate "Camellia cipher algorithms"
1165 depends on CRYPTO
1166 select CRYPTO_ALGAPI
1167 help
1168 Camellia cipher algorithms module.
1169
1170 Camellia is a symmetric key block cipher developed jointly
1171 at NTT and Mitsubishi Electric Corporation.
1172
1173 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1174
1175 See also:
1176 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1177
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001178config CRYPTO_CAMELLIA_X86_64
1179 tristate "Camellia cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001180 depends on X86 && 64BIT
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001181 depends on CRYPTO
1182 select CRYPTO_ALGAPI
Jussi Kivilinna964263a2012-06-18 14:07:29 +03001183 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001184 select CRYPTO_LRW
1185 select CRYPTO_XTS
1186 help
1187 Camellia cipher algorithm module (x86_64).
1188
1189 Camellia is a symmetric key block cipher developed jointly
1190 at NTT and Mitsubishi Electric Corporation.
1191
1192 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1193
1194 See also:
1195 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1196
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001197config CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1198 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX)"
1199 depends on X86 && 64BIT
1200 depends on CRYPTO
1201 select CRYPTO_ALGAPI
1202 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001203 select CRYPTO_ABLK_HELPER
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001204 select CRYPTO_GLUE_HELPER_X86
1205 select CRYPTO_CAMELLIA_X86_64
1206 select CRYPTO_LRW
1207 select CRYPTO_XTS
1208 help
1209 Camellia cipher algorithm module (x86_64/AES-NI/AVX).
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 Kivilinnaf3f935a2013-04-13 13:47:00 +03001219config CRYPTO_CAMELLIA_AESNI_AVX2_X86_64
1220 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX2)"
1221 depends on X86 && 64BIT
1222 depends on CRYPTO
1223 select CRYPTO_ALGAPI
1224 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001225 select CRYPTO_ABLK_HELPER
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001226 select CRYPTO_GLUE_HELPER_X86
1227 select CRYPTO_CAMELLIA_X86_64
1228 select CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1229 select CRYPTO_LRW
1230 select CRYPTO_XTS
1231 help
1232 Camellia cipher algorithm module (x86_64/AES-NI/AVX2).
1233
1234 Camellia is a symmetric key block cipher developed jointly
1235 at NTT and Mitsubishi Electric Corporation.
1236
1237 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1238
1239 See also:
1240 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1241
David S. Miller81658ad2012-08-28 12:05:54 -07001242config CRYPTO_CAMELLIA_SPARC64
1243 tristate "Camellia cipher algorithm (SPARC64)"
1244 depends on SPARC64
1245 depends on CRYPTO
1246 select CRYPTO_ALGAPI
1247 help
1248 Camellia cipher algorithm module (SPARC64).
1249
1250 Camellia is a symmetric key block cipher developed jointly
1251 at NTT and Mitsubishi Electric Corporation.
1252
1253 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1254
1255 See also:
1256 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1257
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001258config CRYPTO_CAST_COMMON
1259 tristate
1260 help
1261 Common parts of the CAST cipher algorithms shared by the
1262 generic c and the assembler implementations.
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264config CRYPTO_CAST5
1265 tristate "CAST5 (CAST-128) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001266 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001267 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 help
1269 The CAST5 encryption algorithm (synonymous with CAST-128) is
1270 described in RFC2144.
1271
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001272config CRYPTO_CAST5_AVX_X86_64
1273 tristate "CAST5 (CAST-128) cipher algorithm (x86_64/AVX)"
1274 depends on X86 && 64BIT
1275 select CRYPTO_ALGAPI
1276 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001277 select CRYPTO_ABLK_HELPER
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001278 select CRYPTO_CAST_COMMON
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001279 select CRYPTO_CAST5
1280 help
1281 The CAST5 encryption algorithm (synonymous with CAST-128) is
1282 described in RFC2144.
1283
1284 This module provides the Cast5 cipher algorithm that processes
1285 sixteen blocks parallel using the AVX instruction set.
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287config CRYPTO_CAST6
1288 tristate "CAST6 (CAST-256) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001289 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001290 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 help
1292 The CAST6 encryption algorithm (synonymous with CAST-256) is
1293 described in RFC2612.
1294
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001295config CRYPTO_CAST6_AVX_X86_64
1296 tristate "CAST6 (CAST-256) cipher algorithm (x86_64/AVX)"
1297 depends on X86 && 64BIT
1298 select CRYPTO_ALGAPI
1299 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001300 select CRYPTO_ABLK_HELPER
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001301 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001302 select CRYPTO_CAST_COMMON
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001303 select CRYPTO_CAST6
1304 select CRYPTO_LRW
1305 select CRYPTO_XTS
1306 help
1307 The CAST6 encryption algorithm (synonymous with CAST-256) is
1308 described in RFC2612.
1309
1310 This module provides the Cast6 cipher algorithm that processes
1311 eight blocks parallel using the AVX instruction set.
1312
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001313config CRYPTO_DES
1314 tristate "DES and Triple DES EDE cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +10001315 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001317 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
David S. Millerc5aac2d2012-08-25 22:37:23 -07001319config CRYPTO_DES_SPARC64
1320 tristate "DES and Triple DES EDE cipher algorithms (SPARC64)"
Dave Jones97da37b2012-10-02 17:13:20 -04001321 depends on SPARC64
David S. Millerc5aac2d2012-08-25 22:37:23 -07001322 select CRYPTO_ALGAPI
1323 select CRYPTO_DES
1324 help
1325 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3),
1326 optimized using SPARC64 crypto opcodes.
1327
Jussi Kivilinna6574e6c2014-06-09 20:59:54 +03001328config CRYPTO_DES3_EDE_X86_64
1329 tristate "Triple DES EDE cipher algorithm (x86-64)"
1330 depends on X86 && 64BIT
1331 select CRYPTO_ALGAPI
1332 select CRYPTO_DES
1333 help
1334 Triple DES EDE (FIPS 46-3) algorithm.
1335
1336 This module provides implementation of the Triple DES EDE cipher
1337 algorithm that is optimized for x86-64 processors. Two versions of
1338 algorithm are provided; regular processing one input block and
1339 one that processes three blocks parallel.
1340
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001341config CRYPTO_FCRYPT
1342 tristate "FCrypt cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001343 select CRYPTO_ALGAPI
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001344 select CRYPTO_BLKCIPHER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001346 FCrypt algorithm used by RxRPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348config CRYPTO_KHAZAD
1349 tristate "Khazad cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001350 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 help
1352 Khazad cipher algorithm.
1353
1354 Khazad was a finalist in the initial NESSIE competition. It is
1355 an algorithm optimized for 64-bit processors with good performance
1356 on 32-bit processors. Khazad uses an 128 bit key size.
1357
1358 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001359 <http://www.larc.usp.br/~pbarreto/KhazadPage.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Tan Swee Heng2407d602007-11-23 19:45:00 +08001361config CRYPTO_SALSA20
Kees Cook3b4afaf2012-10-02 11:16:49 -07001362 tristate "Salsa20 stream cipher algorithm"
Tan Swee Heng2407d602007-11-23 19:45:00 +08001363 select CRYPTO_BLKCIPHER
1364 help
1365 Salsa20 stream cipher algorithm.
1366
1367 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1368 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1369
1370 The Salsa20 stream cipher algorithm is designed by Daniel J.
1371 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Martin Willic08d0e62015-06-01 13:43:56 +02001373config CRYPTO_CHACHA20
Eric Biggers4c11fdd2018-11-16 17:26:22 -08001374 tristate "ChaCha stream cipher algorithms"
Martin Willic08d0e62015-06-01 13:43:56 +02001375 select CRYPTO_BLKCIPHER
1376 help
Eric Biggers4c11fdd2018-11-16 17:26:22 -08001377 The ChaCha20, XChaCha20, and XChaCha12 stream cipher algorithms.
Martin Willic08d0e62015-06-01 13:43:56 +02001378
1379 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1380 Bernstein and further specified in RFC7539 for use in IETF protocols.
Eric Biggers5fad5422018-11-16 17:26:20 -08001381 This is the portable C implementation of ChaCha20. See also:
Martin Willic08d0e62015-06-01 13:43:56 +02001382 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1383
Eric Biggers5fad5422018-11-16 17:26:20 -08001384 XChaCha20 is the application of the XSalsa20 construction to ChaCha20
1385 rather than to Salsa20. XChaCha20 extends ChaCha20's nonce length
1386 from 64 bits (or 96 bits using the RFC7539 convention) to 192 bits,
1387 while provably retaining ChaCha20's security. See also:
1388 <https://cr.yp.to/snuffle/xsalsa-20081128.pdf>
1389
Eric Biggers4c11fdd2018-11-16 17:26:22 -08001390 XChaCha12 is XChaCha20 reduced to 12 rounds, with correspondingly
1391 reduced security margin but increased performance. It can be needed
1392 in some performance-sensitive scenarios.
1393
Martin Willic9320b62015-07-16 19:14:01 +02001394config CRYPTO_CHACHA20_X86_64
Martin Willi3d1e93c2015-07-16 19:14:03 +02001395 tristate "ChaCha20 cipher algorithm (x86_64/SSSE3/AVX2)"
Martin Willic9320b62015-07-16 19:14:01 +02001396 depends on X86 && 64BIT
1397 select CRYPTO_BLKCIPHER
1398 select CRYPTO_CHACHA20
1399 help
1400 ChaCha20 cipher algorithm, RFC7539.
1401
1402 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1403 Bernstein and further specified in RFC7539 for use in IETF protocols.
1404 This is the x86_64 assembler implementation using SIMD instructions.
1405
1406 See also:
1407 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1408
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001409config CRYPTO_SEED
1410 tristate "SEED cipher algorithm"
1411 select CRYPTO_ALGAPI
1412 help
1413 SEED cipher algorithm (RFC4269).
1414
1415 SEED is a 128-bit symmetric key block cipher that has been
1416 developed by KISA (Korea Information Security Agency) as a
1417 national standard encryption algorithm of the Republic of Korea.
1418 It is a 16 round block cipher with the key size of 128 bit.
1419
1420 See also:
1421 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
1422
1423config CRYPTO_SERPENT
1424 tristate "Serpent cipher algorithm"
1425 select CRYPTO_ALGAPI
1426 help
1427 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1428
1429 Keys are allowed to be from 0 to 256 bits in length, in steps
1430 of 8 bits. Also includes the 'Tnepres' algorithm, a reversed
1431 variant of Serpent for compatibility with old kerneli.org code.
1432
1433 See also:
1434 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1435
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001436config CRYPTO_SERPENT_SSE2_X86_64
1437 tristate "Serpent cipher algorithm (x86_64/SSE2)"
1438 depends on X86 && 64BIT
1439 select CRYPTO_ALGAPI
Jussi Kivilinna341975b2011-11-24 08:37:41 +02001440 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001441 select CRYPTO_ABLK_HELPER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001442 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001443 select CRYPTO_SERPENT
Jussi Kivilinnafeaf0cf2011-12-13 12:53:12 +02001444 select CRYPTO_LRW
1445 select CRYPTO_XTS
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001446 help
1447 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1448
1449 Keys are allowed to be from 0 to 256 bits in length, in steps
1450 of 8 bits.
1451
Masanari Iida1e6232f2015-04-04 00:20:30 +09001452 This module provides Serpent cipher algorithm that processes eight
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001453 blocks parallel using SSE2 instruction set.
1454
1455 See also:
1456 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1457
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001458config CRYPTO_SERPENT_SSE2_586
1459 tristate "Serpent cipher algorithm (i586/SSE2)"
1460 depends on X86 && !64BIT
1461 select CRYPTO_ALGAPI
Jussi Kivilinna341975b2011-11-24 08:37:41 +02001462 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001463 select CRYPTO_ABLK_HELPER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001464 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001465 select CRYPTO_SERPENT
Jussi Kivilinnafeaf0cf2011-12-13 12:53:12 +02001466 select CRYPTO_LRW
1467 select CRYPTO_XTS
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001468 help
1469 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1470
1471 Keys are allowed to be from 0 to 256 bits in length, in steps
1472 of 8 bits.
1473
1474 This module provides Serpent cipher algorithm that processes four
1475 blocks parallel using SSE2 instruction set.
1476
1477 See also:
1478 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1479
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001480config CRYPTO_SERPENT_AVX_X86_64
1481 tristate "Serpent cipher algorithm (x86_64/AVX)"
1482 depends on X86 && 64BIT
1483 select CRYPTO_ALGAPI
1484 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001485 select CRYPTO_ABLK_HELPER
Jussi Kivilinna1d0debb2012-06-18 14:07:24 +03001486 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001487 select CRYPTO_SERPENT
1488 select CRYPTO_LRW
1489 select CRYPTO_XTS
1490 help
1491 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1492
1493 Keys are allowed to be from 0 to 256 bits in length, in steps
1494 of 8 bits.
1495
1496 This module provides the Serpent cipher algorithm that processes
1497 eight blocks parallel using the AVX instruction set.
1498
1499 See also:
1500 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1501
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001502config CRYPTO_SERPENT_AVX2_X86_64
1503 tristate "Serpent cipher algorithm (x86_64/AVX2)"
1504 depends on X86 && 64BIT
1505 select CRYPTO_ALGAPI
1506 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001507 select CRYPTO_ABLK_HELPER
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001508 select CRYPTO_GLUE_HELPER_X86
1509 select CRYPTO_SERPENT
1510 select CRYPTO_SERPENT_AVX_X86_64
1511 select CRYPTO_LRW
1512 select CRYPTO_XTS
1513 help
1514 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1515
1516 Keys are allowed to be from 0 to 256 bits in length, in steps
1517 of 8 bits.
1518
1519 This module provides Serpent cipher algorithm that processes 16
1520 blocks parallel using AVX2 instruction set.
1521
1522 See also:
1523 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1524
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001525config CRYPTO_TEA
1526 tristate "TEA, XTEA and XETA cipher algorithms"
1527 select CRYPTO_ALGAPI
1528 help
1529 TEA cipher algorithm.
1530
1531 Tiny Encryption Algorithm is a simple cipher that uses
1532 many rounds for security. It is very fast and uses
1533 little memory.
1534
1535 Xtendend Tiny Encryption Algorithm is a modification to
1536 the TEA algorithm to address a potential key weakness
1537 in the TEA algorithm.
1538
1539 Xtendend Encryption Tiny Algorithm is a mis-implementation
1540 of the XTEA algorithm for compatibility purposes.
1541
1542config CRYPTO_TWOFISH
1543 tristate "Twofish cipher algorithm"
1544 select CRYPTO_ALGAPI
1545 select CRYPTO_TWOFISH_COMMON
1546 help
1547 Twofish cipher algorithm.
1548
1549 Twofish was submitted as an AES (Advanced Encryption Standard)
1550 candidate cipher by researchers at CounterPane Systems. It is a
1551 16 round block cipher supporting key sizes of 128, 192, and 256
1552 bits.
1553
1554 See also:
1555 <http://www.schneier.com/twofish.html>
1556
1557config CRYPTO_TWOFISH_COMMON
1558 tristate
1559 help
1560 Common parts of the Twofish cipher algorithm shared by the
1561 generic c and the assembler implementations.
1562
1563config CRYPTO_TWOFISH_586
1564 tristate "Twofish cipher algorithms (i586)"
1565 depends on (X86 || UML_X86) && !64BIT
1566 select CRYPTO_ALGAPI
1567 select CRYPTO_TWOFISH_COMMON
1568 help
1569 Twofish cipher algorithm.
1570
1571 Twofish was submitted as an AES (Advanced Encryption Standard)
1572 candidate cipher by researchers at CounterPane Systems. It is a
1573 16 round block cipher supporting key sizes of 128, 192, and 256
1574 bits.
1575
1576 See also:
1577 <http://www.schneier.com/twofish.html>
1578
1579config CRYPTO_TWOFISH_X86_64
1580 tristate "Twofish cipher algorithm (x86_64)"
1581 depends on (X86 || UML_X86) && 64BIT
1582 select CRYPTO_ALGAPI
1583 select CRYPTO_TWOFISH_COMMON
1584 help
1585 Twofish cipher algorithm (x86_64).
1586
1587 Twofish was submitted as an AES (Advanced Encryption Standard)
1588 candidate cipher by researchers at CounterPane Systems. It is a
1589 16 round block cipher supporting key sizes of 128, 192, and 256
1590 bits.
1591
1592 See also:
1593 <http://www.schneier.com/twofish.html>
1594
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001595config CRYPTO_TWOFISH_X86_64_3WAY
1596 tristate "Twofish cipher algorithm (x86_64, 3-way parallel)"
Al Virof21a7c12012-04-08 20:31:22 -04001597 depends on X86 && 64BIT
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001598 select CRYPTO_ALGAPI
1599 select CRYPTO_TWOFISH_COMMON
1600 select CRYPTO_TWOFISH_X86_64
Jussi Kivilinna414cb5e2012-06-18 14:07:34 +03001601 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinnae7cda5d2011-12-13 12:53:01 +02001602 select CRYPTO_LRW
1603 select CRYPTO_XTS
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001604 help
1605 Twofish cipher algorithm (x86_64, 3-way parallel).
1606
1607 Twofish was submitted as an AES (Advanced Encryption Standard)
1608 candidate cipher by researchers at CounterPane Systems. It is a
1609 16 round block cipher supporting key sizes of 128, 192, and 256
1610 bits.
1611
1612 This module provides Twofish cipher algorithm that processes three
1613 blocks parallel, utilizing resources of out-of-order CPUs better.
1614
1615 See also:
1616 <http://www.schneier.com/twofish.html>
1617
Johannes Goetzfried107778b2012-05-28 15:54:24 +02001618config CRYPTO_TWOFISH_AVX_X86_64
1619 tristate "Twofish cipher algorithm (x86_64/AVX)"
1620 depends on X86 && 64BIT
1621 select CRYPTO_ALGAPI
1622 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001623 select CRYPTO_ABLK_HELPER
Jussi Kivilinnaa7378d42012-06-18 14:07:39 +03001624 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried107778b2012-05-28 15:54:24 +02001625 select CRYPTO_TWOFISH_COMMON
1626 select CRYPTO_TWOFISH_X86_64
1627 select CRYPTO_TWOFISH_X86_64_3WAY
1628 select CRYPTO_LRW
1629 select CRYPTO_XTS
1630 help
1631 Twofish cipher algorithm (x86_64/AVX).
1632
1633 Twofish was submitted as an AES (Advanced Encryption Standard)
1634 candidate cipher by researchers at CounterPane Systems. It is a
1635 16 round block cipher supporting key sizes of 128, 192, and 256
1636 bits.
1637
1638 This module provides the Twofish cipher algorithm that processes
1639 eight blocks parallel using the AVX Instruction Set.
1640
1641 See also:
1642 <http://www.schneier.com/twofish.html>
1643
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001644comment "Compression"
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646config CRYPTO_DEFLATE
1647 tristate "Deflate compression algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001648 select CRYPTO_ALGAPI
Giovanni Cabidduf6ded092016-10-21 13:19:53 +01001649 select CRYPTO_ACOMP2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 select ZLIB_INFLATE
1651 select ZLIB_DEFLATE
1652 help
1653 This is the Deflate algorithm (RFC1951), specified for use in
1654 IPSec with the IPCOMP protocol (RFC3173, RFC2394).
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 You will most probably want this if using IPSec.
1657
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001658config CRYPTO_LZO
1659 tristate "LZO compression algorithm"
1660 select CRYPTO_ALGAPI
Giovanni Cabidduac9d2c42016-10-21 13:19:49 +01001661 select CRYPTO_ACOMP2
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001662 select LZO_COMPRESS
1663 select LZO_DECOMPRESS
1664 help
1665 This is the LZO algorithm.
1666
Seth Jennings35a1fc12012-07-19 09:42:41 -05001667config CRYPTO_842
1668 tristate "842 compression algorithm"
Dan Streetman2062c5b2015-05-07 13:49:15 -04001669 select CRYPTO_ALGAPI
Giovanni Cabiddu6a8de3a2016-10-21 13:19:52 +01001670 select CRYPTO_ACOMP2
Dan Streetman2062c5b2015-05-07 13:49:15 -04001671 select 842_COMPRESS
1672 select 842_DECOMPRESS
Seth Jennings35a1fc12012-07-19 09:42:41 -05001673 help
1674 This is the 842 algorithm.
1675
Chanho Min0ea85302013-07-08 16:01:51 -07001676config CRYPTO_LZ4
1677 tristate "LZ4 compression algorithm"
1678 select CRYPTO_ALGAPI
Giovanni Cabiddu8cd93302016-10-21 13:19:50 +01001679 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001680 select LZ4_COMPRESS
1681 select LZ4_DECOMPRESS
1682 help
1683 This is the LZ4 algorithm.
1684
1685config CRYPTO_LZ4HC
1686 tristate "LZ4HC compression algorithm"
1687 select CRYPTO_ALGAPI
Giovanni Cabiddu91d53d92016-10-21 13:19:51 +01001688 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001689 select LZ4HC_COMPRESS
1690 select LZ4_DECOMPRESS
1691 help
1692 This is the LZ4 high compression mode algorithm.
1693
Nick Terrell6576d932018-03-30 12:14:53 -07001694config CRYPTO_ZSTD
1695 tristate "Zstd compression algorithm"
1696 select CRYPTO_ALGAPI
1697 select CRYPTO_ACOMP2
1698 select ZSTD_COMPRESS
1699 select ZSTD_DECOMPRESS
1700 help
1701 This is the zstd algorithm.
1702
Neil Horman17f0f4a2008-08-14 22:15:52 +10001703comment "Random Number Generation"
1704
1705config CRYPTO_ANSI_CPRNG
1706 tristate "Pseudo Random Number Generation for Cryptographic modules"
1707 select CRYPTO_AES
1708 select CRYPTO_RNG
Neil Horman17f0f4a2008-08-14 22:15:52 +10001709 help
1710 This option enables the generic pseudo random number generator
1711 for cryptographic modules. Uses the Algorithm specified in
Jiri Kosina7dd607e2010-01-27 01:00:10 +01001712 ANSI X9.31 A.2.4. Note that this option must be enabled if
1713 CRYPTO_FIPS is selected
Neil Horman17f0f4a2008-08-14 22:15:52 +10001714
Herbert Xuf2c89a12014-07-04 22:15:08 +08001715menuconfig CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001716 tristate "NIST SP800-90A DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001717 help
1718 NIST SP800-90A compliant DRBG. In the following submenu, one or
1719 more of the DRBG types must be selected.
1720
Herbert Xuf2c89a12014-07-04 22:15:08 +08001721if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001722
1723config CRYPTO_DRBG_HMAC
Herbert Xu401e4232015-06-03 14:49:31 +08001724 bool
Stephan Mueller419090c2014-05-31 17:22:31 +02001725 default y
Stephan Mueller419090c2014-05-31 17:22:31 +02001726 select CRYPTO_HMAC
Herbert Xu826775b2015-06-11 08:55:10 +08001727 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001728
1729config CRYPTO_DRBG_HASH
1730 bool "Enable Hash DRBG"
Herbert Xu826775b2015-06-11 08:55:10 +08001731 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001732 help
1733 Enable the Hash DRBG variant as defined in NIST SP800-90A.
1734
1735config CRYPTO_DRBG_CTR
1736 bool "Enable CTR DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001737 select CRYPTO_AES
Stephan Mueller35591282016-06-14 07:34:13 +02001738 depends on CRYPTO_CTR
Stephan Mueller419090c2014-05-31 17:22:31 +02001739 help
1740 Enable the CTR DRBG variant as defined in NIST SP800-90A.
1741
Herbert Xuf2c89a12014-07-04 22:15:08 +08001742config CRYPTO_DRBG
1743 tristate
Herbert Xu401e4232015-06-03 14:49:31 +08001744 default CRYPTO_DRBG_MENU
Herbert Xuf2c89a12014-07-04 22:15:08 +08001745 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001746 select CRYPTO_JITTERENTROPY
Herbert Xuf2c89a12014-07-04 22:15:08 +08001747
1748endif # if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001749
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001750config CRYPTO_JITTERENTROPY
1751 tristate "Jitterentropy Non-Deterministic Random Number Generator"
Arnd Bergmann2f313e02016-01-26 14:47:10 +01001752 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001753 help
1754 The Jitterentropy RNG is a noise that is intended
1755 to provide seed to another RNG. The RNG does not
1756 perform any cryptographic whitening of the generated
1757 random numbers. This Jitterentropy RNG registers with
1758 the kernel crypto API and can be used by any caller.
1759
Herbert Xu03c8efc2010-10-19 21:12:39 +08001760config CRYPTO_USER_API
1761 tristate
1762
Herbert Xufe869cd2010-10-19 21:23:00 +08001763config CRYPTO_USER_API_HASH
1764 tristate "User-space interface for hash algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001765 depends on NET
Herbert Xufe869cd2010-10-19 21:23:00 +08001766 select CRYPTO_HASH
1767 select CRYPTO_USER_API
1768 help
1769 This option enables the user-spaces interface for hash
1770 algorithms.
1771
Herbert Xu8ff59092010-10-19 21:31:55 +08001772config CRYPTO_USER_API_SKCIPHER
1773 tristate "User-space interface for symmetric key cipher algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001774 depends on NET
Herbert Xu8ff59092010-10-19 21:31:55 +08001775 select CRYPTO_BLKCIPHER
1776 select CRYPTO_USER_API
1777 help
1778 This option enables the user-spaces interface for symmetric
1779 key cipher algorithms.
1780
Stephan Mueller2f3755382014-12-25 23:00:39 +01001781config CRYPTO_USER_API_RNG
1782 tristate "User-space interface for random number generator algorithms"
1783 depends on NET
1784 select CRYPTO_RNG
1785 select CRYPTO_USER_API
1786 help
1787 This option enables the user-spaces interface for random
1788 number generator algorithms.
1789
Herbert Xub64a2d92015-05-28 11:30:35 +08001790config CRYPTO_USER_API_AEAD
1791 tristate "User-space interface for AEAD cipher algorithms"
1792 depends on NET
1793 select CRYPTO_AEAD
Stephan Mueller72548b02017-07-30 14:32:58 +02001794 select CRYPTO_BLKCIPHER
1795 select CRYPTO_NULL
Herbert Xub64a2d92015-05-28 11:30:35 +08001796 select CRYPTO_USER_API
1797 help
1798 This option enables the user-spaces interface for AEAD
1799 cipher algorithms.
1800
Dmitry Kasatkinee089972013-05-06 15:40:01 +03001801config CRYPTO_HASH_INFO
1802 bool
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804source "drivers/crypto/Kconfig"
David Howells964f3b32012-09-13 15:17:21 +01001805source crypto/asymmetric_keys/Kconfig
David Howellscfc411e2015-08-14 15:20:41 +01001806source certs/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Herbert Xucce9e062006-08-21 21:08:13 +10001808endif # if CRYPTO