Update OpenSSL to 1.1.1m

This commit is contained in:
tobtoht 2022-02-10 13:36:47 +01:00
parent fa952b6e39
commit 8ed1f36a88
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C
2 changed files with 4 additions and 4 deletions

View file

@ -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 && \

View file

@ -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 && \