From dd0d04ae8d064c69f6bd7b5af107f8cf85f9eccf Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 10 Sep 2015 14:45:47 +0200 Subject: [PATCH] torture: Enable old cipher and kex algos in sshd We need to test them, so enable them in the sshd. Signed-off-by: Andreas Schneider --- tests/torture.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/torture.c b/tests/torture.c index 0be7e1b5..deaa9a7f 100644 --- a/tests/torture.c +++ b/tests/torture.c @@ -909,6 +909,9 @@ static void torture_setup_create_sshd_config(void **state) "UsePrivilegeSeparation no\n" "StrictModes no\n" "\n" + "Ciphers +3des-cbc,aes128-cbc,aes192-cbc,aes256-cbc,blowfish-cbc\n" + "KexAlgorithms +diffie-hellman-group1-sha1\n" + "\n" "AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES\n" "AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT\n" "AcceptEnv LC_IDENTIFICATION LC_ALL LC_LIBSSH\n"