Files
netch/Netch/Global.cs
Amazing_DM e33cd6d2d2 Update submodule
:sparkles:ssr添加rc4-md5-6加密支持
:sparkles:启动前清除dns
:art:增加启动成功率(:D
:globe_with_meridians:更新翻译文件
2020-03-19 12:30:58 +08:00

204 lines
5.1 KiB
C#

using System.Collections.Generic;
using System.Net;
using System.Net.NetworkInformation;
namespace Netch
{
public static class Global
{
/// <summary>
/// 主窗体
/// </summary>
public static Forms.MainForm MainForm;
/// <summary>
/// 设置窗体
/// </summary>
public static Forms.SettingForm SettingForm;
/// <summary>
/// SS/SSR 加密方式
/// </summary>
public static class EncryptMethods
{
/// <summary>
/// SS 加密列表
/// </summary>
public static List<string> SS = new List<string>
{
"rc4-md5",
"aes-128-gcm",
"aes-192-gcm",
"aes-256-gcm",
"aes-128-cfb",
"aes-192-cfb",
"aes-256-cfb",
"aes-128-ctr",
"aes-192-ctr",
"aes-256-ctr",
"camellia-128-cfb",
"camellia-192-cfb",
"camellia-256-cfb",
"bf-cfb",
"chacha20-ietf-poly1305",
"xchacha20-ietf-poly1305",
"salsa20",
"chacha20",
"chacha20-ietf"
};
/// <summary>
/// SSR 加密列表
/// </summary>
public static List<string> SSR = 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"
};
/// <summary>
/// VMess 解密列表
/// </summary>
public static List<string> VMess = new List<string>
{
"auto",
"none",
"aes-128-gcm",
"chacha20-poly1305"
};
/// <summary>
/// VMess QUIC 加密列表
/// </summary>
public static List<string> VMessQUIC = new List<string>
{
"none",
"aes-128-gcm",
"chacha20-poly1305"
};
}
/// <summary>
/// SSR 协议列表
/// </summary>
public static 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 List<string> OBFSs = new List<string>
{
"plain",
"http_simple",
"http_post",
"tls1.2_ticket_auth"
};
/// <summary>
/// V2Ray 传输协议
/// </summary>
public static List<string> TransferProtocols = new List<string>
{
"tcp",
"kcp",
"ws",
"h2",
"quic"
};
/// <summary>
/// V2Ray 伪装类型
/// </summary>
public static List<string> FakeTypes = new List<string>
{
"none",
"http",
"srtp",
"utp",
"wechat-video",
"dtls",
"wireguard"
};
/// <summary>
/// 适配器
/// </summary>
public static class Adapter
{
/// <summary>
/// 索引
/// </summary>
public static int Index = -1;
/// <summary>
/// 地址
/// </summary>
public static IPAddress Address;
/// <summary>
/// 网关
/// </summary>
public static IPAddress Gateway;
}
/// <summary>
/// TUN/TAP 适配器
/// </summary>
public static class TUNTAP
{
/// <summary>
/// 适配器
/// </summary>
public static NetworkInterface Adapter;
/// <summary>
/// 索引
/// </summary>
public static int Index = -1;
/// <summary>
/// 组件 ID
/// </summary>
public static string ComponentID = string.Empty;
}
/// <summary>
/// 用于读取和写入的配置
/// </summary>
public static Models.Setting Settings = new Models.Setting();
/// <summary>
/// 用于存储模式文件内容
/// </summary>
public static List<Models.Mode> ModeFiles = new List<Models.Mode>();
}
}