资源简介
用MFC写的DES加解密,可以实现对文件的加密和解密。
代码片段和文件信息
// DES.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “DES.h“
#include “DESDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDESApp
BEGIN_MESSAGE_MAP(CDESApp CWinApp)
//{{AFX_MSG_MAP(CDESApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDESApp construction
CDESApp::CDESApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDESApp object
CDESApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDESApp initialization
BOOL CDESApp::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
CDESDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 122936 2012-05-20 19:26 DES\Debug\DES.exe
文件 240052 2012-05-20 19:26 DES\Debug\DES.ilk
文件 14392 2012-04-22 20:41 DES\Debug\DES.obj
文件 5634496 2012-04-22 18:10 DES\Debug\DES.pch
文件 410624 2012-05-20 19:26 DES\Debug\DES.pdb
文件 2868 2012-04-22 20:41 DES\Debug\DES.res
文件 62335 2012-05-20 19:26 DES\Debug\DESDlg.obj
文件 106147 2012-04-22 18:10 DES\Debug\StdAfx.obj
文件 222208 2012-06-24 17:20 DES\Debug\vc60.idb
文件 380928 2012-05-20 19:26 DES\Debug\vc60.pdb
文件 36024 2012-04-22 20:41 DES\DES.APS
文件 1580 2012-06-24 17:20 DES\DES.clw
文件 2021 2012-04-22 17:51 DES\DES.cpp
文件 4165 2012-04-22 18:10 DES\DES.dsp
文件 514 2012-04-22 18:10 DES\DES.dsw
文件 1291 2012-04-22 17:51 DES\DES.h
文件 66560 2012-06-24 17:20 DES\DES.ncb
文件 48640 2012-06-24 17:20 DES\DES.opt
文件 240 2012-06-24 17:20 DES\DES.plg
文件 5908 2012-04-22 20:41 DES\DES.rc
文件 17250 2012-04-22 20:45 DES\DESDlg.cpp
文件 2635 2012-04-22 20:38 DES\DESDlg.h
文件 14 2012-04-22 20:02 DES\key.txt
文件 3525 2012-04-22 17:51 DES\ReadMe.txt
文件 1078 2012-04-22 17:51 DES\res\DES.ico
文件 395 2012-04-22 17:51 DES\res\DES.rc2
文件 1095 2012-04-22 20:41 DES\resource.h
文件 205 2012-04-22 17:51 DES\StdAfx.cpp
文件 1054 2012-04-22 17:51 DES\StdAfx.h
文件 4115 2012-04-22 21:07 DES\Table.h
............此处省略9个文件信息
- 上一篇:vs2010 MFC基础教程
- 下一篇:备忘录--C++程序
相关资源
- vs2010 MFC基础教程
- 基于MFC的登陆界面
- 基于Visual C++的屏幕录像完整源代码
- 通讯录MFC程序,C++大作业
- 数据结构课程设计,C++计算器MFC
- 一个简单的MFC的MDI程序-Sketcher
- mfc 任意多边形填充色
- VC开发MFC局域网屏幕监控系统完美版
- SNL语言编译器GUI VC++ 2008版 MFC实现可
- MFC邮件发送程序(C语言版带界面)
- 基于udp的socket编程
- MFC下TCP服务器
- MFC根据广播星历计算GPS卫星位置
- MFC 单文档 实现opengl 三维旋转 缩放
- MFC课程设计 职工信息管理系统含完整
- MFC可视化_迷宫算法_最短路径
- opencv图像处理MFC
- 图书管理系统mfc+sql
- MFC编写DDA画直线和圆
- mfc数值微分算法和Bresenham算法画直线
- 大家来找茬源码(MFC)
- C++实现的基于内容的图像检索
- vc++ 文本编辑器仿记事本MFC版
- MFC实现可编辑Excel文件
- USB2.0接口数据采集卡
- 计算BMP24位真彩色图像PSNR的C++小程序
- 基于VC MFC的数据分析系统
- MFC DLL调用(包含调用和DLL自身源代码
- mfc 串行化的简单使用
- 公交车模拟
评论
共有 条评论