|
| 1 | +using Lagrange.Core.NativeAPI.NativeModel.Common; |
| 2 | + |
| 3 | +namespace Lagrange.Core.NativeAPI.NativeModel.Context |
| 4 | +{ |
| 5 | + public struct BotKeystoreStruct |
| 6 | + { |
| 7 | + public BotKeystoreStruct() { } |
| 8 | + |
| 9 | + public long Uin { get; set; } = 0; |
| 10 | + |
| 11 | + public byte[] Uid { get; set; } = []; |
| 12 | + |
| 13 | + public byte[] Guid { get; set; } = []; |
| 14 | + |
| 15 | + public byte[] AndroidId { get; set; } = []; |
| 16 | + |
| 17 | + public byte[] Qimei { get; set; } = []; |
| 18 | + |
| 19 | + public byte[] DeviceName { get; set; } = []; |
| 20 | + |
| 21 | + // WLoginSigs |
| 22 | + |
| 23 | + public byte[] A2 { get; set; } = []; |
| 24 | + |
| 25 | + public byte[] A2Key { get; set; } = new byte[16]; |
| 26 | + |
| 27 | + public byte[] D2 { get; set; } = []; |
| 28 | + |
| 29 | + public byte[] D2Key { get; set; } = new byte[16]; |
| 30 | + |
| 31 | + public byte[] A1 { get; set; } = []; |
| 32 | + |
| 33 | + public byte[] A1Key { get; set; } = new byte[16]; |
| 34 | + |
| 35 | + public byte[] NoPicSig { get; set; } = []; |
| 36 | + |
| 37 | + public byte[] TgtgtKey { get; set; } = []; |
| 38 | + |
| 39 | + public byte[] Ksid { get; set; } = []; |
| 40 | + |
| 41 | + public byte[] SuperKey { get; set; } = []; |
| 42 | + |
| 43 | + public byte[] StKey { get; set; } = []; |
| 44 | + |
| 45 | + public byte[] StWeb { get; set; } = []; |
| 46 | + |
| 47 | + public byte[] St { get; set; } = []; |
| 48 | + |
| 49 | + public byte[] WtSessionTicket { get; set; } = []; |
| 50 | + |
| 51 | + public byte[] WtSessionTicketKey { get; set; } = []; |
| 52 | + |
| 53 | + public byte[] RandomKey { get; set; } = new byte[16]; |
| 54 | + |
| 55 | + public byte[] SKey { get; set; } = []; |
| 56 | + |
| 57 | + public KeyValuePairNative<byte[], byte[]>[] PsKey { get; set; } = []; |
| 58 | + } |
| 59 | +} |
0 commit comments