From 8ed1f36a8845b6d809707355a2b35d487cda031e Mon Sep 17 00:00:00 2001 From: tobtoht Date: Thu, 10 Feb 2022 13:36:47 +0100 Subject: [PATCH] Update OpenSSL to 1.1.1m --- Dockerfile.linux | 4 ++-- Dockerfile.windows | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.linux b/Dockerfile.linux index e897c56..19d03a1 100644 --- a/Dockerfile.linux +++ b/Dockerfile.linux @@ -28,9 +28,9 @@ RUN bash verify-packages.sh && \ # OpenSSL: Required for CMake, Qt 5.15.2, libwallet, Tor ENV OPENSSL_ROOT_DIR=/usr/local/openssl/ -RUN git clone -b OpenSSL_1_1_1l --depth 1 https://github.com/openssl/openssl.git && \ +RUN git clone -b OpenSSL_1_1_1m --depth 1 https://github.com/openssl/openssl.git && \ cd openssl && \ - git reset --hard fb047ebc87b18bdc4cf9ddee9ee1f5ed93e56aff && \ + git reset --hard ac3cef223a4c61d6bee34527b6d4c8c6432494a7 && \ ./config no-shared no-dso --prefix=/usr/local/openssl && \ make -j$THREADS && \ make -j$THREADS install_sw && \ diff --git a/Dockerfile.windows b/Dockerfile.windows index 6588bd8..933c9ff 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -131,8 +131,8 @@ RUN wget https://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.16.tar.gz && \ rm -rf $(pwd) # OpenSSL -> Tor -RUN wget https://www.openssl.org/source/openssl-1.1.1l.tar.gz && \ - echo "0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1 openssl-1.1.1l.tar.gz" | sha256sum -c && \ +RUN wget https://www.openssl.org/source/openssl-1.1.1m.tar.gz && \ + echo "f89199be8b23ca45fc7cb9f1d8d3ee67312318286ad030f5316aca6462db6c96 openssl-1.1.1m.tar.gz" | sha256sum -c && \ tar -xzf openssl-1.1.1l.tar.gz && \ rm openssl-1.1.1l.tar.gz && \ cd openssl-1.1.1l && \