资源简介
实现一重DES的五种加密模式,即ECB、CBC、CFB、OFB、CTR等。
友好的MFC界面,添加注释,可方便地扩展为三重DES加密。程序退出时会有警告出现,它对于文件的加密与解密没有丝毫影响。
该文件已删除Debug目录。
代码片段和文件信息
// DesExper.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “DesExper.h“
#include “DesExperDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDesExperApp
BEGIN_MESSAGE_MAP(CDesExperApp CWinApp)
//{{AFX_MSG_MAP(CDesExperApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDesExperApp construction
CDesExperApp::CDesExperApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDesExperApp object
CDesExperApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDesExperApp initialization
BOOL CDesExperApp::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
CDesExperDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 40356 2009-05-23 01:31 简易DES加密器\DesExper\DesExper.aps
文件 2024 2009-05-23 01:32 简易DES加密器\DesExper\DesExper.clw
文件 2093 2009-05-22 23:10 简易DES加密器\DesExper\DesExper.cpp
文件 4127 2009-05-22 23:15 简易DES加密器\DesExper\DesExper.dsp
文件 539 2009-05-22 08:56 简易DES加密器\DesExper\DesExper.dsw
文件 127065 2009-05-23 01:31 简易DES加密器\DesExper\DesExper.exe
文件 1346 2009-05-22 08:56 简易DES加密器\DesExper\DesExper.h
文件 107520 2009-05-23 01:32 简易DES加密器\DesExper\DesExper.ncb
文件 55808 2009-05-23 01:32 简易DES加密器\DesExper\DesExper.opt
文件 250 2009-05-23 01:32 简易DES加密器\DesExper\DesExper.plg
文件 7140 2009-05-23 01:31 简易DES加密器\DesExper\DesExper.rc
文件 25836 2009-05-23 01:17 简易DES加密器\DesExper\DesExperDlg.cpp
文件 1697 2009-05-23 00:11 简易DES加密器\DesExper\DesExperDlg.h
文件 3615 2009-05-22 08:56 简易DES加密器\DesExper\ReadMe.txt
文件 3638 2009-05-22 21:18 简易DES加密器\DesExper\res\DesExper.ico
文件 1329 2009-05-22 23:35 简易DES加密器\DesExper\resource.h
文件 210 2009-05-22 08:56 简易DES加密器\DesExper\StdAfx.cpp
文件 1054 2009-05-22 08:56 简易DES加密器\DesExper\StdAfx.h
目录 0 2009-05-23 01:31 简易DES加密器\DesExper\res
目录 0 2009-05-23 01:32 简易DES加密器\DesExper
目录 0 2009-05-23 01:34 简易DES加密器
----------- --------- ---------- ----- ----
385647 21
相关资源
- 画图程序最新版 MFC/VC/VC++ 很多功能哦
- C++课设MFC实现人员信息管理系统
- 文件加密解密
- MFC人事管理系统工程文件
- 仿雷电射击游戏基于VC++MFC
- MFC连接SqlServer数据库,并将查询的数
- Mysql数据库语句、增删该查总结及MF
- dirent.h文件,vs2010、vs2013等MFC框架常用
- 吕鑫老师VS2015MFC视频
- 绝地求生宏加密文件
- MFC UI控件布局 自动调整
- rsa加密解密算法C语言代码
- 仿QQ MFC 程序
- CvImgCtrl 演示程序
- 五子棋MFC源码及注释.
- C++实现的FTP服务器
- MFC创建用户界面线程方法2
- mfc一个简单绘图应用程序实现多种功
- C语言环境下的AES加密算法,支持128位
- c++/MFC CSocket仿QQ聊天软件,实现1对1聊
- C++与MFC工资管理系统包括论文
- COleRichEditCtrl
- MFC电梯仿真模拟源码超酷
- MFC设置静态文本框颜色的类
- MFC按钮美化
- 一款用mfc做的简单的聊天室
- 使用VS2008MFC读取Excel里的数据
- Cantor集算法实现
- 利用MFC ODBC操作Access数据库实现显示、
- vc++6.0 基于mfc音乐播放器
评论
共有 条评论