-
Notifications
You must be signed in to change notification settings - Fork 2
/
GTAUtils.cs
78 lines (68 loc) · 2.24 KB
/
GTAUtils.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;
using System.IO;
using Methods;
namespace GTA.V.Utils.Security
{
public static class AESCryptor
{
public static byte[] Decrypt(byte[] data, byte[] key)
{
RijndaelManaged aes = new RijndaelManaged();
aes = new RijndaelManaged();
aes.KeySize = 256;
aes.BlockSize = 128;
aes.Key = key;
aes.Mode = CipherMode.ECB;
aes.Padding = PaddingMode.Zeros;
data = aes.CreateDecryptor().TransformFinalBlock(data, 0, data.Length);
return data;
}
public static byte[] Encrypt(byte[] data, byte[] key)
{
RijndaelManaged aes = new RijndaelManaged();
aes = new RijndaelManaged();
aes.KeySize = 256;
aes.BlockSize = 128;
aes.Key = key;
aes.Mode = CipherMode.ECB;
aes.Padding = PaddingMode.Zeros;
data = aes.CreateEncryptor().TransformFinalBlock(data, 0, data.Length);
return data;
}
}
public class KeyUtils
{
public static byte[] GetKey(string path)
{
if (File.Exists(path))
{
Stream xIn = File.Open(path, FileMode.Open);
StreamReader xReader = new StreamReader(xIn);
while (!xReader.EndOfStream)
{
string line = xReader.ReadLine();
if (line.Substring(0, 5) == "GTAV=")
{
string keyHex = line.Substring(5);
if (keyHex.Length / 2 != 32 || keyHex == "")
{
xReader.Close();
return null;
}
byte[] key = StringUtils.ByteArrFromString(keyHex);
xReader.Close();
return key;
}
}
xReader.Close();
return null;
}
else
return null;
}
}
}