summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Expand)Author
2021-01-31Set linesize returned by getline to zero when freeing and NULLing theDarren Tucker
2021-01-29fix the values of enum sock_typeDamien Miller
2021-01-29give typedef'd struct a struct name; makes the fuzzer I'm writing a bitDamien Miller
2021-01-27fix leak: was double allocating kex->session_id bufferDamien Miller
2021-01-27this needs kex.h nowDamien Miller
2021-01-27make ssh->kex->session_id a sshbuf instead of u_char*/size_t andDamien Miller
2021-01-27remove global variable used to stash compat flags and use theDamien Miller
2021-01-27Logical not bitwise or. ok djm@Darren Tucker
2021-01-26move HostbasedAcceptedAlgorithms to the right place in alphabetical orderChristian Weisgerber
2021-01-26Remove unused variables leftover from refactoring. ok djm@Darren Tucker
2021-01-26Rename HostbasedKeyTypes (ssh) and HostbasedAcceptedKeyTypes (sshd) toDarren Tucker
2021-01-26refactor key constraint parsing in ssh-agentDamien Miller
2021-01-26more ssh-agent refactoringDamien Miller
2021-01-26make struct hostkeys public; I have no idea why I made it opaqueDamien Miller
2021-01-26move check_host_cert() from sshconnect,c to sshkey.c and refactorDamien Miller
2021-01-26use recallocarray to allocate the agent sockets table; also clearDamien Miller
2021-01-26factor out common code in the agent clientDamien Miller
2021-01-25make ssh hostbased authentication send the signature algorithm inDamien Miller
2021-01-22PubkeyAcceptedKeyTypes->PubkeyAcceptedAlgorithms here too.Darren Tucker
2021-01-22Rename PubkeyAcceptedKeyTypes keyword to PubkeyAcceptedAlgorithms.Darren Tucker
2021-01-15Make output buffer larger to prevent potential truncation warnings fromDarren Tucker
2021-01-15Change types in convtime() unit test to int to match change its new type.Darren Tucker
2021-01-15In waitfd(), when poll returns early we are subtracting the elapsed timeDarren Tucker
2021-01-14Minor grammatical correction.rob
2021-01-11Correct spelling of persourcenetblocksize in config-dump mode.Darren Tucker
2021-01-11Change convtime() from returning long to returning int. On platformsDarren Tucker
2021-01-09add a comma to previous;Jason McIntyre
2021-01-09Add PerSourceMaxStartups and PerSourceNetBlockSize options which provideDarren Tucker
2021-01-09Move address handling functions out into their own file in order to reuseDarren Tucker
2021-01-08make CheckHostIP default to 'no'. It doesn't provide any perceptibleDamien Miller
2021-01-08If a signature operation on a FIDO key fails with a "incorrect PIN"Damien Miller
2021-01-08don't try to use timespeccmp(3) directly as a qsort(3) comparisonDamien Miller
2021-01-08Update the sntrup761 creation script and generated code:Darren Tucker
2021-01-08mention that DisableForwarding is valid in a sshd_config Match blockDamien Miller
2021-01-04estructure sntrup761.sh to process all files in a single list, which willDarren Tucker
2021-01-03Prevent redefinition of `crypto_int32' error with gcc3.tobhe
2020-12-30Use int64_t for intermediate values in int32_MINMAX to prevent signedtobhe
2020-12-29Update/replace the experimental post-quantim hybrid key exchangeDamien Miller
2020-12-22tweak the description of KnownHostsCommand in ssh_conf.5, and addJason McIntyre
2020-12-22Remove lines accidentally left behind in the ProxyJump parsing fix r1.345.Theo Buehler
2020-12-22add a ssh_config KnownHostsCommand that allows the client to obtainDamien Miller
2020-12-22move subprocess() from auth.c to misc.cDamien Miller
2020-12-21Remove the pre-standardization cipher rijndael-cbc@lysator.liu.se.Darren Tucker
2020-12-21properly fix ProxyJump parsing; Thanks to tb@ for pointing out my errorDamien Miller
2020-12-20plumb ssh_conn_info through to sshconnect.c; feedback/ok markus@Damien Miller
2020-12-20allow UserKnownHostsFile=none; feedback and ok markus@Damien Miller
2020-12-20load_hostkeys()/hostkeys_foreach() variants for FILE*Damien Miller
2020-12-19Print client kem key with correct length.tobhe
2020-12-17fix possible error("%s", NULL) on error pathsDamien Miller
2020-12-17refactor client percent_expand() argument passing; consolidate theDamien Miller