Skip to content

Commit

Permalink
update default cipher since stream cipher support was discontinued
Browse files Browse the repository at this point in the history
  • Loading branch information
Snawoot committed May 5, 2021
1 parent a63890b commit 60bce5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"keywords": ["V2ray", "Shadowsocks", "V2Ray-plugin"],
"env": {
"ENCRYPT": {
"description": "Encryption method, due to https blessing, choose the simplest one, default: rc4-md5, others are(aes-256-cfb,chacha20-ietf-poly1305,salsa20,chacha20-ietf etc.)",
"value": "rc4-md5"
"description": "Encryption method, due to https blessing, choose the simplest one, default: chacha20-ietf-poly1305, others are(aes-256-cfb,chacha20-ietf-poly1305,salsa20,chacha20-ietf etc.)",
"value": "chacha20-ietf-poly1305"
},
"PASSWORD": {
"description": "The password of shadowsocks, you can use uuid as the password (http://www.uuid.online/ online generation)",
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fi
echo ${PASSWORD}

if [[ -z "${ENCRYPT}" ]]; then
ENCRYPT="rc4-md5"
ENCRYPT="chacha20-ietf-poly1305"
fi


Expand Down

0 comments on commit 60bce5d

Please sign in to comment.