blob: a86d17ebe6fafe6b1dec5b1c3aed92967195927b [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
Geert Uytterhoevend99324c2019-03-20 11:41:03 +010030 This option enables the fips boot option which is
31 required if you want the system to operate in a FIPS 200
Neil Hormanccb778e2008-08-05 14:13:08 +080032 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
Eric Biggers50661972021-07-08 14:46:47 -070035# CRYPTO_FIPS140 just enables the support in the kernel for loading fips140.ko.
36# The module still needs to be built and loaded if you need FIPS 140 compliance.
Ard Biesheuvel6be141e2021-03-23 10:54:38 +010037config CRYPTO_FIPS140
38 def_bool y
39 depends on MODULES && ARM64 && ARM64_MODULE_PLTS
40
41config CRYPTO_FIPS140_MOD
Eric Biggers50661972021-07-08 14:46:47 -070042 bool "Enable FIPS 140 cryptographic module"
Ard Biesheuvel6be141e2021-03-23 10:54:38 +010043 depends on LTO_CLANG && CRYPTO_FIPS140
Eric Biggers50661972021-07-08 14:46:47 -070044 help
45 This option enables building a loadable module fips140.ko, which
46 contains various crypto algorithms that are also built into vmlinux.
47 At load time, this module overrides the built-in implementations of
48 these algorithms with its implementations. It also runs self-tests on
49 these algorithms and verifies the integrity of its code and data. If
50 either of these steps fails, the kernel will panic.
51
52 This module is intended to be loaded at early boot time in order to
53 meet FIPS 140 and NIAP FPT_TST_EXT.1 requirements. It shouldn't be
54 used if you don't need to meet these requirements.
Ard Biesheuvel6be141e2021-03-23 10:54:38 +010055
Eric Biggers903e97a2021-11-18 16:09:09 -080056config CRYPTO_FIPS140_MOD_EVAL_TESTING
57 bool "Enable evaluation testing features in FIPS 140 module"
Eric Biggersb7397e82021-07-08 14:46:46 -070058 depends on CRYPTO_FIPS140_MOD
59 help
Eric Biggers903e97a2021-11-18 16:09:09 -080060 This option adds some features to the FIPS 140 module which are needed
61 for lab evaluation testing of the module, e.g. support for injecting
62 errors and support for a userspace interface to some of the module's
63 services. This option should not be enabled in production builds.
Eric Biggersb7397e82021-07-08 14:46:46 -070064
Herbert Xucce9e062006-08-21 21:08:13 +100065config CRYPTO_ALGAPI
66 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110067 select CRYPTO_ALGAPI2
Herbert Xucce9e062006-08-21 21:08:13 +100068 help
69 This option provides the API for cryptographic algorithms.
70
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110071config CRYPTO_ALGAPI2
72 tristate
73
Herbert Xu1ae97822007-08-30 15:36:14 +080074config CRYPTO_AEAD
75 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110076 select CRYPTO_AEAD2
Herbert Xu1ae97822007-08-30 15:36:14 +080077 select CRYPTO_ALGAPI
78
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110079config CRYPTO_AEAD2
80 tristate
81 select CRYPTO_ALGAPI2
Herbert Xu149a3972015-08-13 17:28:58 +080082 select CRYPTO_NULL2
83 select CRYPTO_RNG2
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110084
Eric Biggersb95bba52019-10-25 12:41:13 -070085config CRYPTO_SKCIPHER
Herbert Xu5cde0af2006-08-22 00:07:53 +100086 tristate
Eric Biggersb95bba52019-10-25 12:41:13 -070087 select CRYPTO_SKCIPHER2
Herbert Xu5cde0af2006-08-22 00:07:53 +100088 select CRYPTO_ALGAPI
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110089
Eric Biggersb95bba52019-10-25 12:41:13 -070090config CRYPTO_SKCIPHER2
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110091 tristate
92 select CRYPTO_ALGAPI2
93 select CRYPTO_RNG2
Herbert Xu5cde0af2006-08-22 00:07:53 +100094
Herbert Xu055bcee2006-08-19 22:24:23 +100095config CRYPTO_HASH
96 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110097 select CRYPTO_HASH2
Herbert Xu055bcee2006-08-19 22:24:23 +100098 select CRYPTO_ALGAPI
99
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100100config CRYPTO_HASH2
101 tristate
102 select CRYPTO_ALGAPI2
103
Neil Horman17f0f4a2008-08-14 22:15:52 +1000104config CRYPTO_RNG
105 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100106 select CRYPTO_RNG2
Neil Horman17f0f4a2008-08-14 22:15:52 +1000107 select CRYPTO_ALGAPI
108
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100109config CRYPTO_RNG2
110 tristate
111 select CRYPTO_ALGAPI2
112
Herbert Xu401e4232015-06-03 14:49:31 +0800113config CRYPTO_RNG_DEFAULT
114 tristate
115 select CRYPTO_DRBG_MENU
116
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700117config CRYPTO_AKCIPHER2
118 tristate
119 select CRYPTO_ALGAPI2
120
121config CRYPTO_AKCIPHER
122 tristate
123 select CRYPTO_AKCIPHER2
124 select CRYPTO_ALGAPI
125
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100126config CRYPTO_KPP2
127 tristate
128 select CRYPTO_ALGAPI2
129
130config CRYPTO_KPP
131 tristate
132 select CRYPTO_ALGAPI
133 select CRYPTO_KPP2
134
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100135config CRYPTO_ACOMP2
136 tristate
137 select CRYPTO_ALGAPI2
Bart Van Assche8cd579d2018-01-05 08:26:47 -0800138 select SGL_ALLOC
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100139
140config CRYPTO_ACOMP
141 tristate
142 select CRYPTO_ALGAPI
143 select CRYPTO_ACOMP2
144
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000145config CRYPTO_MANAGER
146 tristate "Cryptographic algorithm manager"
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100147 select CRYPTO_MANAGER2
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000148 help
149 Create default cryptographic template instantiations such as
150 cbc(aes).
151
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100152config CRYPTO_MANAGER2
153 def_tristate CRYPTO_MANAGER || (CRYPTO_MANAGER!=n && CRYPTO_ALGAPI=y)
154 select CRYPTO_AEAD2
155 select CRYPTO_HASH2
Eric Biggersb95bba52019-10-25 12:41:13 -0700156 select CRYPTO_SKCIPHER2
Tadeusz Struk946cc462015-06-16 10:31:06 -0700157 select CRYPTO_AKCIPHER2
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100158 select CRYPTO_KPP2
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100159 select CRYPTO_ACOMP2
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100160
Steffen Klasserta38f7902011-09-27 07:23:50 +0200161config CRYPTO_USER
162 tristate "Userspace cryptographic algorithm configuration"
Herbert Xu5db017a2011-11-01 12:12:43 +1100163 depends on NET
Steffen Klasserta38f7902011-09-27 07:23:50 +0200164 select CRYPTO_MANAGER
165 help
Valdis.Kletnieks@vt.edud19978f2011-11-09 01:29:20 -0500166 Userspace configuration for cryptographic instantiations such as
Steffen Klasserta38f7902011-09-27 07:23:50 +0200167 cbc(aes).
168
Herbert Xu326a6342010-08-06 09:40:28 +0800169config CRYPTO_MANAGER_DISABLE_TESTS
170 bool "Disable run-time self tests"
Herbert Xu00ca28a2010-08-06 10:34:00 +0800171 default y
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000172 help
Herbert Xu326a6342010-08-06 09:40:28 +0800173 Disable run-time self tests that normally take place at
174 algorithm registration.
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000175
Eric Biggers5b2706a2019-01-31 23:51:44 -0800176config CRYPTO_MANAGER_EXTRA_TESTS
177 bool "Enable extra run-time crypto self tests"
Jason A. Donenfeld41106022020-11-02 14:48:15 +0100178 depends on DEBUG_KERNEL && !CRYPTO_MANAGER_DISABLE_TESTS && CRYPTO_MANAGER
Eric Biggers5b2706a2019-01-31 23:51:44 -0800179 help
180 Enable extra run-time self tests of registered crypto algorithms,
181 including randomized fuzz tests.
182
183 This is intended for developer use only, as these tests take much
184 longer to run than the normal self tests.
185
Rik Snelc494e072006-11-29 18:59:44 +1100186config CRYPTO_GF128MUL
Eric Biggerse590e132019-05-20 09:53:43 -0700187 tristate
Rik Snelc494e072006-11-29 18:59:44 +1100188
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800189config CRYPTO_NULL
190 tristate "Null algorithms"
Herbert Xu149a3972015-08-13 17:28:58 +0800191 select CRYPTO_NULL2
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800192 help
193 These are 'Null' algorithms, used by IPsec, which do nothing.
194
Herbert Xu149a3972015-08-13 17:28:58 +0800195config CRYPTO_NULL2
Herbert Xudd43c4e2015-08-17 20:39:40 +0800196 tristate
Herbert Xu149a3972015-08-13 17:28:58 +0800197 select CRYPTO_ALGAPI2
Eric Biggersb95bba52019-10-25 12:41:13 -0700198 select CRYPTO_SKCIPHER2
Herbert Xu149a3972015-08-13 17:28:58 +0800199 select CRYPTO_HASH2
200
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100201config CRYPTO_PCRYPT
Kees Cook3b4afaf2012-10-02 11:16:49 -0700202 tristate "Parallel crypto engine"
203 depends on SMP
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100204 select PADATA
205 select CRYPTO_MANAGER
206 select CRYPTO_AEAD
207 help
208 This converts an arbitrary crypto algorithm into a parallel
209 algorithm that executes in kernel threads.
210
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800211config CRYPTO_CRYPTD
212 tristate "Software async crypto daemon"
Eric Biggersb95bba52019-10-25 12:41:13 -0700213 select CRYPTO_SKCIPHER
Loc Hob8a28252008-05-14 21:23:00 +0800214 select CRYPTO_HASH
Herbert Xu43518402006-10-16 21:28:58 +1000215 select CRYPTO_MANAGER
Herbert Xudb131ef2006-09-21 11:44:08 +1000216 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800217 This is a generic software asynchronous crypto daemon that
218 converts an arbitrary synchronous software crypto algorithm
219 into an asynchronous algorithm that executes in a kernel thread.
220
221config CRYPTO_AUTHENC
222 tristate "Authenc support"
223 select CRYPTO_AEAD
Eric Biggersb95bba52019-10-25 12:41:13 -0700224 select CRYPTO_SKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800225 select CRYPTO_MANAGER
226 select CRYPTO_HASH
Herbert Xue94c6a72015-08-04 21:23:14 +0800227 select CRYPTO_NULL
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800228 help
229 Authenc: Combined mode wrapper for IPsec.
230 This is required for IPSec.
231
232config CRYPTO_TEST
233 tristate "Testing module"
234 depends on m
Herbert Xuda7f0332008-07-31 17:08:25 +0800235 select CRYPTO_MANAGER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800236 help
237 Quick & dirty crypto test module.
238
Herbert Xu266d0512016-11-22 20:08:25 +0800239config CRYPTO_SIMD
240 tristate
241 select CRYPTO_CRYPTD
242
Jussi Kivilinna596d8752012-06-18 14:07:19 +0300243config CRYPTO_GLUE_HELPER_X86
244 tristate
245 depends on X86
Eric Biggersb95bba52019-10-25 12:41:13 -0700246 select CRYPTO_SKCIPHER
Jussi Kivilinna596d8752012-06-18 14:07:19 +0300247
Baolin Wang735d37b2016-01-26 20:25:39 +0800248config CRYPTO_ENGINE
249 tristate
250
Vitaly Chikunov3d6228a2019-04-11 18:51:18 +0300251comment "Public-key cryptography"
252
253config CRYPTO_RSA
254 tristate "RSA algorithm"
255 select CRYPTO_AKCIPHER
256 select CRYPTO_MANAGER
257 select MPILIB
258 select ASN1
259 help
260 Generic implementation of the RSA public key algorithm.
261
262config CRYPTO_DH
263 tristate "Diffie-Hellman algorithm"
264 select CRYPTO_KPP
265 select MPILIB
266 help
267 Generic implementation of the Diffie-Hellman algorithm.
268
Vitaly Chikunov4a2289d2019-04-11 18:51:19 +0300269config CRYPTO_ECC
270 tristate
Arnd Bergmann66f7de12021-09-20 12:05:35 +0200271 select CRYPTO_RNG_DEFAULT
Vitaly Chikunov4a2289d2019-04-11 18:51:19 +0300272
Vitaly Chikunov3d6228a2019-04-11 18:51:18 +0300273config CRYPTO_ECDH
274 tristate "ECDH algorithm"
Vitaly Chikunov4a2289d2019-04-11 18:51:19 +0300275 select CRYPTO_ECC
Vitaly Chikunov3d6228a2019-04-11 18:51:18 +0300276 select CRYPTO_KPP
Vitaly Chikunov3d6228a2019-04-11 18:51:18 +0300277 help
278 Generic implementation of the ECDH algorithm
279
Vitaly Chikunov0d7a7862019-04-11 18:51:20 +0300280config CRYPTO_ECRDSA
281 tristate "EC-RDSA (GOST 34.10) algorithm"
282 select CRYPTO_ECC
283 select CRYPTO_AKCIPHER
284 select CRYPTO_STREEBOG
Vitaly Chikunov10366332019-04-24 04:32:40 +0300285 select OID_REGISTRY
286 select ASN1
Vitaly Chikunov0d7a7862019-04-11 18:51:20 +0300287 help
288 Elliptic Curve Russian Digital Signature Algorithm (GOST R 34.10-2012,
289 RFC 7091, ISO/IEC 14888-3:2018) is one of the Russian cryptographic
290 standard algorithms (called GOST algorithms). Only signature verification
291 is implemented.
292
Tianjia Zhangea7ecb62020-09-21 00:20:57 +0800293config CRYPTO_SM2
294 tristate "SM2 algorithm"
295 select CRYPTO_SM3
296 select CRYPTO_AKCIPHER
297 select CRYPTO_MANAGER
298 select MPILIB
299 select ASN1
300 help
301 Generic implementation of the SM2 public key algorithm. It was
302 published by State Encryption Management Bureau, China.
303 as specified by OSCCA GM/T 0003.1-2012 -- 0003.5-2012.
304
305 References:
306 https://tools.ietf.org/html/draft-shen-sm2-ecdsa-02
307 http://www.oscca.gov.cn/sca/xxgk/2010-12/17/content_1002386.shtml
308 http://www.gmbz.org.cn/main/bzlb.html
309
Ard Biesheuvelee772cb2019-11-08 13:22:34 +0100310config CRYPTO_CURVE25519
311 tristate "Curve25519 algorithm"
312 select CRYPTO_KPP
313 select CRYPTO_LIB_CURVE25519_GENERIC
314
Jason A. Donenfeldbb611bd2019-11-08 13:22:36 +0100315config CRYPTO_CURVE25519_X86
316 tristate "x86_64 accelerated Curve25519 scalar multiplication library"
317 depends on X86 && 64BIT
318 select CRYPTO_LIB_CURVE25519_GENERIC
319 select CRYPTO_ARCH_HAVE_LIB_CURVE25519
320
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800321comment "Authenticated Encryption with Associated Data"
322
323config CRYPTO_CCM
324 tristate "CCM support"
325 select CRYPTO_CTR
Ard Biesheuvelf15f05b2017-02-03 14:49:36 +0000326 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800327 select CRYPTO_AEAD
Eric Biggersc8a33152019-05-20 09:49:46 -0700328 select CRYPTO_MANAGER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800329 help
330 Support for Counter with CBC MAC. Required for IPsec.
331
332config CRYPTO_GCM
333 tristate "GCM/GMAC support"
334 select CRYPTO_CTR
335 select CRYPTO_AEAD
Huang Ying9382d972009-08-06 15:34:26 +1000336 select CRYPTO_GHASH
Jussi Kivilinna9489667d2013-04-07 16:43:41 +0300337 select CRYPTO_NULL
Eric Biggersc8a33152019-05-20 09:49:46 -0700338 select CRYPTO_MANAGER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800339 help
340 Support for Galois/Counter Mode (GCM) and Galois Message
341 Authentication Code (GMAC). Required for IPSec.
342
Martin Willi71ebc4d2015-06-01 13:44:00 +0200343config CRYPTO_CHACHA20POLY1305
344 tristate "ChaCha20-Poly1305 AEAD support"
345 select CRYPTO_CHACHA20
346 select CRYPTO_POLY1305
347 select CRYPTO_AEAD
Eric Biggersc8a33152019-05-20 09:49:46 -0700348 select CRYPTO_MANAGER
Martin Willi71ebc4d2015-06-01 13:44:00 +0200349 help
350 ChaCha20-Poly1305 AEAD support, RFC7539.
351
352 Support for the AEAD wrapper using the ChaCha20 stream cipher combined
353 with the Poly1305 authenticator. It is defined in RFC7539 for use in
354 IETF protocols.
355
Ondrej Mosnacekf606a882018-05-11 14:12:49 +0200356config CRYPTO_AEGIS128
357 tristate "AEGIS-128 AEAD algorithm"
358 select CRYPTO_AEAD
359 select CRYPTO_AES # for AES S-box tables
360 help
361 Support for the AEGIS-128 dedicated AEAD algorithm.
362
Ard Biesheuvela4397632019-08-12 01:59:11 +0300363config CRYPTO_AEGIS128_SIMD
364 bool "Support SIMD acceleration for AEGIS-128"
365 depends on CRYPTO_AEGIS128 && ((ARM || ARM64) && KERNEL_MODE_NEON)
366 default y
367
Ondrej Mosnacek1d373d42018-05-11 14:12:51 +0200368config CRYPTO_AEGIS128_AESNI_SSE2
369 tristate "AEGIS-128 AEAD algorithm (x86_64 AESNI+SSE2 implementation)"
370 depends on X86 && 64BIT
371 select CRYPTO_AEAD
Eric Biggersde272ca2019-03-10 12:00:53 -0700372 select CRYPTO_SIMD
Ondrej Mosnacek1d373d42018-05-11 14:12:51 +0200373 help
Ondrej Mosnacek4e5180e2019-03-15 08:47:25 +0100374 AESNI+SSE2 implementation of the AEGIS-128 dedicated AEAD algorithm.
Ondrej Mosnacek1d373d42018-05-11 14:12:51 +0200375
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800376config CRYPTO_SEQIV
377 tristate "Sequence Number IV Generator"
378 select CRYPTO_AEAD
Eric Biggersb95bba52019-10-25 12:41:13 -0700379 select CRYPTO_SKCIPHER
Herbert Xu856e3f402015-05-21 15:11:13 +0800380 select CRYPTO_NULL
Herbert Xu401e4232015-06-03 14:49:31 +0800381 select CRYPTO_RNG_DEFAULT
Eric Biggersc8a33152019-05-20 09:49:46 -0700382 select CRYPTO_MANAGER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800383 help
384 This IV generator generates an IV based on a sequence number by
385 xoring it with a salt. This algorithm is mainly useful for CTR
386
Herbert Xua10f5542015-05-21 15:11:15 +0800387config CRYPTO_ECHAINIV
388 tristate "Encrypted Chain IV Generator"
389 select CRYPTO_AEAD
390 select CRYPTO_NULL
Herbert Xu401e4232015-06-03 14:49:31 +0800391 select CRYPTO_RNG_DEFAULT
Eric Biggersc8a33152019-05-20 09:49:46 -0700392 select CRYPTO_MANAGER
Herbert Xua10f5542015-05-21 15:11:15 +0800393 help
394 This IV generator generates an IV based on the encryption of
395 a sequence number xored with a salt. This is the default
396 algorithm for CBC.
397
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800398comment "Block modes"
Herbert Xudb131ef2006-09-21 11:44:08 +1000399
400config CRYPTO_CBC
401 tristate "CBC support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700402 select CRYPTO_SKCIPHER
Herbert Xu43518402006-10-16 21:28:58 +1000403 select CRYPTO_MANAGER
Herbert Xudb131ef2006-09-21 11:44:08 +1000404 help
405 CBC: Cipher Block Chaining mode
406 This block cipher algorithm is required for IPSec.
407
James Bottomleya7d85e02018-03-01 14:36:17 -0800408config CRYPTO_CFB
409 tristate "CFB support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700410 select CRYPTO_SKCIPHER
James Bottomleya7d85e02018-03-01 14:36:17 -0800411 select CRYPTO_MANAGER
412 help
413 CFB: Cipher FeedBack mode
414 This block cipher algorithm is required for TPM2 Cryptography.
415
Joy Latten23e353c2007-10-23 08:50:32 +0800416config CRYPTO_CTR
417 tristate "CTR support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700418 select CRYPTO_SKCIPHER
Joy Latten23e353c2007-10-23 08:50:32 +0800419 select CRYPTO_MANAGER
Joy Latten23e353c2007-10-23 08:50:32 +0800420 help
421 CTR: Counter mode
422 This block cipher algorithm is required for IPSec.
423
Kevin Coffman76cb9522008-03-24 21:26:16 +0800424config CRYPTO_CTS
425 tristate "CTS support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700426 select CRYPTO_SKCIPHER
Eric Biggersc8a33152019-05-20 09:49:46 -0700427 select CRYPTO_MANAGER
Kevin Coffman76cb9522008-03-24 21:26:16 +0800428 help
429 CTS: Cipher Text Stealing
430 This is the Cipher Text Stealing mode as described by
Gilad Ben-Yossefecd6d5c2018-11-05 12:05:01 +0000431 Section 8 of rfc2040 and referenced by rfc3962
432 (rfc3962 includes errata information in its Appendix A) or
433 CBC-CS3 as defined by NIST in Sp800-38A addendum from Oct 2010.
Kevin Coffman76cb9522008-03-24 21:26:16 +0800434 This mode is required for Kerberos gss mechanism support
435 for AES encryption.
436
Gilad Ben-Yossefecd6d5c2018-11-05 12:05:01 +0000437 See: https://csrc.nist.gov/publications/detail/sp/800-38a/addendum/final
438
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800439config CRYPTO_ECB
440 tristate "ECB support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700441 select CRYPTO_SKCIPHER
Herbert Xu124b53d2007-04-16 20:49:20 +1000442 select CRYPTO_MANAGER
443 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800444 ECB: Electronic CodeBook mode
445 This is the simplest block cipher algorithm. It simply encrypts
446 the input block by block.
Herbert Xu124b53d2007-04-16 20:49:20 +1000447
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800448config CRYPTO_LRW
Jussi Kivilinna2470a2b2011-12-13 12:52:51 +0200449 tristate "LRW support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700450 select CRYPTO_SKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800451 select CRYPTO_MANAGER
452 select CRYPTO_GF128MUL
David Howells90831632006-12-16 12:13:14 +1100453 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800454 LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable
455 narrow block cipher mode for dm-crypt. Use it with cipher
456 specification string aes-lrw-benbi, the key must be 256, 320 or 384.
457 The first 128, 192 or 256 bits in the key are used for AES and the
458 rest is used to tie each cipher block to its logical position.
David Howells90831632006-12-16 12:13:14 +1100459
Gilad Ben-Yossefe497c512018-09-20 14:18:39 +0100460config CRYPTO_OFB
461 tristate "OFB support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700462 select CRYPTO_SKCIPHER
Gilad Ben-Yossefe497c512018-09-20 14:18:39 +0100463 select CRYPTO_MANAGER
464 help
465 OFB: the Output Feedback mode makes a block cipher into a synchronous
466 stream cipher. It generates keystream blocks, which are then XORed
467 with the plaintext blocks to get the ciphertext. Flipping a bit in the
468 ciphertext produces a flipped bit in the plaintext at the same
469 location. This property allows many error correcting codes to function
470 normally even when applied before encryption.
471
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800472config CRYPTO_PCBC
473 tristate "PCBC support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700474 select CRYPTO_SKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800475 select CRYPTO_MANAGER
476 help
477 PCBC: Propagating Cipher Block Chaining mode
478 This block cipher algorithm is required for RxRPC.
479
480config CRYPTO_XTS
Jussi Kivilinna5bcf8e62011-12-13 12:52:56 +0200481 tristate "XTS support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700482 select CRYPTO_SKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800483 select CRYPTO_MANAGER
Milan Broz12cb3a12017-02-23 08:38:26 +0100484 select CRYPTO_ECB
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800485 help
486 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain,
487 key size 256, 384 or 512 bits. This implementation currently
488 can't handle a sectorsize which is not a multiple of 16 bytes.
489
Stephan Mueller1c49678e2015-09-21 20:58:56 +0200490config CRYPTO_KEYWRAP
491 tristate "Key wrapping support"
Eric Biggersb95bba52019-10-25 12:41:13 -0700492 select CRYPTO_SKCIPHER
Eric Biggersc8a33152019-05-20 09:49:46 -0700493 select CRYPTO_MANAGER
Stephan Mueller1c49678e2015-09-21 20:58:56 +0200494 help
495 Support for key wrapping (NIST SP800-38F / RFC3394) without
496 padding.
497
Eric Biggers26609a22018-11-16 17:26:29 -0800498config CRYPTO_NHPOLY1305
499 tristate
500 select CRYPTO_HASH
Ard Biesheuvel48ea8c62019-11-08 13:22:19 +0100501 select CRYPTO_LIB_POLY1305_GENERIC
Eric Biggers26609a22018-11-16 17:26:29 -0800502
Eric Biggers012c8232018-12-04 22:20:00 -0800503config CRYPTO_NHPOLY1305_SSE2
504 tristate "NHPoly1305 hash function (x86_64 SSE2 implementation)"
505 depends on X86 && 64BIT
506 select CRYPTO_NHPOLY1305
507 help
508 SSE2 optimized implementation of the hash function used by the
509 Adiantum encryption mode.
510
Eric Biggers0f961f92018-12-04 22:20:01 -0800511config CRYPTO_NHPOLY1305_AVX2
512 tristate "NHPoly1305 hash function (x86_64 AVX2 implementation)"
513 depends on X86 && 64BIT
514 select CRYPTO_NHPOLY1305
515 help
516 AVX2 optimized implementation of the hash function used by the
517 Adiantum encryption mode.
518
Eric Biggers059c2a42018-11-16 17:26:31 -0800519config CRYPTO_ADIANTUM
520 tristate "Adiantum support"
521 select CRYPTO_CHACHA20
Ard Biesheuvel48ea8c62019-11-08 13:22:19 +0100522 select CRYPTO_LIB_POLY1305_GENERIC
Eric Biggers059c2a42018-11-16 17:26:31 -0800523 select CRYPTO_NHPOLY1305
Eric Biggersc8a33152019-05-20 09:49:46 -0700524 select CRYPTO_MANAGER
Eric Biggers059c2a42018-11-16 17:26:31 -0800525 help
526 Adiantum is a tweakable, length-preserving encryption mode
527 designed for fast and secure disk encryption, especially on
528 CPUs without dedicated crypto instructions. It encrypts
529 each sector using the XChaCha12 stream cipher, two passes of
530 an ε-almost-∆-universal hash function, and an invocation of
531 the AES-256 block cipher on a single 16-byte block. On CPUs
532 without AES instructions, Adiantum is much faster than
533 AES-XTS.
534
535 Adiantum's security is provably reducible to that of its
536 underlying stream and block ciphers, subject to a security
537 bound. Unlike XTS, Adiantum is a true wide-block encryption
538 mode, so it actually provides an even stronger notion of
539 security than XTS, subject to the security bound.
540
541 If unsure, say N.
542
Ard Biesheuvelbe1eb7f2019-08-19 17:17:33 +0300543config CRYPTO_ESSIV
544 tristate "ESSIV support for block encryption"
545 select CRYPTO_AUTHENC
546 help
547 Encrypted salt-sector initialization vector (ESSIV) is an IV
548 generation method that is used in some cases by fscrypt and/or
549 dm-crypt. It uses the hash of the block encryption key as the
550 symmetric key for a block encryption pass applied to the input
551 IV, making low entropy IV sources more suitable for block
552 encryption.
553
554 This driver implements a crypto API template that can be
Geert Uytterhoevenab3d4362020-01-12 17:58:58 +0100555 instantiated either as an skcipher or as an AEAD (depending on the
Ard Biesheuvelbe1eb7f2019-08-19 17:17:33 +0300556 type of the first template argument), and which defers encryption
557 and decryption requests to the encapsulated cipher after applying
Geert Uytterhoevenab3d4362020-01-12 17:58:58 +0100558 ESSIV to the input IV. Note that in the AEAD case, it is assumed
Ard Biesheuvelbe1eb7f2019-08-19 17:17:33 +0300559 that the keys are presented in the same format used by the authenc
560 template, and that the IV appears at the end of the authenticated
561 associated data (AAD) region (which is how dm-crypt uses it.)
562
563 Note that the use of ESSIV is not recommended for new deployments,
564 and so this only needs to be enabled when interoperability with
565 existing encrypted volumes of filesystems is required, or when
566 building for a particular system that requires it (e.g., when
567 the SoC in question has accelerated CBC but not XTS, making CBC
568 combined with ESSIV the only feasible mode for h/w accelerated
569 block encryption)
570
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800571comment "Hash modes"
572
Jussi Kivilinna93b5e862013-04-08 10:48:44 +0300573config CRYPTO_CMAC
574 tristate "CMAC support"
575 select CRYPTO_HASH
576 select CRYPTO_MANAGER
577 help
578 Cipher-based Message Authentication Code (CMAC) specified by
579 The National Institute of Standards and Technology (NIST).
580
581 https://tools.ietf.org/html/rfc4493
582 http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf
583
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800584config CRYPTO_HMAC
585 tristate "HMAC support"
586 select CRYPTO_HASH
587 select CRYPTO_MANAGER
588 help
589 HMAC: Keyed-Hashing for Message Authentication (RFC2104).
590 This is required for IPSec.
591
592config CRYPTO_XCBC
593 tristate "XCBC support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800594 select CRYPTO_HASH
595 select CRYPTO_MANAGER
596 help
597 XCBC: Keyed-Hashing with encryption algorithm
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +0200598 https://www.ietf.org/rfc/rfc3566.txt
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800599 http://csrc.nist.gov/encryption/modes/proposedmodes/
600 xcbc-mac/xcbc-mac-spec.pdf
601
Shane Wangf1939f72009-09-02 20:05:22 +1000602config CRYPTO_VMAC
603 tristate "VMAC support"
Shane Wangf1939f72009-09-02 20:05:22 +1000604 select CRYPTO_HASH
605 select CRYPTO_MANAGER
606 help
607 VMAC is a message authentication algorithm designed for
608 very high speed on 64-bit architectures.
609
610 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +0200611 <https://fastcrypto.org/vmac>
Shane Wangf1939f72009-09-02 20:05:22 +1000612
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800613comment "Digest"
614
615config CRYPTO_CRC32C
616 tristate "CRC32c CRC algorithm"
Herbert Xu5773a3e2008-07-08 20:54:28 +0800617 select CRYPTO_HASH
Darrick J. Wong6a0962b2012-03-23 15:02:25 -0700618 select CRC32
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800619 help
620 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
621 by iSCSI for header and data digests and by others.
Herbert Xu69c35ef2008-11-07 15:11:47 +0800622 See Castagnoli93. Module will be crc32c.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800623
Austin Zhang8cb51ba2008-08-07 09:57:03 +0800624config CRYPTO_CRC32C_INTEL
625 tristate "CRC32c INTEL hardware acceleration"
626 depends on X86
627 select CRYPTO_HASH
628 help
629 In Intel processor with SSE4.2 supported, the processor will
630 support CRC32C implementation using hardware accelerated CRC32
631 instruction. This option will create 'crc32c-intel' module,
632 which will enable any routine to use the CRC32 instruction to
633 gain performance compared with software implementation.
634 Module will be crc32c-intel.
635
Jean Delvare7cf31862016-11-22 10:32:44 +0100636config CRYPTO_CRC32C_VPMSUM
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000637 tristate "CRC32c CRC algorithm (powerpc64)"
Michael Ellermanc12abf32016-08-09 08:46:15 +1000638 depends on PPC64 && ALTIVEC
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000639 select CRYPTO_HASH
640 select CRC32
641 help
642 CRC32c algorithm implemented using vector polynomial multiply-sum
643 (vpmsum) instructions, introduced in POWER8. Enable on POWER8
644 and newer processors for improved performance.
645
646
David S. Miller442a7c42012-08-22 20:47:36 -0700647config CRYPTO_CRC32C_SPARC64
648 tristate "CRC32c CRC algorithm (SPARC64)"
649 depends on SPARC64
650 select CRYPTO_HASH
651 select CRC32
652 help
653 CRC32c CRC algorithm implemented using sparc64 crypto instructions,
654 when available.
655
Alexander Boyko78c37d12013-01-10 18:54:59 +0400656config CRYPTO_CRC32
657 tristate "CRC32 CRC algorithm"
658 select CRYPTO_HASH
659 select CRC32
660 help
661 CRC-32-IEEE 802.3 cyclic redundancy-check algorithm.
662 Shash crypto api wrappers to crc32_le function.
663
664config CRYPTO_CRC32_PCLMUL
665 tristate "CRC32 PCLMULQDQ hardware acceleration"
666 depends on X86
667 select CRYPTO_HASH
668 select CRC32
669 help
670 From Intel Westmere and AMD Bulldozer processor with SSE4.2
671 and PCLMULQDQ supported, the processor will support
672 CRC32 PCLMULQDQ implementation using hardware accelerated PCLMULQDQ
hacoaf8cb012018-12-28 10:09:40 +0000673 instruction. This option will create 'crc32-pclmul' module,
Alexander Boyko78c37d12013-01-10 18:54:59 +0400674 which will enable any routine to use the CRC-32-IEEE 802.3 checksum
675 and gain better performance as compared with the table implementation.
676
Marcin Nowakowski4a5dc512018-02-09 22:11:06 +0000677config CRYPTO_CRC32_MIPS
678 tristate "CRC32c and CRC32 CRC algorithm (MIPS)"
679 depends on MIPS_CRC_SUPPORT
680 select CRYPTO_HASH
681 help
682 CRC32c and CRC32 CRC algorithms implemented using mips crypto
683 instructions, when available.
684
685
Nikolay Borisov67882e72019-05-30 09:52:57 +0300686config CRYPTO_XXHASH
687 tristate "xxHash hash algorithm"
688 select CRYPTO_HASH
689 select XXHASH
690 help
691 xxHash non-cryptographic hash algorithm. Extremely fast, working at
692 speeds close to RAM limits.
693
David Sterba91d68932019-10-24 18:28:31 +0200694config CRYPTO_BLAKE2B
695 tristate "BLAKE2b digest algorithm"
696 select CRYPTO_HASH
697 help
698 Implementation of cryptographic hash function BLAKE2b (or just BLAKE2),
699 optimized for 64bit platforms and can produce digests of any size
700 between 1 to 64. The keyed hash is also implemented.
701
702 This module provides the following algorithms:
703
704 - blake2b-160
705 - blake2b-256
706 - blake2b-384
707 - blake2b-512
708
709 See https://blake2.net for further information.
710
Ard Biesheuvel7f9b0882019-11-08 13:22:30 +0100711config CRYPTO_BLAKE2S
712 tristate "BLAKE2s digest algorithm"
713 select CRYPTO_LIB_BLAKE2S_GENERIC
714 select CRYPTO_HASH
715 help
716 Implementation of cryptographic hash function BLAKE2s
717 optimized for 8-32bit platforms and can produce digests of any size
718 between 1 to 32. The keyed hash is also implemented.
719
720 This module provides the following algorithms:
721
722 - blake2s-128
723 - blake2s-160
724 - blake2s-224
725 - blake2s-256
726
727 See https://blake2.net for further information.
728
Jason A. Donenfelded0356e2019-11-08 13:22:31 +0100729config CRYPTO_BLAKE2S_X86
730 tristate "BLAKE2s digest algorithm (x86 accelerated version)"
731 depends on X86 && 64BIT
732 select CRYPTO_LIB_BLAKE2S_GENERIC
733 select CRYPTO_ARCH_HAVE_LIB_BLAKE2S
734
Herbert Xu684115212013-09-07 12:56:26 +1000735config CRYPTO_CRCT10DIF
736 tristate "CRCT10DIF algorithm"
737 select CRYPTO_HASH
738 help
739 CRC T10 Data Integrity Field computation is being cast as
740 a crypto transform. This allows for faster crc t10 diff
741 transforms to be used if they are available.
742
743config CRYPTO_CRCT10DIF_PCLMUL
744 tristate "CRCT10DIF PCLMULQDQ hardware acceleration"
745 depends on X86 && 64BIT && CRC_T10DIF
746 select CRYPTO_HASH
747 help
748 For x86_64 processors with SSE4.2 and PCLMULQDQ supported,
749 CRC T10 DIF PCLMULQDQ computation can be hardware
750 accelerated PCLMULQDQ instruction. This option will create
hacoaf8cb012018-12-28 10:09:40 +0000751 'crct10dif-pclmul' module, which is faster when computing the
Herbert Xu684115212013-09-07 12:56:26 +1000752 crct10dif checksum as compared with the generic table implementation.
753
Daniel Axtensb01df1c2017-03-15 23:37:36 +1100754config CRYPTO_CRCT10DIF_VPMSUM
755 tristate "CRC32T10DIF powerpc64 hardware acceleration"
756 depends on PPC64 && ALTIVEC && CRC_T10DIF
757 select CRYPTO_HASH
758 help
759 CRC10T10DIF algorithm implemented using vector polynomial
760 multiply-sum (vpmsum) instructions, introduced in POWER8. Enable on
761 POWER8 and newer processors for improved performance.
762
Daniel Axtens146c8682017-03-15 23:37:37 +1100763config CRYPTO_VPMSUM_TESTER
764 tristate "Powerpc64 vpmsum hardware acceleration tester"
765 depends on CRYPTO_CRCT10DIF_VPMSUM && CRYPTO_CRC32C_VPMSUM
766 help
767 Stress test for CRC32c and CRC-T10DIF algorithms implemented with
768 POWER8 vpmsum instructions.
769 Unless you are testing these algorithms, you don't need this.
770
Huang Ying2cdc6892009-08-06 15:32:38 +1000771config CRYPTO_GHASH
Eric Biggers8dfa20f2019-07-19 23:09:18 -0700772 tristate "GHASH hash function"
Huang Ying2cdc6892009-08-06 15:32:38 +1000773 select CRYPTO_GF128MUL
Arnd Bergmann578c60f2016-01-25 17:51:21 +0100774 select CRYPTO_HASH
Huang Ying2cdc6892009-08-06 15:32:38 +1000775 help
Eric Biggers8dfa20f2019-07-19 23:09:18 -0700776 GHASH is the hash function used in GCM (Galois/Counter Mode).
777 It is not a general-purpose cryptographic hash function.
Huang Ying2cdc6892009-08-06 15:32:38 +1000778
Martin Willif979e012015-06-01 13:43:58 +0200779config CRYPTO_POLY1305
780 tristate "Poly1305 authenticator algorithm"
Arnd Bergmann578c60f2016-01-25 17:51:21 +0100781 select CRYPTO_HASH
Ard Biesheuvel48ea8c62019-11-08 13:22:19 +0100782 select CRYPTO_LIB_POLY1305_GENERIC
Martin Willif979e012015-06-01 13:43:58 +0200783 help
784 Poly1305 authenticator algorithm, RFC7539.
785
786 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
787 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
788 in IETF protocols. This is the portable C implementation of Poly1305.
789
Martin Willic70f4ab2015-07-16 19:14:06 +0200790config CRYPTO_POLY1305_X86_64
Martin Willib1ccc8f2015-07-16 19:14:08 +0200791 tristate "Poly1305 authenticator algorithm (x86_64/SSE2/AVX2)"
Martin Willic70f4ab2015-07-16 19:14:06 +0200792 depends on X86 && 64BIT
Ard Biesheuvel1b2c6a52019-11-08 13:22:22 +0100793 select CRYPTO_LIB_POLY1305_GENERIC
Ard Biesheuvelf0e89bc2019-11-08 13:22:23 +0100794 select CRYPTO_ARCH_HAVE_LIB_POLY1305
Martin Willic70f4ab2015-07-16 19:14:06 +0200795 help
796 Poly1305 authenticator algorithm, RFC7539.
797
798 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
799 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
800 in IETF protocols. This is the x86_64 assembler implementation using SIMD
801 instructions.
802
Ard Biesheuvela11d0552019-11-08 13:22:26 +0100803config CRYPTO_POLY1305_MIPS
804 tristate "Poly1305 authenticator algorithm (MIPS optimized)"
Maciej W. Rozyckib0454a22021-03-03 02:16:04 +0100805 depends on MIPS
Ard Biesheuvela11d0552019-11-08 13:22:26 +0100806 select CRYPTO_ARCH_HAVE_LIB_POLY1305
807
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800808config CRYPTO_MD4
809 tristate "MD4 digest algorithm"
Adrian-Ken Rueegsegger808a1762008-12-03 19:55:27 +0800810 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800812 MD4 message digest algorithm (RFC1320).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800814config CRYPTO_MD5
815 tristate "MD5 digest algorithm"
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800816 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800818 MD5 message digest algorithm (RFC1321).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Aaro Koskinend69e75d2014-12-21 22:54:02 +0200820config CRYPTO_MD5_OCTEON
821 tristate "MD5 digest algorithm (OCTEON)"
822 depends on CPU_CAVIUM_OCTEON
823 select CRYPTO_MD5
824 select CRYPTO_HASH
825 help
826 MD5 message digest algorithm (RFC1321) implemented
827 using OCTEON crypto instructions, when available.
828
Markus Stockhausene8e59952015-03-01 19:30:46 +0100829config CRYPTO_MD5_PPC
830 tristate "MD5 digest algorithm (PPC)"
831 depends on PPC
832 select CRYPTO_HASH
833 help
834 MD5 message digest algorithm (RFC1321) implemented
835 in PPC assembler.
836
David S. Millerfa4dfed2012-08-19 21:51:26 -0700837config CRYPTO_MD5_SPARC64
838 tristate "MD5 digest algorithm (SPARC64)"
839 depends on SPARC64
840 select CRYPTO_MD5
841 select CRYPTO_HASH
842 help
843 MD5 message digest algorithm (RFC1321) implemented
844 using sparc64 crypto instructions, when available.
845
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800846config CRYPTO_MICHAEL_MIC
847 tristate "Michael MIC keyed digest algorithm"
Adrian-Ken Rueegsegger19e2bf12008-12-07 19:35:38 +0800848 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800849 help
850 Michael MIC is used for message integrity protection in TKIP
851 (IEEE 802.11i). This algorithm is required for TKIP, but it
852 should not be used for other purposes because of the weakness
853 of the algorithm.
854
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800855config CRYPTO_RMD128
Adrian Bunkb6d44342008-07-16 19:28:00 +0800856 tristate "RIPEMD-128 digest algorithm"
Herbert Xu7c4468b2008-11-08 09:10:40 +0800857 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800858 help
859 RIPEMD-128 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800860
Adrian Bunkb6d44342008-07-16 19:28:00 +0800861 RIPEMD-128 is a 128-bit cryptographic hash function. It should only
Michael Witten35ed4b32011-07-09 04:02:31 +0000862 be used as a secure replacement for RIPEMD. For other use cases,
Adrian Bunkb6d44342008-07-16 19:28:00 +0800863 RIPEMD-160 should be used.
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800864
Adrian Bunkb6d44342008-07-16 19:28:00 +0800865 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +0200866 See <https://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800867
868config CRYPTO_RMD160
Adrian Bunkb6d44342008-07-16 19:28:00 +0800869 tristate "RIPEMD-160 digest algorithm"
Herbert Xue5835fb2008-11-08 09:18:51 +0800870 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800871 help
872 RIPEMD-160 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800873
Adrian Bunkb6d44342008-07-16 19:28:00 +0800874 RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
875 to be used as a secure replacement for the 128-bit hash functions
876 MD4, MD5 and it's predecessor RIPEMD
877 (not to be confused with RIPEMD-128).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800878
Adrian Bunkb6d44342008-07-16 19:28:00 +0800879 It's speed is comparable to SHA1 and there are no known attacks
880 against RIPEMD-160.
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800881
Adrian Bunkb6d44342008-07-16 19:28:00 +0800882 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +0200883 See <https://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800884
885config CRYPTO_RMD256
Adrian Bunkb6d44342008-07-16 19:28:00 +0800886 tristate "RIPEMD-256 digest algorithm"
Herbert Xud8a5e2e2008-11-08 09:58:10 +0800887 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800888 help
889 RIPEMD-256 is an optional extension of RIPEMD-128 with a
890 256 bit hash. It is intended for applications that require
891 longer hash-results, without needing a larger security level
892 (than RIPEMD-128).
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800893
Adrian Bunkb6d44342008-07-16 19:28:00 +0800894 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +0200895 See <https://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800896
897config CRYPTO_RMD320
Adrian Bunkb6d44342008-07-16 19:28:00 +0800898 tristate "RIPEMD-320 digest algorithm"
Herbert Xu3b8efb42008-11-08 10:11:09 +0800899 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800900 help
901 RIPEMD-320 is an optional extension of RIPEMD-160 with a
902 320 bit hash. It is intended for applications that require
903 longer hash-results, without needing a larger security level
904 (than RIPEMD-160).
Adrian-Ken Rueegsegger534fe2c12008-05-09 21:30:27 +0800905
Adrian Bunkb6d44342008-07-16 19:28:00 +0800906 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +0200907 See <https://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800908
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800909config CRYPTO_SHA1
910 tristate "SHA1 digest algorithm"
Adrian-Ken Rueegsegger54ccb362008-12-02 21:08:20 +0800911 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800912 help
913 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
914
Mathias Krause66be8952011-08-04 20:19:25 +0200915config CRYPTO_SHA1_SSSE3
time38b6b7f2015-09-10 15:27:26 -0700916 tristate "SHA1 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Mathias Krause66be8952011-08-04 20:19:25 +0200917 depends on X86 && 64BIT
918 select CRYPTO_SHA1
919 select CRYPTO_HASH
920 help
921 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
922 using Supplemental SSE3 (SSSE3) instructions or Advanced Vector
time38b6b7f2015-09-10 15:27:26 -0700923 Extensions (AVX/AVX2) or SHA-NI(SHA Extensions New Instructions),
924 when available.
Mathias Krause66be8952011-08-04 20:19:25 +0200925
Tim Chen8275d1a2013-03-26 13:59:17 -0700926config CRYPTO_SHA256_SSSE3
time38b6b7f2015-09-10 15:27:26 -0700927 tristate "SHA256 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Tim Chen8275d1a2013-03-26 13:59:17 -0700928 depends on X86 && 64BIT
929 select CRYPTO_SHA256
930 select CRYPTO_HASH
931 help
932 SHA-256 secure hash standard (DFIPS 180-2) implemented
933 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
934 Extensions version 1 (AVX1), or Advanced Vector Extensions
time38b6b7f2015-09-10 15:27:26 -0700935 version 2 (AVX2) instructions, or SHA-NI (SHA Extensions New
936 Instructions) when available.
Tim Chen8275d1a2013-03-26 13:59:17 -0700937
Tim Chen87de4572013-03-26 14:00:02 -0700938config CRYPTO_SHA512_SSSE3
939 tristate "SHA512 digest algorithm (SSSE3/AVX/AVX2)"
940 depends on X86 && 64BIT
941 select CRYPTO_SHA512
942 select CRYPTO_HASH
943 help
944 SHA-512 secure hash standard (DFIPS 180-2) implemented
945 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
946 Extensions version 1 (AVX1), or Advanced Vector Extensions
947 version 2 (AVX2) instructions, when available.
948
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200949config CRYPTO_SHA1_OCTEON
950 tristate "SHA1 digest algorithm (OCTEON)"
951 depends on CPU_CAVIUM_OCTEON
952 select CRYPTO_SHA1
953 select CRYPTO_HASH
954 help
955 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
956 using OCTEON crypto instructions, when available.
957
David S. Miller4ff28d42012-08-19 15:41:53 -0700958config CRYPTO_SHA1_SPARC64
959 tristate "SHA1 digest algorithm (SPARC64)"
960 depends on SPARC64
961 select CRYPTO_SHA1
962 select CRYPTO_HASH
963 help
964 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
965 using sparc64 crypto instructions, when available.
966
Michael Ellerman323a6bf2012-09-13 23:00:49 +0000967config CRYPTO_SHA1_PPC
968 tristate "SHA1 digest algorithm (powerpc)"
969 depends on PPC
970 help
971 This is the powerpc hardware accelerated implementation of the
972 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
973
Markus Stockhausend9850fc2015-02-24 20:36:50 +0100974config CRYPTO_SHA1_PPC_SPE
975 tristate "SHA1 digest algorithm (PPC SPE)"
976 depends on PPC && SPE
977 help
978 SHA-1 secure hash standard (DFIPS 180-4) implemented
979 using powerpc SPE SIMD instruction set.
980
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800981config CRYPTO_SHA256
982 tristate "SHA224 and SHA256 digest algorithm"
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +0800983 select CRYPTO_HASH
Hans de Goede08c327f2019-08-17 16:24:35 +0200984 select CRYPTO_LIB_SHA256
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800985 help
986 SHA256 secure hash standard (DFIPS 180-2).
987
988 This version of SHA implements a 256 bit hash with 128 bits of
989 security against collision attacks.
990
Adrian Bunkb6d44342008-07-16 19:28:00 +0800991 This code also includes SHA-224, a 224 bit hash with 112 bits
992 of security against collision attacks.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800993
Markus Stockhausen2ecc1e92015-01-30 15:39:34 +0100994config CRYPTO_SHA256_PPC_SPE
995 tristate "SHA224 and SHA256 digest algorithm (PPC SPE)"
996 depends on PPC && SPE
997 select CRYPTO_SHA256
998 select CRYPTO_HASH
999 help
1000 SHA224 and SHA256 secure hash standard (DFIPS 180-2)
1001 implemented using powerpc SPE SIMD instruction set.
1002
Aaro Koskinenefdb6f62015-03-08 22:07:47 +02001003config CRYPTO_SHA256_OCTEON
1004 tristate "SHA224 and SHA256 digest algorithm (OCTEON)"
1005 depends on CPU_CAVIUM_OCTEON
1006 select CRYPTO_SHA256
1007 select CRYPTO_HASH
1008 help
1009 SHA-256 secure hash standard (DFIPS 180-2) implemented
1010 using OCTEON crypto instructions, when available.
1011
David S. Miller86c93b22012-08-19 17:11:37 -07001012config CRYPTO_SHA256_SPARC64
1013 tristate "SHA224 and SHA256 digest algorithm (SPARC64)"
1014 depends on SPARC64
1015 select CRYPTO_SHA256
1016 select CRYPTO_HASH
1017 help
1018 SHA-256 secure hash standard (DFIPS 180-2) implemented
1019 using sparc64 crypto instructions, when available.
1020
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001021config CRYPTO_SHA512
1022 tristate "SHA384 and SHA512 digest algorithms"
Adrian-Ken Rueegseggerbd9d20d2008-12-17 16:49:02 +11001023 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001024 help
1025 SHA512 secure hash standard (DFIPS 180-2).
1026
1027 This version of SHA implements a 512 bit hash with 256 bits of
1028 security against collision attacks.
1029
1030 This code also includes SHA-384, a 384 bit hash with 192 bits
1031 of security against collision attacks.
1032
Aaro Koskinenefdb6f62015-03-08 22:07:47 +02001033config CRYPTO_SHA512_OCTEON
1034 tristate "SHA384 and SHA512 digest algorithms (OCTEON)"
1035 depends on CPU_CAVIUM_OCTEON
1036 select CRYPTO_SHA512
1037 select CRYPTO_HASH
1038 help
1039 SHA-512 secure hash standard (DFIPS 180-2) implemented
1040 using OCTEON crypto instructions, when available.
1041
David S. Miller775e0c62012-08-19 17:37:56 -07001042config CRYPTO_SHA512_SPARC64
1043 tristate "SHA384 and SHA512 digest algorithm (SPARC64)"
1044 depends on SPARC64
1045 select CRYPTO_SHA512
1046 select CRYPTO_HASH
1047 help
1048 SHA-512 secure hash standard (DFIPS 180-2) implemented
1049 using sparc64 crypto instructions, when available.
1050
Jeff Garzik53964b92016-06-17 10:30:35 +05301051config CRYPTO_SHA3
1052 tristate "SHA3 digest algorithm"
1053 select CRYPTO_HASH
1054 help
1055 SHA-3 secure hash standard (DFIPS 202). It's based on
1056 cryptographic sponge function family called Keccak.
1057
1058 References:
1059 http://keccak.noekeon.org/
1060
Gilad Ben-Yossef4f0fc162017-08-21 13:51:28 +03001061config CRYPTO_SM3
1062 tristate "SM3 digest algorithm"
1063 select CRYPTO_HASH
1064 help
1065 SM3 secure hash function as defined by OSCCA GM/T 0004-2012 SM3).
1066 It is part of the Chinese Commercial Cryptography suite.
1067
1068 References:
1069 http://www.oscca.gov.cn/UpFile/20101222141857786.pdf
1070 https://datatracker.ietf.org/doc/html/draft-shen-sm3-hash
1071
Vitaly Chikunovfe189572018-11-07 00:00:01 +03001072config CRYPTO_STREEBOG
1073 tristate "Streebog Hash Function"
1074 select CRYPTO_HASH
1075 help
1076 Streebog Hash Function (GOST R 34.11-2012, RFC 6986) is one of the Russian
1077 cryptographic standard algorithms (called GOST algorithms).
1078 This setting enables two hash algorithms with 256 and 512 bits output.
1079
1080 References:
1081 https://tc26.ru/upload/iblock/fed/feddbb4d26b685903faa2ba11aea43f6.pdf
1082 https://tools.ietf.org/html/rfc6986
1083
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001084config CRYPTO_TGR192
1085 tristate "Tiger digest algorithms"
Adrian-Ken Rueegseggerf63fbd32008-12-03 19:58:32 +08001086 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001087 help
1088 Tiger hash algorithm 192, 160 and 128-bit hashes
1089
1090 Tiger is a hash function optimized for 64-bit processors while
1091 still having decent performance on 32-bit processors.
1092 Tiger was developed by Ross Anderson and Eli Biham.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001095 <https://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001096
1097config CRYPTO_WP512
1098 tristate "Whirlpool digest algorithms"
Adrian-Ken Rueegsegger49465102008-12-07 19:34:37 +08001099 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001100 help
1101 Whirlpool hash algorithm 512, 384 and 256-bit hashes
1102
1103 Whirlpool-512 is part of the NESSIE cryptographic primitives.
1104 Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard
1105
1106 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001107 <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001108
Huang Ying0e1227d2009-10-19 11:53:06 +09001109config CRYPTO_GHASH_CLMUL_NI_INTEL
Eric Biggers8dfa20f2019-07-19 23:09:18 -07001110 tristate "GHASH hash function (CLMUL-NI accelerated)"
Richard Weinberger8af00862011-06-08 20:56:29 +08001111 depends on X86 && 64BIT
Huang Ying0e1227d2009-10-19 11:53:06 +09001112 select CRYPTO_CRYPTD
1113 help
Eric Biggers8dfa20f2019-07-19 23:09:18 -07001114 This is the x86_64 CLMUL-NI accelerated implementation of
1115 GHASH, the hash function used in GCM (Galois/Counter mode).
Huang Ying0e1227d2009-10-19 11:53:06 +09001116
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001117comment "Ciphers"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119config CRYPTO_AES
1120 tristate "AES cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +10001121 select CRYPTO_ALGAPI
Ard Biesheuvel5bb12d72019-07-02 21:41:33 +02001122 select CRYPTO_LIB_AES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001124 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 algorithm.
1126
1127 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001128 both hardware and software across a wide range of computing
1129 environments regardless of its use in feedback or non-feedback
1130 modes. Its key setup time is excellent, and its key agility is
1131 good. Rijndael's very low memory requirements make it very well
1132 suited for restricted-space environments, in which it also
1133 demonstrates excellent performance. Rijndael's operations are
1134 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001136 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
1139
Ard Biesheuvelb5e0b032017-02-02 16:37:40 +00001140config CRYPTO_AES_TI
1141 tristate "Fixed time AES cipher"
1142 select CRYPTO_ALGAPI
Ard Biesheuvele59c1c92019-07-02 21:41:22 +02001143 select CRYPTO_LIB_AES
Ard Biesheuvelb5e0b032017-02-02 16:37:40 +00001144 help
1145 This is a generic implementation of AES that attempts to eliminate
1146 data dependent latencies as much as possible without affecting
1147 performance too much. It is intended for use by the generic CCM
1148 and GCM drivers, and other CTR or CMAC/XCBC based modes that rely
1149 solely on encryption (although decryption is supported as well, but
1150 with a more dramatic performance hit)
1151
1152 Instead of using 16 lookup tables of 1 KB each, (8 for encryption and
1153 8 for decryption), this implementation only uses just two S-boxes of
1154 256 bytes each, and attempts to eliminate data dependent latencies by
1155 prefetching the entire table into the cache at the start of each
Eric Biggers0a6a40c2018-10-17 21:37:58 -07001156 block. Interrupts are also disabled to avoid races where cachelines
1157 are evicted when the CPU is interrupted to do something else.
Ard Biesheuvelb5e0b032017-02-02 16:37:40 +00001158
Huang Ying54b6a1b2009-01-18 16:28:34 +11001159config CRYPTO_AES_NI_INTEL
1160 tristate "AES cipher algorithms (AES-NI)"
Richard Weinberger8af00862011-06-08 20:56:29 +08001161 depends on X86
Herbert Xu85671862016-11-22 20:08:33 +08001162 select CRYPTO_AEAD
Ard Biesheuvel2c53fd12019-07-02 21:41:23 +02001163 select CRYPTO_LIB_AES
Huang Ying54b6a1b2009-01-18 16:28:34 +11001164 select CRYPTO_ALGAPI
Eric Biggersb95bba52019-10-25 12:41:13 -07001165 select CRYPTO_SKCIPHER
Jussi Kivilinna7643a112013-04-10 18:39:20 +03001166 select CRYPTO_GLUE_HELPER_X86 if 64BIT
Herbert Xu85671862016-11-22 20:08:33 +08001167 select CRYPTO_SIMD
Huang Ying54b6a1b2009-01-18 16:28:34 +11001168 help
1169 Use Intel AES-NI instructions for AES algorithm.
1170
1171 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1172 algorithm.
1173
1174 Rijndael appears to be consistently a very good performer in
1175 both hardware and software across a wide range of computing
1176 environments regardless of its use in feedback or non-feedback
1177 modes. Its key setup time is excellent, and its key agility is
1178 good. Rijndael's very low memory requirements make it very well
1179 suited for restricted-space environments, in which it also
1180 demonstrates excellent performance. Rijndael's operations are
1181 among the easiest to defend against power and timing attacks.
1182
1183 The AES specifies three key sizes: 128, 192 and 256 bits
1184
1185 See <http://csrc.nist.gov/encryption/aes/> for more information.
1186
Mathias Krause0d258ef2010-11-27 16:34:46 +08001187 In addition to AES cipher algorithm support, the acceleration
1188 for some popular block cipher mode is supported too, including
Ard Biesheuvel944585a2018-09-24 14:48:16 +02001189 ECB, CBC, LRW, XTS. The 64 bit version has additional
Mathias Krause0d258ef2010-11-27 16:34:46 +08001190 acceleration for CTR.
Huang Ying2cf4ac82009-03-29 15:41:20 +08001191
David S. Miller9bf48522012-08-21 03:58:13 -07001192config CRYPTO_AES_SPARC64
1193 tristate "AES cipher algorithms (SPARC64)"
1194 depends on SPARC64
Eric Biggersb95bba52019-10-25 12:41:13 -07001195 select CRYPTO_SKCIPHER
David S. Miller9bf48522012-08-21 03:58:13 -07001196 help
1197 Use SPARC64 crypto opcodes for AES algorithm.
1198
1199 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1200 algorithm.
1201
1202 Rijndael appears to be consistently a very good performer in
1203 both hardware and software across a wide range of computing
1204 environments regardless of its use in feedback or non-feedback
1205 modes. Its key setup time is excellent, and its key agility is
1206 good. Rijndael's very low memory requirements make it very well
1207 suited for restricted-space environments, in which it also
1208 demonstrates excellent performance. Rijndael's operations are
1209 among the easiest to defend against power and timing attacks.
1210
1211 The AES specifies three key sizes: 128, 192 and 256 bits
1212
1213 See <http://csrc.nist.gov/encryption/aes/> for more information.
1214
1215 In addition to AES cipher algorithm support, the acceleration
1216 for some popular block cipher mode is supported too, including
1217 ECB and CBC.
1218
Markus Stockhausen504c6142015-02-22 10:00:10 +01001219config CRYPTO_AES_PPC_SPE
1220 tristate "AES cipher algorithms (PPC SPE)"
1221 depends on PPC && SPE
Eric Biggersb95bba52019-10-25 12:41:13 -07001222 select CRYPTO_SKCIPHER
Markus Stockhausen504c6142015-02-22 10:00:10 +01001223 help
1224 AES cipher algorithms (FIPS-197). Additionally the acceleration
1225 for popular block cipher modes ECB, CBC, CTR and XTS is supported.
1226 This module should only be used for low power (router) devices
1227 without hardware AES acceleration (e.g. caam crypto). It reduces the
1228 size of the AES tables from 16KB to 8KB + 256 bytes and mitigates
1229 timining attacks. Nevertheless it might be not as secure as other
1230 architecture specific assembler implementations that work on 1KB
1231 tables or 256 bytes S-boxes.
1232
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001233config CRYPTO_ANUBIS
1234 tristate "Anubis cipher algorithm"
Ard Biesheuvel1674aea2020-09-11 17:11:03 +03001235 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001236 select CRYPTO_ALGAPI
1237 help
1238 Anubis cipher algorithm.
1239
1240 Anubis is a variable key length cipher which can use keys from
1241 128 bits to 320 bits in length. It was evaluated as a entrant
1242 in the NESSIE competition.
1243
1244 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001245 <https://www.cosic.esat.kuleuven.be/nessie/reports/>
1246 <http://www.larc.usp.br/~pbarreto/AnubisPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001247
1248config CRYPTO_ARC4
1249 tristate "ARC4 cipher algorithm"
Ard Biesheuvel9ace6772020-08-31 18:16:49 +03001250 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
Eric Biggersb95bba52019-10-25 12:41:13 -07001251 select CRYPTO_SKCIPHER
Ard Biesheuveldc51f252019-06-12 18:19:53 +02001252 select CRYPTO_LIB_ARC4
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001253 help
1254 ARC4 cipher algorithm.
1255
1256 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
1257 bits in length. This algorithm is required for driver-based
1258 WEP, but it should not be for other purposes because of the
1259 weakness of the algorithm.
1260
1261config CRYPTO_BLOWFISH
1262 tristate "Blowfish cipher algorithm"
1263 select CRYPTO_ALGAPI
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001264 select CRYPTO_BLOWFISH_COMMON
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001265 help
1266 Blowfish cipher algorithm, by Bruce Schneier.
1267
1268 This is a variable key length cipher which can use keys from 32
1269 bits to 448 bits in length. It's fast, simple and specifically
1270 designed for use on "large microprocessors".
1271
1272 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001273 <https://www.schneier.com/blowfish.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001274
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001275config CRYPTO_BLOWFISH_COMMON
1276 tristate
1277 help
1278 Common parts of the Blowfish cipher algorithm shared by the
1279 generic c and the assembler implementations.
1280
1281 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001282 <https://www.schneier.com/blowfish.html>
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001283
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001284config CRYPTO_BLOWFISH_X86_64
1285 tristate "Blowfish cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001286 depends on X86 && 64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001287 select CRYPTO_SKCIPHER
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001288 select CRYPTO_BLOWFISH_COMMON
1289 help
1290 Blowfish cipher algorithm (x86_64), by Bruce Schneier.
1291
1292 This is a variable key length cipher which can use keys from 32
1293 bits to 448 bits in length. It's fast, simple and specifically
1294 designed for use on "large microprocessors".
1295
1296 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001297 <https://www.schneier.com/blowfish.html>
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001298
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001299config CRYPTO_CAMELLIA
1300 tristate "Camellia cipher algorithms"
1301 depends on CRYPTO
1302 select CRYPTO_ALGAPI
1303 help
1304 Camellia cipher algorithms module.
1305
1306 Camellia is a symmetric key block cipher developed jointly
1307 at NTT and Mitsubishi Electric Corporation.
1308
1309 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1310
1311 See also:
1312 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1313
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001314config CRYPTO_CAMELLIA_X86_64
1315 tristate "Camellia cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001316 depends on X86 && 64BIT
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001317 depends on CRYPTO
Eric Biggersb95bba52019-10-25 12:41:13 -07001318 select CRYPTO_SKCIPHER
Jussi Kivilinna964263a2012-06-18 14:07:29 +03001319 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001320 help
1321 Camellia cipher algorithm module (x86_64).
1322
1323 Camellia is a symmetric key block cipher developed jointly
1324 at NTT and Mitsubishi Electric Corporation.
1325
1326 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1327
1328 See also:
1329 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1330
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001331config CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1332 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX)"
1333 depends on X86 && 64BIT
1334 depends on CRYPTO
Eric Biggersb95bba52019-10-25 12:41:13 -07001335 select CRYPTO_SKCIPHER
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001336 select CRYPTO_CAMELLIA_X86_64
Eric Biggers44893bc2018-02-19 23:48:23 -08001337 select CRYPTO_GLUE_HELPER_X86
1338 select CRYPTO_SIMD
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001339 select CRYPTO_XTS
1340 help
1341 Camellia cipher algorithm module (x86_64/AES-NI/AVX).
1342
1343 Camellia is a symmetric key block cipher developed jointly
1344 at NTT and Mitsubishi Electric Corporation.
1345
1346 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1347
1348 See also:
1349 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1350
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001351config CRYPTO_CAMELLIA_AESNI_AVX2_X86_64
1352 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX2)"
1353 depends on X86 && 64BIT
1354 depends on CRYPTO
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001355 select CRYPTO_CAMELLIA_AESNI_AVX_X86_64
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001356 help
1357 Camellia cipher algorithm module (x86_64/AES-NI/AVX2).
1358
1359 Camellia is a symmetric key block cipher developed jointly
1360 at NTT and Mitsubishi Electric Corporation.
1361
1362 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1363
1364 See also:
1365 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1366
David S. Miller81658ad2012-08-28 12:05:54 -07001367config CRYPTO_CAMELLIA_SPARC64
1368 tristate "Camellia cipher algorithm (SPARC64)"
1369 depends on SPARC64
1370 depends on CRYPTO
1371 select CRYPTO_ALGAPI
Eric Biggersb95bba52019-10-25 12:41:13 -07001372 select CRYPTO_SKCIPHER
David S. Miller81658ad2012-08-28 12:05:54 -07001373 help
1374 Camellia cipher algorithm module (SPARC64).
1375
1376 Camellia is a symmetric key block cipher developed jointly
1377 at NTT and Mitsubishi Electric Corporation.
1378
1379 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1380
1381 See also:
1382 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1383
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001384config CRYPTO_CAST_COMMON
1385 tristate
1386 help
1387 Common parts of the CAST cipher algorithms shared by the
1388 generic c and the assembler implementations.
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390config CRYPTO_CAST5
1391 tristate "CAST5 (CAST-128) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001392 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001393 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 help
1395 The CAST5 encryption algorithm (synonymous with CAST-128) is
1396 described in RFC2144.
1397
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001398config CRYPTO_CAST5_AVX_X86_64
1399 tristate "CAST5 (CAST-128) cipher algorithm (x86_64/AVX)"
1400 depends on X86 && 64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001401 select CRYPTO_SKCIPHER
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001402 select CRYPTO_CAST5
Eric Biggers1e631832018-02-19 23:48:13 -08001403 select CRYPTO_CAST_COMMON
1404 select CRYPTO_SIMD
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001405 help
1406 The CAST5 encryption algorithm (synonymous with CAST-128) is
1407 described in RFC2144.
1408
1409 This module provides the Cast5 cipher algorithm that processes
1410 sixteen blocks parallel using the AVX instruction set.
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412config CRYPTO_CAST6
1413 tristate "CAST6 (CAST-256) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001414 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001415 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 help
1417 The CAST6 encryption algorithm (synonymous with CAST-256) is
1418 described in RFC2612.
1419
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001420config CRYPTO_CAST6_AVX_X86_64
1421 tristate "CAST6 (CAST-256) cipher algorithm (x86_64/AVX)"
1422 depends on X86 && 64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001423 select CRYPTO_SKCIPHER
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001424 select CRYPTO_CAST6
Eric Biggers4bd96922018-02-19 23:48:15 -08001425 select CRYPTO_CAST_COMMON
1426 select CRYPTO_GLUE_HELPER_X86
1427 select CRYPTO_SIMD
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001428 select CRYPTO_XTS
1429 help
1430 The CAST6 encryption algorithm (synonymous with CAST-256) is
1431 described in RFC2612.
1432
1433 This module provides the Cast6 cipher algorithm that processes
1434 eight blocks parallel using the AVX instruction set.
1435
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001436config CRYPTO_DES
1437 tristate "DES and Triple DES EDE cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +10001438 select CRYPTO_ALGAPI
Ard Biesheuvel04007b02019-08-15 12:01:09 +03001439 select CRYPTO_LIB_DES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001441 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
David S. Millerc5aac2d2012-08-25 22:37:23 -07001443config CRYPTO_DES_SPARC64
1444 tristate "DES and Triple DES EDE cipher algorithms (SPARC64)"
Dave Jones97da37b2012-10-02 17:13:20 -04001445 depends on SPARC64
David S. Millerc5aac2d2012-08-25 22:37:23 -07001446 select CRYPTO_ALGAPI
Ard Biesheuvel04007b02019-08-15 12:01:09 +03001447 select CRYPTO_LIB_DES
Eric Biggersb95bba52019-10-25 12:41:13 -07001448 select CRYPTO_SKCIPHER
David S. Millerc5aac2d2012-08-25 22:37:23 -07001449 help
1450 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3),
1451 optimized using SPARC64 crypto opcodes.
1452
Jussi Kivilinna6574e6c2014-06-09 20:59:54 +03001453config CRYPTO_DES3_EDE_X86_64
1454 tristate "Triple DES EDE cipher algorithm (x86-64)"
1455 depends on X86 && 64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001456 select CRYPTO_SKCIPHER
Ard Biesheuvel04007b02019-08-15 12:01:09 +03001457 select CRYPTO_LIB_DES
Jussi Kivilinna6574e6c2014-06-09 20:59:54 +03001458 help
1459 Triple DES EDE (FIPS 46-3) algorithm.
1460
1461 This module provides implementation of the Triple DES EDE cipher
1462 algorithm that is optimized for x86-64 processors. Two versions of
1463 algorithm are provided; regular processing one input block and
1464 one that processes three blocks parallel.
1465
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001466config CRYPTO_FCRYPT
1467 tristate "FCrypt cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001468 select CRYPTO_ALGAPI
Eric Biggersb95bba52019-10-25 12:41:13 -07001469 select CRYPTO_SKCIPHER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001471 FCrypt algorithm used by RxRPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473config CRYPTO_KHAZAD
1474 tristate "Khazad cipher algorithm"
Ard Biesheuvel1674aea2020-09-11 17:11:03 +03001475 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
Herbert Xucce9e062006-08-21 21:08:13 +10001476 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 help
1478 Khazad cipher algorithm.
1479
1480 Khazad was a finalist in the initial NESSIE competition. It is
1481 an algorithm optimized for 64-bit processors with good performance
1482 on 32-bit processors. Khazad uses an 128 bit key size.
1483
1484 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001485 <http://www.larc.usp.br/~pbarreto/KhazadPage.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Tan Swee Heng2407d602007-11-23 19:45:00 +08001487config CRYPTO_SALSA20
Kees Cook3b4afaf2012-10-02 11:16:49 -07001488 tristate "Salsa20 stream cipher algorithm"
Eric Biggersb95bba52019-10-25 12:41:13 -07001489 select CRYPTO_SKCIPHER
Tan Swee Heng2407d602007-11-23 19:45:00 +08001490 help
1491 Salsa20 stream cipher algorithm.
1492
1493 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001494 Stream Cipher Project. See <https://www.ecrypt.eu.org/stream/>
Tan Swee Heng2407d602007-11-23 19:45:00 +08001495
1496 The Salsa20 stream cipher algorithm is designed by Daniel J.
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001497 Bernstein <djb@cr.yp.to>. See <https://cr.yp.to/snuffle.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Martin Willic08d0e62015-06-01 13:43:56 +02001499config CRYPTO_CHACHA20
Eric Biggersaa762402018-11-16 17:26:22 -08001500 tristate "ChaCha stream cipher algorithms"
Ard Biesheuvel5fb8ef22019-11-08 13:22:08 +01001501 select CRYPTO_LIB_CHACHA_GENERIC
Eric Biggersb95bba52019-10-25 12:41:13 -07001502 select CRYPTO_SKCIPHER
Martin Willic08d0e62015-06-01 13:43:56 +02001503 help
Eric Biggersaa762402018-11-16 17:26:22 -08001504 The ChaCha20, XChaCha20, and XChaCha12 stream cipher algorithms.
Martin Willic08d0e62015-06-01 13:43:56 +02001505
1506 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1507 Bernstein and further specified in RFC7539 for use in IETF protocols.
Eric Biggersde61d7a2018-11-16 17:26:20 -08001508 This is the portable C implementation of ChaCha20. See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001509 <https://cr.yp.to/chacha/chacha-20080128.pdf>
Martin Willic08d0e62015-06-01 13:43:56 +02001510
Eric Biggersde61d7a2018-11-16 17:26:20 -08001511 XChaCha20 is the application of the XSalsa20 construction to ChaCha20
1512 rather than to Salsa20. XChaCha20 extends ChaCha20's nonce length
1513 from 64 bits (or 96 bits using the RFC7539 convention) to 192 bits,
1514 while provably retaining ChaCha20's security. See also:
1515 <https://cr.yp.to/snuffle/xsalsa-20081128.pdf>
1516
Eric Biggersaa762402018-11-16 17:26:22 -08001517 XChaCha12 is XChaCha20 reduced to 12 rounds, with correspondingly
1518 reduced security margin but increased performance. It can be needed
1519 in some performance-sensitive scenarios.
1520
Martin Willic9320b62015-07-16 19:14:01 +02001521config CRYPTO_CHACHA20_X86_64
Eric Biggers4af78262018-12-04 22:20:02 -08001522 tristate "ChaCha stream cipher algorithms (x86_64/SSSE3/AVX2/AVX-512VL)"
Martin Willic9320b62015-07-16 19:14:01 +02001523 depends on X86 && 64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001524 select CRYPTO_SKCIPHER
Ard Biesheuvel28e8d892019-11-08 13:22:09 +01001525 select CRYPTO_LIB_CHACHA_GENERIC
Ard Biesheuvel84e03fa2019-11-08 13:22:10 +01001526 select CRYPTO_ARCH_HAVE_LIB_CHACHA
Martin Willic9320b62015-07-16 19:14:01 +02001527 help
Eric Biggers7a507d62018-12-04 22:20:04 -08001528 SSSE3, AVX2, and AVX-512VL optimized implementations of the ChaCha20,
1529 XChaCha20, and XChaCha12 stream ciphers.
Martin Willic9320b62015-07-16 19:14:01 +02001530
Ard Biesheuvel3a2f58f2019-11-08 13:22:17 +01001531config CRYPTO_CHACHA_MIPS
1532 tristate "ChaCha stream cipher algorithms (MIPS 32r2 optimized)"
1533 depends on CPU_MIPS32_R2
Eric Biggers660eda82019-11-16 18:53:24 -08001534 select CRYPTO_SKCIPHER
Ard Biesheuvel3a2f58f2019-11-08 13:22:17 +01001535 select CRYPTO_ARCH_HAVE_LIB_CHACHA
1536
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001537config CRYPTO_SEED
1538 tristate "SEED cipher algorithm"
Ard Biesheuvel1674aea2020-09-11 17:11:03 +03001539 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001540 select CRYPTO_ALGAPI
1541 help
1542 SEED cipher algorithm (RFC4269).
1543
1544 SEED is a 128-bit symmetric key block cipher that has been
1545 developed by KISA (Korea Information Security Agency) as a
1546 national standard encryption algorithm of the Republic of Korea.
1547 It is a 16 round block cipher with the key size of 128 bit.
1548
1549 See also:
1550 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
1551
1552config CRYPTO_SERPENT
1553 tristate "Serpent cipher algorithm"
1554 select CRYPTO_ALGAPI
1555 help
1556 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1557
1558 Keys are allowed to be from 0 to 256 bits in length, in steps
1559 of 8 bits. Also includes the 'Tnepres' algorithm, a reversed
1560 variant of Serpent for compatibility with old kerneli.org code.
1561
1562 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001563 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001564
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001565config CRYPTO_SERPENT_SSE2_X86_64
1566 tristate "Serpent cipher algorithm (x86_64/SSE2)"
1567 depends on X86 && 64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001568 select CRYPTO_SKCIPHER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001569 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001570 select CRYPTO_SERPENT
Eric Biggerse0f409d2018-02-19 23:48:03 -08001571 select CRYPTO_SIMD
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001572 help
1573 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1574
1575 Keys are allowed to be from 0 to 256 bits in length, in steps
1576 of 8 bits.
1577
Masanari Iida1e6232f2015-04-04 00:20:30 +09001578 This module provides Serpent cipher algorithm that processes eight
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001579 blocks parallel using SSE2 instruction set.
1580
1581 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001582 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001583
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001584config CRYPTO_SERPENT_SSE2_586
1585 tristate "Serpent cipher algorithm (i586/SSE2)"
1586 depends on X86 && !64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001587 select CRYPTO_SKCIPHER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001588 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001589 select CRYPTO_SERPENT
Eric Biggerse0f409d2018-02-19 23:48:03 -08001590 select CRYPTO_SIMD
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001591 help
1592 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1593
1594 Keys are allowed to be from 0 to 256 bits in length, in steps
1595 of 8 bits.
1596
1597 This module provides Serpent cipher algorithm that processes four
1598 blocks parallel using SSE2 instruction set.
1599
1600 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001601 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001602
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001603config CRYPTO_SERPENT_AVX_X86_64
1604 tristate "Serpent cipher algorithm (x86_64/AVX)"
1605 depends on X86 && 64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001606 select CRYPTO_SKCIPHER
Jussi Kivilinna1d0debb2012-06-18 14:07:24 +03001607 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001608 select CRYPTO_SERPENT
Eric Biggerse16bf972018-02-19 23:48:06 -08001609 select CRYPTO_SIMD
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001610 select CRYPTO_XTS
1611 help
1612 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1613
1614 Keys are allowed to be from 0 to 256 bits in length, in steps
1615 of 8 bits.
1616
1617 This module provides the Serpent cipher algorithm that processes
1618 eight blocks parallel using the AVX instruction set.
1619
1620 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001621 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001622
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001623config CRYPTO_SERPENT_AVX2_X86_64
1624 tristate "Serpent cipher algorithm (x86_64/AVX2)"
1625 depends on X86 && 64BIT
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001626 select CRYPTO_SERPENT_AVX_X86_64
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001627 help
1628 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1629
1630 Keys are allowed to be from 0 to 256 bits in length, in steps
1631 of 8 bits.
1632
1633 This module provides Serpent cipher algorithm that processes 16
1634 blocks parallel using AVX2 instruction set.
1635
1636 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001637 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001638
Gilad Ben-Yossef747c8ce2018-03-06 09:44:42 +00001639config CRYPTO_SM4
1640 tristate "SM4 cipher algorithm"
1641 select CRYPTO_ALGAPI
1642 help
1643 SM4 cipher algorithms (OSCCA GB/T 32907-2016).
1644
1645 SM4 (GBT.32907-2016) is a cryptographic standard issued by the
1646 Organization of State Commercial Administration of China (OSCCA)
1647 as an authorized cryptographic algorithms for the use within China.
1648
1649 SMS4 was originally created for use in protecting wireless
1650 networks, and is mandated in the Chinese National Standard for
1651 Wireless LAN WAPI (Wired Authentication and Privacy Infrastructure)
1652 (GB.15629.11-2003).
1653
1654 The latest SM4 standard (GBT.32907-2016) was proposed by OSCCA and
1655 standardized through TC 260 of the Standardization Administration
1656 of the People's Republic of China (SAC).
1657
1658 The input, output, and key of SMS4 are each 128 bits.
1659
1660 See also: <https://eprint.iacr.org/2008/329.pdf>
1661
1662 If unsure, say N.
1663
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001664config CRYPTO_TEA
1665 tristate "TEA, XTEA and XETA cipher algorithms"
Ard Biesheuvel1674aea2020-09-11 17:11:03 +03001666 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001667 select CRYPTO_ALGAPI
1668 help
1669 TEA cipher algorithm.
1670
1671 Tiny Encryption Algorithm is a simple cipher that uses
1672 many rounds for security. It is very fast and uses
1673 little memory.
1674
1675 Xtendend Tiny Encryption Algorithm is a modification to
1676 the TEA algorithm to address a potential key weakness
1677 in the TEA algorithm.
1678
1679 Xtendend Encryption Tiny Algorithm is a mis-implementation
1680 of the XTEA algorithm for compatibility purposes.
1681
1682config CRYPTO_TWOFISH
1683 tristate "Twofish cipher algorithm"
1684 select CRYPTO_ALGAPI
1685 select CRYPTO_TWOFISH_COMMON
1686 help
1687 Twofish cipher algorithm.
1688
1689 Twofish was submitted as an AES (Advanced Encryption Standard)
1690 candidate cipher by researchers at CounterPane Systems. It is a
1691 16 round block cipher supporting key sizes of 128, 192, and 256
1692 bits.
1693
1694 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001695 <https://www.schneier.com/twofish.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001696
1697config CRYPTO_TWOFISH_COMMON
1698 tristate
1699 help
1700 Common parts of the Twofish cipher algorithm shared by the
1701 generic c and the assembler implementations.
1702
1703config CRYPTO_TWOFISH_586
1704 tristate "Twofish cipher algorithms (i586)"
1705 depends on (X86 || UML_X86) && !64BIT
1706 select CRYPTO_ALGAPI
1707 select CRYPTO_TWOFISH_COMMON
1708 help
1709 Twofish cipher algorithm.
1710
1711 Twofish was submitted as an AES (Advanced Encryption Standard)
1712 candidate cipher by researchers at CounterPane Systems. It is a
1713 16 round block cipher supporting key sizes of 128, 192, and 256
1714 bits.
1715
1716 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001717 <https://www.schneier.com/twofish.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001718
1719config CRYPTO_TWOFISH_X86_64
1720 tristate "Twofish cipher algorithm (x86_64)"
1721 depends on (X86 || UML_X86) && 64BIT
1722 select CRYPTO_ALGAPI
1723 select CRYPTO_TWOFISH_COMMON
1724 help
1725 Twofish cipher algorithm (x86_64).
1726
1727 Twofish was submitted as an AES (Advanced Encryption Standard)
1728 candidate cipher by researchers at CounterPane Systems. It is a
1729 16 round block cipher supporting key sizes of 128, 192, and 256
1730 bits.
1731
1732 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001733 <https://www.schneier.com/twofish.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001734
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001735config CRYPTO_TWOFISH_X86_64_3WAY
1736 tristate "Twofish cipher algorithm (x86_64, 3-way parallel)"
Al Virof21a7c12012-04-08 20:31:22 -04001737 depends on X86 && 64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001738 select CRYPTO_SKCIPHER
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001739 select CRYPTO_TWOFISH_COMMON
1740 select CRYPTO_TWOFISH_X86_64
Jussi Kivilinna414cb5e2012-06-18 14:07:34 +03001741 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001742 help
1743 Twofish cipher algorithm (x86_64, 3-way parallel).
1744
1745 Twofish was submitted as an AES (Advanced Encryption Standard)
1746 candidate cipher by researchers at CounterPane Systems. It is a
1747 16 round block cipher supporting key sizes of 128, 192, and 256
1748 bits.
1749
1750 This module provides Twofish cipher algorithm that processes three
1751 blocks parallel, utilizing resources of out-of-order CPUs better.
1752
1753 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001754 <https://www.schneier.com/twofish.html>
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001755
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001756config CRYPTO_TWOFISH_AVX_X86_64
1757 tristate "Twofish cipher algorithm (x86_64/AVX)"
1758 depends on X86 && 64BIT
Eric Biggersb95bba52019-10-25 12:41:13 -07001759 select CRYPTO_SKCIPHER
Jussi Kivilinnaa7378d42012-06-18 14:07:39 +03001760 select CRYPTO_GLUE_HELPER_X86
Eric Biggers0e6ab462018-02-19 23:48:11 -08001761 select CRYPTO_SIMD
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001762 select CRYPTO_TWOFISH_COMMON
1763 select CRYPTO_TWOFISH_X86_64
1764 select CRYPTO_TWOFISH_X86_64_3WAY
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001765 help
1766 Twofish cipher algorithm (x86_64/AVX).
1767
1768 Twofish was submitted as an AES (Advanced Encryption Standard)
1769 candidate cipher by researchers at CounterPane Systems. It is a
1770 16 round block cipher supporting key sizes of 128, 192, and 256
1771 bits.
1772
1773 This module provides the Twofish cipher algorithm that processes
1774 eight blocks parallel using the AVX Instruction Set.
1775
1776 See also:
Alexander A. Klimov9332a9e2020-07-19 18:49:59 +02001777 <https://www.schneier.com/twofish.html>
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001778
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001779comment "Compression"
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781config CRYPTO_DEFLATE
1782 tristate "Deflate compression algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001783 select CRYPTO_ALGAPI
Giovanni Cabidduf6ded092016-10-21 13:19:53 +01001784 select CRYPTO_ACOMP2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 select ZLIB_INFLATE
1786 select ZLIB_DEFLATE
1787 help
1788 This is the Deflate algorithm (RFC1951), specified for use in
1789 IPSec with the IPCOMP protocol (RFC3173, RFC2394).
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 You will most probably want this if using IPSec.
1792
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001793config CRYPTO_LZO
1794 tristate "LZO compression algorithm"
1795 select CRYPTO_ALGAPI
Giovanni Cabidduac9d2c42016-10-21 13:19:49 +01001796 select CRYPTO_ACOMP2
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001797 select LZO_COMPRESS
1798 select LZO_DECOMPRESS
1799 help
1800 This is the LZO algorithm.
1801
Seth Jennings35a1fc12012-07-19 09:42:41 -05001802config CRYPTO_842
1803 tristate "842 compression algorithm"
Dan Streetman2062c5b2015-05-07 13:49:15 -04001804 select CRYPTO_ALGAPI
Giovanni Cabiddu6a8de3a2016-10-21 13:19:52 +01001805 select CRYPTO_ACOMP2
Dan Streetman2062c5b2015-05-07 13:49:15 -04001806 select 842_COMPRESS
1807 select 842_DECOMPRESS
Seth Jennings35a1fc12012-07-19 09:42:41 -05001808 help
1809 This is the 842 algorithm.
1810
Chanho Min0ea85302013-07-08 16:01:51 -07001811config CRYPTO_LZ4
1812 tristate "LZ4 compression algorithm"
1813 select CRYPTO_ALGAPI
Giovanni Cabiddu8cd93302016-10-21 13:19:50 +01001814 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001815 select LZ4_COMPRESS
1816 select LZ4_DECOMPRESS
1817 help
1818 This is the LZ4 algorithm.
1819
1820config CRYPTO_LZ4HC
1821 tristate "LZ4HC compression algorithm"
1822 select CRYPTO_ALGAPI
Giovanni Cabiddu91d53d92016-10-21 13:19:51 +01001823 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001824 select LZ4HC_COMPRESS
1825 select LZ4_DECOMPRESS
1826 help
1827 This is the LZ4 high compression mode algorithm.
1828
Nick Terrelld28fc3d2018-03-30 12:14:53 -07001829config CRYPTO_ZSTD
1830 tristate "Zstd compression algorithm"
1831 select CRYPTO_ALGAPI
1832 select CRYPTO_ACOMP2
1833 select ZSTD_COMPRESS
1834 select ZSTD_DECOMPRESS
1835 help
1836 This is the zstd algorithm.
1837
Neil Horman17f0f4a2008-08-14 22:15:52 +10001838comment "Random Number Generation"
1839
1840config CRYPTO_ANSI_CPRNG
1841 tristate "Pseudo Random Number Generation for Cryptographic modules"
1842 select CRYPTO_AES
1843 select CRYPTO_RNG
Neil Horman17f0f4a2008-08-14 22:15:52 +10001844 help
1845 This option enables the generic pseudo random number generator
1846 for cryptographic modules. Uses the Algorithm specified in
Jiri Kosina7dd607e2010-01-27 01:00:10 +01001847 ANSI X9.31 A.2.4. Note that this option must be enabled if
1848 CRYPTO_FIPS is selected
Neil Horman17f0f4a2008-08-14 22:15:52 +10001849
Herbert Xuf2c89a12014-07-04 22:15:08 +08001850menuconfig CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001851 tristate "NIST SP800-90A DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001852 help
1853 NIST SP800-90A compliant DRBG. In the following submenu, one or
1854 more of the DRBG types must be selected.
1855
Herbert Xuf2c89a12014-07-04 22:15:08 +08001856if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001857
1858config CRYPTO_DRBG_HMAC
Herbert Xu401e4232015-06-03 14:49:31 +08001859 bool
Stephan Mueller419090c2014-05-31 17:22:31 +02001860 default y
Stephan Mueller419090c2014-05-31 17:22:31 +02001861 select CRYPTO_HMAC
Herbert Xu826775b2015-06-11 08:55:10 +08001862 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001863
1864config CRYPTO_DRBG_HASH
1865 bool "Enable Hash DRBG"
Herbert Xu826775b2015-06-11 08:55:10 +08001866 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001867 help
1868 Enable the Hash DRBG variant as defined in NIST SP800-90A.
1869
1870config CRYPTO_DRBG_CTR
1871 bool "Enable CTR DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001872 select CRYPTO_AES
Corentin Labbed6fc1a42020-04-24 13:40:47 +00001873 select CRYPTO_CTR
Stephan Mueller419090c2014-05-31 17:22:31 +02001874 help
1875 Enable the CTR DRBG variant as defined in NIST SP800-90A.
1876
Herbert Xuf2c89a12014-07-04 22:15:08 +08001877config CRYPTO_DRBG
1878 tristate
Herbert Xu401e4232015-06-03 14:49:31 +08001879 default CRYPTO_DRBG_MENU
Herbert Xuf2c89a12014-07-04 22:15:08 +08001880 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001881 select CRYPTO_JITTERENTROPY
Herbert Xuf2c89a12014-07-04 22:15:08 +08001882
1883endif # if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001884
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001885config CRYPTO_JITTERENTROPY
1886 tristate "Jitterentropy Non-Deterministic Random Number Generator"
Arnd Bergmann2f313e02016-01-26 14:47:10 +01001887 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001888 help
1889 The Jitterentropy RNG is a noise that is intended
1890 to provide seed to another RNG. The RNG does not
1891 perform any cryptographic whitening of the generated
1892 random numbers. This Jitterentropy RNG registers with
1893 the kernel crypto API and can be used by any caller.
1894
Herbert Xu03c8efc2010-10-19 21:12:39 +08001895config CRYPTO_USER_API
1896 tristate
1897
Herbert Xufe869cd2010-10-19 21:23:00 +08001898config CRYPTO_USER_API_HASH
1899 tristate "User-space interface for hash algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001900 depends on NET
Herbert Xufe869cd2010-10-19 21:23:00 +08001901 select CRYPTO_HASH
1902 select CRYPTO_USER_API
1903 help
1904 This option enables the user-spaces interface for hash
1905 algorithms.
1906
Herbert Xu8ff59092010-10-19 21:31:55 +08001907config CRYPTO_USER_API_SKCIPHER
1908 tristate "User-space interface for symmetric key cipher algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001909 depends on NET
Eric Biggersb95bba52019-10-25 12:41:13 -07001910 select CRYPTO_SKCIPHER
Herbert Xu8ff59092010-10-19 21:31:55 +08001911 select CRYPTO_USER_API
1912 help
1913 This option enables the user-spaces interface for symmetric
1914 key cipher algorithms.
1915
Stephan Mueller2f3755382014-12-25 23:00:39 +01001916config CRYPTO_USER_API_RNG
1917 tristate "User-space interface for random number generator algorithms"
1918 depends on NET
1919 select CRYPTO_RNG
1920 select CRYPTO_USER_API
1921 help
1922 This option enables the user-spaces interface for random
1923 number generator algorithms.
1924
Elena Petrova77ebdab2020-09-18 16:42:16 +01001925config CRYPTO_USER_API_RNG_CAVP
1926 bool "Enable CAVP testing of DRBG"
1927 depends on CRYPTO_USER_API_RNG && CRYPTO_DRBG
1928 help
1929 This option enables extra API for CAVP testing via the user-space
1930 interface: resetting of DRBG entropy, and providing Additional Data.
1931 This should only be enabled for CAVP testing. You should say
1932 no unless you know what this is.
1933
Herbert Xub64a2d92015-05-28 11:30:35 +08001934config CRYPTO_USER_API_AEAD
1935 tristate "User-space interface for AEAD cipher algorithms"
1936 depends on NET
1937 select CRYPTO_AEAD
Eric Biggersb95bba52019-10-25 12:41:13 -07001938 select CRYPTO_SKCIPHER
Stephan Mueller72548b02017-07-30 14:32:58 +02001939 select CRYPTO_NULL
Herbert Xub64a2d92015-05-28 11:30:35 +08001940 select CRYPTO_USER_API
1941 help
1942 This option enables the user-spaces interface for AEAD
1943 cipher algorithms.
1944
Ard Biesheuvel9ace6772020-08-31 18:16:49 +03001945config CRYPTO_USER_API_ENABLE_OBSOLETE
1946 bool "Enable obsolete cryptographic algorithms for userspace"
1947 depends on CRYPTO_USER_API
1948 default y
1949 help
1950 Allow obsolete cryptographic algorithms to be selected that have
1951 already been phased out from internal use by the kernel, and are
1952 only useful for userspace clients that still rely on them.
1953
Corentin Labbecac58182018-09-19 10:10:54 +00001954config CRYPTO_STATS
1955 bool "Crypto usage statistics for User-space"
Corentin Labbea6a31382018-11-29 14:42:17 +00001956 depends on CRYPTO_USER
Corentin Labbecac58182018-09-19 10:10:54 +00001957 help
1958 This option enables the gathering of crypto stats.
1959 This will collect:
1960 - encrypt/decrypt size and numbers of symmeric operations
1961 - compress/decompress size and numbers of compress operations
1962 - size and numbers of hash operations
1963 - encrypt/decrypt/sign/verify numbers for asymmetric operations
1964 - generate/seed numbers for rng operations
1965
Dmitry Kasatkinee089972013-05-06 15:40:01 +03001966config CRYPTO_HASH_INFO
1967 bool
1968
Ard Biesheuvel746b2e02019-11-08 13:22:07 +01001969source "lib/crypto/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970source "drivers/crypto/Kconfig"
Masahiro Yamada8636a1f2018-12-11 20:01:04 +09001971source "crypto/asymmetric_keys/Kconfig"
1972source "certs/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Herbert Xucce9e062006-08-21 21:08:13 +10001974endif # if CRYPTO