-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainWindow.xaml.cs
214 lines (198 loc) · 8.14 KB
/
MainWindow.xaml.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
using MaterialDesignThemes.Wpf;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace RDP_Helper
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
static byte[] s_aditionalEntropy = null;
public SnackbarMessageQueue messageQueue;
public MainWindow()
{
InitializeComponent();
messageQueue = iSnackbar.MessageQueue;
}
private void Bt_Encrypt_Click(object sender, RoutedEventArgs e)
{
string Pass = Pb_InPasswd.Password.ToString();
if (string.IsNullOrEmpty(Pass)) { MsgBar("Please input content !", 0.75); return; }
byte[] secret = Encoding.Unicode.GetBytes(Pass);
byte[] encryptedSecret = Protect(secret);
string res = string.Empty;
foreach (byte b in encryptedSecret)
{
res += b.ToString("X2");
}
Tb_OutPasswd.Clear();
Tb_OutPasswd.Text = res;
MsgBar("Completed !", 1);
}
private void Bt_Decode_Click(object sender, RoutedEventArgs e)
{
string Pass = Pb_InPasswd.Password.ToString();
if (string.IsNullOrEmpty(Pass)) { MsgBar("Please input content !", 0.75); return; }
// Decrypt the data and store in a byte array.
byte[] originalData = Unprotect(GetBytes(Pass));
if (string.IsNullOrEmpty(originalData.ToString())) return;
string str = Encoding.Default.GetString(originalData).Replace("\0", string.Empty);
Tb_OutPasswd.Clear();
Tb_OutPasswd.Text = str;
MsgBar("Completed !", 1);
}
private void Bt_Copy_Click(object sender, RoutedEventArgs e)
{
if (string.IsNullOrEmpty(Tb_OutPasswd.Text))
{
MsgBar("Nothing needs to be copied !", 1);
return;
}
Clipboard.SetText(Tb_OutPasswd.Text);
MsgBar("Copied !", 0.75);
}
private void Pb_InPasswd_PasswordChanged(object sender, RoutedEventArgs e)
{
if (string.IsNullOrEmpty(Pb_InPasswd.Password))
{
Tb_OutPasswd.Clear();
}
}
//加密
public static byte[] Protect(byte[] data)
{
try
{
// Encrypt the data using DataProtectionScope.CurrentUser. The result can be decrypted
// only by the same current user.
return ProtectedData.Protect(data, s_aditionalEntropy, DataProtectionScope.LocalMachine);
}
catch (CryptographicException e)
{
Console.WriteLine("Data was not encrypted. An error occurred.");
Console.WriteLine(e.ToString());
return null;
}
}
//解密
public static byte[] Unprotect(byte[] data)
{
try
{
//Decrypt the data using DataProtectionScope.CurrentUser.
return ProtectedData.Unprotect(data, s_aditionalEntropy, DataProtectionScope.LocalMachine);
}
catch (CryptographicException e)
{
Console.WriteLine("Data was not decrypted. An error occurred.");
Console.WriteLine(e.ToString());
return null;
}
}
//16 to byte
public static byte[] GetBytes(string Pass)
{
byte[] bytes = null;
try
{
byte[] data = new byte[Pass.Length / 2];
for (int i = 0; i < Pass.Length; i += 2)
{
string s = Pass[i] + "" + Pass[i + 1];
data[i / 2] = Convert.ToByte(s, 16);
}
bytes = data;
} catch(Exception e) {
Console.WriteLine(e);
}
return bytes;
}
//消息提示Bar
public void MsgBar(string Mes, double time)
{
try
{
messageQueue.Enqueue(Mes, null, null, null, false, true, TimeSpan.FromSeconds(time));
}
catch (Exception ex)
{
Console.WriteLine("SnackBarMessage:" + ex.Message);
}
}
private static void rdpProfile(string filename, string address, string username, string password, string colordepth)
{
if (File.Exists(filename))
{
File.Delete(filename);
}
using (StreamWriter streamWriter = new StreamWriter(filename, true))
{
streamWriter.WriteLine("screen mode id:i:2");
streamWriter.WriteLine("desktopwidth:i:0");
streamWriter.WriteLine("desktopheight:i:0");
streamWriter.WriteLine("session bpp:i:" + colordepth);
streamWriter.WriteLine("winposstr:s:0,1,0,0,1234,792");
streamWriter.WriteLine("compression:i:1");
streamWriter.WriteLine("keyboardhook:i:2");
streamWriter.WriteLine("audiocapturemode:i:0");
streamWriter.WriteLine("videoplaybackmode:i:1");
streamWriter.WriteLine("connection type:i:6");
streamWriter.WriteLine("displayconnectionbar:i:1");
streamWriter.WriteLine("disable wallpaper:i:1");
streamWriter.WriteLine("allow font smoothing:i:1");
streamWriter.WriteLine("allow desktop composition:i:1");
streamWriter.WriteLine("disable full window drag:i:1");
streamWriter.WriteLine("disable menu anims:i:1");
streamWriter.WriteLine("disable themes:i:1");
streamWriter.WriteLine("disable cursor setting:i:0");
streamWriter.WriteLine("bitmapcachepersistenable:i:0");
streamWriter.WriteLine("full address:s:" + address);
streamWriter.WriteLine("audiomode:i:0");
streamWriter.WriteLine("redirectprinters:i:0");
streamWriter.WriteLine("redirectcomports:i:0");
streamWriter.WriteLine("redirectsmartcards:i:0");
streamWriter.WriteLine("redirectclipboard:i:1");
streamWriter.WriteLine("redirectposdevices:i:0");
streamWriter.WriteLine("redirectdirectx:i:1");
streamWriter.WriteLine("drivestoredirect:s:");
streamWriter.WriteLine("autoreconnection enabled:i:1");
streamWriter.WriteLine("authentication level:i:2");
streamWriter.WriteLine("prompt for credentials:i:0");
streamWriter.WriteLine("negotiate security layer:i:1");
streamWriter.WriteLine("remoteapplicationmode:i:0");
streamWriter.WriteLine("alternate shell:s:");
streamWriter.WriteLine("shell working directory:s:");
streamWriter.WriteLine("gatewayhostname:s:");
streamWriter.WriteLine("gatewayusagemethod:i:4");
streamWriter.WriteLine("gatewaycredentialssource:i:4");
streamWriter.WriteLine("gatewayprofileusagemethod:i:0");
streamWriter.WriteLine("promptcredentialonce:i:1");
streamWriter.WriteLine("use redirection server name:i:0");
streamWriter.WriteLine("use multimon:i:0");
if (!string.IsNullOrEmpty(username))
{
streamWriter.WriteLine("username:s:" + username);
}
if (!string.IsNullOrEmpty(password))
{
streamWriter.WriteLine("password 51:b:" + password);
}
}
}
}
}