barebox now supports two signature algorithms and it makes sense to group them together in the Kconfig and not have other options like KEYSTORE or JWT between them. No functional change. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- crypto/Kconfig | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/crypto/Kconfig b/crypto/Kconfig index 45011802e360..191bd5102627 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -115,10 +115,17 @@ config CRYPTO_PBKDF2 select DIGEST_HMAC_GENERIC bool +config CRYPTO_ECC + bool + config CRYPTO_RSA bool "RSA support" default y if FITIMAGE_SIGNATURE +config CRYPTO_ECDSA + bool "ECDSA support" + select CRYPTO_ECC + config CRYPTO_BUILTIN_KEYS bool "builtin keys" select KEYTOC @@ -149,11 +156,4 @@ config JWT select BASE64 select CRYPTO_RSA -config CRYPTO_ECC - bool - -config CRYPTO_ECDSA - bool "ECDSA support" - select CRYPTO_ECC - endmenu -- 2.39.5