資源簡介
DES MFC加解密算法 DES MFC實現在VC6.0中

代碼片段和文件信息
//?DES加解密算法.cpp?:?Defines?the?class?behaviors?for?the?application.
//
#include?“stdafx.h“
#include?“DES加解密算法.h“
#include?“DES加解密算法Dlg.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;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????200778??2009-04-23?20:04??DES_gai\Debug\DES加解密算法.exe
?????文件?????236056??2009-04-23?20:04??DES_gai\Debug\DES加解密算法.ilk
?????文件??????14278??2009-04-23?19:12??DES_gai\Debug\DES加解密算法.obj
?????文件????5500532??2009-04-23?16:52??DES_gai\Debug\DES加解密算法.pch
?????文件?????394240??2009-04-23?20:04??DES_gai\Debug\DES加解密算法.pdb
?????文件???????2972??2009-04-23?19:13??DES_gai\Debug\DES加解密算法.res
?????文件?????121426??2009-04-23?20:04??DES_gai\Debug\DES加解密算法Dlg.obj
?????文件?????105594??2009-04-23?16:52??DES_gai\Debug\StdAfx.obj
?????文件?????214016??2009-04-23?20:04??DES_gai\Debug\vc60.idb
?????文件?????364544??2009-04-23?20:04??DES_gai\Debug\vc60.pdb
?????文件??????21640??2009-04-23?19:49??DES_gai\DES加解密算法.APS
?????文件???????1662??2009-04-23?20:04??DES_gai\DES加解密算法.clw
?????文件???????2051??2001-02-06?16:13??DES_gai\DES加解密算法.cpp
?????文件???????4299??2001-02-06?16:13??DES_gai\DES加解密算法.dsp
?????文件????????551??2001-02-06?16:13??DES_gai\DES加解密算法.dsw
?????文件???????1321??2001-02-06?16:13??DES_gai\DES加解密算法.h
?????文件??????74752??2009-04-23?20:04??DES_gai\DES加解密算法.ncb
?????文件??????55808??2009-04-23?20:04??DES_gai\DES加解密算法.opt
?????文件???????1274??2009-04-23?20:04??DES_gai\DES加解密算法.plg
?????文件???????6126??2009-04-23?19:13??DES_gai\DES加解密算法.rc
?????文件??????63430??2009-04-23?20:04??DES_gai\DES加解密算法Dlg.cpp
?????文件???????1757??2009-04-23?19:09??DES_gai\DES加解密算法Dlg.h
?????文件???????1078??2001-02-06?16:13??DES_gai\res\DES加解密算法.ico
?????文件????????405??2001-02-06?16:13??DES_gai\res\DES加解密算法.rc2
?????文件???????1243??2009-04-23?19:10??DES_gai\resource.h
?????文件????????215??2001-02-06?16:13??DES_gai\StdAfx.cpp
?????文件???????1054??2001-02-06?16:13??DES_gai\StdAfx.h
?????文件????????192??2009-04-23?20:03??DES_gai\密鑰二進制表示.dat
?????文件????????192??2009-04-23?20:03??DES_gai\明文二進制表示.dat
?????目錄??????????0??2009-04-23?20:04??DES_gai\Debug
............此處省略5個文件信息
- 上一篇:改進的Hough與梯度直方圖的人眼定位算法
- 下一篇:基于粒子系統的瀑布模型
評論
共有 條評論