summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/kexgexs.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* pass most arguments to the KEX hash functions as sshbuf ratherdjm2019-01-231-11/+14
* factor out kex_load_hostkey() - this is duplicated in both the client anddjm2019-01-211-13/+3
* factor out kex_dh_compute_key() - it's shared between plain DH KEX anddjm2019-01-211-44/+14
* save the derived session id in kex_derive_keys() rather than making eachdjm2019-01-211-12/+1
* Make sshpkt_get_bignum2() allocate the bignum it is parsing ratherdjm2019-01-211-6/+2
* remove last references to active_statedjm2019-01-191-3/+3
* move client/server SSH-* banners to buffers under ssh->kex and factordjm2018-12-271-3/+3
* explicit_bzero here to be consistent with other kex*.c;djm2018-10-041-1/+2
* hold our collective noses and use the openssl-1.1.x API in OpenSSH;djm2018-09-131-10/+13
* lots of typos in comments/docs. Patch from Karsten Weiss after checkingdjm2018-04-101-2/+2
* Remove all guards for calls to OpenSSL free functions - all of thesejsing2018-02-071-5/+3
* protocol handlers all get struct ssh passed; ok djm@markus2017-05-301-7/+5
* Add MAXIMUM(), MINIMUM(), and ROUNDUP() to misc.h, then use those definitionsderaadt2016-09-121-6/+6
* Back out rev 1.28 "Check min and max sizes sent by the client" change.dtucker2016-06-081-9/+9
* Check min and max sizes sent by the client against what we support beforedtucker2016-06-011-9/+9
* Ensure that the client's proposed DH-GEX max value is at least as bigdtucker2016-05-311-2/+2
* implement SHA2-{256,512} for RSASSA-PKCS1-v1_5 signatures (user and host auth)markus2015-12-041-3/+3
* deprecate ancient, pre-RFC4419 and undocumenteddjm2015-04-131-36/+13
* correctly match ECDSA subtype (== curve) for offered/recevieddjm2015-01-261-3/+5
* Reduce use of <sys/param.h> and transition to <limits.h> throughout.deraadt2015-01-201-2/+2
* fix hostkeys in agent; ok markus@djm2015-01-201-5/+4
* adapt kex to sshbuf and struct ssh; ok djm@markus2015-01-191-96/+161
* update packet.c & isolate, introduce struct sshmarkus2015-01-191-3/+3
* convert memset of potentially-private data to explicit_bzero()djm2014-02-021-2/+2
* avoid use of OpenSSL BIGNUM type and functions for KEX withdjm2014-01-121-2/+2
* Introduce digest API and use it to perform all hashing operationsdjm2014-01-091-2/+2
* add ssh-agent(1) support to sshd(8); allows encrypted hostkeys,markus2013-07-191-8/+3
* bye, bye xfree(); ok markus@djm2013-05-171-4/+4
* use only libcrypto APIs that are retained with OPENSSL_NO_DEPRECATED.djm2010-11-101-1/+3
* Add support for certificate key types for users and hosts.djm2010-02-261-7/+13
* abort if key_sign fails, preventing possible null deref. Based on reportdtucker2009-06-211-2/+4
* fix hash calculation for KEXGEX: hash over the original client-supplieddjm2009-01-011-12/+15
* add missing checks for openssl return codes; with & ok djm@markus2006-11-061-2/+3
* check DH_compute_key() for -1 even if it should not happen because ofmarkus2006-10-311-4/+5
* almost entirely get rid of the culture of ".h files that include .h files"deraadt2006-08-031-3/+7
* move #include <stdio.h> out of includes.hstevesk2006-08-011-1/+2
* move #include <sys/param.h> out of includes.hstevesk2006-07-261-1/+3
* move #include <string.h> out of includes.hstevesk2006-07-221-1/+3
* Put $OpenBSD$ tags back (as comments) to replace the RCSID()s thatdjm2006-03-251-0/+1
* RCSID() can diederaadt2006-03-191-1/+0
* remove hardcoded hash lengths in key exchange code, allowingdjm2005-11-041-10/+10
* split kex into client and server code, no need to linkmarkus2003-02-161-0/+186