You are viewing our Forum Archives. To view or take place in current topics click here.
OP By Arman360 And xI Chocalate Thanks If This Helped
Posted:
OP By Arman360 And xI Chocalate Thanks If This HelpedPosted:
Status: Offline
Joined: Sep 25, 201014Year Member
Posts: 11
Reputation Power: 0
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 };
// Iv table
private static byte[] Table;
// Lookup values
private static int[] BlockNums;
public static void BuildTable(byte[] Feed)
{
// Init tables
Table = new byte[4000];
BlockNums = new int[] { 1, 1, 1, 1 };
// Build table
int ptr = 0;
for (int i = 0; i < 200; i++)
{
for (int x = 0; x < 5; x++)
{
// Check next byte
if (Feed[ptr] == 0x00)
ptr = 0;
// Copy 4 times
Table[(i * 20) + (x * 4)] = Feed[ptr];
Table[(i * 20) + (x * 4) + 1] = Feed[ptr];
Table[(i * 20) + (x * 4) + 2] = Feed[ptr];
Table[(i * 20) + (x * 4) + 3] = Feed[ptr];
ptr++;
}
}
}
Sincerely Arman 360 and xI Chocolate
[quote name='arman360' timestamp='1292021219' post='2674571']
Go ahead and Release Were Finding New Mods so Idc Lawl
You are viewing our Forum Archives. To view or take place in current topics click here.