#include "stdafx.h"
#include <conio.h>
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
// TODO: Place code here.
unsigned char data[24] = {
0x4E, 0x5A, 0x40, 0x72, 0x6F, 0x6C, 0x36, 0x38, 0x68, 0x56, 0x69, 0x49, 0x73, 0x38, 0x71, 0x6C,
0x58, 0x7E, 0x37, 0x7B, 0x36, 0x6D, 0x26, 0x74
};
unsigned char v24[25] = {0};
for (int i = 0; i < sizeof(data); i++) {
static int a = 0;
for (int v4 = 0; v4 < 256; v4++) {
v24[i] = (unsigned char)v4;
unsigned char v7 = 0;
if (a % 2 == 0)
v7 = (v24[i] & 0x26 | ~v24[i] & 0xD9) ^ 0xDE;
else
v7 = (v24[i] & 0xF6) | ~v24[i] & 9;
if (v7 == data[i])
break;
}
a++;
}
getch();
return 0;
}