资源简介
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个文件信息
相关资源
- 3des加密算法C语言实现
- DES加密算法C语言实现
- C语言实现的DES对称加密算法
- 国密SM4加密_2020
- aes加解密(vc源程序)
- C++ SHA256加密计算
- BlowFish加密算法
-
STM32-ba
se64加密源代码 - VProtect+注册机.rar
- VC++实现RSA加密算法
- dsp课程设计——语音加密.zip
- C++实现RSA加密解密算法
- AES-128-CBC算法C语言源码已经修改,可
- 多表代换 加密解密 C语言实现
- 椭圆曲线ECC加密解密算法的c语言实现
- hill密码的加密、解密以及破译.zip
- c++实现ECC加解密
- C语言实现凯撒和维吉尼亚加解密
- C++实现AES、DES加密算法含MFC界面
- 3DES加密算法C++实现
- DES/3DES算法C语言实现
- DES和3DES加密算法,C语言,适用于单片
- 各种加密算法C语言版
-
C++_AES_ECB_ba
se64 - SM4(ECB、CBC、CTR、CFB、OFB)加密算法
- AES算法采用verilog硬件实现
- RSA算法纯C语言代码实现,带测试dem
- sm2算法源码实现
- AES GCM算法源码
- DES算法C++实现.rar
评论
共有 条评论