• 大小: 60KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-05
  • 语言: C/C++
  • 标签: 文件加密  

资源简介

采用MFC编写的文件加密解密程序。选择文件及加密密匙,加密文件内容。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “ecfile.h“
#include “ecfileDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CEcfileApp

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

/////////////////////////////////////////////////////////////////////////////
// CEcfileApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CEcfileApp object

CEcfileApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CEcfileApp initialization

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

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

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

     文件      21960  2006-08-28 08:30  文件加密\ecfile.aps

     文件       1250  2006-08-28 08:31  文件加密\ecfile.clw

     文件       2063  2003-05-27 11:40  文件加密\ecfile.cpp

     文件       4225  2003-05-27 12:02  文件加密\ecfile.dsp

     文件        537  2003-05-27 11:40  文件加密\ecfile.dsw

     文件       1324  2003-05-27 11:40  文件加密\ecfile.h

     文件      82944  2006-08-28 08:31  文件加密\ecfile.ncb

     文件      83968  2006-08-28 08:31  文件加密\ecfile.opt

     文件       1617  2006-08-28 08:30  文件加密\ecfile.plg

     文件       5776  2005-05-18 13:33  文件加密\ecfile.rc

     文件       5580  2005-05-18 13:16  文件加密\ecfileDlg.cpp

     文件       1500  2005-05-18 13:16  文件加密\ecfileDlg.h

     文件      24576  2006-08-28 08:30  文件加密\Release\ecfile.exe

     文件       9557  2006-08-28 08:30  文件加密\Release\ecfile.obj

     文件       3508  2006-08-28 08:30  文件加密\Release\ecfile.res

     文件      22561  2006-08-28 08:30  文件加密\Release\ecfileDlg.obj

     文件        786  2006-08-28 08:30  文件加密\Release\StdAfx.obj

     文件      50176  2006-08-28 08:31  文件加密\Release\vc60.idb

     文件        691  2003-05-27 12:02  文件加密\res\default1.bin

     文件       1078  2003-05-27 11:40  文件加密\res\ecfile.ico

     文件        398  2003-05-27 11:40  文件加密\res\ecfile.rc2

     文件        868  2005-05-18 13:26  文件加密\resource.h

     文件        208  2003-05-27 11:40  文件加密\StdAfx.cpp

     文件       1054  2003-05-27 11:40  文件加密\StdAfx.h

     目录          0  2008-12-04 12:08  文件加密\Release

     目录          0  2008-03-19 21:03  文件加密\res

     目录          0  2008-03-19 21:03  文件加密

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

               328205                    27



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

评论

共有 条评论