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

Use OpenSSL 3.1.5 and 3.2.1 #12821

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Expand Up @@ -46,8 +46,8 @@ env:
mbedtls-version: v3.5.0
mod_h2-version: v2.0.27
msh3-version: v0.6.0
openssl3-version: openssl-3.1.3
quictls-version: 3.1.4+quic
openssl3-version: openssl-3.2.1
quictls-version: 3.1.5+quic
rustls-version: v0.13.0

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ngtcp2-linux.yml
Expand Up @@ -46,7 +46,7 @@ permissions: {}

env:
MAKEFLAGS: -j 3
quictls-version: 3.1.4+quic
quictls-version: 3.1.5+quic
gnutls-version: 3.8.3
wolfssl-version: master
nghttp3-version: v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quiche-linux.yml
Expand Up @@ -46,7 +46,7 @@ permissions: {}

env:
MAKEFLAGS: -j 3
openssl-version: 3.1.4+quic
openssl-version: 3.1.5+quic
nghttp3-version: v1.2.0
ngtcp2-version: v1.4.0
nghttp2-version: v1.61.0
Expand Down
6 changes: 3 additions & 3 deletions docs/HTTP3.md
Expand Up @@ -53,7 +53,7 @@ to use a TLS library that has such APIs and that works with *ngtcp2*.

Build quictls

% git clone --depth 1 -b openssl-3.1.4+quic https://github.com/quictls/openssl
% git clone --depth 1 -b openssl-3.1.5+quic https://github.com/quictls/openssl
% cd openssl
% ./config enable-tls1_3 --prefix=<somewhere1>
% make
Expand Down Expand Up @@ -209,10 +209,10 @@ Build curl:

QUIC support is **EXPERIMENTAL**

Build OpenSSL 3.2.0
Build OpenSSL 3.2.1

% cd ..
% git clone -b openssl-3.2.0 https://github.com/openssl/openssl
% git clone -b openssl-3.2.1 https://github.com/openssl/openssl
% cd openssl
% ./config enable-tls1_3 --prefix=<somewhere> --libdir=<somewhere>/lib
% make
Expand Down