diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | UPGRADING | 12 |
2 files changed, 13 insertions, 0 deletions
@@ -25,6 +25,7 @@ | |||
25 | Niels Kristian Bech Jensen <nkbj@image.dk> | 25 | Niels Kristian Bech Jensen <nkbj@image.dk> |
26 | - Solaris fixing, thanks to Ben Taylor <bent@clark.net> | 26 | - Solaris fixing, thanks to Ben Taylor <bent@clark.net> |
27 | - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com> | 27 | - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com> |
28 | - Release 1.2pre15 | ||
28 | 29 | ||
29 | 19991124 | 30 | 19991124 |
30 | - Merged very large OpenBSD source code reformat | 31 | - Merged very large OpenBSD source code reformat |
@@ -33,3 +33,15 @@ Commercial SSH controlled logging using the "QuietMode" and | |||
33 | logging options "SyslogFacility" and "LogLevel". See the sshd manual | 33 | logging options "SyslogFacility" and "LogLevel". See the sshd manual |
34 | page for details. | 34 | page for details. |
35 | 35 | ||
36 | 4. Warning messages about key lengths | ||
37 | |||
38 | Commercial SSH's ssh-keygen program contained a bug which caused it to | ||
39 | occasionally generate RSA keys which had their Most Significant Bit | ||
40 | (MSB) unset. Such keys were advertised as being full-length, but are | ||
41 | actually only half as secure. | ||
42 | |||
43 | OpenSSH will print warning messages when it encounters such keys. To | ||
44 | rid yourself of these message, edit you known_hosts files and replace | ||
45 | the incorrect key length (usually "1024") with the correct key length | ||
46 | (usually "1023"). | ||
47 | |||