From fe34735c194b9d81dd84e89bbfcfc67c90aa99b3 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 22 Aug 2016 10:42:08 +0100 Subject: [PATCH] Choose a ciphersuite for testing that won't be affected by "no-*" options The previous ciphersuite broke in no-ec builds. Reviewed-by: Richard Levitte --- test/dtlstest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dtlstest.c b/test/dtlstest.c index 4d497af1af..fd6e2ab771 100644 --- a/test/dtlstest.c +++ b/test/dtlstest.c @@ -55,7 +55,7 @@ static int test_dtls_unprocessed(int testidx) return 0; } - if (!SSL_CTX_set_cipher_list(cctx, "ECDHE-RSA-AES256-SHA384")) { + if (!SSL_CTX_set_cipher_list(cctx, "AES128-SHA")) { printf("Failed setting cipher list\n"); } -- 2.34.1