forked from ChandlerBent/LongLinkIOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWxUser.cs
51 lines (45 loc) · 1.23 KB
/
WxUser.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static MMPro.MM;
namespace LongLinkIOS
{
class WxUser
{
public struct fucker
{
public static device DeviceInfo;
public static key keys;
public static UserInfo Info;
public static BaseRequest BasePack;
}
public struct device
{
public static string deviceId;
}
public struct key
{
public static byte[] ecPubKey;
public static byte[] ecPriKey;
public static byte[] ShakeKey;
public static byte[] aeskey;
public static byte[] sync_key_cur;
public static byte[] sync_key_max;
public static byte[] notifykey;
}
public struct UserInfo
{
public static string username;
public static string password;
public static int uin;
public static string shortLink;
public static string longLink;
}
public WxUser()
{
WxUser.UserInfo.longLink = "szlong.weixin.qq.com";
}
}
}