]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - crypto/Kconfig
crypto: sha512-mb - Enable SHA512 multibuffer support
[mirror_ubuntu-zesty-kernel.git] / crypto / Kconfig
CommitLineData
685784aa
DW
1#
2# Generic algorithms support
3#
4config XOR_BLOCKS
5 tristate
6
1da177e4 7#
9bc89cd8 8# async_tx api: hardware offloaded memory transfer/transform support
1da177e4 9#
9bc89cd8 10source "crypto/async_tx/Kconfig"
1da177e4 11
9bc89cd8
DW
12#
13# Cryptographic API Configuration
14#
2e290f43 15menuconfig CRYPTO
c3715cb9 16 tristate "Cryptographic API"
1da177e4
LT
17 help
18 This option provides the core Cryptographic API.
19
cce9e06d
HX
20if CRYPTO
21
584fffc8
SS
22comment "Crypto core or helper"
23
ccb778e1
NH
24config CRYPTO_FIPS
25 bool "FIPS 200 compliance"
f2c89a10 26 depends on (CRYPTO_ANSI_CPRNG || CRYPTO_DRBG) && !CRYPTO_MANAGER_DISABLE_TESTS
002c77a4 27 depends on MODULE_SIG
ccb778e1
NH
28 help
29 This options enables the fips boot option which is
30 required if you want to system to operate in a FIPS 200
31 certification. You should say no unless you know what
e84c5480 32 this is.
ccb778e1 33
cce9e06d
HX
34config CRYPTO_ALGAPI
35 tristate
6a0fcbb4 36 select CRYPTO_ALGAPI2
cce9e06d
HX
37 help
38 This option provides the API for cryptographic algorithms.
39
6a0fcbb4
HX
40config CRYPTO_ALGAPI2
41 tristate
42
1ae97820
HX
43config CRYPTO_AEAD
44 tristate
6a0fcbb4 45 select CRYPTO_AEAD2
1ae97820
HX
46 select CRYPTO_ALGAPI
47
6a0fcbb4
HX
48config CRYPTO_AEAD2
49 tristate
50 select CRYPTO_ALGAPI2
149a3971
HX
51 select CRYPTO_NULL2
52 select CRYPTO_RNG2
6a0fcbb4 53
5cde0af2
HX
54config CRYPTO_BLKCIPHER
55 tristate
6a0fcbb4 56 select CRYPTO_BLKCIPHER2
5cde0af2 57 select CRYPTO_ALGAPI
6a0fcbb4
HX
58
59config CRYPTO_BLKCIPHER2
60 tristate
61 select CRYPTO_ALGAPI2
62 select CRYPTO_RNG2
0a2e821d 63 select CRYPTO_WORKQUEUE
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
cfc2bb32
TS
105config CRYPTO_RSA
106 tristate "RSA algorithm"
425e0172 107 select CRYPTO_AKCIPHER
58446fef 108 select CRYPTO_MANAGER
cfc2bb32
TS
109 select MPILIB
110 select ASN1
111 help
112 Generic implementation of the RSA public key algorithm.
113
802c7f1c
SB
114config CRYPTO_DH
115 tristate "Diffie-Hellman algorithm"
116 select CRYPTO_KPP
117 select MPILIB
118 help
119 Generic implementation of the Diffie-Hellman algorithm.
120
3c4b2390
SB
121config CRYPTO_ECDH
122 tristate "ECDH algorithm"
123 select CRYTPO_KPP
124 help
125 Generic implementation of the ECDH algorithm
802c7f1c 126
2b8c19db
HX
127config CRYPTO_MANAGER
128 tristate "Cryptographic algorithm manager"
6a0fcbb4 129 select CRYPTO_MANAGER2
2b8c19db
HX
130 help
131 Create default cryptographic template instantiations such as
132 cbc(aes).
133
6a0fcbb4
HX
134config CRYPTO_MANAGER2
135 def_tristate CRYPTO_MANAGER || (CRYPTO_MANAGER!=n && CRYPTO_ALGAPI=y)
136 select CRYPTO_AEAD2
137 select CRYPTO_HASH2
138 select CRYPTO_BLKCIPHER2
946cc463 139 select CRYPTO_AKCIPHER2
4e5f2c40 140 select CRYPTO_KPP2
6a0fcbb4 141
a38f7907
SK
142config CRYPTO_USER
143 tristate "Userspace cryptographic algorithm configuration"
5db017aa 144 depends on NET
a38f7907
SK
145 select CRYPTO_MANAGER
146 help
d19978f5 147 Userspace configuration for cryptographic instantiations such as
a38f7907
SK
148 cbc(aes).
149
326a6346
HX
150config CRYPTO_MANAGER_DISABLE_TESTS
151 bool "Disable run-time self tests"
00ca28a5
HX
152 default y
153 depends on CRYPTO_MANAGER2
0b767f96 154 help
326a6346
HX
155 Disable run-time self tests that normally take place at
156 algorithm registration.
0b767f96 157
584fffc8 158config CRYPTO_GF128MUL
08c70fc3 159 tristate "GF(2^128) multiplication functions"
333b0d7e 160 help
584fffc8
SS
161 Efficient table driven implementation of multiplications in the
162 field GF(2^128). This is needed by some cypher modes. This
163 option will be selected automatically if you select such a
164 cipher mode. Only select this option by hand if you expect to load
165 an external module that requires these functions.
333b0d7e 166
1da177e4
LT
167config CRYPTO_NULL
168 tristate "Null algorithms"
149a3971 169 select CRYPTO_NULL2
1da177e4
LT
170 help
171 These are 'Null' algorithms, used by IPsec, which do nothing.
172
149a3971 173config CRYPTO_NULL2
dd43c4e9 174 tristate
149a3971
HX
175 select CRYPTO_ALGAPI2
176 select CRYPTO_BLKCIPHER2
177 select CRYPTO_HASH2
178
5068c7a8 179config CRYPTO_PCRYPT
3b4afaf2
KC
180 tristate "Parallel crypto engine"
181 depends on SMP
5068c7a8
SK
182 select PADATA
183 select CRYPTO_MANAGER
184 select CRYPTO_AEAD
185 help
186 This converts an arbitrary crypto algorithm into a parallel
187 algorithm that executes in kernel threads.
188
25c38d3f
HY
189config CRYPTO_WORKQUEUE
190 tristate
191
584fffc8
SS
192config CRYPTO_CRYPTD
193 tristate "Software async crypto daemon"
194 select CRYPTO_BLKCIPHER
b8a28251 195 select CRYPTO_HASH
584fffc8 196 select CRYPTO_MANAGER
254eff77 197 select CRYPTO_WORKQUEUE
1da177e4 198 help
584fffc8
SS
199 This is a generic software asynchronous crypto daemon that
200 converts an arbitrary synchronous software crypto algorithm
201 into an asynchronous algorithm that executes in a kernel thread.
1da177e4 202
1e65b81a
TC
203config CRYPTO_MCRYPTD
204 tristate "Software async multi-buffer crypto daemon"
205 select CRYPTO_BLKCIPHER
206 select CRYPTO_HASH
207 select CRYPTO_MANAGER
208 select CRYPTO_WORKQUEUE
209 help
210 This is a generic software asynchronous crypto daemon that
211 provides the kernel thread to assist multi-buffer crypto
212 algorithms for submitting jobs and flushing jobs in multi-buffer
213 crypto algorithms. Multi-buffer crypto algorithms are executed
214 in the context of this kernel thread and drivers can post
0e56673b 215 their crypto request asynchronously to be processed by this daemon.
1e65b81a 216
584fffc8
SS
217config CRYPTO_AUTHENC
218 tristate "Authenc support"
219 select CRYPTO_AEAD
220 select CRYPTO_BLKCIPHER
221 select CRYPTO_MANAGER
222 select CRYPTO_HASH
e94c6a7a 223 select CRYPTO_NULL
1da177e4 224 help
584fffc8
SS
225 Authenc: Combined mode wrapper for IPsec.
226 This is required for IPSec.
1da177e4 227
584fffc8
SS
228config CRYPTO_TEST
229 tristate "Testing module"
230 depends on m
da7f033d 231 select CRYPTO_MANAGER
1da177e4 232 help
584fffc8 233 Quick & dirty crypto test module.
1da177e4 234
a62b01cd 235config CRYPTO_ABLK_HELPER
ffaf9156 236 tristate
ffaf9156
JK
237 select CRYPTO_CRYPTD
238
596d8750
JK
239config CRYPTO_GLUE_HELPER_X86
240 tristate
241 depends on X86
242 select CRYPTO_ALGAPI
243
735d37b5
BW
244config CRYPTO_ENGINE
245 tristate
246
584fffc8 247comment "Authenticated Encryption with Associated Data"
cd12fb90 248
584fffc8
SS
249config CRYPTO_CCM
250 tristate "CCM support"
251 select CRYPTO_CTR
252 select CRYPTO_AEAD
1da177e4 253 help
584fffc8 254 Support for Counter with CBC MAC. Required for IPsec.
1da177e4 255
584fffc8
SS
256config CRYPTO_GCM
257 tristate "GCM/GMAC support"
258 select CRYPTO_CTR
259 select CRYPTO_AEAD
9382d97a 260 select CRYPTO_GHASH
9489667d 261 select CRYPTO_NULL
1da177e4 262 help
584fffc8
SS
263 Support for Galois/Counter Mode (GCM) and Galois Message
264 Authentication Code (GMAC). Required for IPSec.
1da177e4 265
71ebc4d1
MW
266config CRYPTO_CHACHA20POLY1305
267 tristate "ChaCha20-Poly1305 AEAD support"
268 select CRYPTO_CHACHA20
269 select CRYPTO_POLY1305
270 select CRYPTO_AEAD
271 help
272 ChaCha20-Poly1305 AEAD support, RFC7539.
273
274 Support for the AEAD wrapper using the ChaCha20 stream cipher combined
275 with the Poly1305 authenticator. It is defined in RFC7539 for use in
276 IETF protocols.
277
584fffc8
SS
278config CRYPTO_SEQIV
279 tristate "Sequence Number IV Generator"
280 select CRYPTO_AEAD
281 select CRYPTO_BLKCIPHER
856e3f40 282 select CRYPTO_NULL
401e4238 283 select CRYPTO_RNG_DEFAULT
1da177e4 284 help
584fffc8
SS
285 This IV generator generates an IV based on a sequence number by
286 xoring it with a salt. This algorithm is mainly useful for CTR
1da177e4 287
a10f554f
HX
288config CRYPTO_ECHAINIV
289 tristate "Encrypted Chain IV Generator"
290 select CRYPTO_AEAD
291 select CRYPTO_NULL
401e4238 292 select CRYPTO_RNG_DEFAULT
3491244c 293 default m
a10f554f
HX
294 help
295 This IV generator generates an IV based on the encryption of
296 a sequence number xored with a salt. This is the default
297 algorithm for CBC.
298
584fffc8 299comment "Block modes"
c494e070 300
584fffc8
SS
301config CRYPTO_CBC
302 tristate "CBC support"
db131ef9 303 select CRYPTO_BLKCIPHER
43518407 304 select CRYPTO_MANAGER
db131ef9 305 help
584fffc8
SS
306 CBC: Cipher Block Chaining mode
307 This block cipher algorithm is required for IPSec.
db131ef9 308
584fffc8
SS
309config CRYPTO_CTR
310 tristate "CTR support"
db131ef9 311 select CRYPTO_BLKCIPHER
584fffc8 312 select CRYPTO_SEQIV
43518407 313 select CRYPTO_MANAGER
db131ef9 314 help
584fffc8 315 CTR: Counter mode
db131ef9
HX
316 This block cipher algorithm is required for IPSec.
317
584fffc8
SS
318config CRYPTO_CTS
319 tristate "CTS support"
320 select CRYPTO_BLKCIPHER
321 help
322 CTS: Cipher Text Stealing
323 This is the Cipher Text Stealing mode as described by
324 Section 8 of rfc2040 and referenced by rfc3962.
325 (rfc3962 includes errata information in its Appendix A)
326 This mode is required for Kerberos gss mechanism support
327 for AES encryption.
328
329config CRYPTO_ECB
330 tristate "ECB support"
91652be5
DH
331 select CRYPTO_BLKCIPHER
332 select CRYPTO_MANAGER
91652be5 333 help
584fffc8
SS
334 ECB: Electronic CodeBook mode
335 This is the simplest block cipher algorithm. It simply encrypts
336 the input block by block.
91652be5 337
64470f1b 338config CRYPTO_LRW
2470a2b2 339 tristate "LRW support"
64470f1b
RS
340 select CRYPTO_BLKCIPHER
341 select CRYPTO_MANAGER
342 select CRYPTO_GF128MUL
343 help
344 LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable
345 narrow block cipher mode for dm-crypt. Use it with cipher
346 specification string aes-lrw-benbi, the key must be 256, 320 or 384.
347 The first 128, 192 or 256 bits in the key are used for AES and the
348 rest is used to tie each cipher block to its logical position.
349
584fffc8
SS
350config CRYPTO_PCBC
351 tristate "PCBC support"
352 select CRYPTO_BLKCIPHER
353 select CRYPTO_MANAGER
354 help
355 PCBC: Propagating Cipher Block Chaining mode
356 This block cipher algorithm is required for RxRPC.
357
f19f5111 358config CRYPTO_XTS
5bcf8e6d 359 tristate "XTS support"
f19f5111
RS
360 select CRYPTO_BLKCIPHER
361 select CRYPTO_MANAGER
362 select CRYPTO_GF128MUL
363 help
364 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain,
365 key size 256, 384 or 512 bits. This implementation currently
366 can't handle a sectorsize which is not a multiple of 16 bytes.
367
1c49678e
SM
368config CRYPTO_KEYWRAP
369 tristate "Key wrapping support"
370 select CRYPTO_BLKCIPHER
371 help
372 Support for key wrapping (NIST SP800-38F / RFC3394) without
373 padding.
374
584fffc8
SS
375comment "Hash modes"
376
93b5e86a
JK
377config CRYPTO_CMAC
378 tristate "CMAC support"
379 select CRYPTO_HASH
380 select CRYPTO_MANAGER
381 help
382 Cipher-based Message Authentication Code (CMAC) specified by
383 The National Institute of Standards and Technology (NIST).
384
385 https://tools.ietf.org/html/rfc4493
386 http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf
387
584fffc8
SS
388config CRYPTO_HMAC
389 tristate "HMAC support"
390 select CRYPTO_HASH
23e353c8 391 select CRYPTO_MANAGER
23e353c8 392 help
584fffc8
SS
393 HMAC: Keyed-Hashing for Message Authentication (RFC2104).
394 This is required for IPSec.
23e353c8 395
584fffc8
SS
396config CRYPTO_XCBC
397 tristate "XCBC support"
584fffc8
SS
398 select CRYPTO_HASH
399 select CRYPTO_MANAGER
76cb9521 400 help
584fffc8
SS
401 XCBC: Keyed-Hashing with encryption algorithm
402 http://www.ietf.org/rfc/rfc3566.txt
403 http://csrc.nist.gov/encryption/modes/proposedmodes/
404 xcbc-mac/xcbc-mac-spec.pdf
76cb9521 405
f1939f7c
SW
406config CRYPTO_VMAC
407 tristate "VMAC support"
f1939f7c
SW
408 select CRYPTO_HASH
409 select CRYPTO_MANAGER
410 help
411 VMAC is a message authentication algorithm designed for
412 very high speed on 64-bit architectures.
413
414 See also:
415 <http://fastcrypto.org/vmac>
416
584fffc8 417comment "Digest"
28db8e3e 418
584fffc8
SS
419config CRYPTO_CRC32C
420 tristate "CRC32c CRC algorithm"
5773a3e6 421 select CRYPTO_HASH
6a0962b2 422 select CRC32
4a49b499 423 help
584fffc8
SS
424 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
425 by iSCSI for header and data digests and by others.
69c35efc 426 See Castagnoli93. Module will be crc32c.
4a49b499 427
8cb51ba8
AZ
428config CRYPTO_CRC32C_INTEL
429 tristate "CRC32c INTEL hardware acceleration"
430 depends on X86
431 select CRYPTO_HASH
432 help
433 In Intel processor with SSE4.2 supported, the processor will
434 support CRC32C implementation using hardware accelerated CRC32
435 instruction. This option will create 'crc32c-intel' module,
436 which will enable any routine to use the CRC32 instruction to
437 gain performance compared with software implementation.
438 Module will be crc32c-intel.
439
442a7c40
DM
440config CRYPTO_CRC32C_SPARC64
441 tristate "CRC32c CRC algorithm (SPARC64)"
442 depends on SPARC64
443 select CRYPTO_HASH
444 select CRC32
445 help
446 CRC32c CRC algorithm implemented using sparc64 crypto instructions,
447 when available.
448
78c37d19
AB
449config CRYPTO_CRC32
450 tristate "CRC32 CRC algorithm"
451 select CRYPTO_HASH
452 select CRC32
453 help
454 CRC-32-IEEE 802.3 cyclic redundancy-check algorithm.
455 Shash crypto api wrappers to crc32_le function.
456
457config CRYPTO_CRC32_PCLMUL
458 tristate "CRC32 PCLMULQDQ hardware acceleration"
459 depends on X86
460 select CRYPTO_HASH
461 select CRC32
462 help
463 From Intel Westmere and AMD Bulldozer processor with SSE4.2
464 and PCLMULQDQ supported, the processor will support
465 CRC32 PCLMULQDQ implementation using hardware accelerated PCLMULQDQ
466 instruction. This option will create 'crc32-plcmul' module,
467 which will enable any routine to use the CRC-32-IEEE 802.3 checksum
468 and gain better performance as compared with the table implementation.
469
68411521
HX
470config CRYPTO_CRCT10DIF
471 tristate "CRCT10DIF algorithm"
472 select CRYPTO_HASH
473 help
474 CRC T10 Data Integrity Field computation is being cast as
475 a crypto transform. This allows for faster crc t10 diff
476 transforms to be used if they are available.
477
478config CRYPTO_CRCT10DIF_PCLMUL
479 tristate "CRCT10DIF PCLMULQDQ hardware acceleration"
480 depends on X86 && 64BIT && CRC_T10DIF
481 select CRYPTO_HASH
482 help
483 For x86_64 processors with SSE4.2 and PCLMULQDQ supported,
484 CRC T10 DIF PCLMULQDQ computation can be hardware
485 accelerated PCLMULQDQ instruction. This option will create
486 'crct10dif-plcmul' module, which is faster when computing the
487 crct10dif checksum as compared with the generic table implementation.
488
2cdc6899
HY
489config CRYPTO_GHASH
490 tristate "GHASH digest algorithm"
2cdc6899 491 select CRYPTO_GF128MUL
578c60fb 492 select CRYPTO_HASH
2cdc6899
HY
493 help
494 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
495
f979e014
MW
496config CRYPTO_POLY1305
497 tristate "Poly1305 authenticator algorithm"
578c60fb 498 select CRYPTO_HASH
f979e014
MW
499 help
500 Poly1305 authenticator algorithm, RFC7539.
501
502 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
503 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
504 in IETF protocols. This is the portable C implementation of Poly1305.
505
c70f4abe 506config CRYPTO_POLY1305_X86_64
b1ccc8f4 507 tristate "Poly1305 authenticator algorithm (x86_64/SSE2/AVX2)"
c70f4abe
MW
508 depends on X86 && 64BIT
509 select CRYPTO_POLY1305
510 help
511 Poly1305 authenticator algorithm, RFC7539.
512
513 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
514 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
515 in IETF protocols. This is the x86_64 assembler implementation using SIMD
516 instructions.
517
584fffc8
SS
518config CRYPTO_MD4
519 tristate "MD4 digest algorithm"
808a1763 520 select CRYPTO_HASH
124b53d0 521 help
584fffc8 522 MD4 message digest algorithm (RFC1320).
124b53d0 523
584fffc8
SS
524config CRYPTO_MD5
525 tristate "MD5 digest algorithm"
14b75ba7 526 select CRYPTO_HASH
1da177e4 527 help
584fffc8 528 MD5 message digest algorithm (RFC1321).
1da177e4 529
d69e75de
AK
530config CRYPTO_MD5_OCTEON
531 tristate "MD5 digest algorithm (OCTEON)"
532 depends on CPU_CAVIUM_OCTEON
533 select CRYPTO_MD5
534 select CRYPTO_HASH
535 help
536 MD5 message digest algorithm (RFC1321) implemented
537 using OCTEON crypto instructions, when available.
538
e8e59953
MS
539config CRYPTO_MD5_PPC
540 tristate "MD5 digest algorithm (PPC)"
541 depends on PPC
542 select CRYPTO_HASH
543 help
544 MD5 message digest algorithm (RFC1321) implemented
545 in PPC assembler.
546
fa4dfedc
DM
547config CRYPTO_MD5_SPARC64
548 tristate "MD5 digest algorithm (SPARC64)"
549 depends on SPARC64
550 select CRYPTO_MD5
551 select CRYPTO_HASH
552 help
553 MD5 message digest algorithm (RFC1321) implemented
554 using sparc64 crypto instructions, when available.
555
584fffc8
SS
556config CRYPTO_MICHAEL_MIC
557 tristate "Michael MIC keyed digest algorithm"
19e2bf14 558 select CRYPTO_HASH
90831639 559 help
584fffc8
SS
560 Michael MIC is used for message integrity protection in TKIP
561 (IEEE 802.11i). This algorithm is required for TKIP, but it
562 should not be used for other purposes because of the weakness
563 of the algorithm.
90831639 564
82798f90 565config CRYPTO_RMD128
b6d44341 566 tristate "RIPEMD-128 digest algorithm"
7c4468bc 567 select CRYPTO_HASH
b6d44341
AB
568 help
569 RIPEMD-128 (ISO/IEC 10118-3:2004).
82798f90 570
b6d44341 571 RIPEMD-128 is a 128-bit cryptographic hash function. It should only
35ed4b35 572 be used as a secure replacement for RIPEMD. For other use cases,
b6d44341 573 RIPEMD-160 should be used.
82798f90 574
b6d44341 575 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
6d8de74c 576 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
82798f90
AKR
577
578config CRYPTO_RMD160
b6d44341 579 tristate "RIPEMD-160 digest algorithm"
e5835fba 580 select CRYPTO_HASH
b6d44341
AB
581 help
582 RIPEMD-160 (ISO/IEC 10118-3:2004).
82798f90 583
b6d44341
AB
584 RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
585 to be used as a secure replacement for the 128-bit hash functions
586 MD4, MD5 and it's predecessor RIPEMD
587 (not to be confused with RIPEMD-128).
82798f90 588
b6d44341
AB
589 It's speed is comparable to SHA1 and there are no known attacks
590 against RIPEMD-160.
534fe2c1 591
b6d44341 592 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
6d8de74c 593 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
534fe2c1
AKR
594
595config CRYPTO_RMD256
b6d44341 596 tristate "RIPEMD-256 digest algorithm"
d8a5e2e9 597 select CRYPTO_HASH
b6d44341
AB
598 help
599 RIPEMD-256 is an optional extension of RIPEMD-128 with a
600 256 bit hash. It is intended for applications that require
601 longer hash-results, without needing a larger security level
602 (than RIPEMD-128).
534fe2c1 603
b6d44341 604 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
6d8de74c 605 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
534fe2c1
AKR
606
607config CRYPTO_RMD320
b6d44341 608 tristate "RIPEMD-320 digest algorithm"
3b8efb4c 609 select CRYPTO_HASH
b6d44341
AB
610 help
611 RIPEMD-320 is an optional extension of RIPEMD-160 with a
612 320 bit hash. It is intended for applications that require
613 longer hash-results, without needing a larger security level
614 (than RIPEMD-160).
534fe2c1 615
b6d44341 616 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
6d8de74c 617 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
82798f90 618
584fffc8
SS
619config CRYPTO_SHA1
620 tristate "SHA1 digest algorithm"
54ccb367 621 select CRYPTO_HASH
1da177e4 622 help
584fffc8 623 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
1da177e4 624
66be8951 625config CRYPTO_SHA1_SSSE3
e38b6b7f 626 tristate "SHA1 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
66be8951
MK
627 depends on X86 && 64BIT
628 select CRYPTO_SHA1
629 select CRYPTO_HASH
630 help
631 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
632 using Supplemental SSE3 (SSSE3) instructions or Advanced Vector
e38b6b7f 633 Extensions (AVX/AVX2) or SHA-NI(SHA Extensions New Instructions),
634 when available.
66be8951 635
8275d1aa 636config CRYPTO_SHA256_SSSE3
e38b6b7f 637 tristate "SHA256 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
8275d1aa
TC
638 depends on X86 && 64BIT
639 select CRYPTO_SHA256
640 select CRYPTO_HASH
641 help
642 SHA-256 secure hash standard (DFIPS 180-2) implemented
643 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
644 Extensions version 1 (AVX1), or Advanced Vector Extensions
e38b6b7f 645 version 2 (AVX2) instructions, or SHA-NI (SHA Extensions New
646 Instructions) when available.
87de4579
TC
647
648config CRYPTO_SHA512_SSSE3
649 tristate "SHA512 digest algorithm (SSSE3/AVX/AVX2)"
650 depends on X86 && 64BIT
651 select CRYPTO_SHA512
652 select CRYPTO_HASH
653 help
654 SHA-512 secure hash standard (DFIPS 180-2) implemented
655 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
656 Extensions version 1 (AVX1), or Advanced Vector Extensions
8275d1aa
TC
657 version 2 (AVX2) instructions, when available.
658
efdb6f6e
AK
659config CRYPTO_SHA1_OCTEON
660 tristate "SHA1 digest algorithm (OCTEON)"
661 depends on CPU_CAVIUM_OCTEON
662 select CRYPTO_SHA1
663 select CRYPTO_HASH
664 help
665 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
666 using OCTEON crypto instructions, when available.
667
4ff28d4c
DM
668config CRYPTO_SHA1_SPARC64
669 tristate "SHA1 digest algorithm (SPARC64)"
670 depends on SPARC64
671 select CRYPTO_SHA1
672 select CRYPTO_HASH
673 help
674 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
675 using sparc64 crypto instructions, when available.
676
323a6bf1
ME
677config CRYPTO_SHA1_PPC
678 tristate "SHA1 digest algorithm (powerpc)"
679 depends on PPC
680 help
681 This is the powerpc hardware accelerated implementation of the
682 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
683
d9850fc5
MS
684config CRYPTO_SHA1_PPC_SPE
685 tristate "SHA1 digest algorithm (PPC SPE)"
686 depends on PPC && SPE
687 help
688 SHA-1 secure hash standard (DFIPS 180-4) implemented
689 using powerpc SPE SIMD instruction set.
690
1e65b81a
TC
691config CRYPTO_SHA1_MB
692 tristate "SHA1 digest algorithm (x86_64 Multi-Buffer, Experimental)"
693 depends on X86 && 64BIT
694 select CRYPTO_SHA1
695 select CRYPTO_HASH
696 select CRYPTO_MCRYPTD
697 help
698 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
699 using multi-buffer technique. This algorithm computes on
700 multiple data lanes concurrently with SIMD instructions for
701 better throughput. It should not be enabled by default but
702 used when there is significant amount of work to keep the keep
703 the data lanes filled to get performance benefit. If the data
704 lanes remain unfilled, a flush operation will be initiated to
705 process the crypto jobs, adding a slight latency.
706
9be7e244
MD
707config CRYPTO_SHA256_MB
708 tristate "SHA256 digest algorithm (x86_64 Multi-Buffer, Experimental)"
709 depends on X86 && 64BIT
710 select CRYPTO_SHA256
711 select CRYPTO_HASH
712 select CRYPTO_MCRYPTD
713 help
714 SHA-256 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
715 using multi-buffer technique. This algorithm computes on
716 multiple data lanes concurrently with SIMD instructions for
717 better throughput. It should not be enabled by default but
718 used when there is significant amount of work to keep the keep
719 the data lanes filled to get performance benefit. If the data
720 lanes remain unfilled, a flush operation will be initiated to
721 process the crypto jobs, adding a slight latency.
722
026bb8aa
MD
723config CRYPTO_SHA512_MB
724 tristate "SHA512 digest algorithm (x86_64 Multi-Buffer, Experimental)"
725 depends on X86 && 64BIT
726 select CRYPTO_SHA512
727 select CRYPTO_HASH
728 select CRYPTO_MCRYPTD
729 help
730 SHA-512 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
731 using multi-buffer technique. This algorithm computes on
732 multiple data lanes concurrently with SIMD instructions for
733 better throughput. It should not be enabled by default but
734 used when there is significant amount of work to keep the keep
735 the data lanes filled to get performance benefit. If the data
736 lanes remain unfilled, a flush operation will be initiated to
737 process the crypto jobs, adding a slight latency.
738
584fffc8
SS
739config CRYPTO_SHA256
740 tristate "SHA224 and SHA256 digest algorithm"
50e109b5 741 select CRYPTO_HASH
1da177e4 742 help
584fffc8 743 SHA256 secure hash standard (DFIPS 180-2).
1da177e4 744
584fffc8
SS
745 This version of SHA implements a 256 bit hash with 128 bits of
746 security against collision attacks.
2729bb42 747
b6d44341
AB
748 This code also includes SHA-224, a 224 bit hash with 112 bits
749 of security against collision attacks.
584fffc8 750
2ecc1e95
MS
751config CRYPTO_SHA256_PPC_SPE
752 tristate "SHA224 and SHA256 digest algorithm (PPC SPE)"
753 depends on PPC && SPE
754 select CRYPTO_SHA256
755 select CRYPTO_HASH
756 help
757 SHA224 and SHA256 secure hash standard (DFIPS 180-2)
758 implemented using powerpc SPE SIMD instruction set.
759
efdb6f6e
AK
760config CRYPTO_SHA256_OCTEON
761 tristate "SHA224 and SHA256 digest algorithm (OCTEON)"
762 depends on CPU_CAVIUM_OCTEON
763 select CRYPTO_SHA256
764 select CRYPTO_HASH
765 help
766 SHA-256 secure hash standard (DFIPS 180-2) implemented
767 using OCTEON crypto instructions, when available.
768
86c93b24
DM
769config CRYPTO_SHA256_SPARC64
770 tristate "SHA224 and SHA256 digest algorithm (SPARC64)"
771 depends on SPARC64
772 select CRYPTO_SHA256
773 select CRYPTO_HASH
774 help
775 SHA-256 secure hash standard (DFIPS 180-2) implemented
776 using sparc64 crypto instructions, when available.
777
584fffc8
SS
778config CRYPTO_SHA512
779 tristate "SHA384 and SHA512 digest algorithms"
bd9d20db 780 select CRYPTO_HASH
b9f535ff 781 help
584fffc8 782 SHA512 secure hash standard (DFIPS 180-2).
b9f535ff 783
584fffc8
SS
784 This version of SHA implements a 512 bit hash with 256 bits of
785 security against collision attacks.
b9f535ff 786
584fffc8
SS
787 This code also includes SHA-384, a 384 bit hash with 192 bits
788 of security against collision attacks.
b9f535ff 789
efdb6f6e
AK
790config CRYPTO_SHA512_OCTEON
791 tristate "SHA384 and SHA512 digest algorithms (OCTEON)"
792 depends on CPU_CAVIUM_OCTEON
793 select CRYPTO_SHA512
794 select CRYPTO_HASH
795 help
796 SHA-512 secure hash standard (DFIPS 180-2) implemented
797 using OCTEON crypto instructions, when available.
798
775e0c69
DM
799config CRYPTO_SHA512_SPARC64
800 tristate "SHA384 and SHA512 digest algorithm (SPARC64)"
801 depends on SPARC64
802 select CRYPTO_SHA512
803 select CRYPTO_HASH
804 help
805 SHA-512 secure hash standard (DFIPS 180-2) implemented
806 using sparc64 crypto instructions, when available.
807
53964b9e
JG
808config CRYPTO_SHA3
809 tristate "SHA3 digest algorithm"
810 select CRYPTO_HASH
811 help
812 SHA-3 secure hash standard (DFIPS 202). It's based on
813 cryptographic sponge function family called Keccak.
814
815 References:
816 http://keccak.noekeon.org/
817
584fffc8
SS
818config CRYPTO_TGR192
819 tristate "Tiger digest algorithms"
f63fbd3d 820 select CRYPTO_HASH
eaf44088 821 help
584fffc8 822 Tiger hash algorithm 192, 160 and 128-bit hashes
eaf44088 823
584fffc8
SS
824 Tiger is a hash function optimized for 64-bit processors while
825 still having decent performance on 32-bit processors.
826 Tiger was developed by Ross Anderson and Eli Biham.
eaf44088
JF
827
828 See also:
584fffc8 829 <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
eaf44088 830
584fffc8
SS
831config CRYPTO_WP512
832 tristate "Whirlpool digest algorithms"
4946510b 833 select CRYPTO_HASH
1da177e4 834 help
584fffc8 835 Whirlpool hash algorithm 512, 384 and 256-bit hashes
1da177e4 836
584fffc8
SS
837 Whirlpool-512 is part of the NESSIE cryptographic primitives.
838 Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard
1da177e4
LT
839
840 See also:
6d8de74c 841 <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html>
584fffc8 842
0e1227d3
HY
843config CRYPTO_GHASH_CLMUL_NI_INTEL
844 tristate "GHASH digest algorithm (CLMUL-NI accelerated)"
8af00860 845 depends on X86 && 64BIT
0e1227d3
HY
846 select CRYPTO_CRYPTD
847 help
848 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
849 The implementation is accelerated by CLMUL-NI of Intel.
850
584fffc8 851comment "Ciphers"
1da177e4
LT
852
853config CRYPTO_AES
854 tristate "AES cipher algorithms"
cce9e06d 855 select CRYPTO_ALGAPI
1da177e4 856 help
584fffc8 857 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1da177e4
LT
858 algorithm.
859
860 Rijndael appears to be consistently a very good performer in
584fffc8
SS
861 both hardware and software across a wide range of computing
862 environments regardless of its use in feedback or non-feedback
863 modes. Its key setup time is excellent, and its key agility is
864 good. Rijndael's very low memory requirements make it very well
865 suited for restricted-space environments, in which it also
866 demonstrates excellent performance. Rijndael's operations are
867 among the easiest to defend against power and timing attacks.
1da177e4 868
584fffc8 869 The AES specifies three key sizes: 128, 192 and 256 bits
1da177e4
LT
870
871 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
872
873config CRYPTO_AES_586
874 tristate "AES cipher algorithms (i586)"
cce9e06d
HX
875 depends on (X86 || UML_X86) && !64BIT
876 select CRYPTO_ALGAPI
5157dea8 877 select CRYPTO_AES
1da177e4 878 help
584fffc8 879 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1da177e4
LT
880 algorithm.
881
882 Rijndael appears to be consistently a very good performer in
584fffc8
SS
883 both hardware and software across a wide range of computing
884 environments regardless of its use in feedback or non-feedback
885 modes. Its key setup time is excellent, and its key agility is
886 good. Rijndael's very low memory requirements make it very well
887 suited for restricted-space environments, in which it also
888 demonstrates excellent performance. Rijndael's operations are
889 among the easiest to defend against power and timing attacks.
1da177e4 890
584fffc8 891 The AES specifies three key sizes: 128, 192 and 256 bits
a2a892a2
AS
892
893 See <http://csrc.nist.gov/encryption/aes/> for more information.
894
895config CRYPTO_AES_X86_64
896 tristate "AES cipher algorithms (x86_64)"
cce9e06d
HX
897 depends on (X86 || UML_X86) && 64BIT
898 select CRYPTO_ALGAPI
81190b32 899 select CRYPTO_AES
a2a892a2 900 help
584fffc8 901 AES cipher algorithms (FIPS-197). AES uses the Rijndael
a2a892a2
AS
902 algorithm.
903
904 Rijndael appears to be consistently a very good performer in
584fffc8
SS
905 both hardware and software across a wide range of computing
906 environments regardless of its use in feedback or non-feedback
907 modes. Its key setup time is excellent, and its key agility is
54b6a1bd
HY
908 good. Rijndael's very low memory requirements make it very well
909 suited for restricted-space environments, in which it also
910 demonstrates excellent performance. Rijndael's operations are
911 among the easiest to defend against power and timing attacks.
912
913 The AES specifies three key sizes: 128, 192 and 256 bits
914
915 See <http://csrc.nist.gov/encryption/aes/> for more information.
916
917config CRYPTO_AES_NI_INTEL
918 tristate "AES cipher algorithms (AES-NI)"
8af00860 919 depends on X86
0d258efb
MK
920 select CRYPTO_AES_X86_64 if 64BIT
921 select CRYPTO_AES_586 if !64BIT
54b6a1bd 922 select CRYPTO_CRYPTD
801201aa 923 select CRYPTO_ABLK_HELPER
54b6a1bd 924 select CRYPTO_ALGAPI
7643a11a 925 select CRYPTO_GLUE_HELPER_X86 if 64BIT
023af608
JK
926 select CRYPTO_LRW
927 select CRYPTO_XTS
54b6a1bd
HY
928 help
929 Use Intel AES-NI instructions for AES algorithm.
930
931 AES cipher algorithms (FIPS-197). AES uses the Rijndael
932 algorithm.
933
934 Rijndael appears to be consistently a very good performer in
935 both hardware and software across a wide range of computing
936 environments regardless of its use in feedback or non-feedback
937 modes. Its key setup time is excellent, and its key agility is
584fffc8
SS
938 good. Rijndael's very low memory requirements make it very well
939 suited for restricted-space environments, in which it also
940 demonstrates excellent performance. Rijndael's operations are
941 among the easiest to defend against power and timing attacks.
a2a892a2 942
584fffc8 943 The AES specifies three key sizes: 128, 192 and 256 bits
1da177e4
LT
944
945 See <http://csrc.nist.gov/encryption/aes/> for more information.
946
0d258efb
MK
947 In addition to AES cipher algorithm support, the acceleration
948 for some popular block cipher mode is supported too, including
949 ECB, CBC, LRW, PCBC, XTS. The 64 bit version has additional
950 acceleration for CTR.
2cf4ac8b 951
9bf4852d
DM
952config CRYPTO_AES_SPARC64
953 tristate "AES cipher algorithms (SPARC64)"
954 depends on SPARC64
955 select CRYPTO_CRYPTD
956 select CRYPTO_ALGAPI
957 help
958 Use SPARC64 crypto opcodes for AES algorithm.
959
960 AES cipher algorithms (FIPS-197). AES uses the Rijndael
961 algorithm.
962
963 Rijndael appears to be consistently a very good performer in
964 both hardware and software across a wide range of computing
965 environments regardless of its use in feedback or non-feedback
966 modes. Its key setup time is excellent, and its key agility is
967 good. Rijndael's very low memory requirements make it very well
968 suited for restricted-space environments, in which it also
969 demonstrates excellent performance. Rijndael's operations are
970 among the easiest to defend against power and timing attacks.
971
972 The AES specifies three key sizes: 128, 192 and 256 bits
973
974 See <http://csrc.nist.gov/encryption/aes/> for more information.
975
976 In addition to AES cipher algorithm support, the acceleration
977 for some popular block cipher mode is supported too, including
978 ECB and CBC.
979
504c6143
MS
980config CRYPTO_AES_PPC_SPE
981 tristate "AES cipher algorithms (PPC SPE)"
982 depends on PPC && SPE
983 help
984 AES cipher algorithms (FIPS-197). Additionally the acceleration
985 for popular block cipher modes ECB, CBC, CTR and XTS is supported.
986 This module should only be used for low power (router) devices
987 without hardware AES acceleration (e.g. caam crypto). It reduces the
988 size of the AES tables from 16KB to 8KB + 256 bytes and mitigates
989 timining attacks. Nevertheless it might be not as secure as other
990 architecture specific assembler implementations that work on 1KB
991 tables or 256 bytes S-boxes.
992
584fffc8
SS
993config CRYPTO_ANUBIS
994 tristate "Anubis cipher algorithm"
995 select CRYPTO_ALGAPI
996 help
997 Anubis cipher algorithm.
998
999 Anubis is a variable key length cipher which can use keys from
1000 128 bits to 320 bits in length. It was evaluated as a entrant
1001 in the NESSIE competition.
1002
1003 See also:
6d8de74c
JM
1004 <https://www.cosic.esat.kuleuven.be/nessie/reports/>
1005 <http://www.larc.usp.br/~pbarreto/AnubisPage.html>
584fffc8
SS
1006
1007config CRYPTO_ARC4
1008 tristate "ARC4 cipher algorithm"
b9b0f080 1009 select CRYPTO_BLKCIPHER
584fffc8
SS
1010 help
1011 ARC4 cipher algorithm.
1012
1013 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
1014 bits in length. This algorithm is required for driver-based
1015 WEP, but it should not be for other purposes because of the
1016 weakness of the algorithm.
1017
1018config CRYPTO_BLOWFISH
1019 tristate "Blowfish cipher algorithm"
1020 select CRYPTO_ALGAPI
52ba867c 1021 select CRYPTO_BLOWFISH_COMMON
584fffc8
SS
1022 help
1023 Blowfish cipher algorithm, by Bruce Schneier.
1024
1025 This is a variable key length cipher which can use keys from 32
1026 bits to 448 bits in length. It's fast, simple and specifically
1027 designed for use on "large microprocessors".
1028
1029 See also:
1030 <http://www.schneier.com/blowfish.html>
1031
52ba867c
JK
1032config CRYPTO_BLOWFISH_COMMON
1033 tristate
1034 help
1035 Common parts of the Blowfish cipher algorithm shared by the
1036 generic c and the assembler implementations.
1037
1038 See also:
1039 <http://www.schneier.com/blowfish.html>
1040
64b94cea
JK
1041config CRYPTO_BLOWFISH_X86_64
1042 tristate "Blowfish cipher algorithm (x86_64)"
f21a7c19 1043 depends on X86 && 64BIT
64b94cea
JK
1044 select CRYPTO_ALGAPI
1045 select CRYPTO_BLOWFISH_COMMON
1046 help
1047 Blowfish cipher algorithm (x86_64), by Bruce Schneier.
1048
1049 This is a variable key length cipher which can use keys from 32
1050 bits to 448 bits in length. It's fast, simple and specifically
1051 designed for use on "large microprocessors".
1052
1053 See also:
1054 <http://www.schneier.com/blowfish.html>
1055
584fffc8
SS
1056config CRYPTO_CAMELLIA
1057 tristate "Camellia cipher algorithms"
1058 depends on CRYPTO
1059 select CRYPTO_ALGAPI
1060 help
1061 Camellia cipher algorithms module.
1062
1063 Camellia is a symmetric key block cipher developed jointly
1064 at NTT and Mitsubishi Electric Corporation.
1065
1066 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1067
1068 See also:
1069 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1070
0b95ec56
JK
1071config CRYPTO_CAMELLIA_X86_64
1072 tristate "Camellia cipher algorithm (x86_64)"
f21a7c19 1073 depends on X86 && 64BIT
0b95ec56
JK
1074 depends on CRYPTO
1075 select CRYPTO_ALGAPI
964263af 1076 select CRYPTO_GLUE_HELPER_X86
0b95ec56
JK
1077 select CRYPTO_LRW
1078 select CRYPTO_XTS
1079 help
1080 Camellia cipher algorithm module (x86_64).
1081
1082 Camellia is a symmetric key block cipher developed jointly
1083 at NTT and Mitsubishi Electric Corporation.
1084
1085 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1086
1087 See also:
d9b1d2e7
JK
1088 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1089
1090config CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1091 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX)"
1092 depends on X86 && 64BIT
1093 depends on CRYPTO
1094 select CRYPTO_ALGAPI
1095 select CRYPTO_CRYPTD
801201aa 1096 select CRYPTO_ABLK_HELPER
d9b1d2e7
JK
1097 select CRYPTO_GLUE_HELPER_X86
1098 select CRYPTO_CAMELLIA_X86_64
1099 select CRYPTO_LRW
1100 select CRYPTO_XTS
1101 help
1102 Camellia cipher algorithm module (x86_64/AES-NI/AVX).
1103
1104 Camellia is a symmetric key block cipher developed jointly
1105 at NTT and Mitsubishi Electric Corporation.
1106
1107 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1108
1109 See also:
0b95ec56
JK
1110 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1111
f3f935a7
JK
1112config CRYPTO_CAMELLIA_AESNI_AVX2_X86_64
1113 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX2)"
1114 depends on X86 && 64BIT
1115 depends on CRYPTO
1116 select CRYPTO_ALGAPI
1117 select CRYPTO_CRYPTD
801201aa 1118 select CRYPTO_ABLK_HELPER
f3f935a7
JK
1119 select CRYPTO_GLUE_HELPER_X86
1120 select CRYPTO_CAMELLIA_X86_64
1121 select CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1122 select CRYPTO_LRW
1123 select CRYPTO_XTS
1124 help
1125 Camellia cipher algorithm module (x86_64/AES-NI/AVX2).
1126
1127 Camellia is a symmetric key block cipher developed jointly
1128 at NTT and Mitsubishi Electric Corporation.
1129
1130 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1131
1132 See also:
1133 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1134
81658ad0
DM
1135config CRYPTO_CAMELLIA_SPARC64
1136 tristate "Camellia cipher algorithm (SPARC64)"
1137 depends on SPARC64
1138 depends on CRYPTO
1139 select CRYPTO_ALGAPI
1140 help
1141 Camellia cipher algorithm module (SPARC64).
1142
1143 Camellia is a symmetric key block cipher developed jointly
1144 at NTT and Mitsubishi Electric Corporation.
1145
1146 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1147
1148 See also:
1149 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1150
044ab525
JK
1151config CRYPTO_CAST_COMMON
1152 tristate
1153 help
1154 Common parts of the CAST cipher algorithms shared by the
1155 generic c and the assembler implementations.
1156
1da177e4
LT
1157config CRYPTO_CAST5
1158 tristate "CAST5 (CAST-128) cipher algorithm"
cce9e06d 1159 select CRYPTO_ALGAPI
044ab525 1160 select CRYPTO_CAST_COMMON
1da177e4
LT
1161 help
1162 The CAST5 encryption algorithm (synonymous with CAST-128) is
1163 described in RFC2144.
1164
4d6d6a2c
JG
1165config CRYPTO_CAST5_AVX_X86_64
1166 tristate "CAST5 (CAST-128) cipher algorithm (x86_64/AVX)"
1167 depends on X86 && 64BIT
1168 select CRYPTO_ALGAPI
1169 select CRYPTO_CRYPTD
801201aa 1170 select CRYPTO_ABLK_HELPER
044ab525 1171 select CRYPTO_CAST_COMMON
4d6d6a2c
JG
1172 select CRYPTO_CAST5
1173 help
1174 The CAST5 encryption algorithm (synonymous with CAST-128) is
1175 described in RFC2144.
1176
1177 This module provides the Cast5 cipher algorithm that processes
1178 sixteen blocks parallel using the AVX instruction set.
1179
1da177e4
LT
1180config CRYPTO_CAST6
1181 tristate "CAST6 (CAST-256) cipher algorithm"
cce9e06d 1182 select CRYPTO_ALGAPI
044ab525 1183 select CRYPTO_CAST_COMMON
1da177e4
LT
1184 help
1185 The CAST6 encryption algorithm (synonymous with CAST-256) is
1186 described in RFC2612.
1187
4ea1277d
JG
1188config CRYPTO_CAST6_AVX_X86_64
1189 tristate "CAST6 (CAST-256) cipher algorithm (x86_64/AVX)"
1190 depends on X86 && 64BIT
1191 select CRYPTO_ALGAPI
1192 select CRYPTO_CRYPTD
801201aa 1193 select CRYPTO_ABLK_HELPER
4ea1277d 1194 select CRYPTO_GLUE_HELPER_X86
044ab525 1195 select CRYPTO_CAST_COMMON
4ea1277d
JG
1196 select CRYPTO_CAST6
1197 select CRYPTO_LRW
1198 select CRYPTO_XTS
1199 help
1200 The CAST6 encryption algorithm (synonymous with CAST-256) is
1201 described in RFC2612.
1202
1203 This module provides the Cast6 cipher algorithm that processes
1204 eight blocks parallel using the AVX instruction set.
1205
584fffc8
SS
1206config CRYPTO_DES
1207 tristate "DES and Triple DES EDE cipher algorithms"
cce9e06d 1208 select CRYPTO_ALGAPI
1da177e4 1209 help
584fffc8 1210 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
fb4f10ed 1211
c5aac2df
DM
1212config CRYPTO_DES_SPARC64
1213 tristate "DES and Triple DES EDE cipher algorithms (SPARC64)"
97da37b3 1214 depends on SPARC64
c5aac2df
DM
1215 select CRYPTO_ALGAPI
1216 select CRYPTO_DES
1217 help
1218 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3),
1219 optimized using SPARC64 crypto opcodes.
1220
6574e6c6
JK
1221config CRYPTO_DES3_EDE_X86_64
1222 tristate "Triple DES EDE cipher algorithm (x86-64)"
1223 depends on X86 && 64BIT
1224 select CRYPTO_ALGAPI
1225 select CRYPTO_DES
1226 help
1227 Triple DES EDE (FIPS 46-3) algorithm.
1228
1229 This module provides implementation of the Triple DES EDE cipher
1230 algorithm that is optimized for x86-64 processors. Two versions of
1231 algorithm are provided; regular processing one input block and
1232 one that processes three blocks parallel.
1233
584fffc8
SS
1234config CRYPTO_FCRYPT
1235 tristate "FCrypt cipher algorithm"
cce9e06d 1236 select CRYPTO_ALGAPI
584fffc8 1237 select CRYPTO_BLKCIPHER
1da177e4 1238 help
584fffc8 1239 FCrypt algorithm used by RxRPC.
1da177e4
LT
1240
1241config CRYPTO_KHAZAD
1242 tristate "Khazad cipher algorithm"
cce9e06d 1243 select CRYPTO_ALGAPI
1da177e4
LT
1244 help
1245 Khazad cipher algorithm.
1246
1247 Khazad was a finalist in the initial NESSIE competition. It is
1248 an algorithm optimized for 64-bit processors with good performance
1249 on 32-bit processors. Khazad uses an 128 bit key size.
1250
1251 See also:
6d8de74c 1252 <http://www.larc.usp.br/~pbarreto/KhazadPage.html>
1da177e4 1253
2407d608 1254config CRYPTO_SALSA20
3b4afaf2 1255 tristate "Salsa20 stream cipher algorithm"
2407d608
TSH
1256 select CRYPTO_BLKCIPHER
1257 help
1258 Salsa20 stream cipher algorithm.
1259
1260 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1261 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
974e4b75
TSH
1262
1263 The Salsa20 stream cipher algorithm is designed by Daniel J.
1264 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1265
1266config CRYPTO_SALSA20_586
3b4afaf2 1267 tristate "Salsa20 stream cipher algorithm (i586)"
974e4b75 1268 depends on (X86 || UML_X86) && !64BIT
974e4b75 1269 select CRYPTO_BLKCIPHER
974e4b75
TSH
1270 help
1271 Salsa20 stream cipher algorithm.
1272
1273 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1274 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
9a7dafbb
TSH
1275
1276 The Salsa20 stream cipher algorithm is designed by Daniel J.
1277 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1278
1279config CRYPTO_SALSA20_X86_64
3b4afaf2 1280 tristate "Salsa20 stream cipher algorithm (x86_64)"
9a7dafbb 1281 depends on (X86 || UML_X86) && 64BIT
9a7dafbb 1282 select CRYPTO_BLKCIPHER
9a7dafbb
TSH
1283 help
1284 Salsa20 stream cipher algorithm.
1285
1286 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1287 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
2407d608
TSH
1288
1289 The Salsa20 stream cipher algorithm is designed by Daniel J.
1290 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1da177e4 1291
c08d0e64
MW
1292config CRYPTO_CHACHA20
1293 tristate "ChaCha20 cipher algorithm"
1294 select CRYPTO_BLKCIPHER
1295 help
1296 ChaCha20 cipher algorithm, RFC7539.
1297
1298 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1299 Bernstein and further specified in RFC7539 for use in IETF protocols.
1300 This is the portable C implementation of ChaCha20.
1301
1302 See also:
1303 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1304
c9320b6d 1305config CRYPTO_CHACHA20_X86_64
3d1e93cd 1306 tristate "ChaCha20 cipher algorithm (x86_64/SSSE3/AVX2)"
c9320b6d
MW
1307 depends on X86 && 64BIT
1308 select CRYPTO_BLKCIPHER
1309 select CRYPTO_CHACHA20
1310 help
1311 ChaCha20 cipher algorithm, RFC7539.
1312
1313 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1314 Bernstein and further specified in RFC7539 for use in IETF protocols.
1315 This is the x86_64 assembler implementation using SIMD instructions.
1316
1317 See also:
1318 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1319
584fffc8
SS
1320config CRYPTO_SEED
1321 tristate "SEED cipher algorithm"
cce9e06d 1322 select CRYPTO_ALGAPI
1da177e4 1323 help
584fffc8 1324 SEED cipher algorithm (RFC4269).
1da177e4 1325
584fffc8
SS
1326 SEED is a 128-bit symmetric key block cipher that has been
1327 developed by KISA (Korea Information Security Agency) as a
1328 national standard encryption algorithm of the Republic of Korea.
1329 It is a 16 round block cipher with the key size of 128 bit.
1330
1331 See also:
1332 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
1333
1334config CRYPTO_SERPENT
1335 tristate "Serpent cipher algorithm"
cce9e06d 1336 select CRYPTO_ALGAPI
1da177e4 1337 help
584fffc8 1338 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1da177e4 1339
584fffc8
SS
1340 Keys are allowed to be from 0 to 256 bits in length, in steps
1341 of 8 bits. Also includes the 'Tnepres' algorithm, a reversed
1342 variant of Serpent for compatibility with old kerneli.org code.
1343
1344 See also:
1345 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1346
937c30d7
JK
1347config CRYPTO_SERPENT_SSE2_X86_64
1348 tristate "Serpent cipher algorithm (x86_64/SSE2)"
1349 depends on X86 && 64BIT
1350 select CRYPTO_ALGAPI
341975bf 1351 select CRYPTO_CRYPTD
801201aa 1352 select CRYPTO_ABLK_HELPER
596d8750 1353 select CRYPTO_GLUE_HELPER_X86
937c30d7 1354 select CRYPTO_SERPENT
feaf0cfc
JK
1355 select CRYPTO_LRW
1356 select CRYPTO_XTS
937c30d7
JK
1357 help
1358 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1359
1360 Keys are allowed to be from 0 to 256 bits in length, in steps
1361 of 8 bits.
1362
1e6232f8 1363 This module provides Serpent cipher algorithm that processes eight
937c30d7
JK
1364 blocks parallel using SSE2 instruction set.
1365
1366 See also:
1367 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1368
251496db
JK
1369config CRYPTO_SERPENT_SSE2_586
1370 tristate "Serpent cipher algorithm (i586/SSE2)"
1371 depends on X86 && !64BIT
1372 select CRYPTO_ALGAPI
341975bf 1373 select CRYPTO_CRYPTD
801201aa 1374 select CRYPTO_ABLK_HELPER
596d8750 1375 select CRYPTO_GLUE_HELPER_X86
251496db 1376 select CRYPTO_SERPENT
feaf0cfc
JK
1377 select CRYPTO_LRW
1378 select CRYPTO_XTS
251496db
JK
1379 help
1380 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1381
1382 Keys are allowed to be from 0 to 256 bits in length, in steps
1383 of 8 bits.
1384
1385 This module provides Serpent cipher algorithm that processes four
1386 blocks parallel using SSE2 instruction set.
1387
1388 See also:
1389 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
7efe4076
JG
1390
1391config CRYPTO_SERPENT_AVX_X86_64
1392 tristate "Serpent cipher algorithm (x86_64/AVX)"
1393 depends on X86 && 64BIT
1394 select CRYPTO_ALGAPI
1395 select CRYPTO_CRYPTD
801201aa 1396 select CRYPTO_ABLK_HELPER
1d0debbd 1397 select CRYPTO_GLUE_HELPER_X86
7efe4076
JG
1398 select CRYPTO_SERPENT
1399 select CRYPTO_LRW
1400 select CRYPTO_XTS
1401 help
1402 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1403
1404 Keys are allowed to be from 0 to 256 bits in length, in steps
1405 of 8 bits.
1406
1407 This module provides the Serpent cipher algorithm that processes
1408 eight blocks parallel using the AVX instruction set.
1409
1410 See also:
1411 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
251496db 1412
56d76c96
JK
1413config CRYPTO_SERPENT_AVX2_X86_64
1414 tristate "Serpent cipher algorithm (x86_64/AVX2)"
1415 depends on X86 && 64BIT
1416 select CRYPTO_ALGAPI
1417 select CRYPTO_CRYPTD
801201aa 1418 select CRYPTO_ABLK_HELPER
56d76c96
JK
1419 select CRYPTO_GLUE_HELPER_X86
1420 select CRYPTO_SERPENT
1421 select CRYPTO_SERPENT_AVX_X86_64
1422 select CRYPTO_LRW
1423 select CRYPTO_XTS
1424 help
1425 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1426
1427 Keys are allowed to be from 0 to 256 bits in length, in steps
1428 of 8 bits.
1429
1430 This module provides Serpent cipher algorithm that processes 16
1431 blocks parallel using AVX2 instruction set.
1432
1433 See also:
1434 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1435
584fffc8
SS
1436config CRYPTO_TEA
1437 tristate "TEA, XTEA and XETA cipher algorithms"
cce9e06d 1438 select CRYPTO_ALGAPI
1da177e4 1439 help
584fffc8 1440 TEA cipher algorithm.
1da177e4 1441
584fffc8
SS
1442 Tiny Encryption Algorithm is a simple cipher that uses
1443 many rounds for security. It is very fast and uses
1444 little memory.
1445
1446 Xtendend Tiny Encryption Algorithm is a modification to
1447 the TEA algorithm to address a potential key weakness
1448 in the TEA algorithm.
1449
1450 Xtendend Encryption Tiny Algorithm is a mis-implementation
1451 of the XTEA algorithm for compatibility purposes.
1452
1453config CRYPTO_TWOFISH
1454 tristate "Twofish cipher algorithm"
04ac7db3 1455 select CRYPTO_ALGAPI
584fffc8 1456 select CRYPTO_TWOFISH_COMMON
04ac7db3 1457 help
584fffc8 1458 Twofish cipher algorithm.
04ac7db3 1459
584fffc8
SS
1460 Twofish was submitted as an AES (Advanced Encryption Standard)
1461 candidate cipher by researchers at CounterPane Systems. It is a
1462 16 round block cipher supporting key sizes of 128, 192, and 256
1463 bits.
04ac7db3 1464
584fffc8
SS
1465 See also:
1466 <http://www.schneier.com/twofish.html>
1467
1468config CRYPTO_TWOFISH_COMMON
1469 tristate
1470 help
1471 Common parts of the Twofish cipher algorithm shared by the
1472 generic c and the assembler implementations.
1473
1474config CRYPTO_TWOFISH_586
1475 tristate "Twofish cipher algorithms (i586)"
1476 depends on (X86 || UML_X86) && !64BIT
1477 select CRYPTO_ALGAPI
1478 select CRYPTO_TWOFISH_COMMON
1479 help
1480 Twofish cipher algorithm.
1481
1482 Twofish was submitted as an AES (Advanced Encryption Standard)
1483 candidate cipher by researchers at CounterPane Systems. It is a
1484 16 round block cipher supporting key sizes of 128, 192, and 256
1485 bits.
04ac7db3
NT
1486
1487 See also:
584fffc8 1488 <http://www.schneier.com/twofish.html>
04ac7db3 1489
584fffc8
SS
1490config CRYPTO_TWOFISH_X86_64
1491 tristate "Twofish cipher algorithm (x86_64)"
1492 depends on (X86 || UML_X86) && 64BIT
cce9e06d 1493 select CRYPTO_ALGAPI
584fffc8 1494 select CRYPTO_TWOFISH_COMMON
1da177e4 1495 help
584fffc8 1496 Twofish cipher algorithm (x86_64).
1da177e4 1497
584fffc8
SS
1498 Twofish was submitted as an AES (Advanced Encryption Standard)
1499 candidate cipher by researchers at CounterPane Systems. It is a
1500 16 round block cipher supporting key sizes of 128, 192, and 256
1501 bits.
1502
1503 See also:
1504 <http://www.schneier.com/twofish.html>
1505
8280daad
JK
1506config CRYPTO_TWOFISH_X86_64_3WAY
1507 tristate "Twofish cipher algorithm (x86_64, 3-way parallel)"
f21a7c19 1508 depends on X86 && 64BIT
8280daad
JK
1509 select CRYPTO_ALGAPI
1510 select CRYPTO_TWOFISH_COMMON
1511 select CRYPTO_TWOFISH_X86_64
414cb5e7 1512 select CRYPTO_GLUE_HELPER_X86
e7cda5d2
JK
1513 select CRYPTO_LRW
1514 select CRYPTO_XTS
8280daad
JK
1515 help
1516 Twofish cipher algorithm (x86_64, 3-way parallel).
1517
1518 Twofish was submitted as an AES (Advanced Encryption Standard)
1519 candidate cipher by researchers at CounterPane Systems. It is a
1520 16 round block cipher supporting key sizes of 128, 192, and 256
1521 bits.
1522
1523 This module provides Twofish cipher algorithm that processes three
1524 blocks parallel, utilizing resources of out-of-order CPUs better.
1525
1526 See also:
1527 <http://www.schneier.com/twofish.html>
1528
107778b5
JG
1529config CRYPTO_TWOFISH_AVX_X86_64
1530 tristate "Twofish cipher algorithm (x86_64/AVX)"
1531 depends on X86 && 64BIT
1532 select CRYPTO_ALGAPI
1533 select CRYPTO_CRYPTD
801201aa 1534 select CRYPTO_ABLK_HELPER
a7378d4e 1535 select CRYPTO_GLUE_HELPER_X86
107778b5
JG
1536 select CRYPTO_TWOFISH_COMMON
1537 select CRYPTO_TWOFISH_X86_64
1538 select CRYPTO_TWOFISH_X86_64_3WAY
1539 select CRYPTO_LRW
1540 select CRYPTO_XTS
1541 help
1542 Twofish cipher algorithm (x86_64/AVX).
1543
1544 Twofish was submitted as an AES (Advanced Encryption Standard)
1545 candidate cipher by researchers at CounterPane Systems. It is a
1546 16 round block cipher supporting key sizes of 128, 192, and 256
1547 bits.
1548
1549 This module provides the Twofish cipher algorithm that processes
1550 eight blocks parallel using the AVX Instruction Set.
1551
1552 See also:
1553 <http://www.schneier.com/twofish.html>
1554
584fffc8
SS
1555comment "Compression"
1556
1557config CRYPTO_DEFLATE
1558 tristate "Deflate compression algorithm"
1559 select CRYPTO_ALGAPI
1560 select ZLIB_INFLATE
1561 select ZLIB_DEFLATE
3c09f17c 1562 help
584fffc8
SS
1563 This is the Deflate algorithm (RFC1951), specified for use in
1564 IPSec with the IPCOMP protocol (RFC3173, RFC2394).
1565
1566 You will most probably want this if using IPSec.
3c09f17c 1567
0b77abb3
ZS
1568config CRYPTO_LZO
1569 tristate "LZO compression algorithm"
1570 select CRYPTO_ALGAPI
1571 select LZO_COMPRESS
1572 select LZO_DECOMPRESS
1573 help
1574 This is the LZO algorithm.
1575
35a1fc18
SJ
1576config CRYPTO_842
1577 tristate "842 compression algorithm"
2062c5b6
DS
1578 select CRYPTO_ALGAPI
1579 select 842_COMPRESS
1580 select 842_DECOMPRESS
35a1fc18
SJ
1581 help
1582 This is the 842 algorithm.
0ea8530d
CM
1583
1584config CRYPTO_LZ4
1585 tristate "LZ4 compression algorithm"
1586 select CRYPTO_ALGAPI
1587 select LZ4_COMPRESS
1588 select LZ4_DECOMPRESS
1589 help
1590 This is the LZ4 algorithm.
1591
1592config CRYPTO_LZ4HC
1593 tristate "LZ4HC compression algorithm"
1594 select CRYPTO_ALGAPI
1595 select LZ4HC_COMPRESS
1596 select LZ4_DECOMPRESS
1597 help
1598 This is the LZ4 high compression mode algorithm.
35a1fc18 1599
17f0f4a4
NH
1600comment "Random Number Generation"
1601
1602config CRYPTO_ANSI_CPRNG
1603 tristate "Pseudo Random Number Generation for Cryptographic modules"
1604 select CRYPTO_AES
1605 select CRYPTO_RNG
17f0f4a4
NH
1606 help
1607 This option enables the generic pseudo random number generator
1608 for cryptographic modules. Uses the Algorithm specified in
7dd607e8
JK
1609 ANSI X9.31 A.2.4. Note that this option must be enabled if
1610 CRYPTO_FIPS is selected
17f0f4a4 1611
f2c89a10 1612menuconfig CRYPTO_DRBG_MENU
419090c6 1613 tristate "NIST SP800-90A DRBG"
419090c6
SM
1614 help
1615 NIST SP800-90A compliant DRBG. In the following submenu, one or
1616 more of the DRBG types must be selected.
1617
f2c89a10 1618if CRYPTO_DRBG_MENU
419090c6
SM
1619
1620config CRYPTO_DRBG_HMAC
401e4238 1621 bool
419090c6 1622 default y
419090c6 1623 select CRYPTO_HMAC
826775bb 1624 select CRYPTO_SHA256
419090c6
SM
1625
1626config CRYPTO_DRBG_HASH
1627 bool "Enable Hash DRBG"
826775bb 1628 select CRYPTO_SHA256
419090c6
SM
1629 help
1630 Enable the Hash DRBG variant as defined in NIST SP800-90A.
1631
1632config CRYPTO_DRBG_CTR
1633 bool "Enable CTR DRBG"
419090c6 1634 select CRYPTO_AES
35591285 1635 depends on CRYPTO_CTR
419090c6
SM
1636 help
1637 Enable the CTR DRBG variant as defined in NIST SP800-90A.
1638
f2c89a10
HX
1639config CRYPTO_DRBG
1640 tristate
401e4238 1641 default CRYPTO_DRBG_MENU
f2c89a10 1642 select CRYPTO_RNG
bb5530e4 1643 select CRYPTO_JITTERENTROPY
f2c89a10
HX
1644
1645endif # if CRYPTO_DRBG_MENU
419090c6 1646
bb5530e4
SM
1647config CRYPTO_JITTERENTROPY
1648 tristate "Jitterentropy Non-Deterministic Random Number Generator"
2f313e02 1649 select CRYPTO_RNG
bb5530e4
SM
1650 help
1651 The Jitterentropy RNG is a noise that is intended
1652 to provide seed to another RNG. The RNG does not
1653 perform any cryptographic whitening of the generated
1654 random numbers. This Jitterentropy RNG registers with
1655 the kernel crypto API and can be used by any caller.
1656
03c8efc1
HX
1657config CRYPTO_USER_API
1658 tristate
1659
fe869cdb
HX
1660config CRYPTO_USER_API_HASH
1661 tristate "User-space interface for hash algorithms"
7451708f 1662 depends on NET
fe869cdb
HX
1663 select CRYPTO_HASH
1664 select CRYPTO_USER_API
1665 help
1666 This option enables the user-spaces interface for hash
1667 algorithms.
1668
8ff59090
HX
1669config CRYPTO_USER_API_SKCIPHER
1670 tristate "User-space interface for symmetric key cipher algorithms"
7451708f 1671 depends on NET
8ff59090
HX
1672 select CRYPTO_BLKCIPHER
1673 select CRYPTO_USER_API
1674 help
1675 This option enables the user-spaces interface for symmetric
1676 key cipher algorithms.
1677
2f375538
SM
1678config CRYPTO_USER_API_RNG
1679 tristate "User-space interface for random number generator algorithms"
1680 depends on NET
1681 select CRYPTO_RNG
1682 select CRYPTO_USER_API
1683 help
1684 This option enables the user-spaces interface for random
1685 number generator algorithms.
1686
b64a2d95
HX
1687config CRYPTO_USER_API_AEAD
1688 tristate "User-space interface for AEAD cipher algorithms"
1689 depends on NET
1690 select CRYPTO_AEAD
1691 select CRYPTO_USER_API
1692 help
1693 This option enables the user-spaces interface for AEAD
1694 cipher algorithms.
1695
ee08997f
DK
1696config CRYPTO_HASH_INFO
1697 bool
1698
1da177e4 1699source "drivers/crypto/Kconfig"
964f3b3b 1700source crypto/asymmetric_keys/Kconfig
cfc411e7 1701source certs/Kconfig
1da177e4 1702
cce9e06d 1703endif # if CRYPTO