Sha256: f091aaabf847797bd4570d6e24c08af01dd7ceaee3016196a8c552ddc5f7c7e0
Contents?: true
Size: 980 Bytes
Versions: 1
Compression:
Stored size: 980 Bytes
Contents
require 'openssl' module RESTinPeace class SSLConfigCreator def initialize(config, verify = :peer) @config = config @verify = verify end def faraday_options {client_cert: client_cert, client_key: client_key, ca_file: ca_cert_path, verify_mode: verify_mode} end def client_cert OpenSSL::X509::Certificate.new(open_file(client_cert_path)) end def client_cert_path path(@config[:ssl_cert_client]) end def client_key OpenSSL::PKey::RSA.new(open_file(client_key_path)) end def client_key_path path(@config[:ssl_key_client]) end def ca_cert_path path(@config[:ssl_ca]) end def verify_mode case @verify when :peer OpenSSL::SSL::VERIFY_PEER else raise "Unknown verify variant '#{@verify}'" end end private def open_file(file) File.open(file) end def path(file) File.join(file) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rest-in-peace-1.0.0 | lib/rest_in_peace/ssl_config_creator.rb |