Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-12-19 | s/msg_send/ssh_msg_send/ to avoid namespace clashes in portable; ok markus@ | Damien Miller | |
2002-12-13 | cleanup debug messages, more useful information for the client user. | Markus Friedl | |
2002-11-21 | debug->debug2, unify debug messages | Markus Friedl | |
2002-07-01 | for compression=yes, we fallback to no-compression if the server does | Markus Friedl | |
not support compression, vice versa for compression=no. ok mouring@ | |||
2002-06-30 | minor KNF | Theo de Raadt | |
2002-06-23 | various KNF and %d for unsigned | Theo de Raadt | |
2002-06-19 | KNF done automatically while reading.... | Theo de Raadt | |
2002-05-31 | extent ssh-keysign protocol: | Markus Friedl | |
pass # of socket-fd to ssh-keysign, keysign verfies locally used ip-address using this socket-fd, restricts fake local hostnames to actual local hostnames; ok stevesk@ | |||
2002-05-25 | execlp->execl; from stevesk | Markus Friedl | |
2002-05-24 | stat ssh-keysign first, print error if stat fails; | Markus Friedl | |
some debug->error; fix comment | |||
2002-05-23 | add /usr/libexec/ssh-keysign: a setuid helper program for hostbased ↵ | Markus Friedl | |
authentication in protocol v2 (needs to access the hostkeys). | |||
2002-03-26 | client side support for PASSWD_CHANGEREQ | Markus Friedl | |
based on work by johan.andersson@appgate.com; ok provos@ | |||
2002-03-19 | KNF whitespace | Markus Friedl | |
2002-02-25 | more u_* fixes | Markus Friedl | |
2002-02-24 | signed vs. unsigned: make size arguments u_int, ok stevesk@ | Markus Friedl | |
2002-02-03 | more cross checking if announced vs. used key type; ok stevesk@ | Markus Friedl | |
2002-01-25 | unused include | Markus Friedl | |
2002-01-13 | use buffer API and avoid static strings of fixed size; ok provos@/mouring@ | Markus Friedl | |
2001-12-28 | remove plen from the dispatch fn. it's no longer used. | Markus Friedl | |
2001-12-28 | packet_read* no longer return the packet length, since it's not used. | Markus Friedl | |
2001-12-28 | s/packet_done/packet_check_eom/ (end-of-message); ok djm@ | Markus Friedl | |
2001-12-20 | Conformance fix: we should send failing packet sequence number when | Damien Miller | |
responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by yakk@yakk.dot.net; ok markus@ | |||
2001-12-19 | basic KNF done while i was looking for something else | Theo de Raadt | |
2001-12-05 | minor KNF | Theo de Raadt | |
2001-12-05 | make it compile with more strict prototype checking | Jun-ichiro itojun Hagino | |
2001-11-07 | pad using the padding field from the ssh2 packet instead of sending | Markus Friedl | |
extra ignore messages. tested against several other ssh servers. | |||
2001-10-29 | hostbased: check for client hostkey before building chost | Markus Friedl | |
2001-10-06 | unify hostkey check error messages, simplify prompt. | Markus Friedl | |
2001-08-31 | disable kbd-interactive if we don't get SSH2_MSG_USERAUTH_INFO_REQUEST messages | Markus Friedl | |
2001-07-23 | reorder default sequence of userauth methods to match ssh behaviour: | Markus Friedl | |
hostbased,publickey,keyboard-interactive,password | |||
2001-06-26 | add smartcard support to the client, too (now you can use both | Markus Friedl | |
the agent and the client). | |||
2001-06-25 | prototype cleanup; ok markus@ | Kevin Steves | |
2001-06-24 | oops, missing format string | Markus Friedl | |
2001-06-24 | switch to readpassphrase(3) | Markus Friedl | |
2.7/8-stable needs readpassphrase.[ch] from libc | |||
2001-06-23 | more strict prototypes. raise warning level in Makefile.inc. markus ok'ed | Jun-ichiro itojun Hagino | |
TODO; cleanup headers | |||
2001-06-23 | get rid of known_hosts2, use it for hostkey lookup, but do not modify. | Markus Friedl | |
2001-05-19 | change preferredauthentication order to | Markus Friedl | |
publickey,hostbased,password,keyboard-interactive document that hostbased defaults to no, document order | |||
2001-05-18 | improved kbd-interactive support. work by per@appgate.com and me | Markus Friedl | |
2001-04-18 | more ssh v2 hostbased-auth interop: ssh.com >= 2.1.0 works now | Markus Friedl | |
(however the 2.1.0 server seems to work only if debug is enabled...) | |||
2001-04-18 | use FDQN with trailing dot in the hostbased auth packets, ok deraadt@ | Markus Friedl | |
2001-04-17 | add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@ | Markus Friedl | |
2001-04-15 | some unused variable and typos; from tomh@po.crl.go.jp | Markus Friedl | |
2001-04-12 | implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2) | Markus Friedl | |
similar to RhostRSAAuthentication unless you enable (the experimental) HostbasedUsesNameFromPacketOnly option. please test. :) | |||
2001-04-05 | fix whitespace: unexpand + trailing spaces. | Markus Friedl | |
2001-04-04 | more robust rekeying | Markus Friedl | |
don't send channel data after rekeying is started. | |||
2001-04-04 | enable server side rekeying + some rekey related clientup. | Markus Friedl | |
todo: we should not send any non-KEX messages after we send KEXINIT | |||
2001-04-04 | don't sent multiple kexinit-requests. | Markus Friedl | |
send newkeys, block while waiting for newkeys. fix comments. | |||
2001-04-04 | enable client rekeying | Markus Friedl | |
(1) force rekeying with ~R, or (2) if the server requests rekeying. works against ssh-2.0.12/2.0.13/2.1.0/2.2.0/2.3.0/2.3.1/2.4.0 | |||
2001-04-03 | undo parts of recent my changes: main part of keyexchange does not | Markus Friedl | |
need dispatch-callbacks, since application data is delayed until the keyexchange completes (if i understand the drafts correctly). add some infrastructure for re-keying. | |||
2001-04-03 | move kex to kex*.c, used dispatch_set() callbacks for kex. should | Markus Friedl | |
make rekeying easier. |