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 /Makefile.in | |
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 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 84bd0dc07..6d82c1b14 100644 --- a/Makefile.in +++ b/Makefile.in @@ -127,7 +127,7 @@ SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o \ auth2-none.o auth2-passwd.o auth2-pubkey.o \ monitor.o monitor_wrap.o auth-krb5.o \ auth2-gss.o gss-serv.o gss-serv-krb5.o \ - loginrec.o auth-pam.o auth-shadow.o auth-sia.o md5crypt.o \ + loginrec.o auth-pam.o auth-shadow.o auth-sia.o \ srclimit.o sftp-server.o sftp-common.o \ sandbox-null.o sandbox-rlimit.o sandbox-systrace.o sandbox-darwin.o \ sandbox-seccomp-filter.o sandbox-capsicum.o sandbox-pledge.o \ |