@@ -84,61 +84,63 @@ URI Syntax
8484 - Cipher is consisted by cipher name, colon ':' and cipher key.
8585 - Full supported cipher list: (Pure python ciphers has ciphername suffix -py)
8686
87- +----------------+------------+-----------+-------------+
88- | Cipher | Key Length | IV Length | Score (0-5) |
89- +================+============+===========+=============+
90- | table-py | any | 0 | 0 (lowest) |
91- +----------------+------------+-----------+-------------+
92- | rc4, rc4-py | 16 | 0 | 0 (lowest) |
93- +----------------+------------+-----------+-------------+
94- | rc4-md5 | 16 | 16 | 0.5 |
95- | | | | |
96- | rc4-md5-py | | | |
97- +----------------+------------+-----------+-------------+
98- | chacha20 | 32 | 8 | 5 (highest) |
99- | | | | |
100- | chacha20-py | | | |
101- +----------------+------------+-----------+-------------+
102- | salsa20 | 32 | 8 | 4.5 |
103- | | | | |
104- | salsa20-py | | | |
105- +----------------+------------+-----------+-------------+
106- | aes-128-cfb | 16 | 16 | 3 |
107- | | | | |
108- | aes-128-cfb-py | | | |
109- | | | | |
110- | aes-128-cfb8-py| | | |
111- | | | | |
112- | aes-128-cfb1-py| | | |
113- +----------------+------------+-----------+-------------+
114- | aes-192-cfb | 24 | 16 | 3.5 |
115- | | | | |
116- | aes-192-cfb-py | | | |
117- | | | | |
118- | aes-192-cfb8-py| | | |
119- | | | | |
120- | aes-192-cfb1-py| | | |
121- +----------------+------------+-----------+-------------+
122- | aes-256-cfb | 32 | 16 | 4.5 |
123- | | | | |
124- | aes-256-cfb-py | | | |
125- | | | | |
126- | aes-256-ctr-py | | | |
127- | | | | |
128- | aes-256-ofb-py | | | |
129- | | | | |
130- | aes-256-cfb8-py| | | |
131- | | | | |
132- | aes-256-cfb1-py| | | |
133- +----------------+------------+-----------+-------------+
134- | bf-cfb | 16 | 8 | 1 |
135- | | | | |
136- | bf-cfb-py | | | |
137- +----------------+------------+-----------+-------------+
138- | cast5-cfb | 16 | 8 | 2.5 |
139- +----------------+------------+-----------+-------------+
140- | des-cfb | 8 | 8 | 1.5 |
141- +----------------+------------+-----------+-------------+
87+ +-----------------+------------+-----------+-------------+
88+ | Cipher | Key Length | IV Length | Score (0-5) |
89+ +=================+============+===========+=============+
90+ | table-py | any | 0 | 0 (lowest) |
91+ +-----------------+------------+-----------+-------------+
92+ | rc4, rc4-py | 16 | 0 | 0 (lowest) |
93+ +-----------------+------------+-----------+-------------+
94+ | rc4-md5 | 16 | 16 | 0.5 |
95+ | | | | |
96+ | rc4-md5-py | | | |
97+ +-----------------+------------+-----------+-------------+
98+ | chacha20 | 32 | 8 | 5 (highest) |
99+ | | | | |
100+ | chacha20-py | | | |
101+ | | | | |
102+ | chacha20-ietf-py| | 12 | |
103+ +-----------------+------------+-----------+-------------+
104+ | salsa20 | 32 | 8 | 4.5 |
105+ | | | | |
106+ | salsa20-py | | | |
107+ +-----------------+------------+-----------+-------------+
108+ | aes-128-cfb | 16 | 16 | 3 |
109+ | | | | |
110+ | aes-128-cfb-py | | | |
111+ | | | | |
112+ | aes-128-cfb8-py | | | |
113+ | | | | |
114+ | aes-128-cfb1-py | | | |
115+ +-----------------+------------+-----------+-------------+
116+ | aes-192-cfb | 24 | 16 | 3.5 |
117+ | | | | |
118+ | aes-192-cfb-py | | | |
119+ | | | | |
120+ | aes-192-cfb8-py | | | |
121+ | | | | |
122+ | aes-192-cfb1-py | | | |
123+ +-----------------+------------+-----------+-------------+
124+ | aes-256-cfb | 32 | 16 | 4.5 |
125+ | | | | |
126+ | aes-256-cfb-py | | | |
127+ | | | | |
128+ | aes-256-ctr-py | | | |
129+ | | | | |
130+ | aes-256-ofb-py | | | |
131+ | | | | |
132+ | aes-256-cfb8-py | | | |
133+ | | | | |
134+ | aes-256-cfb1-py | | | |
135+ +-----------------+------------+-----------+-------------+
136+ | bf-cfb | 16 | 8 | 1 |
137+ | | | | |
138+ | bf-cfb-py | | | |
139+ +-----------------+------------+-----------+-------------+
140+ | cast5-cfb | 16 | 8 | 2.5 |
141+ +-----------------+------------+-----------+-------------+
142+ | des-cfb | 8 | 8 | 1.5 |
143+ +-----------------+------------+-----------+-------------+
142144
143145 - Some pure python ciphers (aes-256-cfb1-py) is quite slow, and is not recommended to use without PyPy speedup. Try install pycryptodome _ and use C version cipher instead.
144146 - To enable OTA encryption with shadowsocks, add '!' immediately after cipher name.
0 commit comments