Feature #9758 ยป 0001-Expose-SSLContext-extra_chain_cert-in-Net-HTTP.patch
lib/net/http.rb | ||
---|---|---|
:@cert,
|
||
:@cert_store,
|
||
:@ciphers,
|
||
:@extra_chain_cert,
|
||
:@key,
|
||
:@ssl_timeout,
|
||
:@ssl_version,
|
||
... | ... | |
:cert,
|
||
:cert_store,
|
||
:ciphers,
|
||
:extra_chain_cert
|
||
:key,
|
||
:ssl_timeout,
|
||
:ssl_version,
|
||
... | ... | |
# Sets the available ciphers. See OpenSSL::SSL::SSLContext#ciphers=
|
||
attr_accessor :ciphers
|
||
# Sets the extra X509 certificates to be added to the certificate chain.
|
||
# See OpenSSL::SSL::SSLContext#extra_chain_cert=
|
||
attr_accessor :extra_chain_cert
|
||
# Sets an OpenSSL::PKey::RSA or OpenSSL::PKey::DSA object.
|
||
# (This method is appeared in Michal Rokos's OpenSSL extension.)
|
||
attr_accessor :key
|