├── .gitignore ├── .travis.yml ├── CHANGELOG ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── shadowsocks-local │ ├── config.json │ └── local.go └── shadowsocks-server │ ├── config.json │ └── server.go ├── deb ├── DEBIAN │ ├── conffiles │ ├── control │ ├── postinst │ ├── postrm │ └── prerm └── etc │ ├── init.d │ └── shadowsocks │ └── shadowsocks │ └── config.json ├── encrypt ├── aeadCipher.go ├── encrypt.go ├── streamCipher.go └── streamCipher_test.go ├── sample-config ├── client-multi-server.json └── server-multi-port.json ├── script ├── README.md ├── build.sh ├── createdeb.sh ├── curl.sh ├── http.go ├── set-version.sh ├── test.sh └── win32build.bat ├── shadowsocks ├── config.go ├── config_test.go ├── dialer.go ├── init.go ├── log.go ├── pipe.go ├── tcpConn.go ├── udpConn.go ├── udpRelay.go ├── util.go └── util_test.go └── vendor ├── github.com ├── Yawning │ └── chacha20 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chacha20.go │ │ ├── chacha20_amd64.go │ │ ├── chacha20_amd64.py │ │ ├── chacha20_amd64.s │ │ └── chacha20_ref.go └── miekg │ └── dns │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── COPYRIGHT │ ├── LICENSE │ ├── README.md │ ├── client.go │ ├── clientconfig.go │ ├── compress_generate.go │ ├── dane.go │ ├── defaults.go │ ├── dns.go │ ├── dnssec.go │ ├── dnssec_keygen.go │ ├── dnssec_keyscan.go │ ├── dnssec_privkey.go │ ├── doc.go │ ├── edns.go │ ├── format.go │ ├── generate.go │ ├── labels.go │ ├── msg.go │ ├── msg_generate.go │ ├── msg_helpers.go │ ├── nsecx.go │ ├── privaterr.go │ ├── rawmsg.go │ ├── reverse.go │ ├── sanitize.go │ ├── scan.go │ ├── scan_rr.go │ ├── scanner.go │ ├── server.go │ ├── sig0.go │ ├── singleinflight.go │ ├── smimea.go │ ├── tlsa.go │ ├── tsig.go │ ├── types.go │ ├── types_generate.go │ ├── udp.go │ ├── udp_linux.go │ ├── udp_other.go │ ├── udp_windows.go │ ├── update.go │ ├── xfr.go │ ├── zcompress.go │ ├── zmsg.go │ └── ztypes.go ├── golang.org └── x │ └── crypto │ ├── LICENSE │ ├── PATENTS │ ├── blowfish │ ├── block.go │ ├── cipher.go │ └── const.go │ ├── cast5 │ └── cast5.go │ ├── chacha20poly1305 │ ├── chacha20poly1305.go │ ├── chacha20poly1305_amd64.go │ ├── chacha20poly1305_amd64.s │ ├── chacha20poly1305_generic.go │ ├── chacha20poly1305_noasm.go │ └── internal │ │ └── chacha20 │ │ └── chacha_generic.go │ ├── hkdf │ └── hkdf.go │ ├── poly1305 │ ├── poly1305.go │ ├── sum_amd64.go │ ├── sum_amd64.s │ ├── sum_arm.go │ ├── sum_arm.s │ └── sum_ref.go │ └── salsa20 │ └── salsa │ ├── hsalsa20.go │ ├── salsa2020_amd64.s │ ├── salsa208.go │ ├── salsa20_amd64.go │ └── salsa20_ref.go └── vendor.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.deb 2 | script/http 3 | bin 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/README.md -------------------------------------------------------------------------------- /cmd/shadowsocks-local/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/cmd/shadowsocks-local/config.json -------------------------------------------------------------------------------- /cmd/shadowsocks-local/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/cmd/shadowsocks-local/local.go -------------------------------------------------------------------------------- /cmd/shadowsocks-server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/cmd/shadowsocks-server/config.json -------------------------------------------------------------------------------- /cmd/shadowsocks-server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/cmd/shadowsocks-server/server.go -------------------------------------------------------------------------------- /deb/DEBIAN/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/deb/DEBIAN/conffiles -------------------------------------------------------------------------------- /deb/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/deb/DEBIAN/control -------------------------------------------------------------------------------- /deb/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/deb/DEBIAN/postinst -------------------------------------------------------------------------------- /deb/DEBIAN/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/deb/DEBIAN/postrm -------------------------------------------------------------------------------- /deb/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/deb/DEBIAN/prerm -------------------------------------------------------------------------------- /deb/etc/init.d/shadowsocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/deb/etc/init.d/shadowsocks -------------------------------------------------------------------------------- /deb/etc/shadowsocks/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/deb/etc/shadowsocks/config.json -------------------------------------------------------------------------------- /encrypt/aeadCipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/encrypt/aeadCipher.go -------------------------------------------------------------------------------- /encrypt/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/encrypt/encrypt.go -------------------------------------------------------------------------------- /encrypt/streamCipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/encrypt/streamCipher.go -------------------------------------------------------------------------------- /encrypt/streamCipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/encrypt/streamCipher_test.go -------------------------------------------------------------------------------- /sample-config/client-multi-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/sample-config/client-multi-server.json -------------------------------------------------------------------------------- /sample-config/server-multi-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/sample-config/server-multi-port.json -------------------------------------------------------------------------------- /script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/script/README.md -------------------------------------------------------------------------------- /script/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/script/build.sh -------------------------------------------------------------------------------- /script/createdeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/script/createdeb.sh -------------------------------------------------------------------------------- /script/curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/script/curl.sh -------------------------------------------------------------------------------- /script/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/script/http.go -------------------------------------------------------------------------------- /script/set-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/script/set-version.sh -------------------------------------------------------------------------------- /script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/script/test.sh -------------------------------------------------------------------------------- /script/win32build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/script/win32build.bat -------------------------------------------------------------------------------- /shadowsocks/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/config.go -------------------------------------------------------------------------------- /shadowsocks/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/config_test.go -------------------------------------------------------------------------------- /shadowsocks/dialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/dialer.go -------------------------------------------------------------------------------- /shadowsocks/init.go: -------------------------------------------------------------------------------- 1 | package shadowsocks 2 | 3 | func init() { 4 | SetLogger() 5 | } 6 | -------------------------------------------------------------------------------- /shadowsocks/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/log.go -------------------------------------------------------------------------------- /shadowsocks/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/pipe.go -------------------------------------------------------------------------------- /shadowsocks/tcpConn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/tcpConn.go -------------------------------------------------------------------------------- /shadowsocks/udpConn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/udpConn.go -------------------------------------------------------------------------------- /shadowsocks/udpRelay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/udpRelay.go -------------------------------------------------------------------------------- /shadowsocks/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/util.go -------------------------------------------------------------------------------- /shadowsocks/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/shadowsocks/util_test.go -------------------------------------------------------------------------------- /vendor/github.com/Yawning/chacha20/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/Yawning/chacha20/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Yawning/chacha20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/Yawning/chacha20/README.md -------------------------------------------------------------------------------- /vendor/github.com/Yawning/chacha20/chacha20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/Yawning/chacha20/chacha20.go -------------------------------------------------------------------------------- /vendor/github.com/Yawning/chacha20/chacha20_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/Yawning/chacha20/chacha20_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/Yawning/chacha20/chacha20_amd64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/Yawning/chacha20/chacha20_amd64.py -------------------------------------------------------------------------------- /vendor/github.com/Yawning/chacha20/chacha20_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/Yawning/chacha20/chacha20_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/Yawning/chacha20/chacha20_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/Yawning/chacha20/chacha20_ref.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/COPYRIGHT -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/README.md -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/client.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/clientconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/clientconfig.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/compress_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/compress_generate.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/dane.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/defaults.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/dnssec.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dnssec_keygen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/dnssec_keygen.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dnssec_keyscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/dnssec_keyscan.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dnssec_privkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/dnssec_privkey.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/edns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/edns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/format.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/generate.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/labels.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/msg_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/msg_generate.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/msg_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/msg_helpers.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/nsecx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/nsecx.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/privaterr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/privaterr.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/rawmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/rawmsg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/reverse.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/sanitize.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/scan.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/scan_rr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/scan_rr.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/scanner.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/server.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/sig0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/sig0.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/singleinflight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/singleinflight.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/smimea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/smimea.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tlsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/tlsa.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/tsig.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/types.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/types_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/types_generate.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/udp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/udp_linux.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/udp_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/udp_other.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/udp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/udp_windows.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/update.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/zcompress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/zcompress.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/zmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/zmsg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/ztypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/github.com/miekg/dns/ztypes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/blowfish/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/chacha20poly1305/internal/chacha20/chacha_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/chacha20poly1305/internal/chacha20/chacha_generic.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/poly1305.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/poly1305/poly1305.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/poly1305/sum_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/poly1305/sum_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/poly1305/sum_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/poly1305/sum_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/poly1305/sum_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa/hsalsa20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/salsa20/salsa/hsalsa20.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa/salsa2020_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/salsa20/salsa/salsa2020_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa/salsa208.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/salsa20/salsa/salsa208.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa/salsa20_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/golang.org/x/crypto/salsa20/salsa/salsa20_ref.go -------------------------------------------------------------------------------- /vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/shadowsocks-go/HEAD/vendor/vendor.json --------------------------------------------------------------------------------