Skip to content

Commit

Permalink
OpenSSL: Update to version 1.1.1i
Browse files Browse the repository at this point in the history
OpenSSL version 1.0.2 is out of support. Version 1.1.1i needed some
updated configuration flags and an updated Tor to work with static
linking.
  • Loading branch information
EchterAgo committed Mar 11, 2021
1 parent 54645d1 commit 9a94dbd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
16 changes: 12 additions & 4 deletions contrib/make_openssl
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@

set -e

CONFIG_OPTIONS="no-bf no-camellia no-capieng no-cast no-cms no-des no-dsa
no-dso no-engines no-err no-hw no-idea no-jpake no-krb5 no-md2 no-mdc2 no-md4
no-psk no-rc2 no-rc4 no-rc5 no-seed no-shared no-srp no-ssl2 no-ssl3 no-test
no-zlib"
CONFIG_OPTIONS="no-autoalginit no-autoerrinit no-autoload-config no-capieng
no-cms no-comp no-ct no-deprecated no-dso no-dynamic-engine no-engine no-err
no-filenames no-gost no-hw-padlock no-ocsp no-psk no-shared no-srp no-tests
no-ts no-ui no-zlib"

# Disable SSLv2 & SSLv3
CONFIG_OPTIONS="$CONFIG_OPTIONS no-ssl2 no-ssl2-method no-ssl3 no-ssl3-method"

# Disable algorithms
CONFIG_OPTIONS="no-aria no-bf no-blake2 no-camellia no-cast no-cmac no-des
no-dsa no-idea no-md4 no-mdc2 no-ocb no-rc2 no-rc4 no-rmd160 no-scrypt no-seed
no-siphash no-sm2 no-sm3 no-sm4 no-whirlpool"

here=$(dirname $(realpath "$0" 2> /dev/null || grealpath "$0"))
. "$here"/base.sh || (echo "Could not source contrib/base.sh" && exit 1)
Expand Down
2 changes: 1 addition & 1 deletion contrib/openssl
Submodule openssl updated 19280 files

0 comments on commit 9a94dbd

Please sign in to comment.