summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/monitor.c
AgeCommit message (Expand)Author
2020-03-13spelling errors in comments; no code changeDamien Miller
2020-02-26change explicit_bzero();free() to freezero()Jonathan Gray
2020-02-06Replace "security key" with "authenticator" in program messages.Christian Weisgerber
2020-01-23Replace all calls to signal(2) with a wrapper around sigaction(2).Darren Tucker
2019-12-15allow security keys to act as host keys as well as user keys.Damien Miller
2019-11-25redundant testDamien Miller
2019-11-25add a "no-touch-required" option for authorized_keys and a similarDamien Miller
2019-11-25Add a sshd_config PubkeyAuthOptions directiveDamien Miller
2019-11-25Add new structure for signature optionsDamien Miller
2019-11-19a little more information from the monitor when signatureDamien Miller
2019-10-31Refactor signing - use sshkey_sign for everything, including the newDamien Miller
2019-10-07reversed test yielded incorrect debug messageDamien Miller
2019-06-28When system calls indicate an error they return -1, not some arbitraryTheo de Raadt
2019-01-21merge kexkem[cs] into kexgenDamien Miller
2019-01-21use KEM API for vanilla ECDHDamien Miller
2019-01-21use KEM API for vanilla DH KEXDamien Miller
2019-01-21use KEM API for vanilla c25519 KEXDamien Miller
2019-01-21Add support for a PQC KEX/KEM: sntrup4591761x25519-sha512@tinyssh.orgDamien Miller
2019-01-19remove last references to active_stateDamien Miller
2019-01-19convert monitor.c to new packet APIDamien Miller
2019-01-19convert auth.c to new packet APIDamien Miller
2019-01-19begin landing remaining refactoring of packet parsing API, startedDamien Miller
2018-11-16fix bug in HostbasedAcceptedKeyTypes and PubkeyAcceptedKeyTypes options.Damien Miller
2018-09-13hold our collective noses and use the openssl-1.1.x API in OpenSSH;Damien Miller
2018-07-20remove unused zlib.hDamien Miller
2018-07-11remove legacy key emulation layer; ok djm@Markus Friedl
2018-07-10kerberos/gssapi fixes for buffer removalDamien Miller
2018-07-09sshd: switch monitor to sshbuf API; lots of help & ok djm@Markus Friedl
2018-07-09sshd: switch authentication to sshbuf API; ok djm@Markus Friedl
2018-07-09sshd: switch loginmsg to sshbuf API; ok djm@Markus Friedl
2018-03-03switch over to the new authorized_keys options API and remove theDamien Miller
2018-02-05Add a couple of non-negativity checks to avoid close(-1).Theo Buehler
2018-01-23Drop compatibility hacks for some ancient SSH implementations, includingDamien Miller
2017-12-21revert stricter key type / signature type checking in userauth path;Damien Miller
2017-12-18pass negotiated signing algorithm though to sshkey_verify() andDamien Miller
2017-10-05replace statically-sized arrays in ServerOptions with dynamic onesDamien Miller
2017-10-02Fix PermitOpen crash; spotted by benno@, ok dtucker@ deraadt@Damien Miller
2017-09-12refactor channels.cDamien Miller
2017-06-24refactor authentication loggingDamien Miller
2017-05-31use SO_ZEROIZE for privsep communication (if available)Markus Friedl
2017-05-31clear session keys from memory; ok djm@Markus Friedl
2017-05-30switch auth2-pubkey.c to modern APIs; with & ok djm@Markus Friedl
2017-05-30switch from Key typedef with struct sshkey; ok djm@Markus Friedl
2017-02-03use ssh_packet_set_log_preamble() to include connection usernameDamien Miller
2016-09-28Remove support for pre-authentication compression. Doing compressionDamien Miller
2016-09-05enforce expected request flow for GSSAPI calls; thanks to Jakub JelenDamien Miller
2016-08-30restrict monitor auth calls to be allowed only when theirDamien Miller
2016-08-19remove UseLogin option and support for having /bin/login manageDamien Miller
2016-08-13remove ssh1 server code; ok djm@Markus Friedl
2016-07-22move debug("%p", key) to before key is free'd; probable undefinedDamien Miller