crypto: sun8i-ss - really disable hash on A80
[linux-block.git] / crypto / Kconfig
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
685784aa
DW
2#
3# Generic algorithms support
4#
5config XOR_BLOCKS
6 tristate
7
1da177e4 8#
9bc89cd8 9# async_tx api: hardware offloaded memory transfer/transform support
1da177e4 10#
9bc89cd8 11source "crypto/async_tx/Kconfig"
1da177e4 12
9bc89cd8
DW
13#
14# Cryptographic API Configuration
15#
2e290f43 16menuconfig CRYPTO
c3715cb9 17 tristate "Cryptographic API"
1da177e4
LT
18 help
19 This option provides the core Cryptographic API.
20
cce9e06d
HX
21if CRYPTO
22
584fffc8
SS
23comment "Crypto core or helper"
24
ccb778e1
NH
25config CRYPTO_FIPS
26 bool "FIPS 200 compliance"
f2c89a10 27 depends on (CRYPTO_ANSI_CPRNG || CRYPTO_DRBG) && !CRYPTO_MANAGER_DISABLE_TESTS
1f696097 28 depends on (MODULE_SIG || !MODULES)
ccb778e1 29 help
d99324c2
GU
30 This option enables the fips boot option which is
31 required if you want the system to operate in a FIPS 200
ccb778e1 32 certification. You should say no unless you know what
e84c5480 33 this is.
ccb778e1 34
cce9e06d
HX
35config CRYPTO_ALGAPI
36 tristate
6a0fcbb4 37 select CRYPTO_ALGAPI2
cce9e06d
HX
38 help
39 This option provides the API for cryptographic algorithms.
40
6a0fcbb4
HX
41config CRYPTO_ALGAPI2
42 tristate
43
1ae97820
HX
44config CRYPTO_AEAD
45 tristate
6a0fcbb4 46 select CRYPTO_AEAD2
1ae97820
HX
47 select CRYPTO_ALGAPI
48
6a0fcbb4
HX
49config CRYPTO_AEAD2
50 tristate
51 select CRYPTO_ALGAPI2
149a3971
HX
52 select CRYPTO_NULL2
53 select CRYPTO_RNG2
6a0fcbb4 54
b95bba5d 55config CRYPTO_SKCIPHER
5cde0af2 56 tristate
b95bba5d 57 select CRYPTO_SKCIPHER2
5cde0af2 58 select CRYPTO_ALGAPI
6a0fcbb4 59
b95bba5d 60config CRYPTO_SKCIPHER2
6a0fcbb4
HX
61 tristate
62 select CRYPTO_ALGAPI2
63 select CRYPTO_RNG2
5cde0af2 64
055bcee3
HX
65config CRYPTO_HASH
66 tristate
6a0fcbb4 67 select CRYPTO_HASH2
055bcee3
HX
68 select CRYPTO_ALGAPI
69
6a0fcbb4
HX
70config CRYPTO_HASH2
71 tristate
72 select CRYPTO_ALGAPI2
73
17f0f4a4
NH
74config CRYPTO_RNG
75 tristate
6a0fcbb4 76 select CRYPTO_RNG2
17f0f4a4
NH
77 select CRYPTO_ALGAPI
78
6a0fcbb4
HX
79config CRYPTO_RNG2
80 tristate
81 select CRYPTO_ALGAPI2
82
401e4238
HX
83config CRYPTO_RNG_DEFAULT
84 tristate
85 select CRYPTO_DRBG_MENU
86
3c339ab8
TS
87config CRYPTO_AKCIPHER2
88 tristate
89 select CRYPTO_ALGAPI2
90
91config CRYPTO_AKCIPHER
92 tristate
93 select CRYPTO_AKCIPHER2
94 select CRYPTO_ALGAPI
95
4e5f2c40
SB
96config CRYPTO_KPP2
97 tristate
98 select CRYPTO_ALGAPI2
99
100config CRYPTO_KPP
101 tristate
102 select CRYPTO_ALGAPI
103 select CRYPTO_KPP2
104
2ebda74f
GC
105config CRYPTO_ACOMP2
106 tristate
107 select CRYPTO_ALGAPI2
8cd579d2 108 select SGL_ALLOC
2ebda74f
GC
109
110config CRYPTO_ACOMP
111 tristate
112 select CRYPTO_ALGAPI
113 select CRYPTO_ACOMP2
114
2b8c19db
HX
115config CRYPTO_MANAGER
116 tristate "Cryptographic algorithm manager"
6a0fcbb4 117 select CRYPTO_MANAGER2
2b8c19db
HX
118 help
119 Create default cryptographic template instantiations such as
120 cbc(aes).
121
6a0fcbb4
HX
122config CRYPTO_MANAGER2
123 def_tristate CRYPTO_MANAGER || (CRYPTO_MANAGER!=n && CRYPTO_ALGAPI=y)
124 select CRYPTO_AEAD2
125 select CRYPTO_HASH2
b95bba5d 126 select CRYPTO_SKCIPHER2
946cc463 127 select CRYPTO_AKCIPHER2
4e5f2c40 128 select CRYPTO_KPP2
2ebda74f 129 select CRYPTO_ACOMP2
6a0fcbb4 130
a38f7907
SK
131config CRYPTO_USER
132 tristate "Userspace cryptographic algorithm configuration"
5db017aa 133 depends on NET
a38f7907
SK
134 select CRYPTO_MANAGER
135 help
d19978f5 136 Userspace configuration for cryptographic instantiations such as
a38f7907
SK
137 cbc(aes).
138
326a6346
HX
139config CRYPTO_MANAGER_DISABLE_TESTS
140 bool "Disable run-time self tests"
00ca28a5 141 default y
0b767f96 142 help
326a6346
HX
143 Disable run-time self tests that normally take place at
144 algorithm registration.
0b767f96 145
5b2706a4
EB
146config CRYPTO_MANAGER_EXTRA_TESTS
147 bool "Enable extra run-time crypto self tests"
6569e309 148 depends on DEBUG_KERNEL && !CRYPTO_MANAGER_DISABLE_TESTS && CRYPTO_MANAGER
5b2706a4
EB
149 help
150 Enable extra run-time self tests of registered crypto algorithms,
151 including randomized fuzz tests.
152
153 This is intended for developer use only, as these tests take much
154 longer to run than the normal self tests.
155
584fffc8 156config CRYPTO_GF128MUL
e590e132 157 tristate
333b0d7e 158
1da177e4
LT
159config CRYPTO_NULL
160 tristate "Null algorithms"
149a3971 161 select CRYPTO_NULL2
1da177e4
LT
162 help
163 These are 'Null' algorithms, used by IPsec, which do nothing.
164
149a3971 165config CRYPTO_NULL2
dd43c4e9 166 tristate
149a3971 167 select CRYPTO_ALGAPI2
b95bba5d 168 select CRYPTO_SKCIPHER2
149a3971
HX
169 select CRYPTO_HASH2
170
5068c7a8 171config CRYPTO_PCRYPT
3b4afaf2
KC
172 tristate "Parallel crypto engine"
173 depends on SMP
5068c7a8
SK
174 select PADATA
175 select CRYPTO_MANAGER
176 select CRYPTO_AEAD
177 help
178 This converts an arbitrary crypto algorithm into a parallel
179 algorithm that executes in kernel threads.
180
584fffc8
SS
181config CRYPTO_CRYPTD
182 tristate "Software async crypto daemon"
b95bba5d 183 select CRYPTO_SKCIPHER
b8a28251 184 select CRYPTO_HASH
584fffc8 185 select CRYPTO_MANAGER
1da177e4 186 help
584fffc8
SS
187 This is a generic software asynchronous crypto daemon that
188 converts an arbitrary synchronous software crypto algorithm
189 into an asynchronous algorithm that executes in a kernel thread.
1da177e4 190
584fffc8
SS
191config CRYPTO_AUTHENC
192 tristate "Authenc support"
193 select CRYPTO_AEAD
b95bba5d 194 select CRYPTO_SKCIPHER
584fffc8
SS
195 select CRYPTO_MANAGER
196 select CRYPTO_HASH
e94c6a7a 197 select CRYPTO_NULL
1da177e4 198 help
584fffc8
SS
199 Authenc: Combined mode wrapper for IPsec.
200 This is required for IPSec.
1da177e4 201
584fffc8
SS
202config CRYPTO_TEST
203 tristate "Testing module"
00ea27f1 204 depends on m || EXPERT
da7f033d 205 select CRYPTO_MANAGER
1da177e4 206 help
584fffc8 207 Quick & dirty crypto test module.
1da177e4 208
266d0516
HX
209config CRYPTO_SIMD
210 tristate
ffaf9156
JK
211 select CRYPTO_CRYPTD
212
735d37b5
BW
213config CRYPTO_ENGINE
214 tristate
215
3d6228a5
VC
216comment "Public-key cryptography"
217
218config CRYPTO_RSA
219 tristate "RSA algorithm"
220 select CRYPTO_AKCIPHER
221 select CRYPTO_MANAGER
222 select MPILIB
223 select ASN1
224 help
225 Generic implementation of the RSA public key algorithm.
226
227config CRYPTO_DH
228 tristate "Diffie-Hellman algorithm"
229 select CRYPTO_KPP
230 select MPILIB
231 help
232 Generic implementation of the Diffie-Hellman algorithm.
233
4a2289da
VC
234config CRYPTO_ECC
235 tristate
38aa192a 236 select CRYPTO_RNG_DEFAULT
4a2289da 237
3d6228a5
VC
238config CRYPTO_ECDH
239 tristate "ECDH algorithm"
4a2289da 240 select CRYPTO_ECC
3d6228a5 241 select CRYPTO_KPP
3d6228a5
VC
242 help
243 Generic implementation of the ECDH algorithm
244
4e660291
SB
245config CRYPTO_ECDSA
246 tristate "ECDSA (NIST P192, P256 etc.) algorithm"
247 select CRYPTO_ECC
248 select CRYPTO_AKCIPHER
249 select ASN1
250 help
251 Elliptic Curve Digital Signature Algorithm (NIST P192, P256 etc.)
252 is A NIST cryptographic standard algorithm. Only signature verification
253 is implemented.
254
0d7a7864
VC
255config CRYPTO_ECRDSA
256 tristate "EC-RDSA (GOST 34.10) algorithm"
257 select CRYPTO_ECC
258 select CRYPTO_AKCIPHER
259 select CRYPTO_STREEBOG
1036633e
VC
260 select OID_REGISTRY
261 select ASN1
0d7a7864
VC
262 help
263 Elliptic Curve Russian Digital Signature Algorithm (GOST R 34.10-2012,
264 RFC 7091, ISO/IEC 14888-3:2018) is one of the Russian cryptographic
265 standard algorithms (called GOST algorithms). Only signature verification
266 is implemented.
267
ea7ecb66
TZ
268config CRYPTO_SM2
269 tristate "SM2 algorithm"
11400469 270 select CRYPTO_LIB_SM3
ea7ecb66
TZ
271 select CRYPTO_AKCIPHER
272 select CRYPTO_MANAGER
273 select MPILIB
274 select ASN1
275 help
276 Generic implementation of the SM2 public key algorithm. It was
277 published by State Encryption Management Bureau, China.
278 as specified by OSCCA GM/T 0003.1-2012 -- 0003.5-2012.
279
280 References:
281 https://tools.ietf.org/html/draft-shen-sm2-ecdsa-02
282 http://www.oscca.gov.cn/sca/xxgk/2010-12/17/content_1002386.shtml
283 http://www.gmbz.org.cn/main/bzlb.html
284
ee772cb6
AB
285config CRYPTO_CURVE25519
286 tristate "Curve25519 algorithm"
287 select CRYPTO_KPP
288 select CRYPTO_LIB_CURVE25519_GENERIC
289
bb611bdf
JD
290config CRYPTO_CURVE25519_X86
291 tristate "x86_64 accelerated Curve25519 scalar multiplication library"
292 depends on X86 && 64BIT
293 select CRYPTO_LIB_CURVE25519_GENERIC
294 select CRYPTO_ARCH_HAVE_LIB_CURVE25519
295
584fffc8 296comment "Authenticated Encryption with Associated Data"
cd12fb90 297
584fffc8
SS
298config CRYPTO_CCM
299 tristate "CCM support"
300 select CRYPTO_CTR
f15f05b0 301 select CRYPTO_HASH
584fffc8 302 select CRYPTO_AEAD
c8a3315a 303 select CRYPTO_MANAGER
1da177e4 304 help
584fffc8 305 Support for Counter with CBC MAC. Required for IPsec.
1da177e4 306
584fffc8
SS
307config CRYPTO_GCM
308 tristate "GCM/GMAC support"
309 select CRYPTO_CTR
310 select CRYPTO_AEAD
9382d97a 311 select CRYPTO_GHASH
9489667d 312 select CRYPTO_NULL
c8a3315a 313 select CRYPTO_MANAGER
1da177e4 314 help
584fffc8
SS
315 Support for Galois/Counter Mode (GCM) and Galois Message
316 Authentication Code (GMAC). Required for IPSec.
1da177e4 317
71ebc4d1
MW
318config CRYPTO_CHACHA20POLY1305
319 tristate "ChaCha20-Poly1305 AEAD support"
320 select CRYPTO_CHACHA20
321 select CRYPTO_POLY1305
322 select CRYPTO_AEAD
c8a3315a 323 select CRYPTO_MANAGER
71ebc4d1
MW
324 help
325 ChaCha20-Poly1305 AEAD support, RFC7539.
326
327 Support for the AEAD wrapper using the ChaCha20 stream cipher combined
328 with the Poly1305 authenticator. It is defined in RFC7539 for use in
329 IETF protocols.
330
f606a88e
OM
331config CRYPTO_AEGIS128
332 tristate "AEGIS-128 AEAD algorithm"
333 select CRYPTO_AEAD
334 select CRYPTO_AES # for AES S-box tables
335 help
336 Support for the AEGIS-128 dedicated AEAD algorithm.
337
a4397635
AB
338config CRYPTO_AEGIS128_SIMD
339 bool "Support SIMD acceleration for AEGIS-128"
340 depends on CRYPTO_AEGIS128 && ((ARM || ARM64) && KERNEL_MODE_NEON)
341 default y
342
1d373d4e
OM
343config CRYPTO_AEGIS128_AESNI_SSE2
344 tristate "AEGIS-128 AEAD algorithm (x86_64 AESNI+SSE2 implementation)"
345 depends on X86 && 64BIT
346 select CRYPTO_AEAD
de272ca7 347 select CRYPTO_SIMD
1d373d4e 348 help
4e5180eb 349 AESNI+SSE2 implementation of the AEGIS-128 dedicated AEAD algorithm.
1d373d4e 350
584fffc8
SS
351config CRYPTO_SEQIV
352 tristate "Sequence Number IV Generator"
353 select CRYPTO_AEAD
b95bba5d 354 select CRYPTO_SKCIPHER
856e3f40 355 select CRYPTO_NULL
401e4238 356 select CRYPTO_RNG_DEFAULT
c8a3315a 357 select CRYPTO_MANAGER
1da177e4 358 help
584fffc8
SS
359 This IV generator generates an IV based on a sequence number by
360 xoring it with a salt. This algorithm is mainly useful for CTR
1da177e4 361
a10f554f
HX
362config CRYPTO_ECHAINIV
363 tristate "Encrypted Chain IV Generator"
364 select CRYPTO_AEAD
365 select CRYPTO_NULL
401e4238 366 select CRYPTO_RNG_DEFAULT
c8a3315a 367 select CRYPTO_MANAGER
a10f554f
HX
368 help
369 This IV generator generates an IV based on the encryption of
370 a sequence number xored with a salt. This is the default
371 algorithm for CBC.
372
584fffc8 373comment "Block modes"
c494e070 374
584fffc8
SS
375config CRYPTO_CBC
376 tristate "CBC support"
b95bba5d 377 select CRYPTO_SKCIPHER
43518407 378 select CRYPTO_MANAGER
db131ef9 379 help
584fffc8
SS
380 CBC: Cipher Block Chaining mode
381 This block cipher algorithm is required for IPSec.
db131ef9 382
a7d85e06
JB
383config CRYPTO_CFB
384 tristate "CFB support"
b95bba5d 385 select CRYPTO_SKCIPHER
a7d85e06
JB
386 select CRYPTO_MANAGER
387 help
388 CFB: Cipher FeedBack mode
389 This block cipher algorithm is required for TPM2 Cryptography.
390
584fffc8
SS
391config CRYPTO_CTR
392 tristate "CTR support"
b95bba5d 393 select CRYPTO_SKCIPHER
43518407 394 select CRYPTO_MANAGER
db131ef9 395 help
584fffc8 396 CTR: Counter mode
db131ef9
HX
397 This block cipher algorithm is required for IPSec.
398
584fffc8
SS
399config CRYPTO_CTS
400 tristate "CTS support"
b95bba5d 401 select CRYPTO_SKCIPHER
c8a3315a 402 select CRYPTO_MANAGER
584fffc8
SS
403 help
404 CTS: Cipher Text Stealing
405 This is the Cipher Text Stealing mode as described by
ecd6d5c9
GBY
406 Section 8 of rfc2040 and referenced by rfc3962
407 (rfc3962 includes errata information in its Appendix A) or
408 CBC-CS3 as defined by NIST in Sp800-38A addendum from Oct 2010.
584fffc8
SS
409 This mode is required for Kerberos gss mechanism support
410 for AES encryption.
411
ecd6d5c9
GBY
412 See: https://csrc.nist.gov/publications/detail/sp/800-38a/addendum/final
413
584fffc8
SS
414config CRYPTO_ECB
415 tristate "ECB support"
b95bba5d 416 select CRYPTO_SKCIPHER
91652be5 417 select CRYPTO_MANAGER
91652be5 418 help
584fffc8
SS
419 ECB: Electronic CodeBook mode
420 This is the simplest block cipher algorithm. It simply encrypts
421 the input block by block.
91652be5 422
64470f1b 423config CRYPTO_LRW
2470a2b2 424 tristate "LRW support"
b95bba5d 425 select CRYPTO_SKCIPHER
64470f1b
RS
426 select CRYPTO_MANAGER
427 select CRYPTO_GF128MUL
428 help
429 LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable
430 narrow block cipher mode for dm-crypt. Use it with cipher
431 specification string aes-lrw-benbi, the key must be 256, 320 or 384.
432 The first 128, 192 or 256 bits in the key are used for AES and the
433 rest is used to tie each cipher block to its logical position.
434
e497c518
GBY
435config CRYPTO_OFB
436 tristate "OFB support"
b95bba5d 437 select CRYPTO_SKCIPHER
e497c518
GBY
438 select CRYPTO_MANAGER
439 help
440 OFB: the Output Feedback mode makes a block cipher into a synchronous
441 stream cipher. It generates keystream blocks, which are then XORed
442 with the plaintext blocks to get the ciphertext. Flipping a bit in the
443 ciphertext produces a flipped bit in the plaintext at the same
444 location. This property allows many error correcting codes to function
445 normally even when applied before encryption.
446
584fffc8
SS
447config CRYPTO_PCBC
448 tristate "PCBC support"
b95bba5d 449 select CRYPTO_SKCIPHER
584fffc8
SS
450 select CRYPTO_MANAGER
451 help
452 PCBC: Propagating Cipher Block Chaining mode
453 This block cipher algorithm is required for RxRPC.
454
f19f5111 455config CRYPTO_XTS
5bcf8e6d 456 tristate "XTS support"
b95bba5d 457 select CRYPTO_SKCIPHER
f19f5111 458 select CRYPTO_MANAGER
12cb3a1c 459 select CRYPTO_ECB
f19f5111
RS
460 help
461 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain,
462 key size 256, 384 or 512 bits. This implementation currently
463 can't handle a sectorsize which is not a multiple of 16 bytes.
464
1c49678e
SM
465config CRYPTO_KEYWRAP
466 tristate "Key wrapping support"
b95bba5d 467 select CRYPTO_SKCIPHER
c8a3315a 468 select CRYPTO_MANAGER
1c49678e
SM
469 help
470 Support for key wrapping (NIST SP800-38F / RFC3394) without
471 padding.
472
26609a21
EB
473config CRYPTO_NHPOLY1305
474 tristate
475 select CRYPTO_HASH
48ea8c6e 476 select CRYPTO_LIB_POLY1305_GENERIC
26609a21 477
012c8238
EB
478config CRYPTO_NHPOLY1305_SSE2
479 tristate "NHPoly1305 hash function (x86_64 SSE2 implementation)"
480 depends on X86 && 64BIT
481 select CRYPTO_NHPOLY1305
482 help
483 SSE2 optimized implementation of the hash function used by the
484 Adiantum encryption mode.
485
0f961f9f
EB
486config CRYPTO_NHPOLY1305_AVX2
487 tristate "NHPoly1305 hash function (x86_64 AVX2 implementation)"
488 depends on X86 && 64BIT
489 select CRYPTO_NHPOLY1305
490 help
491 AVX2 optimized implementation of the hash function used by the
492 Adiantum encryption mode.
493
059c2a4d
EB
494config CRYPTO_ADIANTUM
495 tristate "Adiantum support"
496 select CRYPTO_CHACHA20
48ea8c6e 497 select CRYPTO_LIB_POLY1305_GENERIC
059c2a4d 498 select CRYPTO_NHPOLY1305
c8a3315a 499 select CRYPTO_MANAGER
059c2a4d
EB
500 help
501 Adiantum is a tweakable, length-preserving encryption mode
502 designed for fast and secure disk encryption, especially on
503 CPUs without dedicated crypto instructions. It encrypts
504 each sector using the XChaCha12 stream cipher, two passes of
505 an ε-almost-∆-universal hash function, and an invocation of
506 the AES-256 block cipher on a single 16-byte block. On CPUs
507 without AES instructions, Adiantum is much faster than
508 AES-XTS.
509
510 Adiantum's security is provably reducible to that of its
511 underlying stream and block ciphers, subject to a security
512 bound. Unlike XTS, Adiantum is a true wide-block encryption
513 mode, so it actually provides an even stronger notion of
514 security than XTS, subject to the security bound.
515
516 If unsure, say N.
517
be1eb7f7
AB
518config CRYPTO_ESSIV
519 tristate "ESSIV support for block encryption"
520 select CRYPTO_AUTHENC
521 help
522 Encrypted salt-sector initialization vector (ESSIV) is an IV
523 generation method that is used in some cases by fscrypt and/or
524 dm-crypt. It uses the hash of the block encryption key as the
525 symmetric key for a block encryption pass applied to the input
526 IV, making low entropy IV sources more suitable for block
527 encryption.
528
529 This driver implements a crypto API template that can be
ab3d436b 530 instantiated either as an skcipher or as an AEAD (depending on the
be1eb7f7
AB
531 type of the first template argument), and which defers encryption
532 and decryption requests to the encapsulated cipher after applying
ab3d436b 533 ESSIV to the input IV. Note that in the AEAD case, it is assumed
be1eb7f7
AB
534 that the keys are presented in the same format used by the authenc
535 template, and that the IV appears at the end of the authenticated
536 associated data (AAD) region (which is how dm-crypt uses it.)
537
538 Note that the use of ESSIV is not recommended for new deployments,
539 and so this only needs to be enabled when interoperability with
540 existing encrypted volumes of filesystems is required, or when
541 building for a particular system that requires it (e.g., when
542 the SoC in question has accelerated CBC but not XTS, making CBC
543 combined with ESSIV the only feasible mode for h/w accelerated
544 block encryption)
545
584fffc8
SS
546comment "Hash modes"
547
93b5e86a
JK
548config CRYPTO_CMAC
549 tristate "CMAC support"
550 select CRYPTO_HASH
551 select CRYPTO_MANAGER
552 help
553 Cipher-based Message Authentication Code (CMAC) specified by
554 The National Institute of Standards and Technology (NIST).
555
556 https://tools.ietf.org/html/rfc4493
557 http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf
558
584fffc8
SS
559config CRYPTO_HMAC
560 tristate "HMAC support"
561 select CRYPTO_HASH
23e353c8 562 select CRYPTO_MANAGER
23e353c8 563 help
584fffc8
SS
564 HMAC: Keyed-Hashing for Message Authentication (RFC2104).
565 This is required for IPSec.
23e353c8 566
584fffc8
SS
567config CRYPTO_XCBC
568 tristate "XCBC support"
584fffc8
SS
569 select CRYPTO_HASH
570 select CRYPTO_MANAGER
76cb9521 571 help
584fffc8 572 XCBC: Keyed-Hashing with encryption algorithm
9332a9e7 573 https://www.ietf.org/rfc/rfc3566.txt
584fffc8
SS
574 http://csrc.nist.gov/encryption/modes/proposedmodes/
575 xcbc-mac/xcbc-mac-spec.pdf
76cb9521 576
f1939f7c
SW
577config CRYPTO_VMAC
578 tristate "VMAC support"
f1939f7c
SW
579 select CRYPTO_HASH
580 select CRYPTO_MANAGER
581 help
582 VMAC is a message authentication algorithm designed for
583 very high speed on 64-bit architectures.
584
585 See also:
9332a9e7 586 <https://fastcrypto.org/vmac>
f1939f7c 587
584fffc8 588comment "Digest"
28db8e3e 589
584fffc8
SS
590config CRYPTO_CRC32C
591 tristate "CRC32c CRC algorithm"
5773a3e6 592 select CRYPTO_HASH
6a0962b2 593 select CRC32
4a49b499 594 help
584fffc8
SS
595 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
596 by iSCSI for header and data digests and by others.
69c35efc 597 See Castagnoli93. Module will be crc32c.
4a49b499 598
8cb51ba8
AZ
599config CRYPTO_CRC32C_INTEL
600 tristate "CRC32c INTEL hardware acceleration"
601 depends on X86
602 select CRYPTO_HASH
603 help
604 In Intel processor with SSE4.2 supported, the processor will
605 support CRC32C implementation using hardware accelerated CRC32
606 instruction. This option will create 'crc32c-intel' module,
607 which will enable any routine to use the CRC32 instruction to
608 gain performance compared with software implementation.
609 Module will be crc32c-intel.
610
7cf31864 611config CRYPTO_CRC32C_VPMSUM
6dd7a82c 612 tristate "CRC32c CRC algorithm (powerpc64)"
c12abf34 613 depends on PPC64 && ALTIVEC
6dd7a82c
AB
614 select CRYPTO_HASH
615 select CRC32
616 help
617 CRC32c algorithm implemented using vector polynomial multiply-sum
618 (vpmsum) instructions, introduced in POWER8. Enable on POWER8
619 and newer processors for improved performance.
620
621
442a7c40
DM
622config CRYPTO_CRC32C_SPARC64
623 tristate "CRC32c CRC algorithm (SPARC64)"
624 depends on SPARC64
625 select CRYPTO_HASH
626 select CRC32
627 help
628 CRC32c CRC algorithm implemented using sparc64 crypto instructions,
629 when available.
630
78c37d19
AB
631config CRYPTO_CRC32
632 tristate "CRC32 CRC algorithm"
633 select CRYPTO_HASH
634 select CRC32
635 help
636 CRC-32-IEEE 802.3 cyclic redundancy-check algorithm.
637 Shash crypto api wrappers to crc32_le function.
638
639config CRYPTO_CRC32_PCLMUL
640 tristate "CRC32 PCLMULQDQ hardware acceleration"
641 depends on X86
642 select CRYPTO_HASH
643 select CRC32
644 help
645 From Intel Westmere and AMD Bulldozer processor with SSE4.2
646 and PCLMULQDQ supported, the processor will support
647 CRC32 PCLMULQDQ implementation using hardware accelerated PCLMULQDQ
af8cb01f 648 instruction. This option will create 'crc32-pclmul' module,
78c37d19
AB
649 which will enable any routine to use the CRC-32-IEEE 802.3 checksum
650 and gain better performance as compared with the table implementation.
651
4a5dc51e
MN
652config CRYPTO_CRC32_MIPS
653 tristate "CRC32c and CRC32 CRC algorithm (MIPS)"
654 depends on MIPS_CRC_SUPPORT
655 select CRYPTO_HASH
656 help
657 CRC32c and CRC32 CRC algorithms implemented using mips crypto
658 instructions, when available.
659
660
67882e76
NB
661config CRYPTO_XXHASH
662 tristate "xxHash hash algorithm"
663 select CRYPTO_HASH
664 select XXHASH
665 help
666 xxHash non-cryptographic hash algorithm. Extremely fast, working at
667 speeds close to RAM limits.
668
91d68933
DS
669config CRYPTO_BLAKE2B
670 tristate "BLAKE2b digest algorithm"
671 select CRYPTO_HASH
672 help
673 Implementation of cryptographic hash function BLAKE2b (or just BLAKE2),
674 optimized for 64bit platforms and can produce digests of any size
675 between 1 to 64. The keyed hash is also implemented.
676
677 This module provides the following algorithms:
678
679 - blake2b-160
680 - blake2b-256
681 - blake2b-384
682 - blake2b-512
683
684 See https://blake2.net for further information.
685
7f9b0880
AB
686config CRYPTO_BLAKE2S
687 tristate "BLAKE2s digest algorithm"
688 select CRYPTO_LIB_BLAKE2S_GENERIC
689 select CRYPTO_HASH
690 help
691 Implementation of cryptographic hash function BLAKE2s
692 optimized for 8-32bit platforms and can produce digests of any size
693 between 1 to 32. The keyed hash is also implemented.
694
695 This module provides the following algorithms:
696
697 - blake2s-128
698 - blake2s-160
699 - blake2s-224
700 - blake2s-256
701
702 See https://blake2.net for further information.
703
ed0356ed
JD
704config CRYPTO_BLAKE2S_X86
705 tristate "BLAKE2s digest algorithm (x86 accelerated version)"
706 depends on X86 && 64BIT
707 select CRYPTO_LIB_BLAKE2S_GENERIC
708 select CRYPTO_ARCH_HAVE_LIB_BLAKE2S
709
68411521
HX
710config CRYPTO_CRCT10DIF
711 tristate "CRCT10DIF algorithm"
712 select CRYPTO_HASH
713 help
714 CRC T10 Data Integrity Field computation is being cast as
715 a crypto transform. This allows for faster crc t10 diff
716 transforms to be used if they are available.
717
718config CRYPTO_CRCT10DIF_PCLMUL
719 tristate "CRCT10DIF PCLMULQDQ hardware acceleration"
720 depends on X86 && 64BIT && CRC_T10DIF
721 select CRYPTO_HASH
722 help
723 For x86_64 processors with SSE4.2 and PCLMULQDQ supported,
724 CRC T10 DIF PCLMULQDQ computation can be hardware
725 accelerated PCLMULQDQ instruction. This option will create
af8cb01f 726 'crct10dif-pclmul' module, which is faster when computing the
68411521
HX
727 crct10dif checksum as compared with the generic table implementation.
728
b01df1c1
DA
729config CRYPTO_CRCT10DIF_VPMSUM
730 tristate "CRC32T10DIF powerpc64 hardware acceleration"
731 depends on PPC64 && ALTIVEC && CRC_T10DIF
732 select CRYPTO_HASH
733 help
734 CRC10T10DIF algorithm implemented using vector polynomial
735 multiply-sum (vpmsum) instructions, introduced in POWER8. Enable on
736 POWER8 and newer processors for improved performance.
737
146c8688
DA
738config CRYPTO_VPMSUM_TESTER
739 tristate "Powerpc64 vpmsum hardware acceleration tester"
740 depends on CRYPTO_CRCT10DIF_VPMSUM && CRYPTO_CRC32C_VPMSUM
741 help
742 Stress test for CRC32c and CRC-T10DIF algorithms implemented with
743 POWER8 vpmsum instructions.
744 Unless you are testing these algorithms, you don't need this.
745
2cdc6899 746config CRYPTO_GHASH
8dfa20fc 747 tristate "GHASH hash function"
2cdc6899 748 select CRYPTO_GF128MUL
578c60fb 749 select CRYPTO_HASH
2cdc6899 750 help
8dfa20fc
EB
751 GHASH is the hash function used in GCM (Galois/Counter Mode).
752 It is not a general-purpose cryptographic hash function.
2cdc6899 753
f979e014
MW
754config CRYPTO_POLY1305
755 tristate "Poly1305 authenticator algorithm"
578c60fb 756 select CRYPTO_HASH
48ea8c6e 757 select CRYPTO_LIB_POLY1305_GENERIC
f979e014
MW
758 help
759 Poly1305 authenticator algorithm, RFC7539.
760
761 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
762 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
763 in IETF protocols. This is the portable C implementation of Poly1305.
764
c70f4abe 765config CRYPTO_POLY1305_X86_64
b1ccc8f4 766 tristate "Poly1305 authenticator algorithm (x86_64/SSE2/AVX2)"
c70f4abe 767 depends on X86 && 64BIT
1b2c6a51 768 select CRYPTO_LIB_POLY1305_GENERIC
f0e89bcf 769 select CRYPTO_ARCH_HAVE_LIB_POLY1305
c70f4abe
MW
770 help
771 Poly1305 authenticator algorithm, RFC7539.
772
773 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
774 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
775 in IETF protocols. This is the x86_64 assembler implementation using SIMD
776 instructions.
777
a11d055e
AB
778config CRYPTO_POLY1305_MIPS
779 tristate "Poly1305 authenticator algorithm (MIPS optimized)"
6c810cf2 780 depends on MIPS
a11d055e
AB
781 select CRYPTO_ARCH_HAVE_LIB_POLY1305
782
584fffc8
SS
783config CRYPTO_MD4
784 tristate "MD4 digest algorithm"
808a1763 785 select CRYPTO_HASH
124b53d0 786 help
584fffc8 787 MD4 message digest algorithm (RFC1320).
124b53d0 788
584fffc8
SS
789config CRYPTO_MD5
790 tristate "MD5 digest algorithm"
14b75ba7 791 select CRYPTO_HASH
1da177e4 792 help
584fffc8 793 MD5 message digest algorithm (RFC1321).
1da177e4 794
d69e75de
AK
795config CRYPTO_MD5_OCTEON
796 tristate "MD5 digest algorithm (OCTEON)"
797 depends on CPU_CAVIUM_OCTEON
798 select CRYPTO_MD5
799 select CRYPTO_HASH
800 help
801 MD5 message digest algorithm (RFC1321) implemented
802 using OCTEON crypto instructions, when available.
803
e8e59953
MS
804config CRYPTO_MD5_PPC
805 tristate "MD5 digest algorithm (PPC)"
806 depends on PPC
807 select CRYPTO_HASH
808 help
809 MD5 message digest algorithm (RFC1321) implemented
810 in PPC assembler.
811
fa4dfedc
DM
812config CRYPTO_MD5_SPARC64
813 tristate "MD5 digest algorithm (SPARC64)"
814 depends on SPARC64
815 select CRYPTO_MD5
816 select CRYPTO_HASH
817 help
818 MD5 message digest algorithm (RFC1321) implemented
819 using sparc64 crypto instructions, when available.
820
584fffc8
SS
821config CRYPTO_MICHAEL_MIC
822 tristate "Michael MIC keyed digest algorithm"
19e2bf14 823 select CRYPTO_HASH
90831639 824 help
584fffc8
SS
825 Michael MIC is used for message integrity protection in TKIP
826 (IEEE 802.11i). This algorithm is required for TKIP, but it
827 should not be used for other purposes because of the weakness
828 of the algorithm.
90831639 829
82798f90 830config CRYPTO_RMD160
b6d44341 831 tristate "RIPEMD-160 digest algorithm"
e5835fba 832 select CRYPTO_HASH
b6d44341
AB
833 help
834 RIPEMD-160 (ISO/IEC 10118-3:2004).
82798f90 835
b6d44341
AB
836 RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
837 to be used as a secure replacement for the 128-bit hash functions
838 MD4, MD5 and it's predecessor RIPEMD
839 (not to be confused with RIPEMD-128).
82798f90 840
b6d44341
AB
841 It's speed is comparable to SHA1 and there are no known attacks
842 against RIPEMD-160.
534fe2c1 843
b6d44341 844 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
9332a9e7 845 See <https://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
534fe2c1 846
584fffc8
SS
847config CRYPTO_SHA1
848 tristate "SHA1 digest algorithm"
54ccb367 849 select CRYPTO_HASH
1da177e4 850 help
584fffc8 851 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
1da177e4 852
66be8951 853config CRYPTO_SHA1_SSSE3
e38b6b7f 854 tristate "SHA1 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
66be8951
MK
855 depends on X86 && 64BIT
856 select CRYPTO_SHA1
857 select CRYPTO_HASH
858 help
859 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
860 using Supplemental SSE3 (SSSE3) instructions or Advanced Vector
e38b6b7f 861 Extensions (AVX/AVX2) or SHA-NI(SHA Extensions New Instructions),
862 when available.
66be8951 863
8275d1aa 864config CRYPTO_SHA256_SSSE3
e38b6b7f 865 tristate "SHA256 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
8275d1aa
TC
866 depends on X86 && 64BIT
867 select CRYPTO_SHA256
868 select CRYPTO_HASH
869 help
870 SHA-256 secure hash standard (DFIPS 180-2) implemented
871 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
872 Extensions version 1 (AVX1), or Advanced Vector Extensions
e38b6b7f 873 version 2 (AVX2) instructions, or SHA-NI (SHA Extensions New
874 Instructions) when available.
87de4579
TC
875
876config CRYPTO_SHA512_SSSE3
877 tristate "SHA512 digest algorithm (SSSE3/AVX/AVX2)"
878 depends on X86 && 64BIT
879 select CRYPTO_SHA512
880 select CRYPTO_HASH
881 help
882 SHA-512 secure hash standard (DFIPS 180-2) implemented
883 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
884 Extensions version 1 (AVX1), or Advanced Vector Extensions
8275d1aa
TC
885 version 2 (AVX2) instructions, when available.
886
efdb6f6e
AK
887config CRYPTO_SHA1_OCTEON
888 tristate "SHA1 digest algorithm (OCTEON)"
889 depends on CPU_CAVIUM_OCTEON
890 select CRYPTO_SHA1
891 select CRYPTO_HASH
892 help
893 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
894 using OCTEON crypto instructions, when available.
895
4ff28d4c
DM
896config CRYPTO_SHA1_SPARC64
897 tristate "SHA1 digest algorithm (SPARC64)"
898 depends on SPARC64
899 select CRYPTO_SHA1
900 select CRYPTO_HASH
901 help
902 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
903 using sparc64 crypto instructions, when available.
904
323a6bf1
ME
905config CRYPTO_SHA1_PPC
906 tristate "SHA1 digest algorithm (powerpc)"
907 depends on PPC
908 help
909 This is the powerpc hardware accelerated implementation of the
910 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
911
d9850fc5
MS
912config CRYPTO_SHA1_PPC_SPE
913 tristate "SHA1 digest algorithm (PPC SPE)"
914 depends on PPC && SPE
915 help
916 SHA-1 secure hash standard (DFIPS 180-4) implemented
917 using powerpc SPE SIMD instruction set.
918
584fffc8
SS
919config CRYPTO_SHA256
920 tristate "SHA224 and SHA256 digest algorithm"
50e109b5 921 select CRYPTO_HASH
08c327f6 922 select CRYPTO_LIB_SHA256
1da177e4 923 help
584fffc8 924 SHA256 secure hash standard (DFIPS 180-2).
1da177e4 925
584fffc8
SS
926 This version of SHA implements a 256 bit hash with 128 bits of
927 security against collision attacks.
2729bb42 928
b6d44341
AB
929 This code also includes SHA-224, a 224 bit hash with 112 bits
930 of security against collision attacks.
584fffc8 931
2ecc1e95
MS
932config CRYPTO_SHA256_PPC_SPE
933 tristate "SHA224 and SHA256 digest algorithm (PPC SPE)"
934 depends on PPC && SPE
935 select CRYPTO_SHA256
936 select CRYPTO_HASH
937 help
938 SHA224 and SHA256 secure hash standard (DFIPS 180-2)
939 implemented using powerpc SPE SIMD instruction set.
940
efdb6f6e
AK
941config CRYPTO_SHA256_OCTEON
942 tristate "SHA224 and SHA256 digest algorithm (OCTEON)"
943 depends on CPU_CAVIUM_OCTEON
944 select CRYPTO_SHA256
945 select CRYPTO_HASH
946 help
947 SHA-256 secure hash standard (DFIPS 180-2) implemented
948 using OCTEON crypto instructions, when available.
949
86c93b24
DM
950config CRYPTO_SHA256_SPARC64
951 tristate "SHA224 and SHA256 digest algorithm (SPARC64)"
952 depends on SPARC64
953 select CRYPTO_SHA256
954 select CRYPTO_HASH
955 help
956 SHA-256 secure hash standard (DFIPS 180-2) implemented
957 using sparc64 crypto instructions, when available.
958
584fffc8
SS
959config CRYPTO_SHA512
960 tristate "SHA384 and SHA512 digest algorithms"
bd9d20db 961 select CRYPTO_HASH
b9f535ff 962 help
584fffc8 963 SHA512 secure hash standard (DFIPS 180-2).
b9f535ff 964
584fffc8
SS
965 This version of SHA implements a 512 bit hash with 256 bits of
966 security against collision attacks.
b9f535ff 967
584fffc8
SS
968 This code also includes SHA-384, a 384 bit hash with 192 bits
969 of security against collision attacks.
b9f535ff 970
efdb6f6e
AK
971config CRYPTO_SHA512_OCTEON
972 tristate "SHA384 and SHA512 digest algorithms (OCTEON)"
973 depends on CPU_CAVIUM_OCTEON
974 select CRYPTO_SHA512
975 select CRYPTO_HASH
976 help
977 SHA-512 secure hash standard (DFIPS 180-2) implemented
978 using OCTEON crypto instructions, when available.
979
775e0c69
DM
980config CRYPTO_SHA512_SPARC64
981 tristate "SHA384 and SHA512 digest algorithm (SPARC64)"
982 depends on SPARC64
983 select CRYPTO_SHA512
984 select CRYPTO_HASH
985 help
986 SHA-512 secure hash standard (DFIPS 180-2) implemented
987 using sparc64 crypto instructions, when available.
988
53964b9e
JG
989config CRYPTO_SHA3
990 tristate "SHA3 digest algorithm"
991 select CRYPTO_HASH
992 help
993 SHA-3 secure hash standard (DFIPS 202). It's based on
994 cryptographic sponge function family called Keccak.
995
996 References:
997 http://keccak.noekeon.org/
998
4f0fc160
GBY
999config CRYPTO_SM3
1000 tristate "SM3 digest algorithm"
1001 select CRYPTO_HASH
b4784a45 1002 select CRYPTO_LIB_SM3
4f0fc160
GBY
1003 help
1004 SM3 secure hash function as defined by OSCCA GM/T 0004-2012 SM3).
1005 It is part of the Chinese Commercial Cryptography suite.
1006
1007 References:
1008 http://www.oscca.gov.cn/UpFile/20101222141857786.pdf
1009 https://datatracker.ietf.org/doc/html/draft-shen-sm3-hash
1010
930ab34d
TZ
1011config CRYPTO_SM3_AVX_X86_64
1012 tristate "SM3 digest algorithm (x86_64/AVX)"
1013 depends on X86 && 64BIT
1014 select CRYPTO_HASH
1015 select CRYPTO_LIB_SM3
1016 help
1017 SM3 secure hash function as defined by OSCCA GM/T 0004-2012 SM3).
1018 It is part of the Chinese Commercial Cryptography suite. This is
1019 SM3 optimized implementation using Advanced Vector Extensions (AVX)
1020 when available.
1021
1022 If unsure, say N.
1023
fe18957e
VC
1024config CRYPTO_STREEBOG
1025 tristate "Streebog Hash Function"
1026 select CRYPTO_HASH
1027 help
1028 Streebog Hash Function (GOST R 34.11-2012, RFC 6986) is one of the Russian
1029 cryptographic standard algorithms (called GOST algorithms).
1030 This setting enables two hash algorithms with 256 and 512 bits output.
1031
1032 References:
1033 https://tc26.ru/upload/iblock/fed/feddbb4d26b685903faa2ba11aea43f6.pdf
1034 https://tools.ietf.org/html/rfc6986
1035
584fffc8
SS
1036config CRYPTO_WP512
1037 tristate "Whirlpool digest algorithms"
4946510b 1038 select CRYPTO_HASH
1da177e4 1039 help
584fffc8 1040 Whirlpool hash algorithm 512, 384 and 256-bit hashes
1da177e4 1041
584fffc8
SS
1042 Whirlpool-512 is part of the NESSIE cryptographic primitives.
1043 Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard
1da177e4
LT
1044
1045 See also:
6d8de74c 1046 <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html>
584fffc8 1047
0e1227d3 1048config CRYPTO_GHASH_CLMUL_NI_INTEL
8dfa20fc 1049 tristate "GHASH hash function (CLMUL-NI accelerated)"
8af00860 1050 depends on X86 && 64BIT
0e1227d3
HY
1051 select CRYPTO_CRYPTD
1052 help
8dfa20fc
EB
1053 This is the x86_64 CLMUL-NI accelerated implementation of
1054 GHASH, the hash function used in GCM (Galois/Counter mode).
0e1227d3 1055
584fffc8 1056comment "Ciphers"
1da177e4
LT
1057
1058config CRYPTO_AES
1059 tristate "AES cipher algorithms"
cce9e06d 1060 select CRYPTO_ALGAPI
5bb12d78 1061 select CRYPTO_LIB_AES
1da177e4 1062 help
584fffc8 1063 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1da177e4
LT
1064 algorithm.
1065
1066 Rijndael appears to be consistently a very good performer in
584fffc8
SS
1067 both hardware and software across a wide range of computing
1068 environments regardless of its use in feedback or non-feedback
1069 modes. Its key setup time is excellent, and its key agility is
1070 good. Rijndael's very low memory requirements make it very well
1071 suited for restricted-space environments, in which it also
1072 demonstrates excellent performance. Rijndael's operations are
1073 among the easiest to defend against power and timing attacks.
1da177e4 1074
584fffc8 1075 The AES specifies three key sizes: 128, 192 and 256 bits
1da177e4
LT
1076
1077 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
1078
b5e0b032
AB
1079config CRYPTO_AES_TI
1080 tristate "Fixed time AES cipher"
1081 select CRYPTO_ALGAPI
e59c1c98 1082 select CRYPTO_LIB_AES
b5e0b032
AB
1083 help
1084 This is a generic implementation of AES that attempts to eliminate
1085 data dependent latencies as much as possible without affecting
1086 performance too much. It is intended for use by the generic CCM
1087 and GCM drivers, and other CTR or CMAC/XCBC based modes that rely
1088 solely on encryption (although decryption is supported as well, but
1089 with a more dramatic performance hit)
1090
1091 Instead of using 16 lookup tables of 1 KB each, (8 for encryption and
1092 8 for decryption), this implementation only uses just two S-boxes of
1093 256 bytes each, and attempts to eliminate data dependent latencies by
1094 prefetching the entire table into the cache at the start of each
0a6a40c2
EB
1095 block. Interrupts are also disabled to avoid races where cachelines
1096 are evicted when the CPU is interrupted to do something else.
b5e0b032 1097
54b6a1bd
HY
1098config CRYPTO_AES_NI_INTEL
1099 tristate "AES cipher algorithms (AES-NI)"
8af00860 1100 depends on X86
85671860 1101 select CRYPTO_AEAD
2c53fd11 1102 select CRYPTO_LIB_AES
54b6a1bd 1103 select CRYPTO_ALGAPI
b95bba5d 1104 select CRYPTO_SKCIPHER
85671860 1105 select CRYPTO_SIMD
54b6a1bd
HY
1106 help
1107 Use Intel AES-NI instructions for AES algorithm.
1108
1109 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1110 algorithm.
1111
1112 Rijndael appears to be consistently a very good performer in
1113 both hardware and software across a wide range of computing
1114 environments regardless of its use in feedback or non-feedback
1115 modes. Its key setup time is excellent, and its key agility is
584fffc8
SS
1116 good. Rijndael's very low memory requirements make it very well
1117 suited for restricted-space environments, in which it also
1118 demonstrates excellent performance. Rijndael's operations are
1119 among the easiest to defend against power and timing attacks.
a2a892a2 1120
584fffc8 1121 The AES specifies three key sizes: 128, 192 and 256 bits
1da177e4
LT
1122
1123 See <http://csrc.nist.gov/encryption/aes/> for more information.
1124
0d258efb
MK
1125 In addition to AES cipher algorithm support, the acceleration
1126 for some popular block cipher mode is supported too, including
944585a6 1127 ECB, CBC, LRW, XTS. The 64 bit version has additional
0d258efb 1128 acceleration for CTR.
2cf4ac8b 1129
9bf4852d
DM
1130config CRYPTO_AES_SPARC64
1131 tristate "AES cipher algorithms (SPARC64)"
1132 depends on SPARC64
b95bba5d 1133 select CRYPTO_SKCIPHER
9bf4852d
DM
1134 help
1135 Use SPARC64 crypto opcodes for AES algorithm.
1136
1137 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1138 algorithm.
1139
1140 Rijndael appears to be consistently a very good performer in
1141 both hardware and software across a wide range of computing
1142 environments regardless of its use in feedback or non-feedback
1143 modes. Its key setup time is excellent, and its key agility is
1144 good. Rijndael's very low memory requirements make it very well
1145 suited for restricted-space environments, in which it also
1146 demonstrates excellent performance. Rijndael's operations are
1147 among the easiest to defend against power and timing attacks.
1148
1149 The AES specifies three key sizes: 128, 192 and 256 bits
1150
1151 See <http://csrc.nist.gov/encryption/aes/> for more information.
1152
1153 In addition to AES cipher algorithm support, the acceleration
1154 for some popular block cipher mode is supported too, including
1155 ECB and CBC.
1156
504c6143
MS
1157config CRYPTO_AES_PPC_SPE
1158 tristate "AES cipher algorithms (PPC SPE)"
1159 depends on PPC && SPE
b95bba5d 1160 select CRYPTO_SKCIPHER
504c6143
MS
1161 help
1162 AES cipher algorithms (FIPS-197). Additionally the acceleration
1163 for popular block cipher modes ECB, CBC, CTR and XTS is supported.
1164 This module should only be used for low power (router) devices
1165 without hardware AES acceleration (e.g. caam crypto). It reduces the
1166 size of the AES tables from 16KB to 8KB + 256 bytes and mitigates
1167 timining attacks. Nevertheless it might be not as secure as other
1168 architecture specific assembler implementations that work on 1KB
1169 tables or 256 bytes S-boxes.
1170
584fffc8
SS
1171config CRYPTO_ANUBIS
1172 tristate "Anubis cipher algorithm"
1674aea5 1173 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
584fffc8
SS
1174 select CRYPTO_ALGAPI
1175 help
1176 Anubis cipher algorithm.
1177
1178 Anubis is a variable key length cipher which can use keys from
1179 128 bits to 320 bits in length. It was evaluated as a entrant
1180 in the NESSIE competition.
1181
1182 See also:
6d8de74c
JM
1183 <https://www.cosic.esat.kuleuven.be/nessie/reports/>
1184 <http://www.larc.usp.br/~pbarreto/AnubisPage.html>
584fffc8
SS
1185
1186config CRYPTO_ARC4
1187 tristate "ARC4 cipher algorithm"
9ace6771 1188 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
b95bba5d 1189 select CRYPTO_SKCIPHER
dc51f257 1190 select CRYPTO_LIB_ARC4
584fffc8
SS
1191 help
1192 ARC4 cipher algorithm.
1193
1194 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
1195 bits in length. This algorithm is required for driver-based
1196 WEP, but it should not be for other purposes because of the
1197 weakness of the algorithm.
1198
1199config CRYPTO_BLOWFISH
1200 tristate "Blowfish cipher algorithm"
1201 select CRYPTO_ALGAPI
52ba867c 1202 select CRYPTO_BLOWFISH_COMMON
584fffc8
SS
1203 help
1204 Blowfish cipher algorithm, by Bruce Schneier.
1205
1206 This is a variable key length cipher which can use keys from 32
1207 bits to 448 bits in length. It's fast, simple and specifically
1208 designed for use on "large microprocessors".
1209
1210 See also:
9332a9e7 1211 <https://www.schneier.com/blowfish.html>
584fffc8 1212
52ba867c
JK
1213config CRYPTO_BLOWFISH_COMMON
1214 tristate
1215 help
1216 Common parts of the Blowfish cipher algorithm shared by the
1217 generic c and the assembler implementations.
1218
1219 See also:
9332a9e7 1220 <https://www.schneier.com/blowfish.html>
52ba867c 1221
64b94cea
JK
1222config CRYPTO_BLOWFISH_X86_64
1223 tristate "Blowfish cipher algorithm (x86_64)"
f21a7c19 1224 depends on X86 && 64BIT
b95bba5d 1225 select CRYPTO_SKCIPHER
64b94cea 1226 select CRYPTO_BLOWFISH_COMMON
c0a64926 1227 imply CRYPTO_CTR
64b94cea
JK
1228 help
1229 Blowfish cipher algorithm (x86_64), by Bruce Schneier.
1230
1231 This is a variable key length cipher which can use keys from 32
1232 bits to 448 bits in length. It's fast, simple and specifically
1233 designed for use on "large microprocessors".
1234
1235 See also:
9332a9e7 1236 <https://www.schneier.com/blowfish.html>
64b94cea 1237
584fffc8
SS
1238config CRYPTO_CAMELLIA
1239 tristate "Camellia cipher algorithms"
584fffc8
SS
1240 select CRYPTO_ALGAPI
1241 help
1242 Camellia cipher algorithms module.
1243
1244 Camellia is a symmetric key block cipher developed jointly
1245 at NTT and Mitsubishi Electric Corporation.
1246
1247 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1248
1249 See also:
1250 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1251
0b95ec56
JK
1252config CRYPTO_CAMELLIA_X86_64
1253 tristate "Camellia cipher algorithm (x86_64)"
f21a7c19 1254 depends on X86 && 64BIT
b95bba5d 1255 select CRYPTO_SKCIPHER
a1f91ecf 1256 imply CRYPTO_CTR
0b95ec56
JK
1257 help
1258 Camellia cipher algorithm module (x86_64).
1259
1260 Camellia is a symmetric key block cipher developed jointly
1261 at NTT and Mitsubishi Electric Corporation.
1262
1263 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1264
1265 See also:
d9b1d2e7
JK
1266 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1267
1268config CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1269 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX)"
1270 depends on X86 && 64BIT
b95bba5d 1271 select CRYPTO_SKCIPHER
d9b1d2e7 1272 select CRYPTO_CAMELLIA_X86_64
44893bc2 1273 select CRYPTO_SIMD
55a7e88f 1274 imply CRYPTO_XTS
d9b1d2e7
JK
1275 help
1276 Camellia cipher algorithm module (x86_64/AES-NI/AVX).
1277
1278 Camellia is a symmetric key block cipher developed jointly
1279 at NTT and Mitsubishi Electric Corporation.
1280
1281 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1282
1283 See also:
0b95ec56
JK
1284 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1285
f3f935a7
JK
1286config CRYPTO_CAMELLIA_AESNI_AVX2_X86_64
1287 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX2)"
1288 depends on X86 && 64BIT
f3f935a7 1289 select CRYPTO_CAMELLIA_AESNI_AVX_X86_64
f3f935a7
JK
1290 help
1291 Camellia cipher algorithm module (x86_64/AES-NI/AVX2).
1292
1293 Camellia is a symmetric key block cipher developed jointly
1294 at NTT and Mitsubishi Electric Corporation.
1295
1296 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1297
1298 See also:
1299 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1300
81658ad0
DM
1301config CRYPTO_CAMELLIA_SPARC64
1302 tristate "Camellia cipher algorithm (SPARC64)"
1303 depends on SPARC64
81658ad0 1304 select CRYPTO_ALGAPI
b95bba5d 1305 select CRYPTO_SKCIPHER
81658ad0
DM
1306 help
1307 Camellia cipher algorithm module (SPARC64).
1308
1309 Camellia is a symmetric key block cipher developed jointly
1310 at NTT and Mitsubishi Electric Corporation.
1311
1312 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1313
1314 See also:
1315 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1316
044ab525
JK
1317config CRYPTO_CAST_COMMON
1318 tristate
1319 help
1320 Common parts of the CAST cipher algorithms shared by the
1321 generic c and the assembler implementations.
1322
1da177e4
LT
1323config CRYPTO_CAST5
1324 tristate "CAST5 (CAST-128) cipher algorithm"
cce9e06d 1325 select CRYPTO_ALGAPI
044ab525 1326 select CRYPTO_CAST_COMMON
1da177e4
LT
1327 help
1328 The CAST5 encryption algorithm (synonymous with CAST-128) is
1329 described in RFC2144.
1330
4d6d6a2c
JG
1331config CRYPTO_CAST5_AVX_X86_64
1332 tristate "CAST5 (CAST-128) cipher algorithm (x86_64/AVX)"
1333 depends on X86 && 64BIT
b95bba5d 1334 select CRYPTO_SKCIPHER
4d6d6a2c 1335 select CRYPTO_CAST5
1e63183a
EB
1336 select CRYPTO_CAST_COMMON
1337 select CRYPTO_SIMD
e2d60e2f 1338 imply CRYPTO_CTR
4d6d6a2c
JG
1339 help
1340 The CAST5 encryption algorithm (synonymous with CAST-128) is
1341 described in RFC2144.
1342
1343 This module provides the Cast5 cipher algorithm that processes
1344 sixteen blocks parallel using the AVX instruction set.
1345
1da177e4
LT
1346config CRYPTO_CAST6
1347 tristate "CAST6 (CAST-256) cipher algorithm"
cce9e06d 1348 select CRYPTO_ALGAPI
044ab525 1349 select CRYPTO_CAST_COMMON
1da177e4
LT
1350 help
1351 The CAST6 encryption algorithm (synonymous with CAST-256) is
1352 described in RFC2612.
1353
4ea1277d
JG
1354config CRYPTO_CAST6_AVX_X86_64
1355 tristate "CAST6 (CAST-256) cipher algorithm (x86_64/AVX)"
1356 depends on X86 && 64BIT
b95bba5d 1357 select CRYPTO_SKCIPHER
4ea1277d 1358 select CRYPTO_CAST6
4bd96924 1359 select CRYPTO_CAST_COMMON
4bd96924 1360 select CRYPTO_SIMD
2cc0fedb 1361 imply CRYPTO_XTS
7a6623cc 1362 imply CRYPTO_CTR
4ea1277d
JG
1363 help
1364 The CAST6 encryption algorithm (synonymous with CAST-256) is
1365 described in RFC2612.
1366
1367 This module provides the Cast6 cipher algorithm that processes
1368 eight blocks parallel using the AVX instruction set.
1369
584fffc8
SS
1370config CRYPTO_DES
1371 tristate "DES and Triple DES EDE cipher algorithms"
cce9e06d 1372 select CRYPTO_ALGAPI
04007b0e 1373 select CRYPTO_LIB_DES
1da177e4 1374 help
584fffc8 1375 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
fb4f10ed 1376
c5aac2df
DM
1377config CRYPTO_DES_SPARC64
1378 tristate "DES and Triple DES EDE cipher algorithms (SPARC64)"
97da37b3 1379 depends on SPARC64
c5aac2df 1380 select CRYPTO_ALGAPI
04007b0e 1381 select CRYPTO_LIB_DES
b95bba5d 1382 select CRYPTO_SKCIPHER
c5aac2df
DM
1383 help
1384 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3),
1385 optimized using SPARC64 crypto opcodes.
1386
6574e6c6
JK
1387config CRYPTO_DES3_EDE_X86_64
1388 tristate "Triple DES EDE cipher algorithm (x86-64)"
1389 depends on X86 && 64BIT
b95bba5d 1390 select CRYPTO_SKCIPHER
04007b0e 1391 select CRYPTO_LIB_DES
768db5fe 1392 imply CRYPTO_CTR
6574e6c6
JK
1393 help
1394 Triple DES EDE (FIPS 46-3) algorithm.
1395
1396 This module provides implementation of the Triple DES EDE cipher
1397 algorithm that is optimized for x86-64 processors. Two versions of
1398 algorithm are provided; regular processing one input block and
1399 one that processes three blocks parallel.
1400
584fffc8
SS
1401config CRYPTO_FCRYPT
1402 tristate "FCrypt cipher algorithm"
cce9e06d 1403 select CRYPTO_ALGAPI
b95bba5d 1404 select CRYPTO_SKCIPHER
1da177e4 1405 help
584fffc8 1406 FCrypt algorithm used by RxRPC.
1da177e4
LT
1407
1408config CRYPTO_KHAZAD
1409 tristate "Khazad cipher algorithm"
1674aea5 1410 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
cce9e06d 1411 select CRYPTO_ALGAPI
1da177e4
LT
1412 help
1413 Khazad cipher algorithm.
1414
1415 Khazad was a finalist in the initial NESSIE competition. It is
1416 an algorithm optimized for 64-bit processors with good performance
1417 on 32-bit processors. Khazad uses an 128 bit key size.
1418
1419 See also:
6d8de74c 1420 <http://www.larc.usp.br/~pbarreto/KhazadPage.html>
1da177e4 1421
c08d0e64 1422config CRYPTO_CHACHA20
aa762409 1423 tristate "ChaCha stream cipher algorithms"
5fb8ef25 1424 select CRYPTO_LIB_CHACHA_GENERIC
b95bba5d 1425 select CRYPTO_SKCIPHER
c08d0e64 1426 help
aa762409 1427 The ChaCha20, XChaCha20, and XChaCha12 stream cipher algorithms.
c08d0e64
MW
1428
1429 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1430 Bernstein and further specified in RFC7539 for use in IETF protocols.
de61d7ae 1431 This is the portable C implementation of ChaCha20. See also:
9332a9e7 1432 <https://cr.yp.to/chacha/chacha-20080128.pdf>
c08d0e64 1433
de61d7ae
EB
1434 XChaCha20 is the application of the XSalsa20 construction to ChaCha20
1435 rather than to Salsa20. XChaCha20 extends ChaCha20's nonce length
1436 from 64 bits (or 96 bits using the RFC7539 convention) to 192 bits,
1437 while provably retaining ChaCha20's security. See also:
1438 <https://cr.yp.to/snuffle/xsalsa-20081128.pdf>
1439
aa762409
EB
1440 XChaCha12 is XChaCha20 reduced to 12 rounds, with correspondingly
1441 reduced security margin but increased performance. It can be needed
1442 in some performance-sensitive scenarios.
1443
c9320b6d 1444config CRYPTO_CHACHA20_X86_64
4af78261 1445 tristate "ChaCha stream cipher algorithms (x86_64/SSSE3/AVX2/AVX-512VL)"
c9320b6d 1446 depends on X86 && 64BIT
b95bba5d 1447 select CRYPTO_SKCIPHER
28e8d89b 1448 select CRYPTO_LIB_CHACHA_GENERIC
84e03fa3 1449 select CRYPTO_ARCH_HAVE_LIB_CHACHA
c9320b6d 1450 help
7a507d62
EB
1451 SSSE3, AVX2, and AVX-512VL optimized implementations of the ChaCha20,
1452 XChaCha20, and XChaCha12 stream ciphers.
c9320b6d 1453
3a2f58f3
AB
1454config CRYPTO_CHACHA_MIPS
1455 tristate "ChaCha stream cipher algorithms (MIPS 32r2 optimized)"
1456 depends on CPU_MIPS32_R2
660eda8d 1457 select CRYPTO_SKCIPHER
3a2f58f3
AB
1458 select CRYPTO_ARCH_HAVE_LIB_CHACHA
1459
584fffc8
SS
1460config CRYPTO_SEED
1461 tristate "SEED cipher algorithm"
1674aea5 1462 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
cce9e06d 1463 select CRYPTO_ALGAPI
1da177e4 1464 help
584fffc8 1465 SEED cipher algorithm (RFC4269).
1da177e4 1466
584fffc8
SS
1467 SEED is a 128-bit symmetric key block cipher that has been
1468 developed by KISA (Korea Information Security Agency) as a
1469 national standard encryption algorithm of the Republic of Korea.
1470 It is a 16 round block cipher with the key size of 128 bit.
1471
1472 See also:
1473 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
1474
1475config CRYPTO_SERPENT
1476 tristate "Serpent cipher algorithm"
cce9e06d 1477 select CRYPTO_ALGAPI
1da177e4 1478 help
584fffc8 1479 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1da177e4 1480
584fffc8 1481 Keys are allowed to be from 0 to 256 bits in length, in steps
784506a1 1482 of 8 bits.
584fffc8
SS
1483
1484 See also:
9332a9e7 1485 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
584fffc8 1486
937c30d7
JK
1487config CRYPTO_SERPENT_SSE2_X86_64
1488 tristate "Serpent cipher algorithm (x86_64/SSE2)"
1489 depends on X86 && 64BIT
b95bba5d 1490 select CRYPTO_SKCIPHER
937c30d7 1491 select CRYPTO_SERPENT
e0f409dc 1492 select CRYPTO_SIMD
2e9440ae 1493 imply CRYPTO_CTR
937c30d7
JK
1494 help
1495 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1496
1497 Keys are allowed to be from 0 to 256 bits in length, in steps
1498 of 8 bits.
1499
1e6232f8 1500 This module provides Serpent cipher algorithm that processes eight
937c30d7
JK
1501 blocks parallel using SSE2 instruction set.
1502
1503 See also:
9332a9e7 1504 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
937c30d7 1505
251496db
JK
1506config CRYPTO_SERPENT_SSE2_586
1507 tristate "Serpent cipher algorithm (i586/SSE2)"
1508 depends on X86 && !64BIT
b95bba5d 1509 select CRYPTO_SKCIPHER
251496db 1510 select CRYPTO_SERPENT
e0f409dc 1511 select CRYPTO_SIMD
2e9440ae 1512 imply CRYPTO_CTR
251496db
JK
1513 help
1514 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1515
1516 Keys are allowed to be from 0 to 256 bits in length, in steps
1517 of 8 bits.
1518
1519 This module provides Serpent cipher algorithm that processes four
1520 blocks parallel using SSE2 instruction set.
1521
1522 See also:
9332a9e7 1523 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
7efe4076
JG
1524
1525config CRYPTO_SERPENT_AVX_X86_64
1526 tristate "Serpent cipher algorithm (x86_64/AVX)"
1527 depends on X86 && 64BIT
b95bba5d 1528 select CRYPTO_SKCIPHER
7efe4076 1529 select CRYPTO_SERPENT
e16bf974 1530 select CRYPTO_SIMD
9ec0af8a 1531 imply CRYPTO_XTS
2e9440ae 1532 imply CRYPTO_CTR
7efe4076
JG
1533 help
1534 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1535
1536 Keys are allowed to be from 0 to 256 bits in length, in steps
1537 of 8 bits.
1538
1539 This module provides the Serpent cipher algorithm that processes
1540 eight blocks parallel using the AVX instruction set.
1541
1542 See also:
9332a9e7 1543 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
251496db 1544
56d76c96
JK
1545config CRYPTO_SERPENT_AVX2_X86_64
1546 tristate "Serpent cipher algorithm (x86_64/AVX2)"
1547 depends on X86 && 64BIT
56d76c96 1548 select CRYPTO_SERPENT_AVX_X86_64
56d76c96
JK
1549 help
1550 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1551
1552 Keys are allowed to be from 0 to 256 bits in length, in steps
1553 of 8 bits.
1554
1555 This module provides Serpent cipher algorithm that processes 16
1556 blocks parallel using AVX2 instruction set.
1557
1558 See also:
9332a9e7 1559 <https://www.cl.cam.ac.uk/~rja14/serpent.html>
56d76c96 1560
747c8ce4
GBY
1561config CRYPTO_SM4
1562 tristate "SM4 cipher algorithm"
1563 select CRYPTO_ALGAPI
2b31277a 1564 select CRYPTO_LIB_SM4
747c8ce4
GBY
1565 help
1566 SM4 cipher algorithms (OSCCA GB/T 32907-2016).
1567
1568 SM4 (GBT.32907-2016) is a cryptographic standard issued by the
1569 Organization of State Commercial Administration of China (OSCCA)
1570 as an authorized cryptographic algorithms for the use within China.
1571
1572 SMS4 was originally created for use in protecting wireless
1573 networks, and is mandated in the Chinese National Standard for
1574 Wireless LAN WAPI (Wired Authentication and Privacy Infrastructure)
1575 (GB.15629.11-2003).
1576
1577 The latest SM4 standard (GBT.32907-2016) was proposed by OSCCA and
1578 standardized through TC 260 of the Standardization Administration
1579 of the People's Republic of China (SAC).
1580
1581 The input, output, and key of SMS4 are each 128 bits.
1582
1583 See also: <https://eprint.iacr.org/2008/329.pdf>
1584
1585 If unsure, say N.
1586
a7ee22ee
TZ
1587config CRYPTO_SM4_AESNI_AVX_X86_64
1588 tristate "SM4 cipher algorithm (x86_64/AES-NI/AVX)"
1589 depends on X86 && 64BIT
1590 select CRYPTO_SKCIPHER
1591 select CRYPTO_SIMD
1592 select CRYPTO_ALGAPI
1593 select CRYPTO_LIB_SM4
1594 help
1595 SM4 cipher algorithms (OSCCA GB/T 32907-2016) (x86_64/AES-NI/AVX).
1596
1597 SM4 (GBT.32907-2016) is a cryptographic standard issued by the
1598 Organization of State Commercial Administration of China (OSCCA)
1599 as an authorized cryptographic algorithms for the use within China.
1600
1601 This is SM4 optimized implementation using AES-NI/AVX/x86_64
1602 instruction set for block cipher. Through two affine transforms,
1603 we can use the AES S-Box to simulate the SM4 S-Box to achieve the
1604 effect of instruction acceleration.
1605
1606 If unsure, say N.
1607
5b2efa2b
TZ
1608config CRYPTO_SM4_AESNI_AVX2_X86_64
1609 tristate "SM4 cipher algorithm (x86_64/AES-NI/AVX2)"
1610 depends on X86 && 64BIT
1611 select CRYPTO_SKCIPHER
1612 select CRYPTO_SIMD
1613 select CRYPTO_ALGAPI
1614 select CRYPTO_LIB_SM4
1615 select CRYPTO_SM4_AESNI_AVX_X86_64
1616 help
1617 SM4 cipher algorithms (OSCCA GB/T 32907-2016) (x86_64/AES-NI/AVX2).
1618
1619 SM4 (GBT.32907-2016) is a cryptographic standard issued by the
1620 Organization of State Commercial Administration of China (OSCCA)
1621 as an authorized cryptographic algorithms for the use within China.
1622
1623 This is SM4 optimized implementation using AES-NI/AVX2/x86_64
1624 instruction set for block cipher. Through two affine transforms,
1625 we can use the AES S-Box to simulate the SM4 S-Box to achieve the
1626 effect of instruction acceleration.
1627
1628 If unsure, say N.
1629
584fffc8
SS
1630config CRYPTO_TEA
1631 tristate "TEA, XTEA and XETA cipher algorithms"
1674aea5 1632 depends on CRYPTO_USER_API_ENABLE_OBSOLETE
cce9e06d 1633 select CRYPTO_ALGAPI
1da177e4 1634 help
584fffc8 1635 TEA cipher algorithm.
1da177e4 1636
584fffc8
SS
1637 Tiny Encryption Algorithm is a simple cipher that uses
1638 many rounds for security. It is very fast and uses
1639 little memory.
1640
1641 Xtendend Tiny Encryption Algorithm is a modification to
1642 the TEA algorithm to address a potential key weakness
1643 in the TEA algorithm.
1644
1645 Xtendend Encryption Tiny Algorithm is a mis-implementation
1646 of the XTEA algorithm for compatibility purposes.
1647
1648config CRYPTO_TWOFISH
1649 tristate "Twofish cipher algorithm"
04ac7db3 1650 select CRYPTO_ALGAPI
584fffc8 1651 select CRYPTO_TWOFISH_COMMON
04ac7db3 1652 help
584fffc8 1653 Twofish cipher algorithm.
04ac7db3 1654
584fffc8
SS
1655 Twofish was submitted as an AES (Advanced Encryption Standard)
1656 candidate cipher by researchers at CounterPane Systems. It is a
1657 16 round block cipher supporting key sizes of 128, 192, and 256
1658 bits.
04ac7db3 1659
584fffc8 1660 See also:
9332a9e7 1661 <https://www.schneier.com/twofish.html>
584fffc8
SS
1662
1663config CRYPTO_TWOFISH_COMMON
1664 tristate
1665 help
1666 Common parts of the Twofish cipher algorithm shared by the
1667 generic c and the assembler implementations.
1668
1669config CRYPTO_TWOFISH_586
1670 tristate "Twofish cipher algorithms (i586)"
1671 depends on (X86 || UML_X86) && !64BIT
1672 select CRYPTO_ALGAPI
1673 select CRYPTO_TWOFISH_COMMON
f43dcaf2 1674 imply CRYPTO_CTR
584fffc8
SS
1675 help
1676 Twofish cipher algorithm.
1677
1678 Twofish was submitted as an AES (Advanced Encryption Standard)
1679 candidate cipher by researchers at CounterPane Systems. It is a
1680 16 round block cipher supporting key sizes of 128, 192, and 256
1681 bits.
04ac7db3
NT
1682
1683 See also:
9332a9e7 1684 <https://www.schneier.com/twofish.html>
04ac7db3 1685
584fffc8
SS
1686config CRYPTO_TWOFISH_X86_64
1687 tristate "Twofish cipher algorithm (x86_64)"
1688 depends on (X86 || UML_X86) && 64BIT
cce9e06d 1689 select CRYPTO_ALGAPI
584fffc8 1690 select CRYPTO_TWOFISH_COMMON
f43dcaf2 1691 imply CRYPTO_CTR
1da177e4 1692 help
584fffc8 1693 Twofish cipher algorithm (x86_64).
1da177e4 1694
584fffc8
SS
1695 Twofish was submitted as an AES (Advanced Encryption Standard)
1696 candidate cipher by researchers at CounterPane Systems. It is a
1697 16 round block cipher supporting key sizes of 128, 192, and 256
1698 bits.
1699
1700 See also:
9332a9e7 1701 <https://www.schneier.com/twofish.html>
584fffc8 1702
8280daad
JK
1703config CRYPTO_TWOFISH_X86_64_3WAY
1704 tristate "Twofish cipher algorithm (x86_64, 3-way parallel)"
f21a7c19 1705 depends on X86 && 64BIT
b95bba5d 1706 select CRYPTO_SKCIPHER
8280daad
JK
1707 select CRYPTO_TWOFISH_COMMON
1708 select CRYPTO_TWOFISH_X86_64
1709 help
1710 Twofish cipher algorithm (x86_64, 3-way parallel).
1711
1712 Twofish was submitted as an AES (Advanced Encryption Standard)
1713 candidate cipher by researchers at CounterPane Systems. It is a
1714 16 round block cipher supporting key sizes of 128, 192, and 256
1715 bits.
1716
1717 This module provides Twofish cipher algorithm that processes three
1718 blocks parallel, utilizing resources of out-of-order CPUs better.
1719
1720 See also:
9332a9e7 1721 <https://www.schneier.com/twofish.html>
8280daad 1722
107778b5
JG
1723config CRYPTO_TWOFISH_AVX_X86_64
1724 tristate "Twofish cipher algorithm (x86_64/AVX)"
1725 depends on X86 && 64BIT
b95bba5d 1726 select CRYPTO_SKCIPHER
0e6ab46d 1727 select CRYPTO_SIMD
107778b5
JG
1728 select CRYPTO_TWOFISH_COMMON
1729 select CRYPTO_TWOFISH_X86_64
1730 select CRYPTO_TWOFISH_X86_64_3WAY
da4df93a 1731 imply CRYPTO_XTS
107778b5
JG
1732 help
1733 Twofish cipher algorithm (x86_64/AVX).
1734
1735 Twofish was submitted as an AES (Advanced Encryption Standard)
1736 candidate cipher by researchers at CounterPane Systems. It is a
1737 16 round block cipher supporting key sizes of 128, 192, and 256
1738 bits.
1739
1740 This module provides the Twofish cipher algorithm that processes
1741 eight blocks parallel using the AVX Instruction Set.
1742
1743 See also:
9332a9e7 1744 <https://www.schneier.com/twofish.html>
107778b5 1745
584fffc8
SS
1746comment "Compression"
1747
1748config CRYPTO_DEFLATE
1749 tristate "Deflate compression algorithm"
1750 select CRYPTO_ALGAPI
f6ded09d 1751 select CRYPTO_ACOMP2
584fffc8
SS
1752 select ZLIB_INFLATE
1753 select ZLIB_DEFLATE
3c09f17c 1754 help
584fffc8
SS
1755 This is the Deflate algorithm (RFC1951), specified for use in
1756 IPSec with the IPCOMP protocol (RFC3173, RFC2394).
1757
1758 You will most probably want this if using IPSec.
3c09f17c 1759
0b77abb3
ZS
1760config CRYPTO_LZO
1761 tristate "LZO compression algorithm"
1762 select CRYPTO_ALGAPI
ac9d2c4b 1763 select CRYPTO_ACOMP2
0b77abb3
ZS
1764 select LZO_COMPRESS
1765 select LZO_DECOMPRESS
1766 help
1767 This is the LZO algorithm.
1768
35a1fc18
SJ
1769config CRYPTO_842
1770 tristate "842 compression algorithm"
2062c5b6 1771 select CRYPTO_ALGAPI
6a8de3ae 1772 select CRYPTO_ACOMP2
2062c5b6
DS
1773 select 842_COMPRESS
1774 select 842_DECOMPRESS
35a1fc18
SJ
1775 help
1776 This is the 842 algorithm.
0ea8530d
CM
1777
1778config CRYPTO_LZ4
1779 tristate "LZ4 compression algorithm"
1780 select CRYPTO_ALGAPI
8cd9330e 1781 select CRYPTO_ACOMP2
0ea8530d
CM
1782 select LZ4_COMPRESS
1783 select LZ4_DECOMPRESS
1784 help
1785 This is the LZ4 algorithm.
1786
1787config CRYPTO_LZ4HC
1788 tristate "LZ4HC compression algorithm"
1789 select CRYPTO_ALGAPI
91d53d96 1790 select CRYPTO_ACOMP2
0ea8530d
CM
1791 select LZ4HC_COMPRESS
1792 select LZ4_DECOMPRESS
1793 help
1794 This is the LZ4 high compression mode algorithm.
35a1fc18 1795
d28fc3db
NT
1796config CRYPTO_ZSTD
1797 tristate "Zstd compression algorithm"
1798 select CRYPTO_ALGAPI
1799 select CRYPTO_ACOMP2
1800 select ZSTD_COMPRESS
1801 select ZSTD_DECOMPRESS
1802 help
1803 This is the zstd algorithm.
1804
17f0f4a4
NH
1805comment "Random Number Generation"
1806
1807config CRYPTO_ANSI_CPRNG
1808 tristate "Pseudo Random Number Generation for Cryptographic modules"
1809 select CRYPTO_AES
1810 select CRYPTO_RNG
17f0f4a4
NH
1811 help
1812 This option enables the generic pseudo random number generator
1813 for cryptographic modules. Uses the Algorithm specified in
7dd607e8
JK
1814 ANSI X9.31 A.2.4. Note that this option must be enabled if
1815 CRYPTO_FIPS is selected
17f0f4a4 1816
f2c89a10 1817menuconfig CRYPTO_DRBG_MENU
419090c6 1818 tristate "NIST SP800-90A DRBG"
419090c6
SM
1819 help
1820 NIST SP800-90A compliant DRBG. In the following submenu, one or
1821 more of the DRBG types must be selected.
1822
f2c89a10 1823if CRYPTO_DRBG_MENU
419090c6
SM
1824
1825config CRYPTO_DRBG_HMAC
401e4238 1826 bool
419090c6 1827 default y
419090c6 1828 select CRYPTO_HMAC
5261cdf4 1829 select CRYPTO_SHA512
419090c6
SM
1830
1831config CRYPTO_DRBG_HASH
1832 bool "Enable Hash DRBG"
826775bb 1833 select CRYPTO_SHA256
419090c6
SM
1834 help
1835 Enable the Hash DRBG variant as defined in NIST SP800-90A.
1836
1837config CRYPTO_DRBG_CTR
1838 bool "Enable CTR DRBG"
419090c6 1839 select CRYPTO_AES
d6fc1a45 1840 select CRYPTO_CTR
419090c6
SM
1841 help
1842 Enable the CTR DRBG variant as defined in NIST SP800-90A.
1843
f2c89a10
HX
1844config CRYPTO_DRBG
1845 tristate
401e4238 1846 default CRYPTO_DRBG_MENU
f2c89a10 1847 select CRYPTO_RNG
bb5530e4 1848 select CRYPTO_JITTERENTROPY
f2c89a10
HX
1849
1850endif # if CRYPTO_DRBG_MENU
419090c6 1851
bb5530e4
SM
1852config CRYPTO_JITTERENTROPY
1853 tristate "Jitterentropy Non-Deterministic Random Number Generator"
2f313e02 1854 select CRYPTO_RNG
bb5530e4
SM
1855 help
1856 The Jitterentropy RNG is a noise that is intended
1857 to provide seed to another RNG. The RNG does not
1858 perform any cryptographic whitening of the generated
1859 random numbers. This Jitterentropy RNG registers with
1860 the kernel crypto API and can be used by any caller.
1861
026a733e
SM
1862config CRYPTO_KDF800108_CTR
1863 tristate
304b4ace 1864 select CRYPTO_SHA256
026a733e 1865
03c8efc1
HX
1866config CRYPTO_USER_API
1867 tristate
1868
fe869cdb
HX
1869config CRYPTO_USER_API_HASH
1870 tristate "User-space interface for hash algorithms"
7451708f 1871 depends on NET
fe869cdb
HX
1872 select CRYPTO_HASH
1873 select CRYPTO_USER_API
1874 help
1875 This option enables the user-spaces interface for hash
1876 algorithms.
1877
8ff59090
HX
1878config CRYPTO_USER_API_SKCIPHER
1879 tristate "User-space interface for symmetric key cipher algorithms"
7451708f 1880 depends on NET
b95bba5d 1881 select CRYPTO_SKCIPHER
8ff59090
HX
1882 select CRYPTO_USER_API
1883 help
1884 This option enables the user-spaces interface for symmetric
1885 key cipher algorithms.
1886
2f375538
SM
1887config CRYPTO_USER_API_RNG
1888 tristate "User-space interface for random number generator algorithms"
1889 depends on NET
1890 select CRYPTO_RNG
1891 select CRYPTO_USER_API
1892 help
1893 This option enables the user-spaces interface for random
1894 number generator algorithms.
1895
77ebdabe
EP
1896config CRYPTO_USER_API_RNG_CAVP
1897 bool "Enable CAVP testing of DRBG"
1898 depends on CRYPTO_USER_API_RNG && CRYPTO_DRBG
1899 help
1900 This option enables extra API for CAVP testing via the user-space
1901 interface: resetting of DRBG entropy, and providing Additional Data.
1902 This should only be enabled for CAVP testing. You should say
1903 no unless you know what this is.
1904
b64a2d95
HX
1905config CRYPTO_USER_API_AEAD
1906 tristate "User-space interface for AEAD cipher algorithms"
1907 depends on NET
1908 select CRYPTO_AEAD
b95bba5d 1909 select CRYPTO_SKCIPHER
72548b09 1910 select CRYPTO_NULL
b64a2d95
HX
1911 select CRYPTO_USER_API
1912 help
1913 This option enables the user-spaces interface for AEAD
1914 cipher algorithms.
1915
9ace6771
AB
1916config CRYPTO_USER_API_ENABLE_OBSOLETE
1917 bool "Enable obsolete cryptographic algorithms for userspace"
1918 depends on CRYPTO_USER_API
1919 default y
1920 help
1921 Allow obsolete cryptographic algorithms to be selected that have
1922 already been phased out from internal use by the kernel, and are
1923 only useful for userspace clients that still rely on them.
1924
cac5818c
CL
1925config CRYPTO_STATS
1926 bool "Crypto usage statistics for User-space"
a6a31385 1927 depends on CRYPTO_USER
cac5818c
CL
1928 help
1929 This option enables the gathering of crypto stats.
1930 This will collect:
1931 - encrypt/decrypt size and numbers of symmeric operations
1932 - compress/decompress size and numbers of compress operations
1933 - size and numbers of hash operations
1934 - encrypt/decrypt/sign/verify numbers for asymmetric operations
1935 - generate/seed numbers for rng operations
1936
ee08997f
DK
1937config CRYPTO_HASH_INFO
1938 bool
1939
1da177e4 1940source "drivers/crypto/Kconfig"
8636a1f9
MY
1941source "crypto/asymmetric_keys/Kconfig"
1942source "certs/Kconfig"
1da177e4 1943
cce9e06d 1944endif # if CRYPTO