Commit Graph

56 Commits

Author SHA256 Message Date
Dominique Leuenberger
88540d4b66 Accepting request 947278 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/947278
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=36
2022-01-21 00:25:02 +00:00
dbf5245f8e Accepting request 947245 from devel:languages:perl:autoupdate
- updated to 1.92
   see /usr/share/doc/packages/perl-Net-SSLeay/Changes
  1.92 2022-01-12
  	- New stable release incorporating all changes from developer releases 1.91_01
  	  to 1.91_03.
  	- Summary of major changes since version 1.90:
  	  - Net::SSLeay now supports stable releases of OpenSSL 3.0.
  	    - OpenSSL 3.0.0 introduces the concept of "providers", which contain
  	      cryptographic algorithm implementations. Many outdated, deprecated and/or
  	      insecure algorithms have been moved to the "legacy" provider, which may
  	      need to be loaded explicitly in order to use them with Net::SSLeay. See
  	      "Low level API: OSSL_LIB_CTX and OSSL_PROVIDER related functions" in the
  	      Net::SSLeay module documentation for details.
  	    - Net::SSLeay's built-in PEM_get_string_PrivateKey() function depends on
  	      algorithms that have moved to the legacy provider described above; if
  	      OpenSSL has been compiled without the legacy provider, the tests
  	      t/local/33_x509_create_cert.t and t/local/63_ec_key_generate_key.t will
  	      fail when the test suite is run.
  	    - TLS 1.1 and below may only be used at security level 0 as of OpenSSL
  	      3.0.0; if a minimum required security level is imposed (e.g. in an
  	      OpenSSL configuration file managed by the operating system), the tests
  	      t/local/44_sess.t and t/local/45_exporter.t will fail when the test suite
  	      is run.
  	  - Net::SSLeay now supports stable releases of LibreSSL from the 3.2 - 3.4
  	    series (with the exception of 3.2.2 and 3.2.3 - see "COMPATIBILITY" in the
  	    Net::SSLeay module documentation for details).
  	    - The TLS 1.3 implementation in LibreSSL 3.1 - 3.3, parts of which are
  	      enabled by default, is not fully compatible with the libssl API and may
  	      not function as expected with Net::SSLeay; see "KNOWN BUGS AND CAVEATS"
  	      in the Net::SSLeay module documentation for details.
  	  - A number of new libcrypto/libssl constants and functions are now exposed,
  	    including SSL_CTX_set_keylog_callback() and SSL_CTX_set_msg_callback(),
  	    which are helpful when debugging TLS handshakes. See the release notes for
  	    the 1.91 developer releases below for a full list of newly-exposed
  	    constants and functions.
  1.91_03 2022-01-10
  	- Avoid misclassifying Clang as GCC in Test::Net::SSLeay's can_thread()
  	  function. This fixes test failures in 61_threads-cb-crash.t and
  	  62_threads-ctx_new-deadlock.t on OpenBSD and FreeBSD (and possibly other OSes
  	  too). Fixes GH-350.
  	- Add the following constants for OpenSSL_version():
  	  - OPENSSL_CPU_INFO
  	  - OPENSSL_FULL_VERSION_STRING
  	  - OPENSSL_MODULES_DIR
  	  - OPENSSL_VERSION_STRING
  	  These constants are new in OpenSSL 3.0.0 release.
  	- Update test 03_use.t to print information returned by the new constants.
  	- Add more information to 03_use.t print output, including printing
  	  OPENSSL_VERSION_NUMBER as a 32bit hex number.
  	- Add the following constants for OPENSSL_info() added in OpenSSL 3.0.0.
  	  - OPENSSL_INFO_CONFIG_DIR
  	  - OPENSSL_INFO_CPU_SETTINGS
  	  - OPENSSL_INFO_DIR_FILENAME_SEPARATOR
  	  - OPENSSL_INFO_DSO_EXTENSION
  	  - OPENSSL_INFO_ENGINES_DIR
  	  - OPENSSL_INFO_LIST_SEPARATOR
  	  - OPENSSL_INFO_MODULES_DIR
  	  - OPENSSL_INFO_SEED_SOURCE
  	- Expose OPENSSL_info(), OPENSSL_version_major(),
  	  OPENSSL_version_minor(), OPENSSL_version_patch(),
  	  OPENSSL_version_pre_release() and
  	  OPENSSL_version_build_metadata() added in OpenSSL
  	  3.0.0. Update 03_use.t diagnostics and 04_basic.t tests to
  	  use these functions.
  	- Clarify documentation of OpenSSL_version_num(), SSLeay(),
  	  SSLeay_version() and OpenSSL_version().
  	- Add notes to OpenSSL_version_num() and SSLeay() on how to
  	  determine if the library is OpenSSL or LibreSSL and how to
  	  interpret the version number these functions return.
  	- Add constants OPENSSL_VERSION_MAJOR, OPENSSL_VERSION_MINOR
  	  and OPENSSL_VERSION_PATCH. Update
  	  OPENSSL_version_major/minor/patch documentation to describe
  	  how these library functions relate to Net-SSLeay compile
  	  time constants. Add tests to verify the constants and
  	  functions return equal values.
  1.91_02 2021-12-29
  	- On OpenVMS, detect vendor SSL111 product based on OpenSSL 1.1.x.
  	- Cast the return value of OCSP_SINGLERESP_get0_id to fix a
  	  const/non-const mismatch warning that broke the build on OpenVMS.
  	- Create SSL_CTXs with Test::Net::SSLeay's new_ctx() function for tests that
  	  are broken with LibreSSL 3.2. Partially fixes GH-232.
  	- In 36_verify.t, account for the presence of the X509_V_FLAG_LEGACY_VERIFY
  	  flag (signalling the use of the legacy X.509 verifier) in LibreSSL 3.2
  	  versions from 3.2.4 onwards. Fixes the remainder of GH-232.
  	- Note in the Net::SSLeay documentation that the TLS 1.3 implementation in
  	  LibreSSL 3.1 - 3.3, parts of which are enabled by default, is not
  	  libssl-compatible. See the "KNOWN BUGS AND CAVEATS" section of
  	  lib/Net/SSLeay.pod for details.
  	- Add constants for, but not limited to,
  	  SSL_CTX_set_msg_callback and SSL_set_msg_callback functions:
  	  SSL3_RT_* for record content types, SSL3_MT_* for Handshake
  	  and ChangeCipherSpec message types, SSL2_VERSION to
  	  complement the list of existing SSL and TLS version
  	  constants and SSL2_MT_* for SSLv2 Handshake messages.
  	- Expose SSL_CTX_set_keylog_callback and
  	  SSL_CTX_get_keylog_callback available with OpenSSL 1.1.1pre1
  	  and later.
  	- Enhance 10_rand.t RAND_file_name tests: tests are no longer
  	  affected by the runtime environment variables, HOME and
  	  RANDFILE. These variables are insted controlled by the tests
  	  with local %ENV. Problems related to RAND_file_name were
  	  discussed in Github issue GH-152, and there might still be
  	  cases when, for example, setuid is used because of OpenSSL's
  	  use of glibc secure_getenv() and related functions. Address
  	  RAND_file_name differences between OpenSSL versions. Note in
  	  SSLeay.pod that RAND_file_name() can return undef with
  	  LibreSSL and recent OpenSSL versions.
  	- Removed the following exportable symbols from SSLeay.pm:
  	  - SESSION, clear_error and err have never been defined.
  	  - add_session, flush_sessions and remove_session were
  	    removed in Net::SSLeay 1.04
  	  - Undocumented X509_STORE_CTX_set_flags() was removed in
  	    Net::SSLeay 1.37 when X509_VERIFY_PARAM_* functions were
  	    added. These are preferred over directly setting the flags.
  	- Clarified Changes entry for release 1.75 to state that
  	  CTX_v2_new is not removed from Net::SSLeay. SSLv2 is
  	  completely removed in OpenSSL 1.1.0.
  	- Beginning with OpenSSL 3.0.0-alpha17, SSL_CTX_get_options()
  	  and related functions return uint64_t instead of long. For
  	  this reason constant() in constant.c and Net::SSLeay must
  	  also be able to return 64bit constants. Add uint64_t
  	  definitions to typemap file and update constant() and
  	  options functions to use uint64_t with OpenSSL 3.0.0 and
  	  later when Perl is compiled with 64bit integers. With 32bit
  	  integers, the functions remain as they are: constant()
  	  functions return double and options functions return
  	  long. This partially fixes GH-315, 32bit integer Perls need
  	  to be handled separately.
  	- Work around macOS Monterey build failure during 'perl
  	  Makefile.PL' that causes perl to exit with 'WARNING:
  	  .../perl is loading libcrypto in an unsafe way' or similar
  	  message. This fixes GH-329. Thanks to Daniel J. Luke for the
  	  report and John Napiorkowski for additional help.
  1.91_01 2021-10-24
  	- Correct X509_STORE_CTX_init() return value to integer. Previous
  	  versions of Net::SSLeay return nothing.
  	- Update tests to call close() to avoid problems seen with
  	  test 44_sess.t, and possibly other tests, running on older
  	  Windows Perl versions. Also add some missing calls in tests
  	  to shutdown and free ssl structures.
  	- Fix multiple formatting errors in the documentation for Net::SSLeay.
  	  Thanks to John Jetmore.
  	- Check for presence of libssl headers in Makefile.PL, and exit with an
  	  error instead of generating an invalid Makefile if they cannot be found.
  	  Fixes RT#105189. Thanks to James E Keenan for the report.
  	- Added support for SSL_CTX_set_msg_callback/SSL_set_msg_callback
  	  Thanks to Tim Aerts.
  	- Adjust time in ASN1_TIME_timet based on current offset to GMT to
  	  address GH-148. Thanks to Steffen Ullrich.
  	- Multiple updates to tests to match OpenSSL 3.0 behaviour.
  	  Thanks to Michal Josef Špaček.
  	- OpenSSL 3.0 related changes in tests include:
  	  - TLSv1 and TLSv1.1 require security level 0 starting with 3.0 alpha 5.
  	  - SSL_CTX_set_ciphersuites() and SSL_set_ciphersuites() ignore
  	    unknown ciphersuites starting with 3.0 alpha 11.
  	  - Error code and error string packing and formatting changes.
  	  - PEM_get_string_PrivateKey default algorithm requires legacy provider.
  	- See OpenSSL manual page migration_guide(7) for more information about
  	  changes in OpenSSL 3.0.
  	- Automatically detect OpenSSL installed via Homebrew on ARM-based macOS
  	  systems. Thanks to Graham Knop for the patch.
  	- Account for the divergence in TLSv1.3 ciphersuite names between OpenSSL and
  	  LibreSSL, which was causing failures of some TLSv1.3 tests with LibreSSL.
  	- In 36_verify.t, account for the presence of the X509_V_FLAG_LEGACY_VERIFY
  	  flag (signalling the use of the legacy X.509 verifier) in LibreSSL 3.3.2 and
  	  above.
  	- In 43_misc_functions.t, account for the fact that LibreSSL 3.2.0 and above
  	  implement TLSv1.3 without exposing a TLS1_3_VERSION constant.
  	- Expose OpenSSL 3.0 functions
  	  OSSL_LIB_CTX_get0_global_default, OSSL_PROVIDER_load,
  	  OSSL_PROVIDER_try_load, OSSL_PROVIDER_unload,
  	  OSSL_PROVIDER_available, OSSL_PROVIDER_do_all
  	  OSSL_PROVIDER_get0_name and OSSL_PROVIDER_self_test.
  	  Add test files 22_provider.t, 22_provider_try_load.t and
  	  22_provider_try_load_zero_retain.t.
  	- With OpenSSL 3.0 and later, the legacy provider is loaded in
  	  33_x509_create_cert.t to allow PEM_get_string_PrivateKey to
  	  continue working until its default encryption method is
  	  updated. Fixes GH-272 and closes GH-273.
  	- Remove the test suite's optional dependency on the non-core modules
  	  Test::Exception, Test::NoWarnings and Test::Warn. Tests that verify
  	  Net::SSLeay's behaviour when errors occur are now executed regardless of the
  	  availability of these modules.
  	- Fully automate the process of changing the list of constants exported by
  	  Net::SSLeay. Fixes GH-313.
  	- Perform function autoloading tests in the test suite. Fixes GH-311.
  	- In 36_verify.t, account for the fact that the X509_V_FLAG_LEGACY_VERIFY flag
  	  (signalling the use of the legacy X.509 verifier) is no longer exposed as of
  	  LibreSSL 3.4.1. Fixes GH-324.

