THIS WAS FOUND BY ME. I TRUSTED ARMAN AND HE BETRAYED ME SO HERE IS THE REAL RELEASE!!!
1.
byte[] Key = { 0x1a, 0xc1, 0xd1, 0x2d, 0x52, 0x7c, 0x59, 0xb4, 0x0e, 0xca, 0x61, 0x91, 0x20, 0xff, 0x82, 0x17, 0xcc, 0xff, 0x09, 0xcd, 0x16, 0x89, 0x6f, 0x81, 0xb8, 0x29, 0xc7, 0xf5, 0x27, 0x93, 0x40, 0x5d };
2.
3.
// Iv table
4.
private static byte[] Table;
5.
6.
// Lookup values
7.
private static int[] BlockNums;
8.
9.
public static void BuildTable(byte[] Feed)
10.
{
11.
// Init tables
12.
Table = new byte[4000];
13.
BlockNums = new int[] { 1, 1, 1, 1 };
14.
15.
// Build table
16.
int ptr = 0;
17.
for (int i = 0; i < 200; i++)
18.
{
19.
for (int x = 0; x < 5; x++)
20.
{
21.
// Check next byte
22.
if (Feed[ptr] == 0x00)
23.
ptr = 0;
24.
25.
// Copy 4 times
26.
Table[(i * 20) + (x * 4)] = Feed[ptr];
27.
Table[(i * 20) + (x * 4) + 1] = Feed[ptr];
28.
Table[(i * 20) + (x * 4) + 2] = Feed[ptr];
29.
Table[(i * 20) + (x * 4) + 3] = Feed[ptr];
30.
ptr++;
31.
}
32.
}
33.
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.