Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2001-03-29 | need to set both STOC and CTOS for SSH_BUG_BIGENDIANAES; ok markus@ | Kevin Steves | |
2001-03-29 | use recommended defaults | Niels Provos | |
2001-03-28 | forgot to include min and max params in hash, okay markus@ | Niels Provos | |
2001-03-27 | make dh group exchange more flexible, allow min and max group size, | Niels Provos | |
okay markus@, deraadt@ | |||
2001-03-26 | simpler key load/save interface, see authfile.h | Markus Friedl | |
2001-03-23 | Compat for OpenSSH with broken Rijndael/AES. ok markus@ | Damien Miller | |
2001-03-12 | remove old key_fingerprint interface, s/_ex// | Markus Friedl | |
2001-03-10 | add PreferredAuthentications | Markus Friedl | |
2001-03-10 | ignore nonexisting private keys; report rjmooney@mediaone.net | Markus Friedl | |
2001-03-08 | implement client side of SSH2_MSG_USERAUTH_PK_OK (test public key -> | Markus Friedl | |
no need to do enter passphrase or do expensive sign operations if the server does not accept key). | |||
2001-03-05 | generate a 2*need size (~300 instead of 1024/2048) random private | Markus Friedl | |
exponent during the DH key agreement. according to Niels (the great german advisor) this is safe since /etc/primes contains strong primes only. References: P. C. van Oorschot and M. J. Wiener, On Diffie-Hellman key agreement with short exponents, In Advances in Cryptology - EUROCRYPT'96, LNCS 1070, Springer-Verlag, 1996, pp.332-343. | |||
2001-02-28 | in ssh protocol v2 use ignore messages for padding (instead of trailing \0). | Markus Friedl | |
2001-02-15 | genericize password padding function for SSH1 and SSH2. | Markus Friedl | |
add stylized echo to 2, too. | |||
2001-02-11 | 1) clean up the MAC support for SSH-2 | Markus Friedl | |
2) allow you to specify the MAC with 'ssh -m' 3) or the 'MACs' keyword in ssh(d)_config 4) add hmac-{md5,sha1}-96 ok stevesk@, provos@ | |||
2001-02-10 | remove some lines | Markus Friedl | |
2001-02-09 | partial success: debug->log; "Permission denied" if no more auth methods | Markus Friedl | |
2001-02-09 | do not free twice, thanks to /etc/malloc.conf | Markus Friedl | |
2001-02-08 | %.30s is too short for IPv6 numeric address. use %.128s for now. markus ok | Jun-ichiro itojun Hagino | |
2001-02-06 | do not ask for passphrase in batch mode; report from ejb@ql.org | Markus Friedl | |
2001-02-04 | unexpand and remove end-of-line whitespace; ok markus@ | Kevin Steves | |
2001-01-31 | unused | Markus Friedl | |
2001-01-22 | rename skey -> challenge response. | Markus Friedl | |
auto-enable kbd-interactive for ssh2 if challenge-reponse is enabled. | |||
2001-01-22 | fix memory leaks in SSH2 key exchange; ok markus@ | Kevin Steves | |