summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Expand)Author
2019-01-27add -T to usage();Jason McIntyre
2019-01-26check in scp client that filenames sent during remote->local directoryDamien Miller
2019-01-26make ssh-keyscan return a non-zero exit status if it finds no keys.Damien Miller
2019-01-26avoid double free, instead flowing through a free(NULL)Theo de Raadt
2019-01-25I am retiring my old email address; replace it with my OpenBSD one.Todd C. Miller
2019-01-24Accept the host key fingerprint as a synonym for "yes" when acceptingDarren Tucker
2019-01-24Have progressmeter force an update at the beginning and end of eachDarren Tucker
2019-01-24Fix a crash on long lines when switching to another file byTodd C. Miller
2019-01-24Check for both EAGAIN and EWOULDBLOCK. This is a no-op in OpenBSDDarren Tucker
2019-01-24Always initialize 2nd arg to hpdelim2. It populates that *ONLY IF*Darren Tucker
2019-01-23rework grep_open to be more careful about directories.Ted Unangst
2019-01-23Remove support for obsolete host/port syntax.Darren Tucker
2019-01-23Remove duplicate word. bz#2958, patch from jjelen at redhat.comDarren Tucker
2019-01-23Remove 3 as a guess for possible generator during moduli generation.Darren Tucker
2019-01-23Sanitize scp filenames via snmprintf. To do this we move theDarren Tucker
2019-01-23allow auto-incrementing certificate serial number for certs signedDamien Miller
2019-01-23move a bunch of global flag variables to main(); make the rest staticDamien Miller
2019-01-23switch mainloop from select(2) to poll(2); ok deraadt@Damien Miller
2019-01-23pass most arguments to the KEX hash functions as sshbuf ratherDamien Miller
2019-01-22backoff reading messages from active connections when the input bufferDamien Miller
2019-01-22add -m to usage(); reminded by jmc@Damien Miller
2019-01-22Correct some bugs in PKCS#11 token PIN handling at initial login,Damien Miller
2019-01-22Support keys that set the CKA_ALWAYS_AUTHENTICATE by requring aDamien Miller
2019-01-22Mention that configuration for the destination host is not appliedDamien Miller
2019-01-22Include -m in the synopsis for a few more commands that support itDamien Miller
2019-01-22print the full pubkey being attempted at loglevel >= debug2; bz2939Damien Miller
2019-01-22clarify: ssh-keygen -e only writes public keys, never privateDamien Miller
2019-01-22mention the new vs. old key formats in the introduction and give someDamien Miller
2019-01-22tweak previous;Jason McIntyre
2019-01-21Forgot to add -J to the synopsis.Theo Buehler
2019-01-21Add a -J option as a shortcut for -o Proxyjump= to scp(1) and sftp(1)Theo Buehler
2019-01-21switch sntrup implementation source from supercop to libpqcrypto;Damien Miller
2019-01-21add "-v" flags to ssh-add and ssh-pkcs11-helper to turn up debugDamien Miller
2019-01-21fix reversed arguments to kex_load_hostkey(); manifested as errors inDamien Miller
2019-01-21forgot to cvs add this file in previous series of commits; grrrDamien Miller
2019-01-21nothing shall escape this purgeDamien Miller
2019-01-21rename kex->kem_client_pub -> kex->client_pub now that KEM has been renamedDamien Miller
2019-01-21merge kexkem[cs] into kexgenDamien Miller
2019-01-21pass values used in KEX hash computation as sshbuf rather thanDamien Miller
2019-01-21remove kex_derive_keys_bn wrapper; no unused since the DH-like KEXDamien 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-21factor out kex_verify_hostkey() - again, duplicated almost exactlyDamien Miller
2019-01-21factor out kex_load_hostkey() - this is duplicated in both the client andDamien Miller
2019-01-21factor out kex_dh_compute_key() - it's shared between plain DH KEX andDamien Miller
2019-01-21factor out DH keygen; it's identical between the client and the serverDamien Miller
2019-01-21save the derived session id in kex_derive_keys() rather than making eachDamien Miller
2019-01-21Make sshpkt_get_bignum2() allocate the bignum it is parsing ratherDamien Miller