From b5b6bbdd2c21318e863790521e0e22abccd0e33e Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com> Date: Thu, 23 Apr 2020 21:12:41 +0900 Subject: [PATCH] Bump OpenSSL to 1.1.1g --- README.rst | 4 ++-- ci/build_openssl.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index dff91190..ac27d79f 100644 --- a/README.rst +++ b/README.rst @@ -54,14 +54,14 @@ The client and server under examples directory require patched OpenSSL as crypto backend: * Patched OpenSSL - (https://github.com/tatsuhiro-t/openssl/tree/OpenSSL_1_1_1d-quic-draft-27) + (https://github.com/tatsuhiro-t/openssl/tree/OpenSSL_1_1_1g-quic-draft-27) Build from git -------------- .. code-block:: text - $ git clone --depth 1 -b OpenSSL_1_1_1d-quic-draft-27 https://github.com/tatsuhiro-t/openssl + $ git clone --depth 1 -b OpenSSL_1_1_1g-quic-draft-27 https://github.com/tatsuhiro-t/openssl $ cd openssl $ # For Linux $ ./config enable-tls1_3 --prefix=$PWD/build diff --git a/ci/build_openssl.sh b/ci/build_openssl.sh index 2abc69cc..04c81a21 100755 --- a/ci/build_openssl.sh +++ b/ci/build_openssl.sh @@ -2,7 +2,7 @@ #build last openssl master (for Travis) cd .. -git clone --depth 1 -b OpenSSL_1_1_1d-quic-draft-27 https://github.com/tatsuhiro-t/openssl +git clone --depth 1 -b OpenSSL_1_1_1g-quic-draft-27 https://github.com/tatsuhiro-t/openssl cd openssl ./config enable-tls1_3 --prefix=$PWD/build make -j$(nproc) -- GitLab