Class: Puma::MiniSSL::ContextBuilder
- Inherits:
-
Object
- Object
- Puma::MiniSSL::ContextBuilder
- Defined in:
- lib/puma/minissl/context_builder.rb
Instance Method Summary collapse
- #context ⇒ Object
-
#initialize(params, events) ⇒ ContextBuilder
constructor
A new instance of ContextBuilder.
Constructor Details
#initialize(params, events) ⇒ ContextBuilder
Returns a new instance of ContextBuilder.
4 5 6 7 8 9 10 |
# File 'lib/puma/minissl/context_builder.rb', line 4 def initialize(params, events) require 'puma/minissl' MiniSSL.check @params = params @events = events end |
Instance Method Details
#context ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/puma/minissl/context_builder.rb', line 12 def context ctx = MiniSSL::Context.new if defined?(JRUBY_VERSION) unless params['keystore'] events.error "Please specify the Java keystore via 'keystore='" end ctx.keystore = params['keystore'] unless params['keystore-pass'] events.error "Please specify the Java keystore password via 'keystore-pass='" end ctx.keystore_pass = params['keystore-pass'] ctx.ssl_cipher_list = params['ssl_cipher_list'] if params['ssl_cipher_list'] else unless params['key'] events.error "Please specify the SSL key via 'key='" end ctx.key = params['key'] unless params['cert'] events.error "Please specify the SSL cert via 'cert='" end ctx.cert = params['cert'] if ['peer', 'force_peer'].include?(params['verify_mode']) unless params['ca'] events.error "Please specify the SSL ca via 'ca='" end end ctx.ca = params['ca'] if params['ca'] ctx.ssl_cipher_filter = params['ssl_cipher_filter'] if params['ssl_cipher_filter'] end ctx.no_tlsv1 = true if params['no_tlsv1'] == 'true' ctx.no_tlsv1_1 = true if params['no_tlsv1_1'] == 'true' if params['verify_mode'] ctx.verify_mode = case params['verify_mode'] when "peer" MiniSSL::VERIFY_PEER when "force_peer" MiniSSL::VERIFY_PEER | MiniSSL::VERIFY_FAIL_IF_NO_PEER_CERT when "none" MiniSSL::VERIFY_NONE else events.error "Please specify a valid verify_mode=" MiniSSL::VERIFY_NONE end end ctx end |