From 44de453b227115c0d60926302901ae0869ef5d1e Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Mon, 4 May 2020 13:02:26 +0200 Subject: tests: Enable all CASignatureAlgorithms as SHA1 certificates are now disabled in OpenSSH 8.2p1 This option is unknown to older OpenSSH versions (for example CentOS 7 with OpenSSH 7.4) so we can not add it everywhere. Signed-off-by: Jakub Jelen Reviewed-by: Andreas Schneider --- tests/torture.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests') diff --git a/tests/torture.c b/tests/torture.c index 64eb6f8b..1c64f6de 100644 --- a/tests/torture.c +++ b/tests/torture.c @@ -747,6 +747,9 @@ static void torture_setup_create_sshd_config(void **state, bool pam) "\n" /* add all supported algorithms */ "HostKeyAlgorithms " OPENSSH_KEYS "\n" +#if OPENSSH_VERSION_MAJOR == 8 && OPENSSH_VERSION_MINOR >= 2 + "CASignatureAlgorithms " OPENSSH_KEYS "\n" +#endif "Ciphers " OPENSSH_CIPHERS "\n" "KexAlgorithms " OPENSSH_KEX "\n" "MACs " OPENSSH_MACS "\n" -- cgit v1.2.3