资源简介
VC++ 使用RSA算法防止非法注册机破解软件
浅谈如何利用VC++ 的RSA算法防止非法注册机注册软件,也就是防止软件被破解。熟悉编程的朋友可能都知道,RSA公开密钥密码系统是由 R.Rivest,A.Shamir,L.Adleman 提出的,不仅仅可用于数据的加密,也可用于数字签名,其安全性比较高,用它来开发加密、解密系统的应用已经有很多了,希望通过这个类仿真,和同仁们共同切磋Vc++非法破解的防止。本程序调用Miracl ver 4.82大数运算库。
代码片段和文件信息
// KeyGen.cpp : Defines the class behaviors for the application.
// Download by http://www.codefans.net
#include “stdafx.h“
#include “KeyGen.h“
#include “KeyGenDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CKeyGenApp
BEGIN_MESSAGE_MAP(CKeyGenApp CWinApp)
//{{AFX_MSG_MAP(CKeyGenApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CKeyGenApp construction
CKeyGenApp::CKeyGenApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CKeyGenApp object
CKeyGenApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CKeyGenApp initialization
BOOL CKeyGenApp::InitInstance()
{
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CKeyGenDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
965017 48
- 上一篇:国密SM3摘要算法工具
- 下一篇:gridctrl_demo
相关资源
- VC++开发GIS系统代码陈建春书
- VC++ MFC MSCOMM VS2010 手把手学会串口收发
- C++ 家庭理财管理系统
- VC++解析并显示JPEG图片showjpeg.rar
- vc++能够显示网页html
- C++使用ADO连接Access数据库源代码(修
- VC++连接STK
- 全景图像拼接程序源代码VC++
- 面向对象的编程技术课程设计VC++_MF
- 基于VC++的PC机实现与429通信板的数据
- GPS车辆监控系统源代码
- VC++高精度媒体定时器的使用_MFC
- 等值线追踪与绘制(源代码).rar
- VC++利用消息机制在两个EXE程序间通信
- 仓库管理系统 vc++
- vc++ 画图形,选中图形可以移动图形
- VC++6.0版做的五子棋程序源码,含禁手
- VC++五子棋窗体界面程序源码可以VC6
- VC++视频帧提取软件
- 用vc++ mfc 编写的一个网页浏览器
- vc++ 6.0使用dbghelp.dll生成dmp内存转储文
- VC++(MFC)实现FTP功能(源代码)
- VC++操作MSChart表格控件,效果不错。
- 郁金香vc++辅助教程合集
- VC++ MFC 的计算器的详细设计
- vc++ 和 openGL 做的 3D水波模拟 非常炫
- VC++实现算数编码
- VIsual C++实现的连连看游戏程序
- 一个漂亮的VC++示波器生成类
- C++中用数组实现的通讯录
评论
共有 条评论