class OpenSSL::SSL::SSLContext
TODO(sissel): require “openssl” takes ages from the logstash jar TODO(sissel): monkeypatch Kernel.require
to apply this monkeypatch only after a 'require “openssl” has occurred.
Public Instance Methods
ca_file=(arg)
click to toggle source
# File lib/logstash/JRUBY-6970-openssl.rb, line 9 def ca_file=(arg) if arg =~ /^jar:file:\// return ca_file_JRUBY_6970=(arg.gsub(/^jar:/, "")) end return ca_file_JRUBY_6970=(arg) end
Also aliased as: ca_file_JRUBY_6970=
ca_path=(arg)
click to toggle source
# File lib/logstash/JRUBY-6970-openssl.rb, line 16 def ca_path=(arg) if arg =~ /^jar:file:\// return ca_path_JRUBY_6970=(arg.gsub(/^jar:/, "")) end return ca_path_JRUBY_6970=(arg) end
Also aliased as: ca_path_JRUBY_6970=