diff options
author | Matt Caswell <matt@openssl.org> | 2019-08-28 15:31:39 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2019-08-29 12:07:30 +0200 |
commit | 2d9007587c5072a513c84f22db7be55767b4c63d (patch) | |
tree | 2011b7945ae575cce22c7d8bcff4d31862e3bd1d /test | |
parent | Fix no-des (diff) | |
download | openssl-2d9007587c5072a513c84f22db7be55767b4c63d.tar.xz openssl-2d9007587c5072a513c84f22db7be55767b4c63d.zip |
Fix no-ec
A test in sslapitest.c was failing in a no-ec build because we were using
an EC based ciphersuite. That particular test doesn't require EC
specifically, so we swap to a non EC based ciphersuite.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9716)
Diffstat (limited to 'test')
-rw-r--r-- | test/sslapitest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sslapitest.c b/test/sslapitest.c index 2066448926..4b510eb3f7 100644 --- a/test/sslapitest.c +++ b/test/sslapitest.c @@ -3937,11 +3937,11 @@ static int test_tls13_ciphersuite(int idx) break; case 2: set_at_ctx = 1; - t12_cipher = TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256; + t12_cipher = TLS1_TXT_RSA_WITH_AES_128_SHA256; break; case 3: set_at_ssl = 1; - t12_cipher = TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256; + t12_cipher = TLS1_TXT_RSA_WITH_AES_128_SHA256; break; } |