- updated to 1.58
Always use size_t for strlen() return value, requested by Alexander Bluhm. t/external/20_cert_chain.t was missing from dist. Version number in META.yml was incorrect Improvements to test t/external/20_cert_chain.t to provoke following bug: Fixed crash due to SSL_get_peer_cert_chain incorrectly free'ing the chain after use. Fixed a problem when compiling against openssl where OPENSSL_NO_EC is set. 1.57 2014-01-09 Fixed remaining problems with test suite: pod coverage and kwalitee tests are only enabled with RELEASE_TESTING=1 1.56 2014-01-08 Fixed a typo in documentation of BEAST Attack, patched by gregor herrmann. Added LICENSE file copied form OpenSSL distribution to prevent complaints from various versions of kwalitee. Adjusted license: in META.yml to be 'openssl' Adds support for the basic operations necessary to support ECDH for PFS, e.g. EC_KEY_new_by_curve_name, EC_KEY_free and SSL_CTX_set_tmp_ecdh. Improvements to t/handle/external/50_external.t to handle the case when a test connection was not possible. Patched by Alexandr Ciornii. Added support for ALPN TLS extension. Patch from Lubomir Rintel. Tested with openssl-1.0.2-stable-SNAP-20131205. Fix an use-after-free error. Patch from Lubomir Rintel. Fixed a problem with Invalid comparison on OBJ_cmp result in t/local/36_verify.t. Contributed by paul. Added support for get_peer_cert_chain(). Patch by Markus Benning. Fixed a bug that could cause stack faults: mixed up PUTBACK with SPAGAIN in ssleay_RSA_generate_key_cb_invoke() OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=23
This commit is contained in:
parent
1ef0dae778
commit
9487789420
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8cd5f09722e07b4e436102cb3a4b93623d753c171665ca9752c3b39a62ea3a79
|
|
||||||
size 394657
|
|
3
Net-SSLeay-1.58.tar.gz
Normal file
3
Net-SSLeay-1.58.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0bdc50c19df545eb2f9e434458ee2b54e97b109315dafb476044b9039e783f56
|
||||||
|
size 399353
|
@ -1,3 +1,44 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Feb 9 13:34:34 UTC 2014 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 1.58
|
||||||
|
Always use size_t for strlen() return value, requested by Alexander Bluhm.
|
||||||
|
t/external/20_cert_chain.t was missing from dist.
|
||||||
|
Version number in META.yml was incorrect
|
||||||
|
Improvements to test t/external/20_cert_chain.t to provoke following bug:
|
||||||
|
Fixed crash due to SSL_get_peer_cert_chain incorrectly free'ing the chain
|
||||||
|
after use.
|
||||||
|
Fixed a problem when compiling against openssl where OPENSSL_NO_EC is set.
|
||||||
|
|
||||||
|
1.57 2014-01-09
|
||||||
|
Fixed remaining problems with test suite: pod coverage and kwalitee tests
|
||||||
|
are only enabled with RELEASE_TESTING=1
|
||||||
|
|
||||||
|
1.56 2014-01-08
|
||||||
|
Fixed a typo in documentation of BEAST Attack, patched by gregor
|
||||||
|
herrmann.
|
||||||
|
Added LICENSE file copied form OpenSSL distribution to prevent complaints
|
||||||
|
from various versions of kwalitee.
|
||||||
|
Adjusted license: in META.yml to be 'openssl'
|
||||||
|
Adds support for the basic operations necessary to support ECDH for PFS,
|
||||||
|
e.g. EC_KEY_new_by_curve_name, EC_KEY_free and SSL_CTX_set_tmp_ecdh.
|
||||||
|
Improvements to t/handle/external/50_external.t to handle the case when a
|
||||||
|
test connection was not possible. Patched by Alexandr Ciornii.
|
||||||
|
Added support for ALPN TLS extension. Patch from Lubomir Rintel. Tested
|
||||||
|
with openssl-1.0.2-stable-SNAP-20131205.
|
||||||
|
Fix an use-after-free error. Patch from Lubomir Rintel.
|
||||||
|
Fixed a problem with Invalid comparison on OBJ_cmp result in
|
||||||
|
t/local/36_verify.t. Contributed by paul.
|
||||||
|
Added support for get_peer_cert_chain(). Patch by Markus Benning.
|
||||||
|
Fixed a bug that could cause stack faults: mixed up PUTBACK with SPAGAIN in ssleay_RSA_generate_key_cb_invoke()
|
||||||
|
a final PUTBACK is needed here. A second issue is also fixed:
|
||||||
|
cb->data defaults to &PL_sv_undef but throught the code you do not check
|
||||||
|
against &PL_sv_undef, just NULL.
|
||||||
|
To avoid passing the 3rd optional arg at all, do not create it. This fixes all the
|
||||||
|
cb->data checks and wrong refcounts on &PL_sv_undef. Patched by Reini Urban.
|
||||||
|
Deleted support for SSL_get_tlsa_record_byname: it is not included in
|
||||||
|
OpenSSL git master.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 2 20:26:56 UTC 2013 - dmueller@suse.com
|
Wed Oct 2 20:26:56 UTC 2013 - dmueller@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Net-SSLeay
|
# spec file for package perl-Net-SSLeay
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,7 +19,7 @@
|
|||||||
%bcond_with test
|
%bcond_with test
|
||||||
|
|
||||||
Name: perl-Net-SSLeay
|
Name: perl-Net-SSLeay
|
||||||
Version: 1.55
|
Version: 1.58
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Net-SSLeay
|
%define cpan_name Net-SSLeay
|
||||||
Summary: Perl extension for using OpenSSL
|
Summary: Perl extension for using OpenSSL
|
||||||
|
Loading…
x
Reference in New Issue
Block a user