/*
目标为娃娃[CCG]的在论坛的文章
一篇关于密码学的入门级破解实例-BiSHoP's CrackMe4 (30千字)
地址见http://www.chat001.com/forum/crackforum/245341.html
根据娃娃老鸟(三年算老鸟了吧)的结论
Registeration Code = [ MD5( Name + Organization ) ^ D ] MOD N
已知N , D也已经用RSATools算出
*/
#include
#include
#include "../crypto50/hex.h" //HexEncoder
#include "../crypto50/md5.h" // MD5
#include "../crypto50/filters.h"
#include "../crypto50/files.h" //FileSink
#include "../crypto50/rsa.h" //rsa
#include "../crypto50/nbtheory.h" //Integer 大数
int main(int argc, char* argv[])
{
using namespace std;
using namespace CryptoPP;
MD5 md5;
string strDigest; //md5 摘要
RSAFunction rsa; //rsa
Integer plaintext; //明文 即注册码
char name[100],organization[100]; //姓名,组织
cout << "Name: "; //输入姓名
ws(cin);
cin.getline(name,100);
cout << "Organization: "; //输入组织
ws(cin);
cin.getline(organization,100);
//计算摘要,结果以16进制方式放在strDigest中
HashFilter hashFilter(md5, new HexEncoder(new StringSink(strDigest)));
hashFilter.Put((const byte*)name, strlen(name)); //put name
hashFilter.Put((const byte*)organization, strlen(organization)); //put organization
hashFilter.MessageEnd();
strDigest="0x"+strDigest;
string letmeat="李嘉欣恶啃到掉渣,让我啃吧,让我啃吧!"; //==>小心花指令
Integer c((const char*) strDigest.data()); //c以16进制初始化
Integer d("0x1E2D9B52ADCBC20DCCDE3C721AA740E83"); //d
Integer n("0x24DFDA27FA14D3F27DDF62CEA5D2381F9"); //n
rsa.Initialize(n,d); //初始化
plaintext = rsa.ApplyFunction(c); //解密 得到明文
//由于未知道有没有方便的方法输出Integer对应的十六进制,所以只好一个一个byte的干了:<
byte* buffer=new byte[1024];
for (int i=0;ibuffer[plaintext.ByteCount()-1-i]=plaintext.GetByte(i); //注意高位在后
buffer[plaintext.ByteCount()]=0;
//构造一条pipeline 一般地 pipeline的头为Source 尾为Sink 中间为各种的filter类
StringSource(buffer,plaintext.ByteCount(), true,
new HexEncoder( //编码为16进制
new FileSink(cout))); //输出到屏幕
cout << endl;
return 0;
}
/*
我的注册码 (算娃娃的那两个注册码发现在code的前面比他的多了个0)
name=yyxzz
organization=[CCG]
code=D54E3A1976B790C3FCCE022B777FA875
有兴趣的朋友可参考如下网站或资料
crypto++作者weidai(相信是一个具有华人血统的snooker高手) 其中的faq不可不看
http://www.eskimo.com/~weidai/cryptlib.html
doxygen 的主页 http://www.trolocsis.com/crypto++/index.html
CryptoPPGuide.chm 在google上 虽然有点过时,但还是很有用的
yyxzz[CCG] 2002.12.29
*/
相关视频
相关阅读 Mac访问Windows共享文件夹Windows 7正版系统验证方法windows 8.1系统版本号查看方法Windows 8.1系统电话激活时无法输入微软返回代码解决方法Windows 8如何调整屏幕分辨率windows8.1磁盘占用100%解决方法Mac双系统如何删除Boot Camp安装的Windows分区Apple教你如何在Mac 上运行 Windows
热门文章 去除winrar注册框方法
最新文章
比特币病毒怎么破解 比去除winrar注册框方法
华为无线路由器HG522-C破解教程(附超级密码JEB格式文件京东电子书下载和阅读限制破解教UltraISO注册码全集(最新)通过Access破解MSSQL获得数据
人气排行 华为无线路由器HG522-C破解教程(附超级密码JEB格式文件京东电子书下载和阅读限制破解教UltraISO注册码全集(最新)qq相册密码破解方法去除winrar注册框方法(适应任何版本)怎么用手机破解收费游戏华为无线猫HG522破解如何给软件脱壳基础教程
查看所有0条评论>>