summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2025-10-05 19:38:47 +0900
committerKazuki Yamaguchi <k@rhe.jp>2025-10-06 16:55:14 +0900
commit7863389ad0e31bee853ba5c7399637edbead31a1 (patch)
tree433aa8963b6de6f322501eeb91921bb2742b6f66 /spec/ruby
parente6188c45e1114be3be4955971464f1b39d567d71 (diff)
[ruby/openssl] ssl: remove OpenSSL::X509::V_FLAG_CRL_CHECK_ALL from the default store
With OpenSSL 3.6.0, it causes nearly every certificate verification to fail with the message "certificate verify failed (unable to get certificate CRL)" because the CRLs are typically unavailable in the default store used by OpenSSL::SSL::SSLContext#set_params. OpenSSL::X509::V_FLAG_CRL_CHECK_ALL is a flag that extends the CRL checking to all certificates in the chain. In OpenSSL < 3.6.0, the flag alone has no effect, and OpenSSL::X509::V_FLAG_CRL_CHECK must also be set to enable CRL checking. In OpenSSL 3.6.0, OpenSSL::X509::V_FLAG_CRL_CHECK_ALL now implies OpenSSL::X509::V_FLAG_CRL_CHECK. This is inconsistent with the man page and may be fixed in a future OpenSSL 3.6.x release, but this flag is not needed and should not be set by default. Fixes https://github.com/ruby/openssl/issues/949 https://github.com/ruby/openssl/commit/e8481cd687
Diffstat (limited to 'spec/ruby')
0 files changed, 0 insertions, 0 deletions