From 5c9ce7b3cbac612684b388f4b403b74f685aef8b Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Thu, 20 Dec 2007 16:27:14 +0000 Subject: * ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLContext.build): enable CRL checking on default cert store. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14372 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/openssl/lib/openssl/ssl.rb | 3 +++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 68cdd98af..f2352eca8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Dec 21 01:21:49 2007 GOTOU Yuuzou + + * ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLContext.build): + enable CRL checking by default. + Fri Dec 21 01:20:56 2007 GOTOU Yuuzou * lib/net/http.rb (Net::HTTP#connect): use diff --git a/ext/openssl/lib/openssl/ssl.rb b/ext/openssl/lib/openssl/ssl.rb index 3a4735ff7..71726801c 100644 --- a/ext/openssl/lib/openssl/ssl.rb +++ b/ext/openssl/lib/openssl/ssl.rb @@ -37,6 +37,9 @@ module OpenSSL unless ctx.ca_file or ctx.ca_path or ctx.cert_store or ctx.verify_callback ctx.cert_store = OpenSSL::X509::Store.new + if defined?(OpenSSL::X509::V_FLAG_CRL_CHECK_ALL) + ctx.cert_store.flags = OpenSSL::X509::V_FLAG_CRL_CHECK_ALL + end ctx.cert_store.set_default_paths end end -- cgit