aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorrhe <rhe@ruby-lang.org>2016-05-30 16:52:10 +0000
committerKazuki Yamaguchi <k@rhe.jp>2016-05-31 11:31:27 +0900
commit2293533fec90b4adc5368f2fd1ef0fec0832b2f4 (patch)
tree86d78a22548b105273054941c4a5d1daeabc1a5f /test
parent96707e91668d7b17aa222e8beb6f925c4b3a77f3 (diff)
downloadruby-openssl-2293533fec90b4adc5368f2fd1ef0fec0832b2f4.tar.gz
openssl: fix test failure on Fedora 23
* test/openssl/test_pair.rb (test_ecdh_curves): Avoid P-224. The FIPS patch from RHEL disables it. The curve has to be chosen from: { secp256k1, secp384r1, secp521r1, prime256v1 }. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55224 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/test_pair.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_pair.rb b/test/test_pair.rb
index b6b3b935..c8770690 100644
--- a/test/test_pair.rb
+++ b/test/test_pair.rb
@@ -425,7 +425,7 @@ module OpenSSL::TestPairM
ctx1 = OpenSSL::SSL::SSLContext.new
ctx1.ciphers = "ECDH"
- ctx1.ecdh_curves = "P-384:P-224"
+ ctx1.ecdh_curves = "P-384:P-521"
s1 = OpenSSL::SSL::SSLSocket.new(sock1, ctx1)
ctx2 = OpenSSL::SSL::SSLContext.new