diff options
author | Kazuki Yamaguchi <[email protected]> | 2025-01-21 02:47:06 +0900 |
---|---|---|
committer | git <[email protected]> | 2025-01-21 18:14:12 +0000 |
commit | e7bd1d1a9a59e7af71b7f994dbea3697b70225f0 (patch) | |
tree | 643c4a8ee167cef65af44c6344094e2a6c16b3f6 | |
parent | be6644831146dcdbb1daeb124bcdda65e93c5201 (diff) |
[ruby/openssl] pkey/dh: do not skip test_params_ok? on LibreSSL
https://github.com/ruby/openssl/commit/cd91cef590
-rw-r--r-- | test/openssl/test_pkey_dh.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |