summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/kex.c
AgeCommit message (Expand)Author
2004-06-21make ssh -Wshadow clean, no functional changesAnil Madhavapeddy
2004-06-13implement diffie-hellman-group14-sha1 kex method (trivial extension toDamien Miller
2004-05-09don't overwrite what we are trying to computeDamien Miller
2004-05-09kill some more tiny files; ok deraadt@Damien Miller
2003-11-21unexpand and delete whitespace at EOL; ok markus@Damien Miller
2003-04-01bugfix causes stalled connections for ssh.com < 3.0; noticed by ho@; tested b...Markus Friedl
2003-02-16split kex into client and server code, no need to linkMarkus Friedl
2003-02-02add support for key exchange guesses; based on work byMarkus Friedl
2002-11-21debug->debug2, unify debug messagesMarkus Friedl
2002-06-24cat to (void) when output from buffer_get_X is ignoredMarkus Friedl
2002-05-15'monitor' variable clashes with at least one lame platform (NeXT). Renamedmouring
2002-03-26generate a new cookie for each SSH2_MSG_KEXINIT message we send outMarkus Friedl
2002-03-18integrate privilege separated openssh; its turned off by default for now.Niels Provos
2002-02-28add some const EVP_MD for openssl-0.9.7Markus Friedl
2002-02-23don't allow garbage after payload.Markus Friedl
2002-02-14hide some more implementation details of cipher.[ch] and prepares for moveMarkus Friedl
2002-02-11restore kexinit handler if we reset the dispatcher, this unbreaks rekeyingMarkus Friedl
2002-01-25use EVP_MD_size(evp_md) and not evp_md->md_size; ok steveks@Markus Friedl
2002-01-11a single dispatch_protocol_error() that sends a message of type 'UNIMPLEMENTED'Markus Friedl
2001-12-28remove plen from the dispatch fn. it's no longer used.Markus Friedl
2001-12-28packet_read* no longer return the packet length, since it's not used.Markus Friedl
2001-12-28s/packet_done/packet_check_eom/ (end-of-message); ok djm@Markus Friedl
2001-12-20Conformance fix: we should send failing packet sequence number whenDamien Miller
2001-12-05minor KNFTheo de Raadt
2001-06-25update copyright for 2001Markus Friedl
2001-06-23more strict prototypes. raise warning level in Makefile.inc. markus ok'edJun-ichiro itojun Hagino
2001-04-30allow interop with weaker key generation used by ssh-2.0.x, x < 10Markus Friedl
2001-04-05fix whitespace: unexpand + trailing spaces.Markus Friedl
2001-04-04clear+free keys,iv for rekeying.Markus Friedl
2001-04-04parse full kexinit packet.Markus Friedl
2001-04-04more robust rekeyingMarkus Friedl
2001-04-04enable server side rekeying + some rekey related clientup.Markus Friedl
2001-04-04don't sent multiple kexinit-requests.Markus Friedl
2001-04-03undo parts of recent my changes: main part of keyexchange does notMarkus Friedl
2001-04-03move kex to kex*.c, used dispatch_set() callbacks for kex. shouldMarkus Friedl
2001-03-29prepare for rekeying: move DH code to dh.cMarkus Friedl
2001-03-28forgot to include min and max params in hash, okay markus@Niels Provos
2001-03-10add PreferredAuthenticationsMarkus Friedl
2001-03-05generate a 2*need size (~300 instead of 1024/2048) random privateMarkus Friedl
2001-02-111) clean up the MAC support for SSH-2Markus Friedl
2001-02-08sync with netbsd tree changes.Jun-ichiro itojun Hagino
2001-02-04unexpand and remove end-of-line whitespace; ok markus@Kevin Steves
2001-01-21split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.Markus Friedl
2001-01-08missing free; thanks stevesk@pobox.comMarkus Friedl
2000-12-20fix prototypes; from stevesk@pobox.comMarkus Friedl
2000-12-19replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'Markus Friedl
2000-12-15compute diffie-hellman in parallel between server and client. okay markus@Niels Provos
2000-11-12add support for RSA to SSH2. please test.Markus Friedl
2000-10-11new cipher frameworkMarkus Friedl
2000-10-11First rough implementation of the diffie-hellman group exchange. TheNiels Provos