xref: /linux/crypto/Kconfig (revision bef9c755986980eecc18e9cecd847bc3c037aebb)
1# SPDX-License-Identifier: GPL-2.0
2#
3# Generic algorithms support
4#
5config XOR_BLOCKS
6	tristate
7
8#
9# async_tx api: hardware offloaded memory transfer/transform support
10#
11source "crypto/async_tx/Kconfig"
12
13#
14# Cryptographic API Configuration
15#
16menuconfig CRYPTO
17	tristate "Cryptographic API"
18	select CRYPTO_LIB_UTILS
19	help
20	  This option provides the core Cryptographic API.
21
22if CRYPTO
23
24menu "Crypto core or helper"
25
26config CRYPTO_FIPS
27	bool "FIPS 200 compliance"
28	depends on (CRYPTO_ANSI_CPRNG || CRYPTO_DRBG) && CRYPTO_SELFTESTS
29	depends on (MODULE_SIG || !MODULES)
30	help
31	  This option enables the fips boot option which is
32	  required if you want the system to operate in a FIPS 200
33	  certification.  You should say no unless you know what
34	  this is.
35
36config CRYPTO_FIPS_NAME
37	string "FIPS Module Name"
38	default "Linux Kernel Cryptographic API"
39	depends on CRYPTO_FIPS
40	help
41	  This option sets the FIPS Module name reported by the Crypto API via
42	  the /proc/sys/crypto/fips_name file.
43
44config CRYPTO_FIPS_CUSTOM_VERSION
45	bool "Use Custom FIPS Module Version"
46	depends on CRYPTO_FIPS
47	default n
48
49config CRYPTO_FIPS_VERSION
50	string "FIPS Module Version"
51	default "(none)"
52	depends on CRYPTO_FIPS_CUSTOM_VERSION
53	help
54	  This option provides the ability to override the FIPS Module Version.
55	  By default the KERNELRELEASE value is used.
56
57config CRYPTO_ALGAPI
58	tristate
59	select CRYPTO_ALGAPI2
60	help
61	  This option provides the API for cryptographic algorithms.
62
63config CRYPTO_ALGAPI2
64	tristate
65
66config CRYPTO_AEAD
67	tristate
68	select CRYPTO_AEAD2
69	select CRYPTO_ALGAPI
70
71config CRYPTO_AEAD2
72	tristate
73	select CRYPTO_ALGAPI2
74
75config CRYPTO_SIG
76	tristate
77	select CRYPTO_SIG2
78	select CRYPTO_ALGAPI
79
80config CRYPTO_SIG2
81	tristate
82	select CRYPTO_ALGAPI2
83
84config CRYPTO_SKCIPHER
85	tristate
86	select CRYPTO_SKCIPHER2
87	select CRYPTO_ALGAPI
88	select CRYPTO_ECB
89
90config CRYPTO_SKCIPHER2
91	tristate
92	select CRYPTO_ALGAPI2
93
94config CRYPTO_HASH
95	tristate
96	select CRYPTO_HASH2
97	select CRYPTO_ALGAPI
98
99config CRYPTO_HASH2
100	tristate
101	select CRYPTO_ALGAPI2
102
103config CRYPTO_RNG
104	tristate
105	select CRYPTO_RNG2
106	select CRYPTO_ALGAPI
107
108config CRYPTO_RNG2
109	tristate
110	select CRYPTO_ALGAPI2
111
112config CRYPTO_RNG_DEFAULT
113	tristate
114	select CRYPTO_DRBG_MENU
115
116config CRYPTO_AKCIPHER2
117	tristate
118	select CRYPTO_ALGAPI2
119
120config CRYPTO_AKCIPHER
121	tristate
122	select CRYPTO_AKCIPHER2
123	select CRYPTO_ALGAPI
124
125config CRYPTO_KPP2
126	tristate
127	select CRYPTO_ALGAPI2
128
129config CRYPTO_KPP
130	tristate
131	select CRYPTO_ALGAPI
132	select CRYPTO_KPP2
133
134config CRYPTO_ACOMP2
135	tristate
136	select CRYPTO_ALGAPI2
137	select SGL_ALLOC
138
139config CRYPTO_ACOMP
140	tristate
141	select CRYPTO_ALGAPI
142	select CRYPTO_ACOMP2
143
144config CRYPTO_HKDF
145	tristate
146	select CRYPTO_SHA256 if CRYPTO_SELFTESTS
147	select CRYPTO_SHA512 if CRYPTO_SELFTESTS
148	select CRYPTO_HASH2
149
150config CRYPTO_MANAGER
151	tristate
152	default CRYPTO_ALGAPI if CRYPTO_SELFTESTS
153	select CRYPTO_MANAGER2
154	help
155	  This provides the support for instantiating templates such as
156	  cbc(aes), and the support for the crypto self-tests.
157
158config CRYPTO_MANAGER2
159	def_tristate CRYPTO_MANAGER || (CRYPTO_MANAGER!=n && CRYPTO_ALGAPI=y)
160	select CRYPTO_ACOMP2
161	select CRYPTO_AEAD2
162	select CRYPTO_AKCIPHER2
163	select CRYPTO_SIG2
164	select CRYPTO_HASH2
165	select CRYPTO_KPP2
166	select CRYPTO_RNG2
167	select CRYPTO_SKCIPHER2
168
169config CRYPTO_USER
170	tristate "Userspace cryptographic algorithm configuration"
171	depends on NET
172	select CRYPTO_MANAGER
173	help
174	  Userspace configuration for cryptographic instantiations such as
175	  cbc(aes).
176
177config CRYPTO_SELFTESTS
178	bool "Enable cryptographic self-tests"
179	depends on EXPERT
180	help
181	  Enable the cryptographic self-tests.
182
183	  The cryptographic self-tests run at boot time, or at algorithm
184	  registration time if algorithms are dynamically loaded later.
185
186	  There are two main use cases for these tests:
187
188	  - Development and pre-release testing.  In this case, also enable
189	    CRYPTO_SELFTESTS_FULL to get the full set of tests.  All crypto code
190	    in the kernel is expected to pass the full set of tests.
191
192	  - Production kernels, to help prevent buggy drivers from being used
193	    and/or meet FIPS 140-3 pre-operational testing requirements.  In
194	    this case, enable CRYPTO_SELFTESTS but not CRYPTO_SELFTESTS_FULL.
195
196config CRYPTO_SELFTESTS_FULL
197	bool "Enable the full set of cryptographic self-tests"
198	depends on CRYPTO_SELFTESTS
199	help
200	  Enable the full set of cryptographic self-tests for each algorithm.
201
202	  The full set of tests should be enabled for development and
203	  pre-release testing, but not in production kernels.
204
205	  All crypto code in the kernel is expected to pass the full tests.
206
207config CRYPTO_NULL
208	tristate "Null algorithms"
209	select CRYPTO_ALGAPI
210	select CRYPTO_SKCIPHER
211	select CRYPTO_HASH
212	help
213	  These are 'Null' algorithms, used by IPsec, which do nothing.
214
215config CRYPTO_PCRYPT
216	tristate "Parallel crypto engine"
217	depends on SMP
218	select PADATA
219	select CRYPTO_MANAGER
220	select CRYPTO_AEAD
221	help
222	  This converts an arbitrary crypto algorithm into a parallel
223	  algorithm that executes in kernel threads.
224
225config CRYPTO_CRYPTD
226	tristate "Software async crypto daemon"
227	select CRYPTO_SKCIPHER
228	select CRYPTO_HASH
229	select CRYPTO_MANAGER
230	help
231	  This is a generic software asynchronous crypto daemon that
232	  converts an arbitrary synchronous software crypto algorithm
233	  into an asynchronous algorithm that executes in a kernel thread.
234
235config CRYPTO_AUTHENC
236	tristate "Authenc support"
237	select CRYPTO_AEAD
238	select CRYPTO_SKCIPHER
239	select CRYPTO_MANAGER
240	select CRYPTO_HASH
241	help
242	  Authenc: Combined mode wrapper for IPsec.
243
244	  This is required for IPSec ESP (XFRM_ESP).
245
246config CRYPTO_KRB5ENC
247	tristate "Kerberos 5 combined hash+cipher support"
248	select CRYPTO_AEAD
249	select CRYPTO_SKCIPHER
250	select CRYPTO_MANAGER
251	select CRYPTO_HASH
252	help
253	  Combined hash and cipher support for Kerberos 5 RFC3961 simplified
254	  profile.  This is required for Kerberos 5-style encryption, used by
255	  sunrpc/NFS and rxrpc/AFS.
256
257config CRYPTO_BENCHMARK
258	tristate "Crypto benchmarking module"
259	depends on m || EXPERT
260	select CRYPTO_MANAGER
261	help
262	  Quick & dirty crypto benchmarking module.
263
264	  This is mainly intended for use by people developing cryptographic
265	  algorithms in the kernel.  It should not be enabled in production
266	  kernels.
267
268config CRYPTO_SIMD
269	tristate
270	select CRYPTO_CRYPTD
271
272config CRYPTO_ENGINE
273	tristate
274
275endmenu
276
277menu "Public-key cryptography"
278
279config CRYPTO_RSA
280	tristate "RSA (Rivest-Shamir-Adleman)"
281	select CRYPTO_AKCIPHER
282	select CRYPTO_MANAGER
283	select CRYPTO_SIG
284	select MPILIB
285	select ASN1
286	help
287	  RSA (Rivest-Shamir-Adleman) public key algorithm (RFC8017)
288
289config CRYPTO_DH
290	tristate "DH (Diffie-Hellman)"
291	select CRYPTO_KPP
292	select MPILIB
293	help
294	  DH (Diffie-Hellman) key exchange algorithm
295
296config CRYPTO_DH_RFC7919_GROUPS
297	bool "RFC 7919 FFDHE groups"
298	depends on CRYPTO_DH
299	select CRYPTO_RNG_DEFAULT
300	help
301	  FFDHE (Finite-Field-based Diffie-Hellman Ephemeral) groups
302	  defined in RFC7919.
303
304	  Support these finite-field groups in DH key exchanges:
305	  - ffdhe2048, ffdhe3072, ffdhe4096, ffdhe6144, ffdhe8192
306
307	  If unsure, say N.
308
309config CRYPTO_ECC
310	tristate
311	select CRYPTO_RNG_DEFAULT
312
313config CRYPTO_ECDH
314	tristate "ECDH (Elliptic Curve Diffie-Hellman)"
315	select CRYPTO_ECC
316	select CRYPTO_KPP
317	help
318	  ECDH (Elliptic Curve Diffie-Hellman) key exchange algorithm
319	  using curves P-192, P-256, and P-384 (FIPS 186)
320
321config CRYPTO_ECDSA
322	tristate "ECDSA (Elliptic Curve Digital Signature Algorithm)"
323	select CRYPTO_ECC
324	select CRYPTO_SIG
325	select ASN1
326	help
327	  ECDSA (Elliptic Curve Digital Signature Algorithm) (FIPS 186,
328	  ISO/IEC 14888-3)
329	  using curves P-192, P-256, P-384 and P-521
330
331	  Only signature verification is implemented.
332
333config CRYPTO_ECRDSA
334	tristate "EC-RDSA (Elliptic Curve Russian Digital Signature Algorithm)"
335	select CRYPTO_ECC
336	select CRYPTO_SIG
337	select CRYPTO_STREEBOG
338	select OID_REGISTRY
339	select ASN1
340	help
341	  Elliptic Curve Russian Digital Signature Algorithm (GOST R 34.10-2012,
342	  RFC 7091, ISO/IEC 14888-3)
343
344	  One of the Russian cryptographic standard algorithms (called GOST
345	  algorithms). Only signature verification is implemented.
346
347config CRYPTO_CURVE25519
348	tristate "Curve25519"
349	select CRYPTO_KPP
350	select CRYPTO_LIB_CURVE25519_GENERIC
351	select CRYPTO_LIB_CURVE25519_INTERNAL
352	help
353	  Curve25519 elliptic curve (RFC7748)
354
355endmenu
356
357menu "Block ciphers"
358
359config CRYPTO_AES
360	tristate "AES (Advanced Encryption Standard)"
361	select CRYPTO_ALGAPI
362	select CRYPTO_LIB_AES
363	help
364	  AES cipher algorithms (Rijndael)(FIPS-197, ISO/IEC 18033-3)
365
366	  Rijndael appears to be consistently a very good performer in
367	  both hardware and software across a wide range of computing
368	  environments regardless of its use in feedback or non-feedback
369	  modes. Its key setup time is excellent, and its key agility is
370	  good. Rijndael's very low memory requirements make it very well
371	  suited for restricted-space environments, in which it also
372	  demonstrates excellent performance. Rijndael's operations are
373	  among the easiest to defend against power and timing attacks.
374
375	  The AES specifies three key sizes: 128, 192 and 256 bits
376
377config CRYPTO_AES_TI
378	tristate "AES (Advanced Encryption Standard) (fixed time)"
379	select CRYPTO_ALGAPI
380	select CRYPTO_LIB_AES
381	help
382	  AES cipher algorithms (Rijndael)(FIPS-197, ISO/IEC 18033-3)
383
384	  This is a generic implementation of AES that attempts to eliminate
385	  data dependent latencies as much as possible without affecting
386	  performance too much. It is intended for use by the generic CCM
387	  and GCM drivers, and other CTR or CMAC/XCBC based modes that rely
388	  solely on encryption (although decryption is supported as well, but
389	  with a more dramatic performance hit)
390
391	  Instead of using 16 lookup tables of 1 KB each, (8 for encryption and
392	  8 for decryption), this implementation only uses just two S-boxes of
393	  256 bytes each, and attempts to eliminate data dependent latencies by
394	  prefetching the entire table into the cache at the start of each
395	  block. Interrupts are also disabled to avoid races where cachelines
396	  are evicted when the CPU is interrupted to do something else.
397
398config CRYPTO_ANUBIS
399	tristate "Anubis"
400	depends on CRYPTO_USER_API_ENABLE_OBSOLETE
401	select CRYPTO_ALGAPI
402	help
403	  Anubis cipher algorithm
404
405	  Anubis is a variable key length cipher which can use keys from
406	  128 bits to 320 bits in length.  It was evaluated as a entrant
407	  in the NESSIE competition.
408
409	  See https://web.archive.org/web/20160606112246/http://www.larc.usp.br/~pbarreto/AnubisPage.html
410	  for further information.
411
412config CRYPTO_ARIA
413	tristate "ARIA"
414	select CRYPTO_ALGAPI
415	help
416	  ARIA cipher algorithm (RFC5794)
417
418	  ARIA is a standard encryption algorithm of the Republic of Korea.
419	  The ARIA specifies three key sizes and rounds.
420	  128-bit: 12 rounds.
421	  192-bit: 14 rounds.
422	  256-bit: 16 rounds.
423
424	  See:
425	  https://seed.kisa.or.kr/kisa/algorithm/EgovAriaInfo.do
426
427config CRYPTO_BLOWFISH
428	tristate "Blowfish"
429	select CRYPTO_ALGAPI
430	select CRYPTO_BLOWFISH_COMMON
431	help
432	  Blowfish cipher algorithm, by Bruce Schneier
433
434	  This is a variable key length cipher which can use keys from 32
435	  bits to 448 bits in length.  It's fast, simple and specifically
436	  designed for use on "large microprocessors".
437
438	  See https://www.schneier.com/blowfish.html for further information.
439
440config CRYPTO_BLOWFISH_COMMON
441	tristate
442	help
443	  Common parts of the Blowfish cipher algorithm shared by the
444	  generic c and the assembler implementations.
445
446config CRYPTO_CAMELLIA
447	tristate "Camellia"
448	select CRYPTO_ALGAPI
449	help
450	  Camellia cipher algorithms (ISO/IEC 18033-3)
451
452	  Camellia is a symmetric key block cipher developed jointly
453	  at NTT and Mitsubishi Electric Corporation.
454
455	  The Camellia specifies three key sizes: 128, 192 and 256 bits.
456
457	  See https://info.isl.ntt.co.jp/crypt/eng/camellia/ for further information.
458
459config CRYPTO_CAST_COMMON
460	tristate
461	help
462	  Common parts of the CAST cipher algorithms shared by the
463	  generic c and the assembler implementations.
464
465config CRYPTO_CAST5
466	tristate "CAST5 (CAST-128)"
467	select CRYPTO_ALGAPI
468	select CRYPTO_CAST_COMMON
469	help
470	  CAST5 (CAST-128) cipher algorithm (RFC2144, ISO/IEC 18033-3)
471
472config CRYPTO_CAST6
473	tristate "CAST6 (CAST-256)"
474	select CRYPTO_ALGAPI
475	select CRYPTO_CAST_COMMON
476	help
477	  CAST6 (CAST-256) encryption algorithm (RFC2612)
478
479config CRYPTO_DES
480	tristate "DES and Triple DES EDE"
481	select CRYPTO_ALGAPI
482	select CRYPTO_LIB_DES
483	help
484	  DES (Data Encryption Standard)(FIPS 46-2, ISO/IEC 18033-3) and
485	  Triple DES EDE (Encrypt/Decrypt/Encrypt) (FIPS 46-3, ISO/IEC 18033-3)
486	  cipher algorithms
487
488config CRYPTO_FCRYPT
489	tristate "FCrypt"
490	select CRYPTO_ALGAPI
491	select CRYPTO_SKCIPHER
492	help
493	  FCrypt algorithm used by RxRPC
494
495	  See https://ota.polyonymo.us/fcrypt-paper.txt
496
497config CRYPTO_KHAZAD
498	tristate "Khazad"
499	depends on CRYPTO_USER_API_ENABLE_OBSOLETE
500	select CRYPTO_ALGAPI
501	help
502	  Khazad cipher algorithm
503
504	  Khazad was a finalist in the initial NESSIE competition.  It is
505	  an algorithm optimized for 64-bit processors with good performance
506	  on 32-bit processors.  Khazad uses an 128 bit key size.
507
508	  See https://web.archive.org/web/20171011071731/http://www.larc.usp.br/~pbarreto/KhazadPage.html
509	  for further information.
510
511config CRYPTO_SEED
512	tristate "SEED"
513	depends on CRYPTO_USER_API_ENABLE_OBSOLETE
514	select CRYPTO_ALGAPI
515	help
516	  SEED cipher algorithm (RFC4269, ISO/IEC 18033-3)
517
518	  SEED is a 128-bit symmetric key block cipher that has been
519	  developed by KISA (Korea Information Security Agency) as a
520	  national standard encryption algorithm of the Republic of Korea.
521	  It is a 16 round block cipher with the key size of 128 bit.
522
523	  See https://seed.kisa.or.kr/kisa/algorithm/EgovSeedInfo.do
524	  for further information.
525
526config CRYPTO_SERPENT
527	tristate "Serpent"
528	select CRYPTO_ALGAPI
529	help
530	  Serpent cipher algorithm, by Anderson, Biham & Knudsen
531
532	  Keys are allowed to be from 0 to 256 bits in length, in steps
533	  of 8 bits.
534
535	  See https://www.cl.cam.ac.uk/~rja14/serpent.html for further information.
536
537config CRYPTO_SM4
538	tristate
539
540config CRYPTO_SM4_GENERIC
541	tristate "SM4 (ShangMi 4)"
542	select CRYPTO_ALGAPI
543	select CRYPTO_SM4
544	help
545	  SM4 cipher algorithms (OSCCA GB/T 32907-2016,
546	  ISO/IEC 18033-3:2010/Amd 1:2021)
547
548	  SM4 (GBT.32907-2016) is a cryptographic standard issued by the
549	  Organization of State Commercial Administration of China (OSCCA)
550	  as an authorized cryptographic algorithms for the use within China.
551
552	  SMS4 was originally created for use in protecting wireless
553	  networks, and is mandated in the Chinese National Standard for
554	  Wireless LAN WAPI (Wired Authentication and Privacy Infrastructure)
555	  (GB.15629.11-2003).
556
557	  The latest SM4 standard (GBT.32907-2016) was proposed by OSCCA and
558	  standardized through TC 260 of the Standardization Administration
559	  of the People's Republic of China (SAC).
560
561	  The input, output, and key of SMS4 are each 128 bits.
562
563	  See https://eprint.iacr.org/2008/329.pdf for further information.
564
565	  If unsure, say N.
566
567config CRYPTO_TEA
568	tristate "TEA, XTEA and XETA"
569	depends on CRYPTO_USER_API_ENABLE_OBSOLETE
570	select CRYPTO_ALGAPI
571	help
572	  TEA (Tiny Encryption Algorithm) cipher algorithms
573
574	  Tiny Encryption Algorithm is a simple cipher that uses
575	  many rounds for security.  It is very fast and uses
576	  little memory.
577
578	  Xtendend Tiny Encryption Algorithm is a modification to
579	  the TEA algorithm to address a potential key weakness
580	  in the TEA algorithm.
581
582	  Xtendend Encryption Tiny Algorithm is a mis-implementation
583	  of the XTEA algorithm for compatibility purposes.
584
585config CRYPTO_TWOFISH
586	tristate "Twofish"
587	select CRYPTO_ALGAPI
588	select CRYPTO_TWOFISH_COMMON
589	help
590	  Twofish cipher algorithm
591
592	  Twofish was submitted as an AES (Advanced Encryption Standard)
593	  candidate cipher by researchers at CounterPane Systems.  It is a
594	  16 round block cipher supporting key sizes of 128, 192, and 256
595	  bits.
596
597	  See https://www.schneier.com/twofish.html for further information.
598
599config CRYPTO_TWOFISH_COMMON
600	tristate
601	help
602	  Common parts of the Twofish cipher algorithm shared by the
603	  generic c and the assembler implementations.
604
605endmenu
606
607menu "Length-preserving ciphers and modes"
608
609config CRYPTO_ADIANTUM
610	tristate "Adiantum"
611	select CRYPTO_CHACHA20
612	select CRYPTO_LIB_POLY1305
613	select CRYPTO_LIB_POLY1305_GENERIC
614	select CRYPTO_NHPOLY1305
615	select CRYPTO_MANAGER
616	help
617	  Adiantum tweakable, length-preserving encryption mode
618
619	  Designed for fast and secure disk encryption, especially on
620	  CPUs without dedicated crypto instructions.  It encrypts
621	  each sector using the XChaCha12 stream cipher, two passes of
622	  an ε-almost-∆-universal hash function, and an invocation of
623	  the AES-256 block cipher on a single 16-byte block.  On CPUs
624	  without AES instructions, Adiantum is much faster than
625	  AES-XTS.
626
627	  Adiantum's security is provably reducible to that of its
628	  underlying stream and block ciphers, subject to a security
629	  bound.  Unlike XTS, Adiantum is a true wide-block encryption
630	  mode, so it actually provides an even stronger notion of
631	  security than XTS, subject to the security bound.
632
633	  If unsure, say N.
634
635config CRYPTO_ARC4
636	tristate "ARC4 (Alleged Rivest Cipher 4)"
637	depends on CRYPTO_USER_API_ENABLE_OBSOLETE
638	select CRYPTO_SKCIPHER
639	select CRYPTO_LIB_ARC4
640	help
641	  ARC4 cipher algorithm
642
643	  ARC4 is a stream cipher using keys ranging from 8 bits to 2048
644	  bits in length.  This algorithm is required for driver-based
645	  WEP, but it should not be for other purposes because of the
646	  weakness of the algorithm.
647
648config CRYPTO_CHACHA20
649	tristate "ChaCha"
650	select CRYPTO_LIB_CHACHA
651	select CRYPTO_LIB_CHACHA_GENERIC
652	select CRYPTO_SKCIPHER
653	help
654	  The ChaCha20, XChaCha20, and XChaCha12 stream cipher algorithms
655
656	  ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
657	  Bernstein and further specified in RFC7539 for use in IETF protocols.
658	  This is the portable C implementation of ChaCha20.  See
659	  https://cr.yp.to/chacha/chacha-20080128.pdf for further information.
660
661	  XChaCha20 is the application of the XSalsa20 construction to ChaCha20
662	  rather than to Salsa20.  XChaCha20 extends ChaCha20's nonce length
663	  from 64 bits (or 96 bits using the RFC7539 convention) to 192 bits,
664	  while provably retaining ChaCha20's security.  See
665	  https://cr.yp.to/snuffle/xsalsa-20081128.pdf for further information.
666
667	  XChaCha12 is XChaCha20 reduced to 12 rounds, with correspondingly
668	  reduced security margin but increased performance.  It can be needed
669	  in some performance-sensitive scenarios.
670
671config CRYPTO_CBC
672	tristate "CBC (Cipher Block Chaining)"
673	select CRYPTO_SKCIPHER
674	select CRYPTO_MANAGER
675	help
676	  CBC (Cipher Block Chaining) mode (NIST SP800-38A)
677
678	  This block cipher mode is required for IPSec ESP (XFRM_ESP).
679
680config CRYPTO_CTR
681	tristate "CTR (Counter)"
682	select CRYPTO_SKCIPHER
683	select CRYPTO_MANAGER
684	help
685	  CTR (Counter) mode (NIST SP800-38A)
686
687config CRYPTO_CTS
688	tristate "CTS (Cipher Text Stealing)"
689	select CRYPTO_SKCIPHER
690	select CRYPTO_MANAGER
691	help
692	  CBC-CS3 variant of CTS (Cipher Text Stealing) (NIST
693	  Addendum to SP800-38A (October 2010))
694
695	  This mode is required for Kerberos gss mechanism support
696	  for AES encryption.
697
698config CRYPTO_ECB
699	tristate "ECB (Electronic Codebook)"
700	select CRYPTO_SKCIPHER2
701	select CRYPTO_MANAGER
702	help
703	  ECB (Electronic Codebook) mode (NIST SP800-38A)
704
705config CRYPTO_HCTR2
706	tristate "HCTR2"
707	select CRYPTO_XCTR
708	select CRYPTO_POLYVAL
709	select CRYPTO_MANAGER
710	help
711	  HCTR2 length-preserving encryption mode
712
713	  A mode for storage encryption that is efficient on processors with
714	  instructions to accelerate AES and carryless multiplication, e.g.
715	  x86 processors with AES-NI and CLMUL, and ARM processors with the
716	  ARMv8 crypto extensions.
717
718	  See https://eprint.iacr.org/2021/1441
719
720config CRYPTO_LRW
721	tristate "LRW (Liskov Rivest Wagner)"
722	select CRYPTO_LIB_GF128MUL
723	select CRYPTO_SKCIPHER
724	select CRYPTO_MANAGER
725	select CRYPTO_ECB
726	help
727	  LRW (Liskov Rivest Wagner) mode
728
729	  A tweakable, non malleable, non movable
730	  narrow block cipher mode for dm-crypt.  Use it with cipher
731	  specification string aes-lrw-benbi, the key must be 256, 320 or 384.
732	  The first 128, 192 or 256 bits in the key are used for AES and the
733	  rest is used to tie each cipher block to its logical position.
734
735	  See https://people.csail.mit.edu/rivest/pubs/LRW02.pdf
736
737config CRYPTO_PCBC
738	tristate "PCBC (Propagating Cipher Block Chaining)"
739	select CRYPTO_SKCIPHER
740	select CRYPTO_MANAGER
741	help
742	  PCBC (Propagating Cipher Block Chaining) mode
743
744	  This block cipher mode is required for RxRPC.
745
746config CRYPTO_XCTR
747	tristate
748	select CRYPTO_SKCIPHER
749	select CRYPTO_MANAGER
750	help
751	  XCTR (XOR Counter) mode for HCTR2
752
753	  This blockcipher mode is a variant of CTR mode using XORs and little-endian
754	  addition rather than big-endian arithmetic.
755
756	  XCTR mode is used to implement HCTR2.
757
758config CRYPTO_XTS
759	tristate "XTS (XOR Encrypt XOR with ciphertext stealing)"
760	select CRYPTO_SKCIPHER
761	select CRYPTO_MANAGER
762	select CRYPTO_ECB
763	help
764	  XTS (XOR Encrypt XOR with ciphertext stealing) mode (NIST SP800-38E
765	  and IEEE 1619)
766
767	  Use with aes-xts-plain, key size 256, 384 or 512 bits. This
768	  implementation currently can't handle a sectorsize which is not a
769	  multiple of 16 bytes.
770
771config CRYPTO_NHPOLY1305
772	tristate
773	select CRYPTO_HASH
774	select CRYPTO_LIB_POLY1305
775	select CRYPTO_LIB_POLY1305_GENERIC
776
777endmenu
778
779menu "AEAD (authenticated encryption with associated data) ciphers"
780
781config CRYPTO_AEGIS128
782	tristate "AEGIS-128"
783	select CRYPTO_AEAD
784	select CRYPTO_AES  # for AES S-box tables
785	help
786	  AEGIS-128 AEAD algorithm
787
788config CRYPTO_AEGIS128_SIMD
789	bool "AEGIS-128 (arm NEON, arm64 NEON)"
790	depends on CRYPTO_AEGIS128 && ((ARM || ARM64) && KERNEL_MODE_NEON)
791	default y
792	help
793	  AEGIS-128 AEAD algorithm
794
795	  Architecture: arm or arm64 using:
796	  - NEON (Advanced SIMD) extension
797
798config CRYPTO_CHACHA20POLY1305
799	tristate "ChaCha20-Poly1305"
800	select CRYPTO_CHACHA20
801	select CRYPTO_AEAD
802	select CRYPTO_LIB_POLY1305
803	select CRYPTO_MANAGER
804	help
805	  ChaCha20 stream cipher and Poly1305 authenticator combined
806	  mode (RFC8439)
807
808config CRYPTO_CCM
809	tristate "CCM (Counter with Cipher Block Chaining-MAC)"
810	select CRYPTO_CTR
811	select CRYPTO_HASH
812	select CRYPTO_AEAD
813	select CRYPTO_MANAGER
814	help
815	  CCM (Counter with Cipher Block Chaining-Message Authentication Code)
816	  authenticated encryption mode (NIST SP800-38C)
817
818config CRYPTO_GCM
819	tristate "GCM (Galois/Counter Mode) and GMAC (GCM MAC)"
820	select CRYPTO_CTR
821	select CRYPTO_AEAD
822	select CRYPTO_GHASH
823	select CRYPTO_MANAGER
824	help
825	  GCM (Galois/Counter Mode) authenticated encryption mode and GMAC
826	  (GCM Message Authentication Code) (NIST SP800-38D)
827
828	  This is required for IPSec ESP (XFRM_ESP).
829
830config CRYPTO_GENIV
831	tristate
832	select CRYPTO_AEAD
833	select CRYPTO_MANAGER
834	select CRYPTO_RNG_DEFAULT
835
836config CRYPTO_SEQIV
837	tristate "Sequence Number IV Generator"
838	select CRYPTO_GENIV
839	help
840	  Sequence Number IV generator
841
842	  This IV generator generates an IV based on a sequence number by
843	  xoring it with a salt.  This algorithm is mainly useful for CTR.
844
845	  This is required for IPsec ESP (XFRM_ESP).
846
847config CRYPTO_ECHAINIV
848	tristate "Encrypted Chain IV Generator"
849	select CRYPTO_GENIV
850	help
851	  Encrypted Chain IV generator
852
853	  This IV generator generates an IV based on the encryption of
854	  a sequence number xored with a salt.  This is the default
855	  algorithm for CBC.
856
857config CRYPTO_ESSIV
858	tristate "Encrypted Salt-Sector IV Generator"
859	select CRYPTO_AUTHENC
860	help
861	  Encrypted Salt-Sector IV generator
862
863	  This IV generator is used in some cases by fscrypt and/or
864	  dm-crypt. It uses the hash of the block encryption key as the
865	  symmetric key for a block encryption pass applied to the input
866	  IV, making low entropy IV sources more suitable for block
867	  encryption.
868
869	  This driver implements a crypto API template that can be
870	  instantiated either as an skcipher or as an AEAD (depending on the
871	  type of the first template argument), and which defers encryption
872	  and decryption requests to the encapsulated cipher after applying
873	  ESSIV to the input IV. Note that in the AEAD case, it is assumed
874	  that the keys are presented in the same format used by the authenc
875	  template, and that the IV appears at the end of the authenticated
876	  associated data (AAD) region (which is how dm-crypt uses it.)
877
878	  Note that the use of ESSIV is not recommended for new deployments,
879	  and so this only needs to be enabled when interoperability with
880	  existing encrypted volumes of filesystems is required, or when
881	  building for a particular system that requires it (e.g., when
882	  the SoC in question has accelerated CBC but not XTS, making CBC
883	  combined with ESSIV the only feasible mode for h/w accelerated
884	  block encryption)
885
886endmenu
887
888menu "Hashes, digests, and MACs"
889
890config CRYPTO_BLAKE2B
891	tristate "BLAKE2b"
892	select CRYPTO_HASH
893	help
894	  BLAKE2b cryptographic hash function (RFC 7693)
895
896	  BLAKE2b is optimized for 64-bit platforms and can produce digests
897	  of any size between 1 and 64 bytes. The keyed hash is also implemented.
898
899	  This module provides the following algorithms:
900	  - blake2b-160
901	  - blake2b-256
902	  - blake2b-384
903	  - blake2b-512
904
905	  Used by the btrfs filesystem.
906
907	  See https://blake2.net for further information.
908
909config CRYPTO_CMAC
910	tristate "CMAC (Cipher-based MAC)"
911	select CRYPTO_HASH
912	select CRYPTO_MANAGER
913	help
914	  CMAC (Cipher-based Message Authentication Code) authentication
915	  mode (NIST SP800-38B and IETF RFC4493)
916
917config CRYPTO_GHASH
918	tristate "GHASH"
919	select CRYPTO_HASH
920	select CRYPTO_LIB_GF128MUL
921	help
922	  GCM GHASH function (NIST SP800-38D)
923
924config CRYPTO_HMAC
925	tristate "HMAC (Keyed-Hash MAC)"
926	select CRYPTO_HASH
927	select CRYPTO_MANAGER
928	help
929	  HMAC (Keyed-Hash Message Authentication Code) (FIPS 198 and
930	  RFC2104)
931
932	  This is required for IPsec AH (XFRM_AH) and IPsec ESP (XFRM_ESP).
933
934config CRYPTO_MD4
935	tristate "MD4"
936	select CRYPTO_HASH
937	help
938	  MD4 message digest algorithm (RFC1320)
939
940config CRYPTO_MD5
941	tristate "MD5"
942	select CRYPTO_HASH
943	select CRYPTO_LIB_MD5
944	help
945	  MD5 message digest algorithm (RFC1321), including HMAC support.
946
947config CRYPTO_MICHAEL_MIC
948	tristate "Michael MIC"
949	select CRYPTO_HASH
950	help
951	  Michael MIC (Message Integrity Code) (IEEE 802.11i)
952
953	  Defined by the IEEE 802.11i TKIP (Temporal Key Integrity Protocol),
954	  known as WPA (Wif-Fi Protected Access).
955
956	  This algorithm is required for TKIP, but it should not be used for
957	  other purposes because of the weakness of the algorithm.
958
959config CRYPTO_POLYVAL
960	tristate
961	select CRYPTO_HASH
962	select CRYPTO_LIB_GF128MUL
963	help
964	  POLYVAL hash function for HCTR2
965
966	  This is used in HCTR2.  It is not a general-purpose
967	  cryptographic hash function.
968
969config CRYPTO_RMD160
970	tristate "RIPEMD-160"
971	select CRYPTO_HASH
972	help
973	  RIPEMD-160 hash function (ISO/IEC 10118-3)
974
975	  RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
976	  to be used as a secure replacement for the 128-bit hash functions
977	  MD4, MD5 and its predecessor RIPEMD
978	  (not to be confused with RIPEMD-128).
979
980	  Its speed is comparable to SHA-1 and there are no known attacks
981	  against RIPEMD-160.
982
983	  Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
984	  See https://homes.esat.kuleuven.be/~bosselae/ripemd160.html
985	  for further information.
986
987config CRYPTO_SHA1
988	tristate "SHA-1"
989	select CRYPTO_HASH
990	select CRYPTO_LIB_SHA1
991	help
992	  SHA-1 secure hash algorithm (FIPS 180, ISO/IEC 10118-3), including
993	  HMAC support.
994
995config CRYPTO_SHA256
996	tristate "SHA-224 and SHA-256"
997	select CRYPTO_HASH
998	select CRYPTO_LIB_SHA256
999	help
1000	  SHA-224 and SHA-256 secure hash algorithms (FIPS 180, ISO/IEC
1001	  10118-3), including HMAC support.
1002
1003	  This is required for IPsec AH (XFRM_AH) and IPsec ESP (XFRM_ESP).
1004	  Used by the btrfs filesystem, Ceph, NFS, and SMB.
1005
1006config CRYPTO_SHA512
1007	tristate "SHA-384 and SHA-512"
1008	select CRYPTO_HASH
1009	select CRYPTO_LIB_SHA512
1010	help
1011	  SHA-384 and SHA-512 secure hash algorithms (FIPS 180, ISO/IEC
1012	  10118-3), including HMAC support.
1013
1014config CRYPTO_SHA3
1015	tristate "SHA-3"
1016	select CRYPTO_HASH
1017	help
1018	  SHA-3 secure hash algorithms (FIPS 202, ISO/IEC 10118-3)
1019
1020config CRYPTO_SM3_GENERIC
1021	tristate "SM3 (ShangMi 3)"
1022	select CRYPTO_HASH
1023	select CRYPTO_LIB_SM3
1024	help
1025	  SM3 (ShangMi 3) secure hash function (OSCCA GM/T 0004-2012, ISO/IEC 10118-3)
1026
1027	  This is part of the Chinese Commercial Cryptography suite.
1028
1029	  References:
1030	  http://www.oscca.gov.cn/UpFile/20101222141857786.pdf
1031	  https://datatracker.ietf.org/doc/html/draft-shen-sm3-hash
1032
1033config CRYPTO_STREEBOG
1034	tristate "Streebog"
1035	select CRYPTO_HASH
1036	help
1037	  Streebog Hash Function (GOST R 34.11-2012, RFC 6986, ISO/IEC 10118-3)
1038
1039	  This is one of the Russian cryptographic standard algorithms (called
1040	  GOST algorithms). This setting enables two hash algorithms with
1041	  256 and 512 bits output.
1042
1043	  References:
1044	  https://tc26.ru/upload/iblock/fed/feddbb4d26b685903faa2ba11aea43f6.pdf
1045	  https://tools.ietf.org/html/rfc6986
1046
1047config CRYPTO_WP512
1048	tristate "Whirlpool"
1049	select CRYPTO_HASH
1050	help
1051	  Whirlpool hash function (ISO/IEC 10118-3)
1052
1053	  512, 384 and 256-bit hashes.
1054
1055	  Whirlpool-512 is part of the NESSIE cryptographic primitives.
1056
1057	  See https://web.archive.org/web/20171129084214/http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html
1058	  for further information.
1059
1060config CRYPTO_XCBC
1061	tristate "XCBC-MAC (Extended Cipher Block Chaining MAC)"
1062	select CRYPTO_HASH
1063	select CRYPTO_MANAGER
1064	help
1065	  XCBC-MAC (Extended Cipher Block Chaining Message Authentication
1066	  Code) (RFC3566)
1067
1068config CRYPTO_XXHASH
1069	tristate "xxHash"
1070	select CRYPTO_HASH
1071	select XXHASH
1072	help
1073	  xxHash non-cryptographic hash algorithm
1074
1075	  Extremely fast, working at speeds close to RAM limits.
1076
1077	  Used by the btrfs filesystem.
1078
1079endmenu
1080
1081menu "CRCs (cyclic redundancy checks)"
1082
1083config CRYPTO_CRC32C
1084	tristate "CRC32c"
1085	select CRYPTO_HASH
1086	select CRC32
1087	help
1088	  CRC32c CRC algorithm with the iSCSI polynomial (RFC 3385 and RFC 3720)
1089
1090	  A 32-bit CRC (cyclic redundancy check) with a polynomial defined
1091	  by G. Castagnoli, S. Braeuer and M. Herrman in "Optimization of Cyclic
1092	  Redundancy-Check Codes with 24 and 32 Parity Bits", IEEE Transactions
1093	  on Communications, Vol. 41, No. 6, June 1993, selected for use with
1094	  iSCSI.
1095
1096	  Used by btrfs, ext4, jbd2, NVMeoF/TCP, and iSCSI.
1097
1098config CRYPTO_CRC32
1099	tristate "CRC32"
1100	select CRYPTO_HASH
1101	select CRC32
1102	help
1103	  CRC32 CRC algorithm (IEEE 802.3)
1104
1105	  Used by RoCEv2 and f2fs.
1106
1107endmenu
1108
1109menu "Compression"
1110
1111config CRYPTO_DEFLATE
1112	tristate "Deflate"
1113	select CRYPTO_ALGAPI
1114	select CRYPTO_ACOMP2
1115	select ZLIB_INFLATE
1116	select ZLIB_DEFLATE
1117	help
1118	  Deflate compression algorithm (RFC1951)
1119
1120	  Used by IPSec with the IPCOMP protocol (RFC3173, RFC2394)
1121
1122config CRYPTO_LZO
1123	tristate "LZO"
1124	select CRYPTO_ALGAPI
1125	select CRYPTO_ACOMP2
1126	select LZO_COMPRESS
1127	select LZO_DECOMPRESS
1128	help
1129	  LZO compression algorithm
1130
1131	  See https://www.oberhumer.com/opensource/lzo/ for further information.
1132
1133config CRYPTO_842
1134	tristate "842"
1135	select CRYPTO_ALGAPI
1136	select CRYPTO_ACOMP2
1137	select 842_COMPRESS
1138	select 842_DECOMPRESS
1139	help
1140	  842 compression algorithm by IBM
1141
1142	  See https://github.com/plauth/lib842 for further information.
1143
1144config CRYPTO_LZ4
1145	tristate "LZ4"
1146	select CRYPTO_ALGAPI
1147	select CRYPTO_ACOMP2
1148	select LZ4_COMPRESS
1149	select LZ4_DECOMPRESS
1150	help
1151	  LZ4 compression algorithm
1152
1153	  See https://github.com/lz4/lz4 for further information.
1154
1155config CRYPTO_LZ4HC
1156	tristate "LZ4HC"
1157	select CRYPTO_ALGAPI
1158	select CRYPTO_ACOMP2
1159	select LZ4HC_COMPRESS
1160	select LZ4_DECOMPRESS
1161	help
1162	  LZ4 high compression mode algorithm
1163
1164	  See https://github.com/lz4/lz4 for further information.
1165
1166config CRYPTO_ZSTD
1167	tristate "Zstd"
1168	select CRYPTO_ALGAPI
1169	select CRYPTO_ACOMP2
1170	select ZSTD_COMPRESS
1171	select ZSTD_DECOMPRESS
1172	help
1173	  zstd compression algorithm
1174
1175	  See https://github.com/facebook/zstd for further information.
1176
1177endmenu
1178
1179menu "Random number generation"
1180
1181config CRYPTO_ANSI_CPRNG
1182	tristate "ANSI PRNG (Pseudo Random Number Generator)"
1183	select CRYPTO_AES
1184	select CRYPTO_RNG
1185	help
1186	  Pseudo RNG (random number generator) (ANSI X9.31 Appendix A.2.4)
1187
1188	  This uses the AES cipher algorithm.
1189
1190	  Note that this option must be enabled if CRYPTO_FIPS is selected
1191
1192menuconfig CRYPTO_DRBG_MENU
1193	tristate "NIST SP800-90A DRBG (Deterministic Random Bit Generator)"
1194	help
1195	  DRBG (Deterministic Random Bit Generator) (NIST SP800-90A)
1196
1197	  In the following submenu, one or more of the DRBG types must be selected.
1198
1199if CRYPTO_DRBG_MENU
1200
1201config CRYPTO_DRBG_HMAC
1202	bool
1203	default y
1204	select CRYPTO_HMAC
1205	select CRYPTO_SHA512
1206
1207config CRYPTO_DRBG_HASH
1208	bool "Hash_DRBG"
1209	select CRYPTO_SHA256
1210	help
1211	  Hash_DRBG variant as defined in NIST SP800-90A.
1212
1213	  This uses the SHA-1, SHA-256, SHA-384, or SHA-512 hash algorithms.
1214
1215config CRYPTO_DRBG_CTR
1216	bool "CTR_DRBG"
1217	select CRYPTO_AES
1218	select CRYPTO_CTR
1219	help
1220	  CTR_DRBG variant as defined in NIST SP800-90A.
1221
1222	  This uses the AES cipher algorithm with the counter block mode.
1223
1224config CRYPTO_DRBG
1225	tristate
1226	default CRYPTO_DRBG_MENU
1227	select CRYPTO_RNG
1228	select CRYPTO_JITTERENTROPY
1229
1230endif	# if CRYPTO_DRBG_MENU
1231
1232config CRYPTO_JITTERENTROPY
1233	tristate "CPU Jitter Non-Deterministic RNG (Random Number Generator)"
1234	select CRYPTO_RNG
1235	select CRYPTO_SHA3
1236	help
1237	  CPU Jitter RNG (Random Number Generator) from the Jitterentropy library
1238
1239	  A non-physical non-deterministic ("true") RNG (e.g., an entropy source
1240	  compliant with NIST SP800-90B) intended to provide a seed to a
1241	  deterministic RNG (e.g., per NIST SP800-90C).
1242	  This RNG does not perform any cryptographic whitening of the generated
1243	  random numbers.
1244
1245	  See https://www.chronox.de/jent/
1246
1247if CRYPTO_JITTERENTROPY
1248if CRYPTO_FIPS && EXPERT
1249
1250choice
1251	prompt "CPU Jitter RNG Memory Size"
1252	default CRYPTO_JITTERENTROPY_MEMSIZE_2
1253	help
1254	  The Jitter RNG measures the execution time of memory accesses.
1255	  Multiple consecutive memory accesses are performed. If the memory
1256	  size fits into a cache (e.g. L1), only the memory access timing
1257	  to that cache is measured. The closer the cache is to the CPU
1258	  the less variations are measured and thus the less entropy is
1259	  obtained. Thus, if the memory size fits into the L1 cache, the
1260	  obtained entropy is less than if the memory size fits within
1261	  L1 + L2, which in turn is less if the memory fits into
1262	  L1 + L2 + L3. Thus, by selecting a different memory size,
1263	  the entropy rate produced by the Jitter RNG can be modified.
1264
1265	config CRYPTO_JITTERENTROPY_MEMSIZE_2
1266		bool "2048 Bytes (default)"
1267
1268	config CRYPTO_JITTERENTROPY_MEMSIZE_128
1269		bool "128 kBytes"
1270
1271	config CRYPTO_JITTERENTROPY_MEMSIZE_1024
1272		bool "1024 kBytes"
1273
1274	config CRYPTO_JITTERENTROPY_MEMSIZE_8192
1275		bool "8192 kBytes"
1276endchoice
1277
1278config CRYPTO_JITTERENTROPY_MEMORY_BLOCKS
1279	int
1280	default 64 if CRYPTO_JITTERENTROPY_MEMSIZE_2
1281	default 512 if CRYPTO_JITTERENTROPY_MEMSIZE_128
1282	default 1024 if CRYPTO_JITTERENTROPY_MEMSIZE_1024
1283	default 4096 if CRYPTO_JITTERENTROPY_MEMSIZE_8192
1284
1285config CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE
1286	int
1287	default 32 if CRYPTO_JITTERENTROPY_MEMSIZE_2
1288	default 256 if CRYPTO_JITTERENTROPY_MEMSIZE_128
1289	default 1024 if CRYPTO_JITTERENTROPY_MEMSIZE_1024
1290	default 2048 if CRYPTO_JITTERENTROPY_MEMSIZE_8192
1291
1292config CRYPTO_JITTERENTROPY_OSR
1293	int "CPU Jitter RNG Oversampling Rate"
1294	range 1 15
1295	default 3
1296	help
1297	  The Jitter RNG allows the specification of an oversampling rate (OSR).
1298	  The Jitter RNG operation requires a fixed amount of timing
1299	  measurements to produce one output block of random numbers. The
1300	  OSR value is multiplied with the amount of timing measurements to
1301	  generate one output block. Thus, the timing measurement is oversampled
1302	  by the OSR factor. The oversampling allows the Jitter RNG to operate
1303	  on hardware whose timers deliver limited amount of entropy (e.g.
1304	  the timer is coarse) by setting the OSR to a higher value. The
1305	  trade-off, however, is that the Jitter RNG now requires more time
1306	  to generate random numbers.
1307
1308config CRYPTO_JITTERENTROPY_TESTINTERFACE
1309	bool "CPU Jitter RNG Test Interface"
1310	help
1311	  The test interface allows a privileged process to capture
1312	  the raw unconditioned high resolution time stamp noise that
1313	  is collected by the Jitter RNG for statistical analysis. As
1314	  this data is used at the same time to generate random bits,
1315	  the Jitter RNG operates in an insecure mode as long as the
1316	  recording is enabled. This interface therefore is only
1317	  intended for testing purposes and is not suitable for
1318	  production systems.
1319
1320	  The raw noise data can be obtained using the jent_raw_hires
1321	  debugfs file. Using the option
1322	  jitterentropy_testing.boot_raw_hires_test=1 the raw noise of
1323	  the first 1000 entropy events since boot can be sampled.
1324
1325	  If unsure, select N.
1326
1327endif	# if CRYPTO_FIPS && EXPERT
1328
1329if !(CRYPTO_FIPS && EXPERT)
1330
1331config CRYPTO_JITTERENTROPY_MEMORY_BLOCKS
1332	int
1333	default 64
1334
1335config CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE
1336	int
1337	default 32
1338
1339config CRYPTO_JITTERENTROPY_OSR
1340	int
1341	default 1
1342
1343config CRYPTO_JITTERENTROPY_TESTINTERFACE
1344	bool
1345
1346endif	# if !(CRYPTO_FIPS && EXPERT)
1347endif	# if CRYPTO_JITTERENTROPY
1348
1349config CRYPTO_KDF800108_CTR
1350	tristate
1351	select CRYPTO_HMAC
1352	select CRYPTO_SHA256
1353
1354endmenu
1355menu "Userspace interface"
1356
1357config CRYPTO_USER_API
1358	tristate
1359
1360config CRYPTO_USER_API_HASH
1361	tristate "Hash algorithms"
1362	depends on NET
1363	select CRYPTO_HASH
1364	select CRYPTO_USER_API
1365	help
1366	  Enable the userspace interface for hash algorithms.
1367
1368	  See Documentation/crypto/userspace-if.rst and
1369	  https://www.chronox.de/libkcapi/html/index.html
1370
1371config CRYPTO_USER_API_SKCIPHER
1372	tristate "Symmetric key cipher algorithms"
1373	depends on NET
1374	select CRYPTO_SKCIPHER
1375	select CRYPTO_USER_API
1376	help
1377	  Enable the userspace interface for symmetric key cipher algorithms.
1378
1379	  See Documentation/crypto/userspace-if.rst and
1380	  https://www.chronox.de/libkcapi/html/index.html
1381
1382config CRYPTO_USER_API_RNG
1383	tristate "RNG (random number generator) algorithms"
1384	depends on NET
1385	select CRYPTO_RNG
1386	select CRYPTO_USER_API
1387	help
1388	  Enable the userspace interface for RNG (random number generator)
1389	  algorithms.
1390
1391	  See Documentation/crypto/userspace-if.rst and
1392	  https://www.chronox.de/libkcapi/html/index.html
1393
1394config CRYPTO_USER_API_RNG_CAVP
1395	bool "Enable CAVP testing of DRBG"
1396	depends on CRYPTO_USER_API_RNG && CRYPTO_DRBG
1397	help
1398	  Enable extra APIs in the userspace interface for NIST CAVP
1399	  (Cryptographic Algorithm Validation Program) testing:
1400	  - resetting DRBG entropy
1401	  - providing Additional Data
1402
1403	  This should only be enabled for CAVP testing. You should say
1404	  no unless you know what this is.
1405
1406config CRYPTO_USER_API_AEAD
1407	tristate "AEAD cipher algorithms"
1408	depends on NET
1409	select CRYPTO_AEAD
1410	select CRYPTO_SKCIPHER
1411	select CRYPTO_USER_API
1412	help
1413	  Enable the userspace interface for AEAD cipher algorithms.
1414
1415	  See Documentation/crypto/userspace-if.rst and
1416	  https://www.chronox.de/libkcapi/html/index.html
1417
1418config CRYPTO_USER_API_ENABLE_OBSOLETE
1419	bool "Obsolete cryptographic algorithms"
1420	depends on CRYPTO_USER_API
1421	default y
1422	help
1423	  Allow obsolete cryptographic algorithms to be selected that have
1424	  already been phased out from internal use by the kernel, and are
1425	  only useful for userspace clients that still rely on them.
1426
1427endmenu
1428
1429if !KMSAN # avoid false positives from assembly
1430if ARM
1431source "arch/arm/crypto/Kconfig"
1432endif
1433if ARM64
1434source "arch/arm64/crypto/Kconfig"
1435endif
1436if LOONGARCH
1437source "arch/loongarch/crypto/Kconfig"
1438endif
1439if MIPS
1440source "arch/mips/crypto/Kconfig"
1441endif
1442if PPC
1443source "arch/powerpc/crypto/Kconfig"
1444endif
1445if RISCV
1446source "arch/riscv/crypto/Kconfig"
1447endif
1448if S390
1449source "arch/s390/crypto/Kconfig"
1450endif
1451if SPARC
1452source "arch/sparc/crypto/Kconfig"
1453endif
1454if X86
1455source "arch/x86/crypto/Kconfig"
1456endif
1457endif
1458
1459source "drivers/crypto/Kconfig"
1460source "crypto/asymmetric_keys/Kconfig"
1461source "certs/Kconfig"
1462source "crypto/krb5/Kconfig"
1463
1464endif	# if CRYPTO
1465