Skip to content

Commit 06fd890

Browse files
authored
Update centos_install_ss.sh
1 parent 2e287aa commit 06fd890

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

centos_install_ss.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ function getData()
8080
echo "13)chacha20-ietf"
8181
echo "14)chacha20-ietf-poly1305"
8282
echo "15)xchacha20-ietf-poly1305"
83-
read -p "请选择(默认aes-256-cfb" answer
83+
read -p "请选择(默认aes-256-gcm" answer
8484
if [ -z "$answer" ]; then
85-
method="aes-256-cfb"
85+
method="aes-256-gcm"
8686
else
8787
case $answer in
8888
1)
@@ -131,8 +131,8 @@ function getData()
131131
method="xchacha20-ietf-poly1305"
132132
;;
133133
*)
134-
echo "无效的选择,使用默认的aes-256-cfb"
135-
method="aes-256-cfb"
134+
echo "无效的选择,使用默认的aes-256-gcm"
135+
method="aes-256-gcm"
136136
esac
137137
fi
138138
echo ""

0 commit comments

Comments
 (0)