forked from mirrors/linux
		
	lib/crypto: add prompts back to crypto libraries
Commit6048fdcc5f("lib/crypto: blake2s: include as built-in") took away a number of prompt texts from other crypto libraries. This makes values flip from built-in to module when oldconfig runs, and causes problems when these crypto libs need to be built in for thingslike BIG_KEYS. Fixes:6048fdcc5f("lib/crypto: blake2s: include as built-in") Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: linux-crypto@vger.kernel.org Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org> [Jason: - moved menu into submenu of lib/ instead of root menu - fixed chacha sub-dependencies for CONFIG_CRYPTO] Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
		
							parent
							
								
									fe81ba137e
								
							
						
					
					
						commit
						e56e189855
					
				
					 3 changed files with 14 additions and 7 deletions
				
			
		| 
						 | 
					@ -1928,5 +1928,3 @@ source "crypto/asymmetric_keys/Kconfig"
 | 
				
			||||||
source "certs/Kconfig"
 | 
					source "certs/Kconfig"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
endif	# if CRYPTO
 | 
					endif	# if CRYPTO
 | 
				
			||||||
 | 
					 | 
				
			||||||
source "lib/crypto/Kconfig"
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -122,6 +122,8 @@ config INDIRECT_IOMEM_FALLBACK
 | 
				
			||||||
	  mmio accesses when the IO memory address is not a registered
 | 
						  mmio accesses when the IO memory address is not a registered
 | 
				
			||||||
	  emulated region.
 | 
						  emulated region.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					source "lib/crypto/Kconfig"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config CRC_CCITT
 | 
					config CRC_CCITT
 | 
				
			||||||
	tristate "CRC-CCITT functions"
 | 
						tristate "CRC-CCITT functions"
 | 
				
			||||||
	help
 | 
						help
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,7 @@
 | 
				
			||||||
# SPDX-License-Identifier: GPL-2.0
 | 
					# SPDX-License-Identifier: GPL-2.0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					menu "Crypto library routines"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config CRYPTO_LIB_AES
 | 
					config CRYPTO_LIB_AES
 | 
				
			||||||
	tristate
 | 
						tristate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -31,7 +33,7 @@ config CRYPTO_ARCH_HAVE_LIB_CHACHA
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config CRYPTO_LIB_CHACHA_GENERIC
 | 
					config CRYPTO_LIB_CHACHA_GENERIC
 | 
				
			||||||
	tristate
 | 
						tristate
 | 
				
			||||||
	select CRYPTO_ALGAPI
 | 
						select XOR_BLOCKS
 | 
				
			||||||
	help
 | 
						help
 | 
				
			||||||
	  This symbol can be depended upon by arch implementations of the
 | 
						  This symbol can be depended upon by arch implementations of the
 | 
				
			||||||
	  ChaCha library interface that require the generic code as a
 | 
						  ChaCha library interface that require the generic code as a
 | 
				
			||||||
| 
						 | 
					@ -40,7 +42,8 @@ config CRYPTO_LIB_CHACHA_GENERIC
 | 
				
			||||||
	  of CRYPTO_LIB_CHACHA.
 | 
						  of CRYPTO_LIB_CHACHA.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config CRYPTO_LIB_CHACHA
 | 
					config CRYPTO_LIB_CHACHA
 | 
				
			||||||
	tristate
 | 
						tristate "ChaCha library interface"
 | 
				
			||||||
 | 
						depends on CRYPTO
 | 
				
			||||||
	depends on CRYPTO_ARCH_HAVE_LIB_CHACHA || !CRYPTO_ARCH_HAVE_LIB_CHACHA
 | 
						depends on CRYPTO_ARCH_HAVE_LIB_CHACHA || !CRYPTO_ARCH_HAVE_LIB_CHACHA
 | 
				
			||||||
	select CRYPTO_LIB_CHACHA_GENERIC if CRYPTO_ARCH_HAVE_LIB_CHACHA=n
 | 
						select CRYPTO_LIB_CHACHA_GENERIC if CRYPTO_ARCH_HAVE_LIB_CHACHA=n
 | 
				
			||||||
	help
 | 
						help
 | 
				
			||||||
