Skip to content

Commit cd0976e

Browse files
authored
update openssl version to 3.5.3 (#715)
* update openssl version to 3.5.3 * Add perl-Time-Piece to Dockerfile dependencies * Add perl-Time-Piece package installation for aarch64
1 parent d8ac245 commit cd0976e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cryptography-linux/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN \
1010
if [ $(uname -m) = "x86_64" ] || [ $(uname -m) = "ppc64le" ]; \
1111
then \
1212
if stat /etc/redhat-release 1>&2 2>/dev/null; then \
13-
yum -y install binutils perl perl-IPC-Cmd && \
13+
yum -y install binutils perl perl-IPC-Cmd perl-Time-Piece && \
1414
yum -y clean all && \
1515
rm -rf /var/cache/yum; \
1616
fi; \
@@ -22,7 +22,7 @@ RUN \
2222
if [ $(uname -m) = "aarch64" ]; \
2323
then \
2424
if stat /etc/redhat-release 1>&2 2>/dev/null; then \
25-
yum -y install perl perl-IPC-Cmd && \
25+
yum -y install perl perl-IPC-Cmd perl-Time-Piece && \
2626
yum -y clean all && \
2727
rm -rf /var/cache/yum; \
2828
fi; \

cryptography-linux/openssl-version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export OPENSSL_VERSION="openssl-3.5.2"
2-
export OPENSSL_SHA256="c53a47e5e441c930c3928cf7bf6fb00e5d129b630e0aa873b08258656e7345ec"
1+
export OPENSSL_VERSION="openssl-3.5.3"
2+
export OPENSSL_SHA256="c9489d2abcf943cdc8329a57092331c598a402938054dc3a22218aea8a8ec3bf"
33
# We need a base set of flags because on Windows using MSVC
44
# enable-ec_nistp_64_gcc_128 doesn't work since there's no 128-bit type
55
export OPENSSL_BUILD_FLAGS_WINDOWS="no-ssl3 no-ssl3-method no-zlib no-shared no-module no-comp no-dynamic-engine no-apps no-docs no-sm2-precomp no-atexit"

0 commit comments

Comments
 (0)