mirror of
https://github.com/netchx/netch.git
synced 2026-03-22 18:29:46 +08:00
100 lines
2.4 KiB
C#
100 lines
2.4 KiB
C#
using System.Collections.Generic;
|
|
using Netch.Models;
|
|
|
|
namespace Netch.ServerEx.ShadowsocksR
|
|
{
|
|
public class ShadowsocksR : Server
|
|
{
|
|
/// <summary>
|
|
/// 加密方式
|
|
/// </summary>
|
|
public string EncryptMethod { get; set; } = SSRGlobal.EncryptMethods[0];
|
|
|
|
/// <summary>
|
|
/// 混淆
|
|
/// </summary>
|
|
public string OBFS { get; set; } = SSRGlobal.OBFSs[0];
|
|
|
|
/// <summary>
|
|
/// 混淆参数
|
|
/// </summary>
|
|
public string OBFSParam { get; set; }
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Password { get; set; }
|
|
|
|
/// <summary>
|
|
/// 协议
|
|
/// </summary>
|
|
public string Protocol { get; set; } = SSRGlobal.Protocols[0];
|
|
|
|
/// <summary>
|
|
/// 协议参数
|
|
/// </summary>
|
|
public string ProtocolParam { get; set; }
|
|
|
|
public ShadowsocksR()
|
|
{
|
|
Type = "SSR";
|
|
}
|
|
}
|
|
|
|
public class SSRGlobal
|
|
{
|
|
/// <summary>
|
|
/// SSR 协议列表
|
|
/// </summary>
|
|
public static readonly List<string> Protocols = new List<string>
|
|
{
|
|
"origin",
|
|
"verify_deflate",
|
|
"auth_sha1_v4",
|
|
"auth_aes128_md5",
|
|
"auth_aes128_sha1",
|
|
"auth_chain_a"
|
|
};
|
|
|
|
/// <summary>
|
|
/// SSR 混淆列表
|
|
/// </summary>
|
|
public static readonly List<string> OBFSs = new List<string>
|
|
{
|
|
"plain",
|
|
"http_simple",
|
|
"http_post",
|
|
"tls1.2_ticket_auth"
|
|
};
|
|
|
|
/// <summary>
|
|
/// SS/SSR 加密方式
|
|
/// </summary>
|
|
public static readonly List<string> EncryptMethods = new List<string>
|
|
{
|
|
"none",
|
|
"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"
|
|
};
|
|
}
|
|
} |