• 大小: 1.82MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-11
  • 语言: C/C++
  • 标签: AES  加密  解密  

资源简介

AES加密解密算法实现的源代码,好资源大家共享

资源截图

代码片段和文件信息

// AES.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “AES.h“
#include “AESDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAESApp

BEGIN_MESSAGE_MAP(CAESApp CWinApp)
//{{AFX_MSG_MAP(CAESApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CAESApp construction

CAESApp::CAESApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CAESApp object

CAESApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CAESApp initialization

BOOL CAESApp::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

CAESDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      24636  2009-04-27 16:53  AES\AES.APS

     文件       3428  2009-04-27 16:57  AES\AES.clw

     文件       2021  2009-04-19 12:05  AES\AES.cpp

     文件       4348  2009-04-19 22:29  AES\AES.dsp

     文件        514  2009-04-19 17:13  AES\AES.dsw

     文件       1291  2009-04-19 12:05  AES\AES.h

     文件      74752  2009-04-27 16:57  AES\AES.ncb

     文件      49664  2009-04-27 16:57  AES\AES.opt

     文件       1083  2009-04-27 16:55  AES\AES.plg

     文件       9176  2009-04-19 22:27  AES\AES.rc

     文件        504  2009-04-19 22:02  AES\AES1.cpp

     文件      12513  2009-04-19 22:06  AES\AES1.h

     文件      13542  2009-04-27 16:55  AES\AESDlg.cpp

     文件       1420  2009-04-19 22:26  AES\AESDlg.h

     文件     135258  2009-04-27 16:55  AES\Debug\AES.exe

     文件     208896  2009-04-27 16:55  AES\Debug\AES.ilk

     文件      13092  2009-04-19 22:26  AES\Debug\AES.obj

     文件    5502316  2009-04-19 12:07  AES\Debug\AES.pch

     文件     377856  2009-04-27 16:55  AES\Debug\AES.pdb

     文件       4580  2009-04-19 22:27  AES\Debug\AES.res

     文件       4147  2009-04-19 22:06  AES\Debug\AES1.obj

     文件      64196  2009-04-27 16:55  AES\Debug\AESDlg.obj

     文件      10301  2009-04-19 22:25  AES\Debug\HelpDlg.obj

     文件     105816  2009-04-19 12:07  AES\Debug\StdAfx.obj

     文件     222208  2009-04-27 16:55  AES\Debug\vc60.idb

     文件     364544  2009-04-27 16:55  AES\Debug\vc60.pdb

     文件        994  2009-04-19 22:25  AES\HelpDlg.cpp

     文件       1229  2009-04-19 22:25  AES\HelpDlg.h

     文件       3525  2009-04-19 12:05  AES\ReadMe.txt

     文件       1078  2009-04-19 12:05  AES\res\AES.ico

............此处省略10个文件信息

评论

共有 条评论