From: Oleksandr Suvorov Date: Mon, 19 Sep 2022 09:14:49 +0000 (+0300) Subject: lib: crypt: fix selecting a non-existent option X-Git-Tag: baikal/mips/sdk5.8.2~5^2~192^2~11 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=635a1ef5447de00c671b3220bdd4273a266a2c5a;p=uboot.git lib: crypt: fix selecting a non-existent option The option SHA256_ALGO does not exist. Remove selecting it. Fixes: 817214db282 ("lib: add crypt subsystem") Signed-off-by: Oleksandr Suvorov --- diff --git a/lib/crypt/Kconfig b/lib/crypt/Kconfig index a59d5c7d1d..22af6834d9 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$".