kconfig: tweak Kconfig prompts

Tweak some Kconfig prompts after the removal of "Enable...".

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2022-03-09 12:31:16 +01:00 committed by Carles Cufí
commit dffaf5375c
19 changed files with 59 additions and 59 deletions

View file

@ -62,16 +62,16 @@ config MBEDTLS_KEY_EXCHANGE_ALL_ENABLED
select MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED
config MBEDTLS_KEY_EXCHANGE_PSK_ENABLED
bool "The PSK based ciphersuite modes"
bool "PSK based ciphersuite modes"
config MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED
bool "The DHE-PSK based ciphersuite modes"
bool "DHE-PSK based ciphersuite modes"
config MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED
bool "The ECDHE-PSK based ciphersuite modes"
bool "ECDHE-PSK based ciphersuite modes"
config MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED
bool "The RSA-PSK based ciphersuite modes"
bool "RSA-PSK based ciphersuite modes"
config MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED
bool
@ -88,29 +88,29 @@ config MBEDTLS_PSK_MAX_LEN
Max size of TLS pre-shared keys, in bytes.
config MBEDTLS_KEY_EXCHANGE_RSA_ENABLED
bool "The RSA-only based ciphersuite modes"
bool "RSA-only based ciphersuite modes"
default y if !NET_L2_OPENTHREAD
config MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED
bool "The DHE-RSA based ciphersuite modes"
bool "DHE-RSA based ciphersuite modes"
config MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
bool "The ECDHE-RSA based ciphersuite modes"
bool "ECDHE-RSA based ciphersuite modes"
config MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
bool "The ECDHE-ECDSA based ciphersuite modes"
bool "ECDHE-ECDSA based ciphersuite modes"
config MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
bool "The ECDH-ECDSA based ciphersuite modes"
bool "ECDH-ECDSA based ciphersuite modes"
config MBEDTLS_ECDSA_DETERMINISTIC
bool "Deterministic ECDSA (RFC 6979)"
config MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
bool "The ECDH-RSA based ciphersuite modes"
bool "ECDH-RSA based ciphersuite modes"
config MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED
bool "The ECJPAKE based ciphersuite modes"
bool "ECJPAKE based ciphersuite modes"
if MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED || \
MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED || \
@ -216,7 +216,7 @@ config MBEDTLS_CIPHER_ALL_ENABLED
select MBEDTLS_CHACHAPOLY_AEAD_ENABLED
config MBEDTLS_CIPHER_AES_ENABLED
bool "The AES block cipher"
bool "AES block cipher"
default y
config MBEDTLS_AES_ROM_TABLES
@ -225,27 +225,27 @@ config MBEDTLS_AES_ROM_TABLES
default y
config MBEDTLS_CIPHER_CAMELLIA_ENABLED
bool "The Camellia block cipher"
bool "Camellia block cipher"
config MBEDTLS_CIPHER_DES_ENABLED
bool "The DES block cipher"
bool "DES block cipher"
default y if !NET_L2_OPENTHREAD
config MBEDTLS_CIPHER_ARC4_ENABLED
bool "The ARC4 stream cipher"
bool "ARC4 stream cipher"
config MBEDTLS_CIPHER_CHACHA20_ENABLED
bool "The ChaCha20 stream cipher"
bool "ChaCha20 stream cipher"
config MBEDTLS_CIPHER_BLOWFISH_ENABLED
bool "The Blowfish block cipher"
bool "Blowfish block cipher"
config MBEDTLS_CIPHER_CCM_ENABLED
bool "The Counter with CBC-MAC (CCM) mode for 128-bit block cipher"
bool "Counter with CBC-MAC (CCM) mode for 128-bit block cipher"
depends on MBEDTLS_CIPHER_AES_ENABLED || MBEDTLS_CIPHER_CAMELLIA_ENABLED
config MBEDTLS_CIPHER_GCM_ENABLED
bool "The Galois/Counter Mode (GCM) for AES"
bool "Galois/Counter Mode (GCM) for AES"
depends on MBEDTLS_CIPHER_AES_ENABLED || MBEDTLS_CIPHER_CAMELLIA_ENABLED
config MBEDTLS_CIPHER_MODE_XTS_ENABLED
@ -260,7 +260,7 @@ config MBEDTLS_CIPHER_MODE_CTR_ENABLED
bool "Counter Block Cipher mode (CTR) for symmetric ciphers."
config MBEDTLS_CHACHAPOLY_AEAD_ENABLED
bool "The ChaCha20-Poly1305 AEAD algorithm"
bool "ChaCha20-Poly1305 AEAD algorithm"
depends on MBEDTLS_CIPHER_CHACHA20_ENABLED || MBEDTLS_MAC_POLY1305_ENABLED
comment "Supported message authentication methods"
@ -276,18 +276,18 @@ config MBEDTLS_MAC_ALL_ENABLED
select MBEDTLS_MAC_CMAC_ENABLED
config MBEDTLS_MAC_MD4_ENABLED
bool "The MD4 hash algorithm"
bool "MD4 hash algorithm"
config MBEDTLS_MAC_MD5_ENABLED
bool "The MD5 hash algorithm"
bool "MD5 hash algorithm"
default y if !NET_L2_OPENTHREAD
config MBEDTLS_MAC_SHA1_ENABLED
bool "The SHA1 hash algorithm"
bool "SHA1 hash algorithm"
default y if !NET_L2_OPENTHREAD
config MBEDTLS_MAC_SHA256_ENABLED
bool "The SHA-224 and SHA-256 hash algorithms"
bool "SHA-224 and SHA-256 hash algorithms"
default y
config MBEDTLS_SHA256_SMALLER
@ -299,13 +299,13 @@ config MBEDTLS_SHA256_SMALLER
lower performance
config MBEDTLS_MAC_SHA512_ENABLED
bool "The SHA-384 and SHA-512 hash algorithms"
bool "SHA-384 and SHA-512 hash algorithms"
config MBEDTLS_MAC_POLY1305_ENABLED
bool "The Poly1305 MAC algorithm"
bool "Poly1305 MAC algorithm"
config MBEDTLS_MAC_CMAC_ENABLED
bool "The CMAC (Cipher-based Message Authentication Code) mode for block ciphers."
bool "CMAC (Cipher-based Message Authentication Code) mode for block ciphers."
depends on MBEDTLS_CIPHER_AES_ENABLED || MBEDTLS_CIPHER_DES_ENABLED
endmenu
@ -313,24 +313,24 @@ endmenu
comment "Random number generators"
config MBEDTLS_CTR_DRBG_ENABLED
bool "The CTR_DRBG AES-256-based random generator"
bool "CTR_DRBG AES-256-based random generator"
depends on MBEDTLS_CIPHER_AES_ENABLED
default y
config MBEDTLS_HMAC_DRBG_ENABLED
bool "The HMAC_DRBG random generator"
bool "HMAC_DRBG random generator"
select MBEDTLS_MD
comment "Other configurations"
config MBEDTLS_CIPHER
bool "The generic cipher layer."
bool "generic cipher layer."
config MBEDTLS_MD
bool "The generic message digest layer."
bool "generic message digest layer."
config MBEDTLS_GENPRIME_ENABLED
bool "The prime-number generation code."
bool "prime-number generation code."
config MBEDTLS_PEM_CERTIFICATE_FORMAT
bool "Support for PEM certificate format"