crypto/tinycrypt/Kconfig: Fix indentation

Replace help => ---help---
Add TABs
This commit is contained in:
simbit18 2023-05-18 15:06:34 +02:00 committed by Xiang Xiao
parent d0cb5afc2f
commit e15db0c21b

View File

@ -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"