Files
u-boot/lib/crypt/Kconfig
Tomas Paukrt d54691b64e lib: crypt: remove dependency on autoboot
Make crypt_compare() accessible from board-specific code
by removing its dependency on the autoboot feature.

Signed-off-by: Tomas Paukrt <tomaspaukrt@email.cz>
Reviewed-by: Tom Rini <trini@konsulko.com>
2026-01-13 09:42:44 -06:00

26 lines
619 B
Plaintext

menuconfig CRYPT_PW
bool "Add crypt support for password-based unlock"
help
Enable support for crypt-style hashed passphrases.
This will then be used as the mechanism of choice to
verify whether the entered password to unlock the
console is correct or not.
if CRYPT_PW
config CRYPT_PW_SHA256
bool "Provide sha256crypt"
select SHA256
help
Enables support for the sha256crypt password-hashing algorithm.
The prefix is "$5$".
config CRYPT_PW_SHA512
bool "Provide sha512crypt"
select SHA512
help
Enables support for the sha512crypt password-hashing algorithm.
The prefix is "$6$".
endif