Skip to content

Commit

Permalink
Merge pull request Snawoot#3 from Snawoot/default_cipher
Browse files Browse the repository at this point in the history
Update default cipher since stream cipher support was discontinued
  • Loading branch information
aditya-shri authored May 5, 2021
2 parents 8a2dbc8 + 60bce5d commit d55c720
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 d55c720

Please sign in to comment.