Remove some unsafe ciphers
This commit is contained in:
parent
3229d8d805
commit
2e5d5ea46c
2 changed files with 8 additions and 27 deletions
21
README.md
21
README.md
|
@ -42,7 +42,7 @@ Shadowsocks-Go 版:
|
||||||
Shadowsocks-libev 版:
|
Shadowsocks-libev 版:
|
||||||
/etc/shadowsocks-libev/config.json
|
/etc/shadowsocks-libev/config.json
|
||||||
|
|
||||||
可选 16 种加密方式的其中之一(Python 和 libev 版)
|
可选 14 种加密方式的其中之一(Python 和 libev 版)
|
||||||
aes-256-gcm
|
aes-256-gcm
|
||||||
aes-192-gcm
|
aes-192-gcm
|
||||||
aes-128-gcm
|
aes-128-gcm
|
||||||
|
@ -57,10 +57,8 @@ camellia-192-cfb
|
||||||
camellia-256-cfb
|
camellia-256-cfb
|
||||||
chacha20-ietf-poly1305
|
chacha20-ietf-poly1305
|
||||||
chacha20-ietf
|
chacha20-ietf
|
||||||
chacha20
|
|
||||||
rc4-md5
|
|
||||||
|
|
||||||
可选 9 种加密方式的其中之一(Go 版)
|
可选 7 种加密方式的其中之一(Go 版)
|
||||||
aes-256-cfb
|
aes-256-cfb
|
||||||
aes-192-cfb
|
aes-192-cfb
|
||||||
aes-128-cfb
|
aes-128-cfb
|
||||||
|
@ -68,26 +66,19 @@ aes-256-ctr
|
||||||
aes-192-ctr
|
aes-192-ctr
|
||||||
aes-128-ctr
|
aes-128-ctr
|
||||||
chacha20-ietf
|
chacha20-ietf
|
||||||
chacha20
|
|
||||||
rc4-md5
|
|
||||||
|
|
||||||
可选 15 种加密方式的其中之一(none 是不加密,ShadowsocksR 版)
|
可选 10 种加密方式的其中之一(none 是不加密,ShadowsocksR 版)
|
||||||
none
|
none
|
||||||
aes-256-cfb
|
aes-256-cfb
|
||||||
aes-192-cfb
|
aes-192-cfb
|
||||||
aes-128-cfb
|
aes-128-cfb
|
||||||
aes-256-cfb8
|
aes-256-cfb
|
||||||
aes-192-cfb8
|
aes-192-cfb
|
||||||
aes-128-cfb8
|
aes-128-cfb
|
||||||
aes-256-ctr
|
aes-256-ctr
|
||||||
aes-192-ctr
|
aes-192-ctr
|
||||||
aes-128-ctr
|
aes-128-ctr
|
||||||
chacha20-ietf
|
chacha20-ietf
|
||||||
chacha20
|
|
||||||
salsa20
|
|
||||||
xchacha20
|
|
||||||
xsalsa20
|
|
||||||
rc4-md5
|
|
||||||
|
|
||||||
可选 7 种协议(protocol)的其中之一(仅限 ShadowsocksR 版)
|
可选 7 种协议(protocol)的其中之一(仅限 ShadowsocksR 版)
|
||||||
origin
|
origin
|
||||||
|
|
|
@ -4,7 +4,7 @@ export PATH
|
||||||
#
|
#
|
||||||
# Auto install Shadowsocks Server (all version)
|
# Auto install Shadowsocks Server (all version)
|
||||||
#
|
#
|
||||||
# Copyright (C) 2016-2019 Teddysun <i@teddysun.com>
|
# Copyright (C) 2016-2019 Teddysun <i@teddysun.com> Licensed: GPLv3
|
||||||
#
|
#
|
||||||
# System Required: CentOS 6+, Debian7+, Ubuntu12+
|
# System Required: CentOS 6+, Debian7+, Ubuntu12+
|
||||||
#
|
#
|
||||||
|
@ -24,6 +24,7 @@ export PATH
|
||||||
# @madeye <https://github.com/madeye>
|
# @madeye <https://github.com/madeye>
|
||||||
# @linusyang <https://github.com/linusyang>
|
# @linusyang <https://github.com/linusyang>
|
||||||
# @Akkariiin <https://github.com/Akkariiin>
|
# @Akkariiin <https://github.com/Akkariiin>
|
||||||
|
# @teddysun <https://github.com/teddysun>
|
||||||
|
|
||||||
red='\033[0;31m'
|
red='\033[0;31m'
|
||||||
green='\033[0;32m'
|
green='\033[0;32m'
|
||||||
|
@ -86,9 +87,6 @@ camellia-256-cfb
|
||||||
xchacha20-ietf-poly1305
|
xchacha20-ietf-poly1305
|
||||||
chacha20-ietf-poly1305
|
chacha20-ietf-poly1305
|
||||||
chacha20-ietf
|
chacha20-ietf
|
||||||
chacha20
|
|
||||||
salsa20
|
|
||||||
rc4-md5
|
|
||||||
)
|
)
|
||||||
go_ciphers=(
|
go_ciphers=(
|
||||||
aes-256-cfb
|
aes-256-cfb
|
||||||
|
@ -98,9 +96,6 @@ aes-256-ctr
|
||||||
aes-192-ctr
|
aes-192-ctr
|
||||||
aes-128-ctr
|
aes-128-ctr
|
||||||
chacha20-ietf
|
chacha20-ietf
|
||||||
chacha20
|
|
||||||
salsa20
|
|
||||||
rc4-md5
|
|
||||||
)
|
)
|
||||||
r_ciphers=(
|
r_ciphers=(
|
||||||
none
|
none
|
||||||
|
@ -114,11 +109,6 @@ aes-256-ctr
|
||||||
aes-192-ctr
|
aes-192-ctr
|
||||||
aes-128-ctr
|
aes-128-ctr
|
||||||
chacha20-ietf
|
chacha20-ietf
|
||||||
chacha20
|
|
||||||
salsa20
|
|
||||||
xchacha20
|
|
||||||
xsalsa20
|
|
||||||
rc4-md5
|
|
||||||
)
|
)
|
||||||
# Reference URL:
|
# Reference URL:
|
||||||
# https://github.com/shadowsocksr-rm/shadowsocks-rss/blob/master/ssr.md
|
# https://github.com/shadowsocksr-rm/shadowsocks-rss/blob/master/ssr.md
|
||||||
|
|
Loading…
Add table
Reference in a new issue