资源简介
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个文件信息
相关资源
- c++实现文件的加密和解密
- AES加密解密程序(C++)+实验报告
- 文件加密软件与信息隐藏
- DES加解密 MFC
- OpenSSLx86 & x64开发库
- aes加密算法源码
- AES MFC
- RSA加密算法
- AES加密的HLS实现与优化
- 数据文件随机加密和解密
- C++C#互通DES加密算法
- 恺撒加密解密
- 希尔密码加密、解密和破密HillCodor
- c++ 凯撒密码(加密、解密)
- C++ 单码加密
- DES_CBC加密,解密多种格式文件,基于
- MFC vc6.0 RSA DES MD5 加密解密算法
- des源码 界面很友好
- 传智黑马程序员C++24期完整不加密版
- DES C语言源代码 雪崩性质分析,差分
- 密码学差分密码解密程序实现
- 维吉尼亚加密解密C语言实现
- 混合加密程序 VC++包括DES加密和AES加密
- AES CBC加解密源代码
- RSA加密算法C语言实现
- 属性基加密c语言实现.zip
- DES按行加密解密文本-C语言实现
- 最简单rsa加解密文件
- AES 算法实现(linux) 可移植
- C语言实现任何文件的加密解密功能
评论
共有 条评论