summaryrefslogtreecommitdiffstats
path: root/sshbuf-getput-basic.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-09-20upstream: Add sshd_config CASignatureAlgorithms option to allowdjm@openbsd.org5-9/+45
control over which signature algorithms a CA may use when signing certificates. In particular, this allows a sshd to ban certificates signed with RSA/SHA1. ok markus@ OpenBSD-Commit-ID: b05c86ef8b52b913ed48d54a9b9c1a7714d96bac
2018-09-20upstream: Make "ssh-add -q" do what it says on the tin: silencedjm@openbsd.org1-23/+39
output from successful operations. Based on patch from Thijs van Dijk; ok dtucker@ deraadt@ OpenBSD-Commit-ID: c4f754ecc055c10af166116ce7515104aa8522e1
2018-09-20upstream: When choosing a prime from the moduli file, avoidmillert@openbsd.org1-6/+8
re-using the linenum variable for something that is not a line number to avoid the confusion that resulted in the bug in rev. 1.64. This also lets us pass the actual linenum to parse_prime() so the error messages include the correct line number. OK markus@ some time ago. OpenBSD-Commit-ID: 4d8e5d3e924d6e8eb70053e3defa23c151a00084
2018-09-15Fix openssl-1.1 fallout for --without-openssl.Darren Tucker1-0/+4
ok djm@
2018-09-15add futex(2) syscall to seccomp sandboxDamien Miller1-0/+3
Apparently needed for some glibc/openssl combinations. Patch from Arkadiusz Miƛkiewicz