Class: Puma::MiniSSL::Context

Inherits:
Object
  • Object
show all
Defined in:
lib/puma/minissl.rb

Instance Attribute Summary collapse

Instance Attribute Details

#caObject

Returns the value of attribute ca.



125
126
127
# File 'lib/puma/minissl.rb', line 125

def ca
  @ca
end

#certObject

Returns the value of attribute cert.



124
125
126
# File 'lib/puma/minissl.rb', line 124

def cert
  @cert
end

#keyObject

non-jruby Context properties



123
124
125
# File 'lib/puma/minissl.rb', line 123

def key
  @key
end

#keystoreObject

jruby-specific Context properties: java uses a keystore and password pair rather than a cert/key pair



114
115
116
# File 'lib/puma/minissl.rb', line 114

def keystore
  @keystore
end

#keystore_passObject

Returns the value of attribute keystore_pass.



115
116
117
# File 'lib/puma/minissl.rb', line 115

def keystore_pass
  @keystore_pass
end

#verify_modeObject

Returns the value of attribute verify_mode.



110
111
112
# File 'lib/puma/minissl.rb', line 110

def verify_mode
  @verify_mode
end