一知半解wp
注册机#include <stdio.h>
#include <windows.h>
int main()
{
char Key1[] = { "668187758885" };
char Key2[] = { 0x76,0x03,0x40,0x70,0x02,0x55,0x5B,0x5B,0x05,0x64 };
char PSW = { 0 };
for (size_t i = 0; i <= 9; i++)
{
int lk = 0;
while (true)
{
if ((Key2 ^ lk) == Key1)
{
PSW = lk;
break;
}
lk++;
}
}
printf("PSW:%s", PSW);
getchar();
return 0;
}
页:
[1]