[ruby/openssl] pkey/dh: do not skip test_params_ok? on LibreSSL

https://github.com/ruby/openssl/commit/cd91cef590
This commit is contained in:
Kazuki Yamaguchi 2025-01-21 02:47:06 +09:00 committed by git
parent be66448311
commit e7bd1d1a9a

View File

@ -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