• 大小: 1.61MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-31
  • 语言: 其他
  • 标签: 加密  MD5值  

资源简介

可以对选择的本地文件进行加密,并生成相应的MD5值,附带程序源码

资源截图

代码片段和文件信息


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

#include “stdafx.h“
#include “MD5.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CMD5App

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


// CMD5App 构造

CMD5App::CMD5App()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;

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


// 唯一的一个 CMD5App 对象

CMD5App theApp;


// CMD5App 初始化

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

CWinApp::InitInstance();


AfxEnableControlContainer();

// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;

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

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

// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}

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


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

     文件    6333952  2016-02-17 14:39  secret_second_edition(using) - 副本\secret\Debug\secret.exe

     文件       1933  2015-11-07 16:27  secret_second_edition(using) - 副本\secret\secret\MD5.cpp

     文件        426  2015-11-07 16:26  secret_second_edition(using) - 副本\secret\secret\MD5.h

     文件       3122  2015-11-06 16:09  secret_second_edition(using) - 副本\secret\secret\ReadMe.txt

     文件      67777  2009-08-31 02:31  secret_second_edition(using) - 副本\secret\secret\res\secret.ico

     文件        668  2015-11-06 16:09  secret_second_edition(using) - 副本\secret\secret\res\secret.rc2

     文件       1818  2015-11-06 17:58  secret_second_edition(using) - 副本\secret\secret\resource.h

     文件      90048  2015-11-27 09:34  secret_second_edition(using) - 副本\secret\secret\secret.aps

     文件       1993  2015-11-06 16:09  secret_second_edition(using) - 副本\secret\secret\secret.cpp

     文件        442  2015-11-06 16:09  secret_second_edition(using) - 副本\secret\secret\secret.h

     文件      10826  2015-11-06 18:05  secret_second_edition(using) - 副本\secret\secret\secret.rc

     文件       5952  2015-11-18 13:08  secret_second_edition(using) - 副本\secret\secret\secret.vcxproj

     文件       1981  2015-11-07 16:28  secret_second_edition(using) - 副本\secret\secret\secret.vcxproj.filters

     文件        143  2015-11-06 16:09  secret_second_edition(using) - 副本\secret\secret\secret.vcxproj.user

     文件      14555  2016-02-17 14:39  secret_second_edition(using) - 副本\secret\secret\secretDlg.cpp

     文件        841  2015-11-08 13:49  secret_second_edition(using) - 副本\secret\secret\secretDlg.h

     文件        139  2015-11-06 16:09  secret_second_edition(using) - 副本\secret\secret\stdafx.cpp

     文件       1632  2015-11-06 16:09  secret_second_edition(using) - 副本\secret\secret\stdafx.h

     文件        234  2015-11-06 16:09  secret_second_edition(using) - 副本\secret\secret\targetver.h

     文件        885  2015-11-06 16:09  secret_second_edition(using) - 副本\secret\secret.sln

    ..A..H.     13824  2016-02-17 14:39  secret_second_edition(using) - 副本\secret\secret.suo

     目录          0  2016-02-17 14:37  secret_second_edition(using) - 副本\secret\secret\res

     目录          0  2016-02-17 14:39  secret_second_edition(using) - 副本\secret\Debug

     目录          0  2016-02-17 14:40  secret_second_edition(using) - 副本\secret\secret

     目录          0  2016-02-17 14:39  secret_second_edition(using) - 副本\secret

     目录          0  2016-02-17 14:39  secret_second_edition(using) - 副本

----------- ---------  ---------- -----  ----

              6553191                    26


评论

共有 条评论