OBS-URL: https://build.opensuse.org/request/show/947245
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=53
2022-01-18 18:08:39 +00:00
Dominique Leuenberger
383c7c5a34 Accepting request 946597 from devel:languages:perl
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/946597
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=35
2022-01-17 21:33:47 +00:00
Tina Müller
f1a22c0be4 Accepting request 946063 from home:tinita:branches:devel:languages:perl
- Fix cpanspec.yml

OBS-URL: https://build.opensuse.org/request/show/946063
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=52
2022-01-13 10:05:41 +00:00
Dominique Leuenberger
d994b17777 Accepting request 903063 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/903063
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=34
2021-07-02 11:26:48 +00:00
19de739d97 Accepting request 903062 from home:pmonrealgonzalez:branches:devel:languages:perl
- Fix cpanspec.yml preamble section.

OBS-URL: https://build.opensuse.org/request/show/903062
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=51
2021-06-29 11:13:32 +00:00
Dominique Leuenberger
3b8b60abc0 Accepting request 901757 from devel:languages:perl
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/901757
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=33
2021-06-27 16:58:19 +00:00
ba4a5df05f Accepting request 901345 from home:pmonrealgonzalez:branches:devel:languages:perl
- Fix autoupdate build:
  * Add required build and test dependencies
  * Update spec file and add cpanspec.yml

