Class: Puma::MiniSSL::Context
- Inherits:
-
Object
- Object
- Puma::MiniSSL::Context
- Defined in:
- lib/puma/minissl.rb
Instance Attribute Summary collapse
-
#ca ⇒ Object
Returns the value of attribute ca.
-
#cert ⇒ Object
Returns the value of attribute cert.
-
#key ⇒ Object
non-jruby Context properties.
-
#keystore ⇒ Object
jruby-specific Context properties: java uses a keystore and password pair rather than a cert/key pair.
-
#keystore_pass ⇒ Object
Returns the value of attribute keystore_pass.
-
#no_tlsv1 ⇒ Object
Returns the value of attribute no_tlsv1.
-
#no_tlsv1== ⇒ Object
writeonly
disables TLSv1.
-
#no_tlsv1_1 ⇒ Object
Returns the value of attribute no_tlsv1_1.
-
#no_tlsv1_1== ⇒ Object
writeonly
disables TLSv1 and TLSv1.1.
-
#ssl_cipher_filter ⇒ Object
Returns the value of attribute ssl_cipher_filter.
-
#ssl_cipher_list ⇒ Object
Returns the value of attribute ssl_cipher_list.
-
#verification_flags ⇒ Object
Returns the value of attribute verification_flags.
-
#verify_mode ⇒ Object
Returns the value of attribute verify_mode.
Instance Method Summary collapse
- #check ⇒ Object
-
#initialize ⇒ Context
constructor
A new instance of Context.
Constructor Details
#initialize ⇒ Context
Returns a new instance of Context.
208 209 210 211 |
# File 'lib/puma/minissl.rb', line 208 def initialize @no_tlsv1 = false @no_tlsv1_1 = false end |
Instance Attribute Details
#ca ⇒ Object
Returns the value of attribute ca.
232 233 234 |
# File 'lib/puma/minissl.rb', line 232 def ca @ca end |
#cert ⇒ Object
Returns the value of attribute cert.
231 232 233 |
# File 'lib/puma/minissl.rb', line 231 def cert @cert end |
#key ⇒ Object
non-jruby Context properties
230 231 232 |
# File 'lib/puma/minissl.rb', line 230 def key @key end |
#keystore ⇒ Object
jruby-specific Context properties: java uses a keystore and password pair rather than a cert/key pair
215 216 217 |
# File 'lib/puma/minissl.rb', line 215 def keystore @keystore end |
#keystore_pass ⇒ Object
Returns the value of attribute keystore_pass.
216 217 218 |
# File 'lib/puma/minissl.rb', line 216 def keystore_pass @keystore_pass end |
#no_tlsv1 ⇒ Object
Returns the value of attribute no_tlsv1.
206 207 208 |
# File 'lib/puma/minissl.rb', line 206 def no_tlsv1 @no_tlsv1 end |
#no_tlsv1==(value) ⇒ Object (writeonly)
disables TLSv1
259 260 261 262 |
# File 'lib/puma/minissl.rb', line 259 def no_tlsv1=(tlsv1) raise ArgumentError, "Invalid value of no_tlsv1=" unless ['true', 'false', true, false].include?(tlsv1) @no_tlsv1 = tlsv1 end |
#no_tlsv1_1 ⇒ Object
Returns the value of attribute no_tlsv1_1.
206 207 208 |
# File 'lib/puma/minissl.rb', line 206 def no_tlsv1_1 @no_tlsv1_1 end |
#no_tlsv1_1==(value) ⇒ Object (writeonly)
disables TLSv1 and TLSv1.1. Overrides ‘#no_tlsv1=`
266 267 268 269 |
# File 'lib/puma/minissl.rb', line 266 def no_tlsv1_1=(tlsv1_1) raise ArgumentError, "Invalid value of no_tlsv1_1=" unless ['true', 'false', true, false].include?(tlsv1_1) @no_tlsv1_1 = tlsv1_1 end |
#ssl_cipher_filter ⇒ Object
Returns the value of attribute ssl_cipher_filter.
233 234 235 |
# File 'lib/puma/minissl.rb', line 233 def ssl_cipher_filter @ssl_cipher_filter end |
#ssl_cipher_list ⇒ Object
Returns the value of attribute ssl_cipher_list.
217 218 219 |
# File 'lib/puma/minissl.rb', line 217 def ssl_cipher_list @ssl_cipher_list end |
#verification_flags ⇒ Object
Returns the value of attribute verification_flags.
234 235 236 |
# File 'lib/puma/minissl.rb', line 234 def verification_flags @verification_flags end |
#verify_mode ⇒ Object
Returns the value of attribute verify_mode.
205 206 207 |
# File 'lib/puma/minissl.rb', line 205 def verify_mode @verify_mode end |
Instance Method Details
#check ⇒ Object
224 225 226 |
# File 'lib/puma/minissl.rb', line 224 def check raise "Keystore not configured" unless @keystore end |