Class: Puma::MiniSSL::Context

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeContext

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

#caObject

Returns the value of attribute ca.



232
233
234
# File 'lib/puma/minissl.rb', line 232

def ca
  @ca
end

#certObject

Returns the value of attribute cert.



231
232
233
# File 'lib/puma/minissl.rb', line 231

def cert
  @cert
end

#keyObject

non-jruby Context properties



230
231
232
# File 'lib/puma/minissl.rb', line 230

def key
  @key
end

#keystoreObject

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_passObject

Returns the value of attribute keystore_pass.



216
217
218
# File 'lib/puma/minissl.rb', line 216

def keystore_pass
  @keystore_pass
end

#no_tlsv1Object

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_1Object

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_filterObject

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_listObject

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_flagsObject

Returns the value of attribute verification_flags.



234
235
236
# File 'lib/puma/minissl.rb', line 234

def verification_flags
  @verification_flags
end

#verify_modeObject

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

#checkObject



224
225
226
# File 'lib/puma/minissl.rb', line 224

def check
  raise "Keystore not configured" unless @keystore
end