资源简介

文本文件的加密与解密

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “fileencrypt.h“
#include “fileencryptDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CFileencryptApp

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

/////////////////////////////////////////////////////////////////////////////
// CFileencryptApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CFileencryptApp object

CFileencryptApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CFileencryptApp initialization

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

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

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

     文件       3669  2007-05-08 08:52  fileencrypt\ReadMe.txt

     文件        827  2007-05-08 08:52  fileencrypt\Resource.h

     文件        213  2007-05-08 08:52  fileencrypt\StdAfx.cpp

     文件       1054  2007-05-08 08:52  fileencrypt\StdAfx.h

     文件      21412  2007-05-08 08:52  fileencrypt\fileencrypt.aps

     文件       1382  2007-05-08 08:52  fileencrypt\fileencrypt.clw

     文件       2133  2007-05-08 08:52  fileencrypt\fileencrypt.cpp

     文件       4249  2007-05-08 08:52  fileencrypt\fileencrypt.dsp

     文件        545  2007-05-08 08:52  fileencrypt\fileencrypt.dsw

     文件       1379  2007-05-08 08:52  fileencrypt\fileencrypt.h

     文件      74752  2007-05-08 08:52  fileencrypt\fileencrypt.ncb

     文件       1860  2007-05-08 08:52  fileencrypt\fileencrypt.plg

     文件       5591  2007-05-08 08:52  fileencrypt\fileencrypt.rc

     文件       5558  2007-05-08 08:52  fileencrypt\fileencryptDlg.cpp

     文件       1518  2007-05-08 08:52  fileencrypt\fileencryptDlg.h

     文件       1078  2007-05-08 08:52  fileencrypt\res\fileencrypt.ico

     文件        403  2007-05-08 08:52  fileencrypt\res\fileencrypt.rc2

     目录          0  2009-05-18 15:34  fileencrypt\res

     目录          0  2009-05-18 15:34  fileencrypt

----------- ---------  ---------- -----  ----

               127623                    19


评论

共有 条评论