forked from openssh/openssh-portable
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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@
- Loading branch information
Showing
8 changed files
with
10 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -210,22 +210,14 @@ OpenSSH contains no GPL code. | |
|
||
8) Portable OpenSSH contains the following additional licenses: | ||
|
||
a) md5crypt.c, md5crypt.h | ||
|
||
* "THE BEER-WARE LICENSE" (Revision 42): | ||
* <[email protected]> wrote this file. As long as you retain this | ||
* notice you can do whatever you want with this stuff. If we meet | ||
* some day, and you think this stuff is worth it, you can buy me a | ||
* beer in return. Poul-Henning Kamp | ||
|
||
b) snprintf replacement | ||
a) snprintf replacement | ||
|
||
* Copyright Patrick Powell 1995 | ||
* This code is based on code written by Patrick Powell | ||
* ([email protected]) It may be used for any purpose as long as this | ||
* notice remains intact on all source code distributions | ||
|
||
c) Compatibility code (openbsd-compat) | ||
b) Compatibility code (openbsd-compat) | ||
|
||
Apart from the previously mentioned licenses, various pieces of code | ||
in the openbsd-compat/ subdirectory are licensed as follows: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]> | ||
* Thu Oct 28 2021 Damien Miller <[email protected]> | ||
- Remove remaining traces of --with-md5-passwords | ||
|
||
* Mon Jul 20 2020 Damien Miller <[email protected]> | ||
- Add ssh-sk-helper and corresponding manual page. | ||
|
||
* Sat Feb 10 2018 Darren Tucker <[email protected]> | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters