资源简介
实现一重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的TCP调试助手源码95706
- 基于mfc的多线程文件传输
- 3des加密算法C语言实现
- MFC数字钟(基于VC6.0)
- DES加密算法C语言实现
- VC++MFC小游戏实例教程(实例)+MFC类库
- C语言实现的DES对称加密算法
- ChartCtrl控件库(可在VS2019中使用)
- 商品库存管理系统 C++ MFC
- mfc 调用redis
- MFC视频播放器源码(支持avi/wma/mp3等格
- mfc绘图大全(画直线、矩形、椭圆)
- MFC控件重绘
- hook,捕获所有案件,查找所有窗口,
- (学习)VS2010之MFC入门到精通教程
- 国密SM4加密_2020
- MFC文档_视图_框架_模板结构体系深入
- 简单员工管理系统(适合初学MFC)
- C++ SHA256加密计算
- BlowFish加密算法
-
STM32-ba
se64加密源代码 - MFC五子棋游戏
- MFC UDP编程
- MFC的异步网络通讯应用程序
- C++MFC模块讲解,黑发程序员课程整理
- 基于空调项目的Autosar 架构的设计.d
- 一个简单而强大的基于MFC的web server源
- 基于MFC的VC++仿QQ浏览器源码(雏形)
- MFCaccess.rar
- VC++MFC课程设计的学生成绩管理系统
评论
共有 条评论