• 大小: 286KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-06
  • 语言: C/C++
  • 标签: VC++  

资源简介

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


评论

共有 条评论