Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: update openssl to 1.1.1e #32328

Closed

Commits on Mar 20, 2020

  1. deps: upgrade openssl sources to 1.1.1e

    This updates all sources in deps/openssl/openssl by:
        $ cd deps/openssl/
        $ rm -rf openssl
        $ tar zxf ~/tmp/openssl-1.1.1e.tar.gz
        $ mv openssl-1.1.1e openssl
        $ git add --all openssl
        $ git commit openssl
    hassaanp authored and sam-github committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    9a81709 View commit details
    Browse the repository at this point in the history
  2. deps: adjust openssl configuration for 1.1.1e

    The scripts used by make were modified to correctly reference the source
    files that were originially in crypto/include/internal, but got moved to
    include/crypto.  The base path has been left unaltered since that would
    require too many changes
    hassaanp authored and sam-github committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    02041c7 View commit details
    Browse the repository at this point in the history
  3. deps: update archs files for OpenSSL-1.1.1e

    After an OpenSSL source update, all the config files need to be
    regenerated and comitted by:
        $ cd deps/openssl/config
        $ make
        $ git add deps/openssl/config/archs
        $ git add deps/openssl/include
    hassaanp authored and sam-github committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    2ac8f0d View commit details
    Browse the repository at this point in the history
  4. test: discard data received by client

    This test was timing out after update to OpenSSL-1.1.1e.
    hassaanp authored and sam-github committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    b7ca3d3 View commit details
    Browse the repository at this point in the history
  5. test: end tls connection with some data

    In openssl-1.1.1e the client doesn't seem to like having the TLS
    connection shut down with no data sent, so send an empty string. A
    number of related issues showed up in the TLS1.3 port, so this is
    not entirely surprising.
    sam-github committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    b92e168 View commit details
    Browse the repository at this point in the history