2dd9870c | 24-Feb-2021 |
dtucker@openbsd.org |
upstream: Rename pubkeyacceptedkeytypes to pubkeyacceptedalgorithms in test to match change to config-dump output. OpenBSD-Regress-ID: 74c9a4ad50306be873d032819d5e55c24eb74d5d |
b9225c3a | 23-Feb-2021 |
dtucker@openbsd.org |
upstream: Put obsolete aliases for hostbasedalgorithms and pubkeyacceptedalgorithms after their current names so that the config-dump mode finds and uses the current names. Spotted by P
upstream: Put obsolete aliases for hostbasedalgorithms and pubkeyacceptedalgorithms after their current names so that the config-dump mode finds and uses the current names. Spotted by Phil Pennock. OpenBSD-Commit-ID: 5dd10e93cccfaff3aaaa09060c917adff04a9b15
show more ...
|
8b8b6054 | 23-Feb-2021 |
djm@openbsd.org |
upstream: lots more s/key types/signature algorithms/ mostly in HostbasedAcceptedAlgorithms and HostKeyAlgorithms; prompted by Jakub Jelen OpenBSD-Commit-ID: 3f719de4385b1a89e4323b2
upstream: lots more s/key types/signature algorithms/ mostly in HostbasedAcceptedAlgorithms and HostKeyAlgorithms; prompted by Jakub Jelen OpenBSD-Commit-ID: 3f719de4385b1a89e4323b2549c66aae050129cb
show more ...
|
0aeb508a | 23-Feb-2021 |
djm@openbsd.org |
upstream: Correct reference to signature algorithms as keys; from Jakub Jelen OpenBSD-Commit-ID: 36f7ecee86fc811aa0f8e21e7a872eee044b4be5 |
f186a020 | 23-Feb-2021 |
Darren Tucker |
Add a couple more test VMs. |
ffcdd3d9 | 21-Feb-2021 |
Darren Tucker |
Valgrind test: split and move up list. Since the valgrind test takes so long it approaches the limit allowed by github, move it to the head of the list so it's the first one started and
Valgrind test: split and move up list. Since the valgrind test takes so long it approaches the limit allowed by github, move it to the head of the list so it's the first one started and split the longest tests out into a second instance that runs concurrently with the first.
show more ...
|
c3b16367 | 22-Feb-2021 |
djm@openbsd.org |
upstream: warn when the user specifies a ForwardAgent path that does not exist and exit if ExitOnForwardFailure is set; bz3264 OpenBSD-Commit-ID: 72f7875865e723e464c71bf8692e8311069
upstream: warn when the user specifies a ForwardAgent path that does not exist and exit if ExitOnForwardFailure is set; bz3264 OpenBSD-Commit-ID: 72f7875865e723e464c71bf8692e83110699bf26
show more ...
|
5fcb0514 | 19-Feb-2021 |
Darren Tucker |
Disable rlimit sandbox, doesn't work with valgrind Only run regress tests, runing unit tests as well makes it run longer than allowed y github. |
bb0b9bf4 | 19-Feb-2021 |
Darren Tucker |
Upload valgrind logs on failure. |
ebb3b75e | 19-Feb-2021 |
Darren Tucker |
Rename "vm" to "os" in selfhosted to match c-cpp. Should make it easier to share code or maybe merge at some point. |
76c0be0f | 19-Feb-2021 |
Darren Tucker |
Upload regress failure logs in c-cpp too. |
8751b6c3 | 19-Feb-2021 |
Darren Tucker |
Comment out Solaris 64bit PAM build... until I can figure out why it's failing. |
e9f6d563 | 18-Feb-2021 |
Darren Tucker |
Actually run Valgrind tests. |
41d232e2 | 18-Feb-2021 |
Darren Tucker |
Add test against Valgrind. |
e6528d91 | 18-Feb-2021 |
Darren Tucker |
Add fbsd12 test target. |
6506cb27 | 17-Feb-2021 |
Darren Tucker |
Remove unused arg. |
93c31a62 | 17-Feb-2021 |
Darren Tucker |
Add DEBUG_SK to kitchensink builds. |
65085740 | 17-Feb-2021 |
Darren Tucker |
Add bbone test target (arm32). |
63238f5a | 17-Feb-2021 |
djm@openbsd.org |
upstream: Fix the hostkeys rotation extension documentation The documentation was lacking the needed want-reply field in the initial global request. https://github.com/openssh/o
upstream: Fix the hostkeys rotation extension documentation The documentation was lacking the needed want-reply field in the initial global request. https://github.com/openssh/openssh-portable/pull/218 by dbussink OpenBSD-Commit-ID: 051824fd78edf6d647a0b9ac011bf88e28775054
show more ...
|
34c5ef6e | 17-Feb-2021 |
djm@openbsd.org |
upstream: make names in function prototypes match those in definition from https://github.com/openssh/openssh-portable/pull/225 by ZenithalHourlyRate OpenBSD-Commit-ID: 7c736307
upstream: make names in function prototypes match those in definition from https://github.com/openssh/openssh-portable/pull/225 by ZenithalHourlyRate OpenBSD-Commit-ID: 7c736307bf3f2c7cb24d6f82f244eee959485acd
show more ...
|
88e3d4de | 17-Feb-2021 |
djm@openbsd.org |
upstream: unbreak SK_DEBUG builds from https://github.com/openssh/openssh-portable/pull/225 by ZenithalHourlyRate OpenBSD-Commit-ID: 28d7259ce1b04d025411464decfa2f1a097b43eb |
788cbc5b | 17-Feb-2021 |
djm@openbsd.org |
upstream: sftp-server: implement limits@openssh.com extension This is a simple extension that allows the server to clearly communicate transfer limits it is imposing so the client doesn'
upstream: sftp-server: implement limits@openssh.com extension This is a simple extension that allows the server to clearly communicate transfer limits it is imposing so the client doesn't have to guess, or force the user to manually tune. This is particularly useful when an attempt to use too large of a value causes the server to abort the connection. Patch from Mike Frysinger; ok dtucker@ OpenBSD-Commit-ID: f96293221e5aa24102d9bf30e4f4ef04d5f4fb51
show more ...
|
324449a6 | 17-Feb-2021 |
Damien Miller |
support OpenSSL 3.x cipher IV API change OpenSSL renamed the "get current CIPHER_CTX" IV operation in 3.x. This uses the new name if available. https://github.com/openssl/openss
support OpenSSL 3.x cipher IV API change OpenSSL renamed the "get current CIPHER_CTX" IV operation in 3.x. This uses the new name if available. https://github.com/openssl/openssl/issues/13411 bz#3238 ok dtucker@
show more ...
|
845fe981 | 17-Feb-2021 |
Damien Miller |
prefer login_getpwclass() to login_getclass() FreeBSD has login_getpwclass() that does some special magic for UID=0. Prefer this to login_getclass() as its easier to emulate the form
prefer login_getpwclass() to login_getclass() FreeBSD has login_getpwclass() that does some special magic for UID=0. Prefer this to login_getclass() as its easier to emulate the former with the latter. Based on FreeBSD PR 37416 via Ed Maste; ok dtucker@
show more ...
|
d0763c8d | 17-Feb-2021 |
Darren Tucker |
Fixing quoting for installing moduli on target guest. |