Age | Commit message (Expand) | Author |
2023-02-21 | fseek to end of known_hosts before writing to it. POSIX and ANSI C | Darren Tucker |
2023-02-09 | Ensure that there is a terminating newline when adding a new entry | Darren Tucker |
2022-01-06 | piece of UpdateHostkeys client strictification: when updating known_hosts | Damien Miller |
2021-10-02 | Dynamically allocate encoded HashKnownHosts and free as appropriate. | Darren Tucker |
2021-07-05 | Order includes as per style(9). Portable already has these so this | Darren Tucker |
2021-04-03 | typos in comments; GHPR#180 from Ville Skyttä | Damien Miller |
2021-01-26 | make struct hostkeys public; I have no idea why I made it opaque | Damien Miller |
2021-01-26 | move check_host_cert() from sshconnect,c to sshkey.c and refactor | Damien Miller |
2020-12-20 | load_hostkeys()/hostkeys_foreach() variants for FILE* | Damien Miller |
2020-10-18 | use the new variant log macros instead of prepending __func__ and | Damien Miller |
2020-10-11 | UpdateHostkeys: better CheckHostIP handling | Damien Miller |
2020-10-07 | Fix UpdateHostkeys/HashKnownHosts/CheckHostIP bug | Damien Miller |
2020-10-04 | when ordering host key algorithms in the client, consider the ECDSA | Damien Miller |
2020-06-26 | avoid spurious error message when ssh-keygen creates files | Damien Miller |
2020-06-26 | Defer creation of ~/.ssh by ssh(1) until we attempt to write to it so we | Darren Tucker |
2020-05-13 | when ordering the hostkey algorithms to request from a server, | Damien Miller |
2020-03-06 | fix possible null-deref in check_key_not_revoked; ok djm | Markus Friedl |
2020-02-26 | change explicit_bzero();free() to freezero() | Jonathan Gray |
2020-01-25 | allow UpdateKnownHosts=yes to function when multiple known_hosts files | Damien Miller |
2019-07-07 | Remove some set but never used variables. ok daraadt@ | Darren Tucker |
2019-06-28 | oops, from asou | Theo de Raadt |
2019-06-27 | Some asprintf() calls were checked < 0, rather than the precise == -1. | Theo de Raadt |
2018-07-16 | memleaks; found by valgrind | Damien Miller |
2018-06-06 | switch config file parsing to getline(3) as this avoids static limits | Markus Friedl |
2017-05-31 | Switch to recallocarray() for a few operations. Both growth and shrinkage | Theo de Raadt |
2017-04-30 | remove KEY_RSA1 | Damien Miller |
2017-04-30 | unifdef WITH_SSH1 | Damien Miller |
2017-03-10 | ensure hostname is lower-case before hashing it; bz#2591 reported by | Damien Miller |
2016-09-17 | replace two arc4random loops with arc4random_buf | Ted Unangst |
2015-05-04 | Remove pattern length argument from match_pattern_list(), | Damien Miller |
2015-03-31 | downgrade error() for known_hosts parse errors to debug() to quiet | Damien Miller |
2015-02-16 | Refactor hostkeys_foreach() and dependent code | Damien Miller |
2015-01-26 | properly restore umask | Damien Miller |
2015-01-26 | Host key rotation support. | Damien Miller |
2015-01-18 | convert load_hostkeys() (hostkey ordering and known_host | Damien Miller |
2015-01-18 | introduce hostkeys_foreach() to allow iteration over a | Damien Miller |
2015-01-15 | sync ssh-keysign, ssh-keygen and some dependencies to the new | Damien Miller |
2014-10-20 | whitespace | Damien Miller |
2014-06-24 | New key API: refactor key-related functions to be more library-like, | Damien Miller |
2014-04-29 | make compiling against OpenSSL optional (make OPENSSL=no); | Markus Friedl |
2014-01-31 | replace most bzero with explicit_bzero, except a few that cna be memset | Ted Unangst |
2014-01-27 | replace openssl HMAC with an implementation based on our ssh_digest_* | Markus Friedl |
2014-01-09 | Introduce digest API and use it to perform all hashing operations | Damien Miller |
2013-07-12 | fix pointer-signedness warnings from clang/llvm-3.3; "seems nice" deraadt@ | Damien Miller |
2013-05-17 | bye, bye xfree(); ok markus@ | Damien Miller |
2010-12-04 | fix fd leak; spotted and ok dtucker@ | Damien Miller |
2010-11-29 | automatically order the hostkeys requested by the client based on | Damien Miller |
2010-03-04 | Add a TrustedUserCAKeys option to sshd_config to specify CA keys that | Damien Miller |
2010-02-26 | Add support for certificate key types for users and hosts. | Damien Miller |
2009-10-11 | mention the host name that we are looking for in check_host_in_hostfile() | Damien Miller |