OBS-URL: https://build.opensuse.org/request/show/901345
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=50
2021-06-23 09:20:52 +00:00
Dominique Leuenberger
13b1a28c6e Accepting request 867090 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/867090
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=32
2021-01-29 13:56:28 +00:00
90e235cd32 Accepting request 867078 from home:dirkmueller:branches:devel:languages:perl
- update to 1.90:
  - New stable release incorporating all changes from developer releases
      1.89_01 to 1.89_05.
  - Summary of major changes since version 1.88:
      - Formalised libssl version support policy: all stable versions of OpenSSL
	in the 0.9.8 - 1.1.1 branches (with the exception of 0.9.8 - 0.9.8b) and
	all stable releases of LibreSSL in the 2.0 - 3.1 series are supported.
	The LibreSSL 3.2 series is not yet fully supported because its TLSv1.3
	implementation is not currently libssl-compatible.
      - Added support for LibreSSL on Windows when built with Visual C++.
      - Exposed P_X509_CRL_add_extensions, several SSL_CIPHER functions, and
	several stack functions.
      - Fixed crashes in the callback functions CTX_set_next_proto_select_cb and
	CTX_set_alpn_select_cb.
      - The test suite is now compatible with OpenSSL 1.1.1e onwards, as well as
	OpenSSL security level 2 (the default on many Linux distributions).

