luksrku/build_openssl
Johannes Bauer 8b892e3347 Update OpenSSL version and change sig algs
While the PSK cipher suites do not use any ECDHE/RSA signatures, in the
future someone may change the code. In that case, as a robustness
measure, already set the acceptable signature algorithms now.
Additionally upgrade to OpenSSL v1.1.0e and include the comment to
include X448 once it becomes available for TLS ECDHE (it's not yet,
unfortunately).
2017-03-07 21:40:21 +01:00

20 lines
316 B
Bash
Executable File

#!/bin/bash
#
#
VERSION="1.1.0e"
URL="https://www.openssl.org/source/openssl-${VERSION}.tar.gz"
LOCAL_TARGZ="openssl-${VERSION}.tar.gz"
LOCAL_DIR="openssl-${VERSION}"
if [ ! -f "$LOCAL_TARGZ" ]; then
wget "$URL"
fi
if [ ! -d "$LOCAL_DIR" ]; then
tar xfz "$LOCAL_TARGZ"
cd "$LOCAL_DIR"
./config
make -j 16
fi