| 
						 | 
					@ -65,7 +68,7 @@ config CRYPTO_LIB_CURVE25519_GENERIC
 | 
				
			||||||
	  of CRYPTO_LIB_CURVE25519.
 | 
						  of CRYPTO_LIB_CURVE25519.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config CRYPTO_LIB_CURVE25519
 | 
					config CRYPTO_LIB_CURVE25519
 | 
				
			||||||
	tristate
 | 
						tristate "Curve25519 scalar multiplication library"
 | 
				
			||||||
	depends on CRYPTO_ARCH_HAVE_LIB_CURVE25519 || !CRYPTO_ARCH_HAVE_LIB_CURVE25519
 | 
						depends on CRYPTO_ARCH_HAVE_LIB_CURVE25519 || !CRYPTO_ARCH_HAVE_LIB_CURVE25519
 | 
				
			||||||
	select CRYPTO_LIB_CURVE25519_GENERIC if CRYPTO_ARCH_HAVE_LIB_CURVE25519=n
 | 
						select CRYPTO_LIB_CURVE25519_GENERIC if CRYPTO_ARCH_HAVE_LIB_CURVE25519=n
 | 
				
			||||||
	help
 | 
						help
 | 
				
			||||||
| 
						 | 
					@ -100,7 +103,7 @@ config CRYPTO_LIB_POLY1305_GENERIC
 | 
				
			||||||
	  of CRYPTO_LIB_POLY1305.
 | 
						  of CRYPTO_LIB_POLY1305.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config CRYPTO_LIB_POLY1305
 | 
					config CRYPTO_LIB_POLY1305
 | 
				
			||||||
	tristate
 | 
						tristate "Poly1305 library interface"
 | 
				
			||||||
	depends on CRYPTO_ARCH_HAVE_LIB_POLY1305 || !CRYPTO_ARCH_HAVE_LIB_POLY1305
 | 
						depends on CRYPTO_ARCH_HAVE_LIB_POLY1305 || !CRYPTO_ARCH_HAVE_LIB_POLY1305
 | 
				
			||||||
	select CRYPTO_LIB_POLY1305_GENERIC if CRYPTO_ARCH_HAVE_LIB_POLY1305=n
 | 
						select CRYPTO_LIB_POLY1305_GENERIC if CRYPTO_ARCH_HAVE_LIB_POLY1305=n
 | 
				
			||||||
	help
 | 
						help
 | 
				
			||||||
| 
						 | 
					@ -109,14 +112,18 @@ config CRYPTO_LIB_POLY1305
 | 
				
			||||||
	  is available and enabled.
 | 
						  is available and enabled.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config CRYPTO_LIB_CHACHA20POLY1305
 | 
					config CRYPTO_LIB_CHACHA20POLY1305
 | 
				
			||||||
	tristate
 | 
						tristate "ChaCha20-Poly1305 AEAD support (8-byte nonce library version)"
 | 
				
			||||||
	depends on CRYPTO_ARCH_HAVE_LIB_CHACHA || !CRYPTO_ARCH_HAVE_LIB_CHACHA
 | 
						depends on CRYPTO_ARCH_HAVE_LIB_CHACHA || !CRYPTO_ARCH_HAVE_LIB_CHACHA
 | 
				
			||||||
	depends on CRYPTO_ARCH_HAVE_LIB_POLY1305 || !CRYPTO_ARCH_HAVE_LIB_POLY1305
 | 
						depends on CRYPTO_ARCH_HAVE_LIB_POLY1305 || !CRYPTO_ARCH_HAVE_LIB_POLY1305
 | 
				
			||||||
 | 
						depends on CRYPTO
 | 
				
			||||||
	select CRYPTO_LIB_CHACHA
 | 
						select CRYPTO_LIB_CHACHA
 | 
				
			||||||
	select CRYPTO_LIB_POLY1305
 | 
						select CRYPTO_LIB_POLY1305
 | 
				
			||||||
 | 
						select CRYPTO_ALGAPI
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config CRYPTO_LIB_SHA256
 | 
					config CRYPTO_LIB_SHA256
 | 
				
			||||||
	tristate
 | 
						tristate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config CRYPTO_LIB_SM4
 | 
					config CRYPTO_LIB_SM4
 | 
				
			||||||
	tristate
 | 
						tristate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					endmenu
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue