资源简介
CryptoAPI加密解密代码,vc6.0工程源代码,可以正常加密解密
代码片段和文件信息
// CryptoEncryption.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “CryptoEncryption.h“
#include “CryptoEncryptionDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCryptoEncryptionApp
BEGIN_MESSAGE_MAP(CCryptoEncryptionApp CWinApp)
//{{AFX_MSG_MAP(CCryptoEncryptionApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CCryptoEncryptionApp construction
CCryptoEncryptionApp::CCryptoEncryptionApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCryptoEncryptionApp object
CCryptoEncryptionApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCryptoEncryptionApp initialization
BOOL CCryptoEncryptionApp::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
CCryptoEncryptionDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1950 2005-07-28 01:07 CryptoEncryption\CryptoEncryption.clw
文件 2203 2005-07-27 22:21 CryptoEncryption\CryptoEncryption.cpp
文件 4398 2005-09-09 11:46 CryptoEncryption\CryptoEncryption.dsp
文件 555 2005-07-27 22:21 CryptoEncryption\CryptoEncryption.dsw
文件 1434 2005-07-27 22:21 CryptoEncryption\CryptoEncryption.h
文件 5964 2005-07-27 23:56 CryptoEncryption\CryptoEncryption.rc
文件 7023 2005-07-28 01:06 CryptoEncryption\CryptoEncryptionDlg.cpp
文件 2846 2005-07-28 01:05 CryptoEncryption\CryptoEncryptionDlg.h
文件 2177 2005-09-09 11:43 CryptoEncryption\Key.h
文件 3759 2005-07-27 22:21 CryptoEncryption\ReadMe.txt
目录 0 2005-09-09 11:16 CryptoEncryption\res\
文件 1078 2005-07-27 22:21 CryptoEncryption\res\CryptoEncryption.ico
文件 408 2005-07-27 22:21 CryptoEncryption\res\CryptoEncryption.rc2
文件 832 2005-07-27 22:24 CryptoEncryption\resource.h
文件 218 2005-07-27 22:21 CryptoEncryption\StdAfx.cpp
文件 1085 2005-07-27 22:25 CryptoEncryption\StdAfx.h
目录 0 2005-09-09 12:26 CryptoEncryption\
- 上一篇:漂亮的MFC进度条
- 下一篇:在Linux下编译并运行C程序
相关资源
- AES128/192/256 C语言实现AES加密/解密实测
- C++制作加密解密系统
- 基于c++的RSA加密解密程序及源码
- 文件加密解密
- rsa加密解密算法C语言代码
- 维吉尼亚加密解密的C语言实现
- 维吉尼亚加密解密C++实现
- AES多种加密解密方式C语言方式实现
- C语言实现的AES加密解密
- AES加密解密系统 VC++6.0 实现
- C语言 stm32 AES加密解密
- AES单片机加密解密 C语言源代码
- vigenere密码加密解密算法实现软件Vc
- rc4加密解密算法
- CBC模式的DES加密解密程序
- 国密SM4加密解密51单片机版C源程序.
- vigenere加密解密C语言代码
- C语言版本的DES加密解密算法代码!(
- VC++ DES 加密解密算法
- 密码学MFC实现仿射加密解密超级计算
- 采用MFC编写的文件加密解密程序
- MFC有界面RSA加密解密算法实现
- 300种加密解密算法C++源代码
- 300多种加密解密算法C++源代码
- RSA加密算法的C语言实现
- DES加密解密算法(可加解密中文字符
- C++实现的DES加密解密的动态库的源码
- c语言异或实现音频的加密解密
- Rijndael算法加密解密
- DES加密解密 MFC C++
评论
共有 条评论