Feature #2456

It is better to let user to select particular ssl protocol easily.

Added by liping bao about 2 years ago. Updated 10 months ago.

[ruby-core:27093]
Status:Open Start date:12/08/2009
Priority:Normal Due date:
Assignee:- % Done:

0%

Category:-
Target version:-

Description

For example, in https module, if the client want to use tls1 protocol compulsively, it is a little harder to do it.
With the following diff:
/usr/lib64/ruby/1.8/net/https.rb
120d119
<       flag = (flag ? true : false)
124c123
<         @ssl_context = OpenSSL::SSL::SSLContext.new
---
>         @ssl_context = flag == true ? OpenSSL::SSL::SSLContext.new : OpenSSL::SSL::SSLContext.new(flag)

User could select the protocol as wish such as:
http.use_ssl = :TLSv1 
instead of
http.use_ssl = true

History

Updated by Hiroshi Nakamura over 1 year ago

To administrator: please change the target project of this ticket to ... "Ruby"? or anywhere I can handle.

Also available in: Atom PDF