summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-08-22 10:42:08 +0100
committerMatt Caswell <matt@openssl.org>2016-08-22 13:52:02 +0100
commitfe34735c194b9d81dd84e89bbfcfc67c90aa99b3 (patch)
tree2806488db2947bbc03aeaac7a746f0549d8c0ff6 /test
parent099e2968ed3c7d256cda048995626664082b1b30 (diff)
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 <levitte@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/dtlstest.c2
1 files changed, 1 insertions, 1 deletions
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");
}