From: Matt Weber Date: Thu, 6 Dec 2018 02:06:28 +0000 (-0600) Subject: system cfg: set mkpasswd default to SHA256 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9cf2280846b60ba081ed21339b407e2c761b599d;p=buildroot.git system cfg: set mkpasswd default to SHA256 This patch changes the default mkpasswd method to SHA256 from MD5. The change both improves the quality of the hash used and prepares for eventually removing MD5 as a option. Reviewed-by: "Yann E. MORIN" Signed-off-by: Matthew Weber Signed-off-by: Peter Korsgaard --- diff --git a/system/Config.in b/system/Config.in index e33568f7ed..65c92a8409 100644 --- a/system/Config.in +++ b/system/Config.in @@ -61,7 +61,7 @@ endif choice bool "Passwords encoding" - default BR2_TARGET_GENERIC_PASSWD_MD5 + default BR2_TARGET_GENERIC_PASSWD_SHA256 help Choose the password encoding scheme to use when Buildroot needs to encode a password (eg. the root password, below).