資源簡介
運用DES 對不限長度的字符串加密!

代碼片段和文件信息
//?DESShow.cpp?:?Defines?the?class?behaviors?for?the?application.
//
#include?“stdafx.h“
#include?“DESShow.h“
#include?“DESShowDlg.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#undef?THIS_FILE
static?char?THIS_FILE[]?=?__FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
//?CDESShowApp
BEGIN_MESSAGE_MAP(CDESShowApp?CWinApp)
//{{AFX_MSG_MAP(CDESShowApp)
//?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()
/////////////////////////////////////////////////////////////////////////////
//?CDESShowApp?construction
CDESShowApp::CDESShowApp()
{
//?TODO:?add?construction?code?here
//?Place?all?significant?initialization?in?InitInstance
}
/////////////////////////////////////////////////////////////////////////////
//?The?one?and?only?CDESShowApp?object
CDESShowApp?theApp;
/////////////////////////////////////////////////////////////////////////////
//?CDESShowApp?initialization
BOOL?CDESShowApp::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
CDESShowDlg?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;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????4072448??2010-11-23?16:53??DESShow\Debug\DESShow.bsc
?????文件?????122935??2010-11-23?16:53??DESShow\Debug\DESShow.exe
?????文件?????281452??2010-11-23?16:53??DESShow\Debug\DESShow.ilk
?????文件??????14310??2010-11-23?16:53??DESShow\Debug\DESShow.obj
?????文件????7079908??2010-11-18?15:44??DESShow\Debug\DESShow.pch
?????文件?????410624??2010-11-23?16:53??DESShow\Debug\DESShow.pdb
?????文件???????2728??2010-11-23?16:50??DESShow\Debug\DESShow.res
?????文件??????????0??2010-11-23?16:53??DESShow\Debug\DESShow.sbr
?????文件??????56445??2010-11-23?16:53??DESShow\Debug\DESShowDlg.obj
?????文件??????????0??2010-11-23?16:53??DESShow\Debug\DESShowDlg.sbr
?????文件?????105494??2010-11-18?15:44??DESShow\Debug\StdAfx.obj
?????文件????1374932??2010-11-18?15:44??DESShow\Debug\StdAfx.sbr
?????文件?????271360??2010-11-23?16:53??DESShow\Debug\vc60.idb
?????文件?????446464??2010-11-23?16:53??DESShow\Debug\vc60.pdb
?????文件???????7477??2004-12-12?21:22??DESShow\des.h
?????文件??????36244??2010-11-23?16:50??DESShow\DESShow.aps
?????文件???????1351??2010-11-23?17:57??DESShow\DESShow.clw
?????文件???????2077??2010-11-18?09:04??DESShow\DESShow.cpp
?????文件???????4238??2010-11-18?17:51??DESShow\DESShow.dsp
?????文件????????522??2010-11-18?09:04??DESShow\DESShow.dsw
?????文件???????1335??2010-11-18?09:04??DESShow\DESShow.h
?????文件??????66560??2010-11-23?18:06??DESShow\DESShow.ncb
?????文件??????54784??2010-11-23?18:06??DESShow\DESShow.opt
?????文件???????1137??2010-11-23?16:53??DESShow\DESShow.plg
?????文件???????5615??2010-11-23?16:50??DESShow\DESShow.rc
?????文件???????6175??2010-11-23?18:06??DESShow\DESShowDlg.cpp
?????文件???????1483??2010-11-23?16:53??DESShow\DESShowDlg.h
?????文件?????149343??2005-01-20?13:57??DESShow\G__des.c
?????文件???????3597??2010-11-18?09:04??DESShow\ReadMe.txt
?????文件???????1078??2010-11-18?09:04??DESShow\res\DESShow.ico
............此處省略10個文件信息
評論
共有 條評論