From 9da01c1dfdb61eb2226a4b80da7396f518bd066c Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Feb 15 2018 15:08:47 +0000 Subject: Update to 2.055 - New upstream release 2.055 - Use SNI also if hostname was given all-uppercase - Utils::CERT_create: Don't add authority key for issuer since Chrome does not like this - Intercept: - Change behavior of code-based cache to better support synchronizing within multiprocess/threaded set-ups - Don't use counter for serial number but somehow base it on original certificate in order to avoid conflicts with reuse of serial numbers after restart - Better support platforms without IPv6 (CPAN RT#124431) - Spelling fixes in documentation (CPAN RT#124306) --- diff --git a/IO-Socket-SSL-2.054-use-system-default-SSL-version.patch b/IO-Socket-SSL-2.054-use-system-default-SSL-version.patch deleted file mode 100644 index c349079..0000000 --- a/IO-Socket-SSL-2.054-use-system-default-SSL-version.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- lib/IO/Socket/SSL.pm -+++ lib/IO/Socket/SSL.pm -@@ -116,7 +116,7 @@ my $algo2digest = do { - # global defaults - my %DEFAULT_SSL_ARGS = ( - SSL_check_crl => 0, -- SSL_version => 'SSLv23:!SSLv3:!SSLv2', # consider both SSL3.0 and SSL2.0 as broken -+ SSL_version => '', - SSL_verify_callback => undef, - SSL_verifycn_scheme => undef, # fallback cn verification - SSL_verifycn_publicsuffix => undef, # fallback default list verification -@@ -2267,7 +2267,7 @@ sub new { - - my $ssl_op = $DEFAULT_SSL_OP; - -- my $ver; -+ my $ver = ''; - for (split(/\s*:\s*/,$arg_hash->{SSL_version})) { - m{^(!?)(?:(SSL(?:v2|v3|v23|v2/3))|(TLSv1(?:_?[12])?))$}i - or croak("invalid SSL_version specified"); ---- lib/IO/Socket/SSL.pod -+++ lib/IO/Socket/SSL.pod -@@ -993,11 +993,12 @@ protocol to the specified version. - All values are case-insensitive. Instead of 'TLSv1_1' and 'TLSv1_2' one can - also use 'TLSv11' and 'TLSv12'. Support for 'TLSv1_1' and 'TLSv1_2' requires - recent versions of Net::SSLeay and openssl. -+The default SSL_version is defined by the underlying cryptographic library. - - Independent from the handshake format you can limit to set of accepted SSL - versions by adding !version separated by ':'. - --The default SSL_version is 'SSLv23:!SSLv3:!SSLv2' which means, that the -+For example, 'SSLv23:!SSLv3:!SSLv2' means that the - handshake format is compatible to SSL2.0 and higher, but that the successful - handshake is limited to TLS1.0 and higher, that is no SSL2.0 or SSL3.0 because - both of these versions have serious security issues and should not be used diff --git a/IO-Socket-SSL-2.055-use-system-default-SSL-version.patch b/IO-Socket-SSL-2.055-use-system-default-SSL-version.patch new file mode 100644 index 0000000..f47bb01 --- /dev/null +++ b/IO-Socket-SSL-2.055-use-system-default-SSL-version.patch @@ -0,0 +1,36 @@ +--- lib/IO/Socket/SSL.pm ++++ lib/IO/Socket/SSL.pm +@@ -116,7 +116,7 @@ my $algo2digest = do { + # global defaults + my %DEFAULT_SSL_ARGS = ( + SSL_check_crl => 0, +- SSL_version => 'SSLv23:!SSLv3:!SSLv2', # consider both SSL3.0 and SSL2.0 as broken ++ SSL_version => '', + SSL_verify_callback => undef, + SSL_verifycn_scheme => undef, # fallback cn verification + SSL_verifycn_publicsuffix => undef, # fallback default list verification +@@ -2269,7 +2269,7 @@ sub new { + + my $ssl_op = $DEFAULT_SSL_OP; + +- my $ver; ++ my $ver = ''; + for (split(/\s*:\s*/,$arg_hash->{SSL_version})) { + m{^(!?)(?:(SSL(?:v2|v3|v23|v2/3))|(TLSv1(?:_?[12])?))$}i + or croak("invalid SSL_version specified"); +--- lib/IO/Socket/SSL.pod ++++ lib/IO/Socket/SSL.pod +@@ -993,11 +993,12 @@ protocol to the specified version. + All values are case-insensitive. Instead of 'TLSv1_1' and 'TLSv1_2' one can + also use 'TLSv11' and 'TLSv12'. Support for 'TLSv1_1' and 'TLSv1_2' requires + recent versions of Net::SSLeay and openssl. ++The default SSL_version is defined by the underlying cryptographic library. + + Independent from the handshake format you can limit to set of accepted SSL + versions by adding !version separated by ':'. + +-The default SSL_version is 'SSLv23:!SSLv3:!SSLv2' which means, that the ++For example, 'SSLv23:!SSLv3:!SSLv2' means that the + handshake format is compatible to SSL2.0 and higher, but that the successful + handshake is limited to TLS1.0 and higher, that is no SSL2.0 or SSL3.0 because + both of these versions have serious security issues and should not be used diff --git a/perl-IO-Socket-SSL.spec b/perl-IO-Socket-SSL.spec index d10faff..7b2f718 100644 --- a/perl-IO-Socket-SSL.spec +++ b/perl-IO-Socket-SSL.spec @@ -1,12 +1,12 @@ Name: perl-IO-Socket-SSL -Version: 2.054 -Release: 2%{?dist} +Version: 2.055 +Release: 1%{?dist} Summary: Perl library for transparent SSL License: GPL+ or Artistic URL: http://search.cpan.org/dist/IO-Socket-SSL/ Source0: http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz Patch0: IO-Socket-SSL-2.054-use-system-default-cipher-list.patch -Patch1: IO-Socket-SSL-2.054-use-system-default-SSL-version.patch +Patch1: IO-Socket-SSL-2.055-use-system-default-SSL-version.patch BuildArch: noarch # Module Build BuildRequires: coreutils @@ -111,6 +111,20 @@ make test %{_mandir}/man3/IO::Socket::SSL::Utils.3* %changelog +* Thu Feb 15 2018 Paul Howarth - 2.055-1 +- Update to 2.055 + - Use SNI also if hostname was given all-uppercase + - Utils::CERT_create: Don't add authority key for issuer since Chrome does + not like this + - Intercept: + - Change behavior of code-based cache to better support synchronizing + within multiprocess/threaded set-ups + - Don't use counter for serial number but somehow base it on original + certificate in order to avoid conflicts with reuse of serial numbers + after restart + - Better support platforms without IPv6 (CPAN RT#124431) + - Spelling fixes in documentation (CPAN RT#124306) + * Thu Feb 08 2018 Fedora Release Engineering - 2.054-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild