diff options
author | Damien Miller <djm@mindrot.org> | 2021-05-06 02:08:30 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-10-28 07:16:13 +0200 |
commit | a5ab4882348d26addc9830a44e053238dfa2cb58 (patch) | |
tree | 82ee92feaa15fa4c3e33f4ae43107fcbbd2885e8 /contrib | |
parent | upstream: increment SSH_SK_VERSION_MAJOR to match last change (diff) | |
download | openssh-a5ab4882348d26addc9830a44e053238dfa2cb58.tar.xz openssh-a5ab4882348d26addc9830a44e053238dfa2cb58.zip |
remove built-in support for md5crypt()
Users of MD5-hashed password should arrange for ./configure to link
against libxcrypt or similar. Though it would be better to avoid use
of MD5 password hashing entirely, it's arguably worse than DEScrypt.
feedback and ok dtucker@
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/redhat/openssh.spec | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/redhat/openssh.spec b/contrib/redhat/openssh.spec index 2905db0e8..f86b035de 100644 --- a/contrib/redhat/openssh.spec +++ b/contrib/redhat/openssh.spec @@ -66,7 +66,7 @@ # rpm -ba|--rebuild --define "smartcard 1" %{?smartcard:%global scard 1} -# Is this a build for the rescue CD (without PAM, with MD5)? (1=yes 0=no) +# Is this a build for the rescue CD (without PAM)? (1=yes 0=no) %global rescue 0 %{?build_rescue:%global rescue 1} @@ -211,7 +211,6 @@ CFLAGS="$RPM_OPT_FLAGS -Os"; export CFLAGS --with-default-path=/usr/local/bin:/bin:/usr/bin \ --with-superuser-path=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin \ --with-privsep-path=%{_var}/empty/sshd \ - --with-md5-passwords \ --mandir=%{_mandir} \ --with-mantype=man \ --disable-strip \ @@ -424,7 +423,10 @@ fi %endif %changelog -* Mon Jul 20 2020 Damien Miller <djm@mindrto.org> +* Thu Oct 28 2021 Damien Miller <djm@mindrot.org> +- Remove remaining traces of --with-md5-passwords + +* Mon Jul 20 2020 Damien Miller <djm@mindrot.org> - Add ssh-sk-helper and corresponding manual page. * Sat Feb 10 2018 Darren Tucker <dtucker@dtucker.net> |