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 to openssl-3.0.1+quic #41177

Closed
wants to merge 4 commits into from

Commits on Dec 14, 2021

  1. build: update openssl config generator Dockerfile

    The `deps/openssl/config/generate_headers.pl` imports `Text::Template`
    but that Perl module is not present in the default Perl installation in
    the Dockerfile and needs to be explicitly installed.
    richardlau committed Dec 14, 2021
    Copy the full SHA
    119842f View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2021

  1. test: do not load absolute path crypto engines twice

    Newer versions of OpenSSL now throws an error if an engine is loaded
    twice by its absolute path (a second load by its id appears to be okay).
    richardlau committed Dec 15, 2021
    Copy the full SHA
    3a840bf View commit details
    Browse the repository at this point in the history
  2. deps: upgrade openssl sources to quictls/openssl-3.0.1+quic

    This updates all sources in deps/openssl/openssl by:
        $ git clone git@github.com:quictls/openssl.git
        $ cd openssl
        $ cd ../node/deps/openssl
        $ rm -rf openssl
        $ cp -R ../openssl openssl
        $ rm -rf openssl/.git* openssl/.travis*
        $ git add --all openssl
        $ git commit openssl
    richardlau committed Dec 15, 2021
    Copy the full SHA
    ebaf1be View commit details
    Browse the repository at this point in the history
  3. deps: update archs files for quictls/openssl-3.0.1+quic

    After an OpenSSL source update, all the config files need to be
    regenerated and committed by:
        $ make -C deps/openssl/config
        $ git add deps/openssl/config/archs
        $ git add deps/openssl/openssl
        $ git commit
    richardlau committed Dec 15, 2021
    Copy the full SHA
    d9275b9 View commit details
    Browse the repository at this point in the history