资源简介
使用MFC编写的计算MD5的程序,可以计算各种文件的MD5
代码片段和文件信息
// MD5.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MD5.h“
#include “MD5Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMD5App
BEGIN_MESSAGE_MAP(CMD5App CWinApp)
//{{AFX_MSG_MAP(CMD5App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMD5App construction
CMD5App::CMD5App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMD5App object
CMD5App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMD5App initialization
BOOL CMD5App::InitInstance()
{
AfxEnableControlContainer();
// 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
CMD5Dlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-10-27 13:44 MD5\
目录 0 2011-10-27 13:44 MD5\Debug\
文件 118863 2011-10-27 13:44 MD5\Debug\MD5.exe
文件 221508 2011-10-27 13:44 MD5\Debug\MD5.ilk
文件 13906 2011-10-26 21:31 MD5\Debug\MD5.obj
文件 5498600 2011-10-26 21:31 MD5\Debug\MD5.pch
文件 377856 2011-10-27 13:44 MD5\Debug\MD5.pdb
文件 2668 2011-10-27 13:44 MD5\Debug\MD5.res
文件 62679 2011-10-26 21:50 MD5\Debug\MD5Dlg.obj
文件 105846 2011-10-26 21:31 MD5\Debug\StdAfx.obj
文件 238592 2011-10-27 13:44 MD5\Debug\vc60.idb
文件 454656 2011-10-26 21:50 MD5\Debug\vc60.pdb
文件 8520 2011-10-26 21:30 MD5\MD5 Algorithm.h
文件 35772 2011-10-27 13:44 MD5\MD5.APS
文件 2021 2011-10-26 16:43 MD5\MD5.cpp
文件 4175 2011-10-26 17:09 MD5\MD5.dsp
文件 514 2011-10-26 16:43 MD5\MD5.dsw
文件 1291 2011-10-26 16:43 MD5\MD5.h
文件 58368 2011-10-27 13:44 MD5\MD5.ncb
文件 48640 2011-10-27 13:44 MD5\MD5.opt
文件 679 2011-10-27 13:44 MD5\MD5.plg
文件 5550 2011-10-27 13:44 MD5\MD5.rc
文件 5047 2011-10-26 21:50 MD5\MD5Dlg.cpp
文件 1379 2011-10-26 16:59 MD5\MD5Dlg.h
文件 3525 2011-10-26 16:43 MD5\ReadMe.txt
文件 205 2011-10-26 16:43 MD5\StdAfx.cpp
文件 1054 2011-10-26 16:43 MD5\StdAfx.h
目录 0 2011-10-26 16:43 MD5\res\
文件 1078 2011-10-26 16:43 MD5\res\MD5.ico
文件 395 2011-10-26 16:43 MD5\res\MD5.rc2
文件 819 2011-10-26 16:59 MD5\resource.h
............此处省略0个文件信息
- 上一篇:VC++实现的酒店管理系统软件
- 下一篇:桌面日历源代码c++
相关资源
- 桌面日历源代码c++
- 基于MFC的TCP通信程序
- 浅水方程C++源代码
- MFC学生成绩管理系统
- “理治棋壮”中国象棋计算机博弈引
- vc++ c++ c 软件自动升级程序源代码 在
- matlab下的基于高斯混合模型的说话人
- 从DEM数据中提取等高线——MFC编写
- mfc编写的通讯录小程序
- MFC Csocket实现点对点文件传输
- MFC VC6.0 简单贪吃蛇
- VC6的MFC文件
- MFC类库详解中文版(chm)
- C++ 排课程序源代码
- VC++实现动态创建对话框非常好的C++源
- vc 最短路径演示程序源代码
- MFC学生管理系统源代码VC
- C++学生通讯录源代码
- MFC下的Email邮箱软件
- 校园导游源代码程序C++
- MFC写的多媒体播放器包括录音,播放
- 直方图均衡化 C语言源代码
- 数字图像处理 MFC bmp格式图片打开与保
- CSocket端口扫描源代码MFC、VC++耿网出品
- SMTP邮件发送MFC、VC++耿网出品
- MFC下实现的贪吃蛇
- MFC画图板,可以画一些基本图形,如
- 简单的基于MFC的Socket点对点对话客户
- MFC简单的客户端服务器通信软件
- MFC实现RSA算法
评论
共有 条评论