From f716380080b29a79b8caaadb8c0cb64165e2bd10 Mon Sep 17 00:00:00 2001 From: angristan Date: Sat, 22 Sep 2018 22:33:25 +0200 Subject: [PATCH] Fixes --- openvpn-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 956c64e..c9f232d 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -282,11 +282,11 @@ function installQuestions () { done if [[ $CUSTOMIZE_ENC == "n" ]];then # Use default, sane and fast paramters - CIPHER="cipher AES-128-GCM" - CERT_TYPE="1" + CIPHER="AES-128-GCM" + CERT_TYPE="1" # ECDSA CERT_CURVE="secp256r1" CC_CIPHER="TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256" - DH_TYPE="1" + DH_TYPE="1" # ECDH DH_CURVE="secp256r1" HMAC_ALG="SHA256" else