OBS-URL: https://build.opensuse.org/request/show/867078
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=48
2021-01-27 08:41:11 +00:00
Dominique Leuenberger
b4fcb195ac Accepting request 705653 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/705653
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=31
2019-06-01 07:43:23 +00:00
b9456019a6 Accepting request 705651 from home:pmonrealgonzalez:branches:devel:languages:perl
- Update to 1.88
  1.88 2019-05-10
        - New stable release incorporating all changes from developer
          releases 1.86_01 to 1.86_11.
        - From this release, Net-SSLeay is switching to an "odd/even"
          developer/stable release version numbering system, like that of
          many core modules (e.g. ExtUtils::MakeMaker): developer releases
          will have an odd minor version number (and the usual "_xx" suffix),
          and stable releases will have an even minor version number. This
          means there is no Net-SSLeay 1.87.
        - Summary of major changes since version 1.85:
          - Mike McCauley has stepped down as maintainer. The new maintainers
            are Chris Novakovic, Heikki Vatiainen and Tuure Vartiainen.
          - The source code has moved from the now-defunct Debian Subversion
            server (alioth.debian.org) to GitHub
            (https://github.com/radiator-software/p5-net-ssleay).
          - Net-SSLeay is provided under the terms of the Artistic License
            2.0 - this has been the case since version 1.66, but references
            to other licenses remained in the source code, causing ambiguity.
          - Perl 5.8.1 or newer is now required to use Net-SSLeay. This has
            already been the case for some time in practice, as the test
            suite hasn't fully passed on Perl 5.6 for several years.
          - Much-improved compatibility with OpenSSL 1.1.1, and improved
            support for TLS 1.3.
          - Fixed a long-standing bug in cb_data_advanced_put() that caused
            memory leaks when callbacks were frequently added and removed.
          - Support in the test suite for "hardened" OpenSSL configurations
            that set a default security level of 2 or higher (e.g., in the
            OpenSSL packages that ship with recent versions of Debian, Fedora
            and Ubuntu).

OBS-URL: https://build.opensuse.org/request/show/705651
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=46
2019-05-27 11:42:22 +00:00
Dominique Leuenberger
5088337af2 Accepting request 681764 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/681764
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=30
2019-03-13 08:09:53 +00:00
caf890f794 Accepting request 681761 from home:pmonrealgonzalez:branches:devel:languages:perl
- Update to 1.86_07
  1.86_07 2018-12-13
        - Net::SSLeay::RSA_generate_key() now prefers using
          RSA_generate_key_ex. This avois deprecated RSA_generate_key
          and allows removing the only Android specific code in
          SSLeay.xs. Fixes RT#127593. Thanks to Rouven Weiler.
        - SSL_CTX_get0_param, SSL_CTX_get0_param,
          X509_VERIFY_PARAM_set1_host, X509_VERIFY_PARAM_add1_host,
          X509_VERIFY_PARAM_set_hostflags,
          X509_VERIFY_PARAM_get0_peername,
          X509_VERIFY_PARAM_set1_email, X509_VERIFY_PARAM_set1_ip and
          X509_VERIFY_PARAM_set1_ip_asc added in 1.83 for OpenSSL
          1.0.2 and later are now available with LibreSSL 2.7.0 and
          later.
        - get_keyblock_size() now gets the MAC secret size from the
          cipher on LibreSSL 2.7.0 and later, rather than reaching
          into libssl internals. This effectively takes the OpenSSL
          1.1 code path for LibreSSL 2.7.0 instead of the OpenSSL 1.0
          code path.  Thanks to Alexander Bluhm.
        - get_client_random and get_server_random now use API
          functions supported by LibreSSL 2.7.0 and later. Thanks to
          Alexander Bluhm.
        - Add X509_check_host(), X509_check_email(), X509_check_ip(),
          and X509_check_ip_asc() for LibreSSL 2.5.0 and later. Thanks
          to Alexander Bluhm.
        - OpenSSL_version() and OpenSSL_version_num() are available
          with LibreSSL 2.7.0 and later. Thanks to Alexander Bluhm.
        - Use OPENSSL_cleanse() instead of memset(). Fixes
          RT#116599. Thanks to A. Sinan Unur.
  1.86_06 2018-09-29

OBS-URL: https://build.opensuse.org/request/show/681761
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=44
2019-03-05 14:41:56 +00:00
Dominique Leuenberger
5c4cc92007 Accepting request 666157 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/666157
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=29
2019-01-24 13:01:43 +00:00
51341ea75b Accepting request 666145 from home:vitezslav_cizek:branches:devel:languages:perl
- Expose SSL_CTX_set_post_handshake_auth
  * https://github.com/radiator-software/p5-net-ssleay/pull/68
- add Net-SSLeay-1.85-Expose_SSL_CTX_set_post_handshake_auth.patch
- Fix build on SLE-12
  * apparently %autopatch needs to be followed by an empty line there

OBS-URL: https://build.opensuse.org/request/show/666145
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=42
2019-01-15 09:41:44 +00:00
Yuchen Lin
4ace84fa93 Accepting request 633282 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/633282
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=28
2018-09-11 15:13:42 +00:00
Dirk Stoecker
f7b5300fb7 Accepting request 633049 from home:vitezslav_cizek:branches:devel:languages:perl
- Add patches to support openssl 1.1.1 from Fedora
  * Net-SSLeay-1.85-Avoid-SIGPIPE-in-t-local-36_verify.t.patch
  * Net-SSLeay-1.85-Move-SSL_ERROR_WANT_READ-SSL_ERROR_WANT_WRITE-retry-.patch
  * Net-SSLeay-1.85-Move-SSL_ERROR_WANT_READ-SSL_ERROR_WANT_WRITE-retry-from_write_partial.patch
  * Net-SSLeay-1.85-Adapt-to-OpenSSL-1.1.1.patch

OBS-URL: https://build.opensuse.org/request/show/633049
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=40
2018-09-05 08:29:59 +00:00
Dirk Stoecker
79c418d3ca Accepting request 631723 from home:scarabeus_iv:branches:devel:languages:perl
- Version update to 1.85:
  * Removal of many deprecated calls from 1.1.x series

- Add dependency over zlib-devel, previously added by openssl devel
- Make sure all tests are run

OBS-URL: https://build.opensuse.org/request/show/631723
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=39
2018-08-27 12:27:14 +00:00
Dominique Leuenberger
aa39593505 Accepting request 517887 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/517887
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=27
2017-08-29 09:35:58 +00:00
57cf8c8551 Accepting request 517873 from home:vitezslav_cizek:branches:devel:languages:perl
- Fix license as requested by licensedigger in
  https://build.opensuse.org/request/show/501145

OBS-URL: https://build.opensuse.org/request/show/517873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=37
2017-08-21 09:31:40 +00:00
be67145ac8 Accepting request 501128 from home:vitezslav_cizek:branches:devel:languages:perl
- update to the latest upstream version 1.81
  * introduces compatibility with openssl 1.1.x
- drop net-ssleay-no-ofb.patch (not needed anymore)

OBS-URL: https://build.opensuse.org/request/show/501128
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=36
2017-06-05 11:51:32 +00:00
Stephan Kulow
cc5b0b3c9e Accepting request 314474 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/314474
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=26
2015-07-05 15:53:52 +00:00
Stephan Kulow
68e57455dd Accepting request 314321 from home:msmeissn:branches:devel:languages:perl
- net-ssleay-no-ofb.patch: disable the OFB cipher, not exported by
  our openssl 1.0.2 currently.

OBS-URL: https://build.opensuse.org/request/show/314321
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=34
2015-06-30 08:50:13 +00:00
Stephan Kulow
8e62098ca6 Accepting request 313231 from home:Zaitor:branches:devel:languages:perl
New upstream release

OBS-URL: https://build.opensuse.org/request/show/313231
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=33
2015-06-23 11:43:01 +00:00
Dominique Leuenberger
e6fd61033e Accepting request 295073 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/295073
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=25
2015-04-10 07:48:50 +00:00
Stephan Kulow
9878c2461b Accepting request 294784 from home:vitezslav_cizek:branches:devel:languages:perl
- fix %description, it was accidently chopped

OBS-URL: https://build.opensuse.org/request/show/294784
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=31
2015-04-09 04:47:14 +00:00
Dominique Leuenberger
7c14d93afb Accepting request 284487 from devel:languages:perl
- updated to 1.68
      Fixed a problem on OSX when macports openssl 1.x is installed: headers from
      macport were found but older OSX openssl libraries were linked, resulting
      in "Symbol not found: _EVP_MD_do_all_sorted".
      Added notes about runtime error "no OPENSSL_Applink", when calling
      Net::SSLeay::P_PKCS12_load_file.
 
 
 1.67 2015-01-17
      Improvements to inc/Module/Install/PRIVATE/Net/SSLeay.pm to handle the
      case whe there are muliple OPENSSLs installed. Patch from HBRAND
      Fixed a documentation error in get_peer_cert_chain, reported by tejas.
      Fixed a problem with building on Windows that prevented correct OpenSSL
      directory detection with version 1.0.1j as delivered with Shining Light OpenSSL.
      Fixed a problem with building on Windows that prevented finding MT or MD
      versions of SSL libraries.
      Updated doc in README.Win32 to build with Microsoft Visual Studio 2010 Express.
      Added Windows crypt32 library to Windows linking as some compilers/platforms seem to
      require it and it is innocuous otherwise. For Steve Hay.
      Fixed a failure in t/external/20_cert_chain.t where some platforms do not
      have HTTPS in /etc/services. Reported and patched by Gisle Aas.
      Recent 1.0.2 betas have dropped the SSLv3_method function. 
      This patch leaves out the function on newer versions, much the same as
      the SSLv2 deprecation is handled. Patch from Tom Molesworth.
      Fix the ALPN test, which was incorrectly failing on OpenSSL due to the
      LibreSSL check (earlier versions bailed out before that line).Patch from
      Tom Molesworth. 
 
 1.66 2014-08-21
      Fixed compile problem with perl prior to 5.8.8, similar to

OBS-URL: https://build.opensuse.org/request/show/284487
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=24
2015-02-10 19:17:21 +00:00
Stephan Kulow
ebc32b521d - updated to 1.68
Fixed a problem on OSX when macports openssl 1.x is installed: headers from
      macport were found but older OSX openssl libraries were linked, resulting
      in "Symbol not found: _EVP_MD_do_all_sorted".
      Added notes about runtime error "no OPENSSL_Applink", when calling
      Net::SSLeay::P_PKCS12_load_file.
 
 
 1.67 2015-01-17
      Improvements to inc/Module/Install/PRIVATE/Net/SSLeay.pm to handle the
      case whe there are muliple OPENSSLs installed. Patch from HBRAND
      Fixed a documentation error in get_peer_cert_chain, reported by tejas.
      Fixed a problem with building on Windows that prevented correct OpenSSL
      directory detection with version 1.0.1j as delivered with Shining Light OpenSSL.
      Fixed a problem with building on Windows that prevented finding MT or MD
      versions of SSL libraries.
      Updated doc in README.Win32 to build with Microsoft Visual Studio 2010 Express.
      Added Windows crypt32 library to Windows linking as some compilers/platforms seem to
      require it and it is innocuous otherwise. For Steve Hay.
      Fixed a failure in t/external/20_cert_chain.t where some platforms do not
      have HTTPS in /etc/services. Reported and patched by Gisle Aas.
      Recent 1.0.2 betas have dropped the SSLv3_method function. 
      This patch leaves out the function on newer versions, much the same as
      the SSLv2 deprecation is handled. Patch from Tom Molesworth.
      Fix the ALPN test, which was incorrectly failing on OpenSSL due to the
      LibreSSL check (earlier versions bailed out before that line).Patch from
      Tom Molesworth. 
 
 1.66 2014-08-21
      Fixed compile problem with perl prior to 5.8.8, similar to

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=29
2015-02-06 13:53:21 +00:00
Stephan Kulow
09dfb9017e Accepting request 284142 from home:coolo:bc
OBS-URL: https://build.opensuse.org/request/show/284142
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=28
2015-02-06 06:10:09 +00:00
Stephan Kulow
c29c30ebb7 Accepting request 237018 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/237018
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=22
2014-06-18 05:47:46 +00:00
Dirk Stoecker
a7e7fe2871 Accepting request 236987 from home:msmeissn:branches:devel:languages:perl
- updated to 1.64
  Fixes for test ocsp.t. Test now does not fail if HTTP::Tiny is not
  installed.
  Fixed repository in META.yml.
  Fixed a problem with SSL_get_peer_cert_chain: if the SSL handshake
  results in an anonymous authentication, like ADH-DES-CBC3-SHA,
  get_peer_cert_chain will not return an empty list, but instead return the
  SSL object. Reported and fixed by Steffen
  Ullrich. Thanks.
  Fixed a problem where patch
  https://git.openssl.org/gitweb/?p=openssl.git;a=commit;h=3009244da47b989c4cc59ba02cf81a4e9d8f8431
  caused a failed test in t/local/33_x509_create_cert.t.

OBS-URL: https://build.opensuse.org/request/show/236987
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=26
2014-06-12 20:18:47 +00:00
Stephan Kulow
363cb16689 - updated to 1.63
1.63 2014-05-19
      Fixed error in version number in META.yml
 1.62 2014-05-19
      Improvements to OCSP support: It turns out that some CA (like Verisign)
      sign the OCSP response with the CA we have in the trust store and don't
      attach this certifcate in the response.  But OpenSSL by itself only
      considers the certificates included in the response and
      SSL_OCSP_response_verify added the certificates in the chain too.
      Now, we also add the trusted CA from the store which
      signed the lowest chain certificate, at least if we could not verify the
      OCSP response without doing it. Patch from Steffen
      Ullrich. Thanks.
      Fixed some compiler warnings.
 1.61 2014-05-12
      Changes calloc to Newx and free to Safefree, otherwise there might be
      problems because calloc is done from a different memory pool than free (depends
      on the build options for perl, but seen on Windows). Patch from Steffen
      Ullrich. Thanks.
 1.60 2014-05-10
      Fixed a typo in an error message. Patch from gregor herrmann. Thanks.
      Fixed a problem with building with openssl that does not support
      OCSP. Also fixed some newly introduced warnings
      if compiled with -Wall. Patch from Steffen Ullrich. Thanks.
      fix build-failure on most Debian architectures:
      SSLeay.xs: In function 'XS_Net__SSLeay_OCSP_response_results':
      SSLeay.xs:5602:3: error: format not a string literal and no format
      arguments. Patch from  gregor herrmann.
 1.59 2014-05-10
      Fixed local/30_error.t, so that tests do not fail if diagnostics are

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=25
2014-06-06 13:48:24 +00:00
Stephan Kulow
798cff9c49 Accepting request 221510 from devel:languages:perl
- 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/request/show/221510
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=21
2014-02-12 16:32:09 +00:00
Stephan Kulow
9487789420 - 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
2014-02-09 14:44:04 +00:00
Tomáš Chvátal
64a6019144 Accepting request 202106 from devel:languages:perl
- disable checks on qemu user build (hangs) (forwarded request 201954 from dirkmueller)

OBS-URL: https://build.opensuse.org/request/show/202106
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=20
2013-10-04 08:43:56 +00:00
Stephan Kulow
1ef0dae778 Accepting request 201954 from openSUSE:Factory:ARM
- disable checks on qemu user build (hangs)

OBS-URL: https://build.opensuse.org/request/show/201954
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=21
2013-10-04 05:33:02 +00:00
Stephan Kulow
862a1426d1 Accepting request 182615 from devel:languages:perl
- new version 1.55
  * Added support for TLSV1_1 and TLSV1_2 methods with
    SSL_CTX_tlsv1_1_new(), SSL_CTX_tlsv1_2_new(), TLSv1_1_method() and
    TLSv1_2_method(), where available in the underlying openssl.
  * Added CRL support functions X509_CRL_get_ext(),
    X509_CRL_get_ext_by_NID(), X509_CRL_get_ext_count(). Patch from
    Franck Youssef.
  * Added support for SSL_get_tlsa_record_byname() required for DANE
    support in openssl*1.0.2 and later. SSL_get_tlsa_record_byname()
    was added to OpenSSL with the financial assistance of .SE.
  * Added X509_NAME_new and X509_NAME_hash, patched by Franck Youssef.
  * Added support for SSL_export_keying_material where present
  * Net::SSLeay::ASN1_INTEGER_get, since it works differntly on 32 and
    64 bit platforms. Updated author and distribution location details
    to airspayce.com
  * Fixed a few compiler warnings in SSLeay.xs.  Most of them are just
    signed/unsigned pointer mismatches but there is one that actually
    fixes returning what would be an arbitrary value off the stack
    from get_my_thread_id if it happened to be called in a
    non*threaded build.
  * Added SSL_set_tlsext_host_name, SSL_get_servername,
    SSL_get_servername_type, SSL_CTX_set_tlsext_servername_callback
    for server side Server Name Indication (SNI) support. Patched by
    kmx.
  * Improvements to Net::SSLeay::read to make it easier to use with
    non*blocking IO Added documentation about how to mitigatxe various
    SSL/TLS vulnerabilities.
  * initializes the SSL library at most once. 
  * Patch from kmx to protect SSLeay_add_ssl_algorithms from multiple
    loads and reentrancy in multi*threaded perls. (forwarded request 181902 from lnussel)

OBS-URL: https://build.opensuse.org/request/show/182615
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=18
2013-07-09 18:55:42 +00:00
Lars Vogdt
ede9ece2da Accepting request 181902 from home:lnussel:branches:devel:languages:perl
- new version 1.55
  * Added support for TLSV1_1 and TLSV1_2 methods with
    SSL_CTX_tlsv1_1_new(), SSL_CTX_tlsv1_2_new(), TLSv1_1_method() and
    TLSv1_2_method(), where available in the underlying openssl.
  * Added CRL support functions X509_CRL_get_ext(),
    X509_CRL_get_ext_by_NID(), X509_CRL_get_ext_count(). Patch from
    Franck Youssef.
  * Added support for SSL_get_tlsa_record_byname() required for DANE
    support in openssl*1.0.2 and later. SSL_get_tlsa_record_byname()
    was added to OpenSSL with the financial assistance of .SE.
  * Added X509_NAME_new and X509_NAME_hash, patched by Franck Youssef.
  * Added support for SSL_export_keying_material where present
  * Net::SSLeay::ASN1_INTEGER_get, since it works differntly on 32 and
    64 bit platforms. Updated author and distribution location details
    to airspayce.com
  * Fixed a few compiler warnings in SSLeay.xs.  Most of them are just
    signed/unsigned pointer mismatches but there is one that actually
    fixes returning what would be an arbitrary value off the stack
    from get_my_thread_id if it happened to be called in a
    non*threaded build.
  * Added SSL_set_tlsext_host_name, SSL_get_servername,
    SSL_get_servername_type, SSL_CTX_set_tlsext_servername_callback
    for server side Server Name Indication (SNI) support. Patched by
    kmx.
  * Improvements to Net::SSLeay::read to make it easier to use with
    non*blocking IO Added documentation about how to mitigatxe various
    SSL/TLS vulnerabilities.
  * initializes the SSL library at most once. 
  * Patch from kmx to protect SSLeay_add_ssl_algorithms from multiple
    loads and reentrancy in multi*threaded perls.

OBS-URL: https://build.opensuse.org/request/show/181902
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=19
2013-07-09 09:44:17 +00:00
Stephan Kulow
9b39635c33 Accepting request 125064 from devel:languages:perl
license update: OpenSSL
 (forwarded request 124911 from babelworx)

OBS-URL: https://build.opensuse.org/request/show/125064
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=15
2012-06-15 13:41:50 +00:00
88136ad6c5 Accepting request 124911 from home:babelworx:ldig:branches:devel:languages:perl
license update: OpenSSL

OBS-URL: https://build.opensuse.org/request/show/124911
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=17
2012-06-15 07:29:33 +00:00
Stephan Kulow
bfbe6b7549 Accepting request 105370 from devel:languages:perl
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/105370
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=14
2012-02-17 11:08:02 +00:00
Vítězslav Čížek
5e8b21115e Accepting request 103398 from home:vitezslav_cizek:branches:devel:languages:perl
- update to 1.42
    Fixed incorrect documentation of how to enable CRL checking. Patched
    by Steffen_Ullrich.
    Fixed incorrect letter in Sebastien in Credits. Patch by Neil Bowers.
    Reversed order of the Changes file to be reverse chronological. Patch by
    Neil Bowers.
    Fixed a a compile error when building on Windows with MSVC6. reported and
    patched by "Andrew J. Savige via RT".
1.41    2011-09-25
    Fixed incorrect const signatures for 1.0 that were causing warnings. 
    Patches provided by "Douglas
    Christopher Wilson via RT". Now have clean compile with 0.9.8a through 1.0.0.
1.40    2011-09-23
    Fixed incorrect argument type in call to SSL_set1_param
    Fixed a number of issues with pointer sizes, patched by "Douglas
    Christopher Wilson via RT". Removed redundant pointer cast tests from t/
    Added Perl version requirements to SSLeay.pm
1.39    2011-09-21
    Downgraded Module::Install to 0.93 since 1.01 was causing problems in
    the Makefile. Reported by Albert Chin.
1.38    2011-09-16
    - Fixed a problem with  various symbols that only became
    available in OpenSSL 0.9.8 such as X509_VERIFY_PARAM and
    X509_POLICY_NODE, causing build failures with older versions of
    OpenSSL. Patched by paul.
1.37    2011-09-16
    - Added X509_get_fingerprint, contributed by Thierry Walrant (with
    minor changes die to the fact that stricmp is not avialable. Cert
    types must be lowercase. Also added test to 07_sslecho.t
    - Added suport for SSL_CTX_set1_param, SSL_set1_param,

OBS-URL: https://build.opensuse.org/request/show/103398
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=15
2012-02-10 11:14:13 +00:00
Stephan Kulow
18e2845f5a cleanup
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=14
2011-12-19 15:29:34 +00:00
Stephan Kulow
719881ec06 use original .tar.gz
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=13
2011-11-18 11:43:24 +00:00
Stephan Kulow
c7145fdfe3 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=12 2011-11-11 11:20:57 +00:00
Lars Vogdt
7367b23d4f Autobuild autoformatter for 54611
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=11
2010-12-05 21:09:00 +00:00
Lars Vogdt
e2d16d0267 Accepting request 54611 from devel:languages:perl
Accepted submit request 54611 from user coolo

OBS-URL: https://build.opensuse.org/request/show/54611
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-SSLeay?expand=0&rev=10
2010-12-05 21:08:52 +00:00
Stephan Kulow
0221f10b25 always buildrequire perl-macros if not present, move %perl_requires behind buildroot (script commit)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=10
2010-12-03 14:44:53 +00:00
Stephan Kulow
4b6ef7649f siwtch to perl_requires macro
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-SSLeay?expand=0&rev=9
2010-12-01 13:51:34 +00:00