From 1a12e22b0cd55e51e83615ef1987f052cdba372e Mon Sep 17 00:00:00 2001 From: Max Dymond Date: Wed, 16 Jun 2021 14:15:17 +0100 Subject: [PATCH] Update openssl to 1.1.1k Update the version of openssl in use to 1.1.1k. Sync the config invocation with that of the openssl oss-fuzz project. Fixes #43 --- scripts/download_openssl.sh | 2 +- scripts/install_openssl.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/download_openssl.sh b/scripts/download_openssl.sh index 730ea9df2..ab2a42be9 100755 --- a/scripts/download_openssl.sh +++ b/scripts/download_openssl.sh @@ -4,5 +4,5 @@ set -ex # Clone the repository to the specified directory. -git clone --branch OpenSSL_1_0_2m https://github.com/openssl/openssl $1 +git clone --branch OpenSSL_1_1_1k https://github.com/openssl/openssl $1 diff --git a/scripts/install_openssl.sh b/scripts/install_openssl.sh index c1c8027e3..3041ee396 100755 --- a/scripts/install_openssl.sh +++ b/scripts/install_openssl.sh @@ -49,6 +49,7 @@ ${ARCH_PROG} ./config --prefix=${INSTALLDIR} \ enable-ssl3-method \ enable-nextprotoneg \ enable-weak-ssl-ciphers \ + --with-fuzzer-lib=/usr/lib/libFuzzingEngine \ $CFLAGS \ ${OPENSSLFLAGS}