找回密码
 注册
搜索
热搜: 回贴

Windows优化大师v3.0-v3.4的注册机源代码,Windows优化大师,加密算法

2010-1-22 18:40| 发布者: admin| 查看: 73| 评论: 0|原作者: 飞燕


Windows优化大师v3.0-v3.4的注册机源代码,Windows优化大师,加密算法
2008年06月23日 星期一 下午 12:47
我在《Windows优化大师》这个软件开始使用某种加密算法时就在破解时有点摸不着头脑,不知道这个算法是RSA加密算法。自从几个月前拜读了《论坛精华Ⅱ》中的《Windows优化大师v2.9 的注册码加密算法》一文后我就开始按照该文所讲的方法编写注册机,从此噩梦开始......
我先把n=0x0000000069AAA0E3进行因子分解求出p=0x80BD和q=0xD21F,于是就求得f=0x0000000069A53372,然后又按照第四条规则很辛苦地编程求出d=0x000000003E0877FD。至此我想应该可以顺利地编写出注册机了吧,然而作出来的注册机不但算出来的注册码不对,而且用加密算法算出来的结果不能用解密算法还原成原来输入的两个数值。这个问题一直弄得我头大,直到最近我从别人那弄的一个注册申请码和正确的注册码,我才算出解密密钥d不是0x000000003E0877FD,而是0x00000000002C86F9,于是我终于写成了注册机。
源代码如下:(C Builder 5.0编译通过)
//---------------------------------------------------------------------------
#include

#pragma hdrstop
#include "Unit1.h"

//---------------------------------------------------------------------------

#pragma package(smart_init)

#pragma resource "*.dfm"

TForm1 *Form1;

//---------------------------------------------------------------------------

__fastcall TForm1::TForm1(TComponent* Owner)

: TForm(Owner)

{

}

//---------------------------------------------------------------------------
unsigned __int64 __fastcall Encrypt_Decrypt(unsigned __int64 m,unsigned __int64 e,unsigned __int64 n)

{

unsigned __int64 a,b,c;
a=m;

b=e;

c=1;
while(b)

{

if ((b%2)==0)

{

b=b/2;

a=(a*a)%n;

}

else

{

b=b-1;

c=(c*a)%n;

}

}

return (c);

}

//---------------------------------------------------------------------------


void __fastcall TForm1::Button2Click(TObject *Sender)

{

Application->MessageBox("时空幻影于2001年3月12日,如有什么问题请E-MAIL:shikonghuanying@sina.com","关于",MB_OK);

}

//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)

{

unsigned __int32 s[4]={0x20756f59,0x20657261,0x20676962,0x2e676970};//"You are big pig."的内存表示

unsigned __int32 t1=0,t2=0,esi=0x9e3779b9,temp;

unsigned __int64 n=0x69aaa0e3,d=0x002c86f9,m1,m2,n1,n2,t;

int i,j;

AnsiString Buffer=Edit1->Text;

if (Edit1->Text.IsEmpty())

{

Application->MessageBox("请输入注册申请码!","提示",MB_OK);

return;

}

Buffer=Buffer "1234567";

Buffer.SetLength(8);

i=4;

while (i>0)

{

t1=0x100*t1 (StrToInt(Buffer[i]) 0x30);

i--;

}

i=8;

while (i>4)

{

t2=0x100*t2 (StrToInt(Buffer[i]) 0x30);

i--;

}

for (j=0;j<32;j )

{

temp=t2<<4;

t1=t1 temp (s[0]^t2);

temp=t2>>5;

t1=t1 (temp^esi) s[1];

temp=t1<<4;

t2=t2 temp (s[2]^t1);

temp=t1>>5;

t2=t2 (temp^esi) s[3];

esi=esi 0x9e3779b9;

}

t1=t1 2;

i=0;

j=0;

temp=t1;

if (t1>0x3fffffff)

{

temp=t1&0x0fffffff;

s1:

;

if (temp<=0x3fffffff)

{

j=1;

while (j<=4)

{

t=j*0x100000000 (temp<<2);

if ((t>>2)%0x100000000==t1) goto s2;

else j ;

}

i=i 0x10000000;

temp=temp 0x10000000;

if (i<0x40000000) goto s1;

}

}

s2:

;

m1=temp;

m2=(0x50|j) 2;

n1=Encrypt_Decrypt(m1,d,n);

n2=Encrypt_Decrypt(m2,d,n);

Edit2->Text=IntToHex((__int64)n1,8);

Edit3->Text=IntToHex((__int64)n2,8);

}

//---------------------------------------------------------------------------


最新评论

QQ|小黑屋|最新主题|手机版|微赢网络技术论坛 ( 苏ICP备08020429号 )

GMT+8, 2024-9-30 03:33 , Processed in 0.178613 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

返回顶部