Skip Menu |

This queue is for tickets about the Net-SSLeay CPAN distribution.

Report information
The Basics
Id: 95375
Status: resolved
Priority: 0/
Queue: Net-SSLeay

People
Owner: MIKEM [...] cpan.org
Requestors: and [...] gmx.li
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.58
Fixed in: 1.63



Subject: $Net::SSLeay::ssl_version support for TLSv1.1 and TLSv1.2
Hi, currently you can't select tlsv1.1 tlsv1.2 via $Net::SSLeay::ssl_version. Let's support it when requested for high level functions. --- a/lib/Net/SSLeay.pm 2014-05-03 00:00:00.000000000 +0000 +++ b/lib/Net/SSLeay.pm 2014-05-03 00:00:00.000000000 +0000 @@ -30,6 +30,8 @@ # 2 = insist on v2 SSL protocol # 3 = insist on v3 SSL # 10 = insist on TLSv1 +# 11 = insist on TLSv1.1 +# 12 = insist on TLSv1.2 # 0 or undef = guess (v23) # $Net::SSLeay::ssl_version = 0; # don't change here, use @@ -911,6 +913,20 @@ } elsif ($ssl_version == 3) { $ctx = CTX_v3_new(); } elsif ($ssl_version == 10) { $ctx = CTX_tlsv1_new(); } + elsif ($ssl_version == 11) { + unless (exists &Net::SSLeay::CTX_tlsv1_1_new) { + warn "ssl_version has been set to 11, but this version of OpenSSL has been compiled without TLSv1.1 support"; + return undef; + } + $ctx = CTX_tlsv1_1_new; + } + elsif ($ssl_version == 12) { + unless (exists &Net::SSLeay::CTX_tlsv1_2_new) { + warn "ssl_version has been set to 12, but this version of OpenSSL has been compiled without TLSv1.2 support"; + return undef; + } + $ctx = CTX_tlsv1_2_new; + } else { $ctx = CTX_new(); } return $ctx; }
This is in the latest release.