From 06e75979421e0724fc8959d4f730ccb5398d986e Mon Sep 17 00:00:00 2001 From: angristan Date: Sat, 22 Sep 2018 14:25:30 +0200 Subject: [PATCH] Use AES-128-GCM by default --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index ee7385c..fe3f083 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -282,7 +282,7 @@ function installOpenVPN () { done if [[ $CUSTOMIZE_ENC == "n" ]];then # Use default, sane and fast paramters - CIPHER="cipher AES-128-CBC" + CIPHER="cipher AES-128-GCM" DH_KEY_SIZE="2048" RSA_KEY_SIZE="2048" else