8b892e3347
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).
20 lines
316 B
Bash
Executable File
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
|