From e7bd1d1a9a59e7af71b7f994dbea3697b70225f0 Mon Sep 17 00:00:00 2001 From: Kazuki Yamaguchi Date: Tue, 21 Jan 2025 02:47:06 +0900 Subject: [PATCH] [ruby/openssl] pkey/dh: do not skip test_params_ok? on LibreSSL https://github.com/ruby/openssl/commit/cd91cef590 --- test/openssl/test_pkey_dh.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/openssl/test_pkey_dh.rb b/test/openssl/test_pkey_dh.rb index d32ffaf6b1..45911968e2 100644 --- a/test/openssl/test_pkey_dh.rb +++ b/test/openssl/test_pkey_dh.rb @@ -111,7 +111,7 @@ class OpenSSL::TestPKeyDH < OpenSSL::PKeyTestCase # applying the following commits in OpenSSL 1.1.1d to make `DH_check` # function pass the RFC 7919 FFDHE group texts. # https://github.com/openssl/openssl/pull/9435 - unless openssl?(1, 1, 1, 4) + if openssl? && !openssl?(1, 1, 1, 4) pend 'DH check for RFC 7919 FFDHE group texts is not implemented' end