Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static string wkey;
- public static string derot(string arg1)
- {
- int num = 0;
- string str = "";
- for (int i = 0; i < arg1.Length; i++)
- {
- num = arg1[i];
- if ((num >= 0x61) && (num <= 0x7a))
- {
- if (num > 0x6d)
- {
- num -= 13;
- }
- else
- {
- num += 13;
- }
- }
- else if ((num >= 0x41) && (num <= 90))
- {
- if (num > 0x4d)
- {
- num -= 13;
- }
- else
- {
- num += 13;
- }
- }
- str = str + ((char)num);
- }
- return str;
- wkey = derot(m[3].ToString());
- return;
- con.Send(wkey, new object[] { 0, 10, 10, 9 });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement