You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 9, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# shadowsocks-go
2
2
3
-
Current version: 1.1.1[](https://travis-ci.org/shadowsocks/shadowsocks-go)
3
+
Current version: 1.1.2[](https://travis-ci.org/shadowsocks/shadowsocks-go)
4
4
5
5
shadowsocks-go is a lightweight tunnel proxy which can help you get through firewalls. It is a port of [shadowsocks](https://github.com/clowwindy/shadowsocks).
6
6
@@ -23,7 +23,7 @@ go get github.com/shadowsocks/shadowsocks-go/cmd/shadowsocks-server
23
23
go get github.com/shadowsocks/shadowsocks-go/cmd/shadowsocks-local
24
24
```
25
25
26
-
It's recommend to disable cgo when compiling shadowsocks-go. This will prevent the go runtime from creating too many threads for dns lookup.
26
+
It's recommended to disable cgo when compiling shadowsocks-go. This will prevent the go runtime from creating too many threads for dns lookup.
27
27
28
28
# Usage
29
29
@@ -35,8 +35,8 @@ Configuration file is in json format and has the same syntax with [shadowsocks-n
35
35
server your server ip or hostname
36
36
server_port server port
37
37
local_port local socks5 proxy port
38
-
method encryption method, null by default, the following methods are supported:
AES is recommended for shadowsocks-go. ([Intel AES Instruction Set](http://en.wikipedia.org/wiki/AES_instruction_set) will be used if available and can make encryption/decryption fast.)
54
+
AES is recommended for shadowsocks-go. [Intel AES Instruction Set](http://en.wikipedia.org/wiki/AES_instruction_set) will be used if available and can make encryption/decryption very fast. To be more specific, **`aes-128-cfb` is recommended as it is faster and [secure enough](https://www.schneier.com/blog/archives/2009/07/another_new_aes.html)**.
55
55
56
-
**rc4 and table encryption methods are deprecated because they are not secure**.
56
+
**rc4 and table encryption methods are deprecated because they are not secure.**
57
57
58
58
## Command line options
59
59
60
60
Command line options can override settings from configuration files. Use `-h` option to see all available options.
0 commit comments