aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleksandr Suvorov <oleksandr.suvorov@foundries.io>2022-09-19 12:14:49 +0300
committerTom Rini <trini@konsulko.com>2022-10-11 15:40:48 -0400
commit36ecaa2ce84ec48ed7dc90723455ae4468df0423 (patch)
tree482950383dc735419e129856b2dace598bbd90dc
parent35821a25c1ca06b71fbf6f46442cc9d93b31fb7d (diff)
downloadu-boot-36ecaa2ce84ec48ed7dc90723455ae4468df0423.zip
u-boot-36ecaa2ce84ec48ed7dc90723455ae4468df0423.tar.gz
u-boot-36ecaa2ce84ec48ed7dc90723455ae4468df0423.tar.bz2
lib: crypt: fix selecting a non-existent option
The option SHA256_ALGO does not exist. Remove selecting it. Fixes: 26dd9936574 ("lib: add crypt subsystem") Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
-rw-r--r--lib/crypt/Kconfig1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/crypt/Kconfig b/lib/crypt/Kconfig
index a59d5c7..22af683 100644
--- a/lib/crypt/Kconfig
+++ b/lib/crypt/Kconfig
@@ -12,7 +12,6 @@ if CRYPT_PW
config CRYPT_PW_SHA256
bool "Provide sha256crypt"
select SHA256
- select SHA256_ALGO
help
Enables support for the sha256crypt password-hashing algorithm.
The prefix is "$5$".