Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Shadowsocks[R] 支持的加密方法, 协议和混淆

icymind edited this page Sep 9, 2017 · 1 revision

Shadowsocks 二进制文件来自项目 shadowsocks/openwrt-shadowsocks , 所支持的配置请参考 README

ShadowsocksR 二进制文件来自项目 ywb94/openwrt-ssr , 它所支持的配置请参考其源码: client-config.lua

encrypt_methods = {
	"table",
	"rc4",
	"rc4-md5",
	"rc4-md5-6",
	"aes-128-cfb",
	"aes-192-cfb",
	"aes-256-cfb",
	"aes-128-ctr",
	"aes-192-ctr",
	"aes-256-ctr",	
	"bf-cfb",
	"camellia-128-cfb",
	"camellia-192-cfb",
	"camellia-256-cfb",
	"cast5-cfb",
	"des-cfb",
	"idea-cfb",
	"rc2-cfb",
	"seed-cfb",
	"salsa20",
	"chacha20",
	"chacha20-ietf",
}

protocol = {
	"origin",
	"verify_simple",
	"verify_sha1",		
	"auth_sha1",
	"auth_sha1_v2",
	"auth_sha1_v4",
	"auth_aes128_sha1",
	"auth_aes128_md5",
}

obfs = {
	"plain",
	"http_simple",
	"http_post",
	"tls_simple",	
	"tls1.2_ticket_auth",
}
Clone this wiki locally