Sha256: 3ebb18fbc1eb3a535928d59ae1ba5cbfc6de4d317325c07e65f79f1d06245faf

Contents?: true

Size: 1.89 KB

Versions: 155

Compression:

Stored size: 1.89 KB

Contents

#
# Fluentd
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.
#

module Fluent
  module PluginHelper
    module HttpServer
      module Compat
        # This class converts OpenSSL::SSL::SSLContext to Webrick SSL Config because webrick does not have interface to pass OpenSSL::SSL::SSLContext directory
        # https://github.com/ruby/webrick/blob/v1.6.0/lib/webrick/ssl.rb#L67-L88
        class SSLContextExtractor

          #
          # memo: https://github.com/ruby/webrick/blob/v1.6.0/lib/webrick/ssl.rb#L180-L205
          # @param ctx [OpenSSL::SSL::SSLContext]
          def self.extract(ctx)
            {
              SSLEnable: true,
              SSLPrivateKey: ctx.key,
              SSLCertificate: ctx.cert,
              SSLClientCA: ctx.client_ca,
              SSLExtraChainCert: ctx.extra_chain_cert,
              SSLCACertificateFile: ctx.ca_file,
              SSLCACertificatePath: ctx.ca_path,
              SSLCertificateStore: ctx.cert_store,
              SSLTmpDhCallback: ctx.tmp_dh_callback,
              SSLVerifyClient: ctx.verify_mode,
              SSLVerifyDepth: ctx.verify_depth,
              SSLVerifyCallback: ctx.verify_callback,
              SSLServerNameCallback: ctx.servername_cb,
              SSLTimeout: ctx.timeout,
              SSLOptions: ctx.options,
              SSLCiphers: ctx.ciphers,
            }
          end
        end
      end
    end
  end
end

Version data entries

155 entries across 155 versions & 7 rubygems

Version Path
fluent-plugin-nuopenlineage-light-0.1.0 vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.16.6-x86-mingw32 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.16.6-x64-mingw32 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.16.6-x64-mingw-ucrt lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.16.6 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.17.1-x86-mingw32 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.17.1-x64-mingw32 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.17.1-x64-mingw-ucrt lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.17.1 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluent-plugin-openlineage-light-0.1.4 vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluent-plugin-openlineage-light-0.1.3 vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluent-plugin-openlineage-0.1.0 vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.17.0-x86-mingw32 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.17.0-x64-mingw-ucrt lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.17.0-x64-mingw32 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.17.0 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.16.5-x64-mingw-ucrt lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.16.5-x86-mingw32 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.16.5-x64-mingw32 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb
fluentd-1.16.5 lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb