• 大小: 26.2MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-15
  • 语言: C/C++
  • 标签: RSA  

资源简介

MFC实现的RSA安全加密算法,适合初学者使用

资源截图

代码片段和文件信息

// RSAKeyGenerator.cpp : 定义应用程序的类行为。
//

#include “stdafx.h“
#include “RSAKeyGenerator.h“
#include “RSAKeyGeneratorDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CRSAKeyGeneratorApp

BEGIN_MESSAGE_MAP(CRSAKeyGeneratorApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()


// CRSAKeyGeneratorApp 构造

CRSAKeyGeneratorApp::CRSAKeyGeneratorApp()
{
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}


// 唯一的一个 CRSAKeyGeneratorApp 对象

CRSAKeyGeneratorApp theApp;


// CRSAKeyGeneratorApp 初始化

BOOL CRSAKeyGeneratorApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);

CWinApp::InitInstance();

// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));

CRSAKeyGeneratorDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此处放置处理何时用“确定”来关闭
//  对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用“取消”来关闭
//  对话框的代码
}

// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
//  而不是启动应用程序的消息泵。
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    1847296  2012-12-03 09:05  RSAKeyGenerator\debug\RSAKeyGenerator.exe

     文件    5789632  2012-12-03 09:05  RSAKeyGenerator\debug\RSAKeyGenerator.ilk

     文件    7072768  2012-12-03 09:05  RSAKeyGenerator\debug\RSAKeyGenerator.pdb

     文件        601  2012-11-30 17:15  RSAKeyGenerator\release\PrivKey.txt

     文件        179  2012-11-30 17:15  RSAKeyGenerator\release\PubKey.txt

     文件     311296  2012-12-03 09:32  RSAKeyGenerator\release\RSAKeyGenerator.exe

     文件       1264  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\3way.h

     文件        628  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\adler32.h

     文件        330  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\aes.h

     文件       8922  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\algebra.h

     文件      12666  2010-08-06 18:46  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\algparam.h

     文件       2367  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\arc4.h

     文件       4377  2010-08-06 18:46  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\argnames.h

     文件      11956  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\asn.h

     文件       2008  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\authenc.h

     文件       1344  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\base32.h

     文件        912  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\base64.h

     文件       2563  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\basecode.h

     文件        214  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\bench.h

     文件       1239  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\blowfish.h

     文件       1302  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\blumshub.h

     文件       1123  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\camellia.h

     文件       2320  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\cast.h

     文件       1412  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\cbcmac.h

     文件       3388  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\ccm.h

     文件       4057  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\channels.h

     文件       1612  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\cmac.h

     文件      15604  2010-08-09 14:22  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\config.h

     文件       8826  2010-08-06 18:46  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\cpu.h

     文件        998  2010-08-06 18:44  RSAKeyGenerator\RSAKeyGenerator\CryptoPP\include\crc.h

............此处省略166个文件信息

评论

共有 条评论