From e15db0c21bfb5dcd66b455a1911e90615433878e Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Thu, 18 May 2023 15:06:34 +0200 Subject: [PATCH] crypto/tinycrypt/Kconfig: Fix indentation Replace help => ---help--- Add TABs --- crypto/tinycrypt/Kconfig | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/crypto/tinycrypt/Kconfig b/crypto/tinycrypt/Kconfig index 2d0f4aa49..36b98ce20 100644 --- a/crypto/tinycrypt/Kconfig +++ b/crypto/tinycrypt/Kconfig @@ -7,7 +7,7 @@ menu "Crypto: TinyCrypt cryptography library" config TINYCRYPT bool "TinyCrypt Support" - help + ---help--- This option enables the TinyCrypt cryptography library. if TINYCRYPT @@ -18,35 +18,35 @@ config TINYCRYPT_VERSION config TINYCRYPT_CTR_PRNG bool "PRNG in counter mode" default n - help - This option enables support for the pseudo-random number + ---help--- + This option enables support for the pseudo-random number generator in counter mode. config TINYCRYPT_SHA256 bool "SHA-256 Hash function support" default n - help + ---help--- This option enables support for SHA-256 hash function primitive. config TINYCRYPT_SHA256_HMAC bool "HMAC (via SHA256) message auth support" default n - help + ---help--- This option enables support for HMAC using SHA-256 message authentication code. config TINYCRYPT_SHA256_HMAC_PRNG bool "PRNG (via HMAC-SHA256) support" default n - help + ---help--- This option enables support for pseudo-random number generator. config TINYCRYPT_ECC_DH bool "ECC_DH anonymous key agreement protocol" default n - help + ---help--- This option enables support for the Elliptic curve Diffie-Hellman anonymous key agreement protocol. @@ -56,7 +56,7 @@ config TINYCRYPT_ECC_DH config TINYCRYPT_ECC_DSA bool "ECC_DSA digital signature algorithm" default n - help + ---help--- This option enables support for the Elliptic Curve Digital Signature Algorithm (ECDSA). @@ -66,33 +66,33 @@ config TINYCRYPT_ECC_DSA config TINYCRYPT_AES bool "AES-128 decrypt/encrypt" default n - help + ---help--- This option enables support for AES-128 decrypt and encrypt. config TINYCRYPT_AES_CBC bool "AES-128 block cipher" default n - help + ---help--- This option enables support for AES-128 block cipher mode. config TINYCRYPT_AES_CTR bool "AES-128 counter mode" default n - help + ---help--- This option enables support for AES-128 counter mode. config TINYCRYPT_AES_CCM bool "AES-128 CCM mode" default n - help + ---help--- This option enables support for AES-128 CCM mode. config TINYCRYPT_AES_CMAC bool "AES-128 CMAC mode" default n - help + ---help--- This option enables support for AES-128 CMAC mode. -endif +endif # TINYCRYPT -endmenu +endmenu # "Crypto: TinyCrypt cryptography library"