• 大小: 670KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-28
  • 语言: 其他
  • 标签:

资源简介

题目1:三圈DES的差分攻击; 要求:设计必需的界面环境, (1) 输入明文及其对应的密文,产生相应的密钥 (2) 设计有好的窗口显示实验结果 题目2:RSA解密密钥攻击; 要求:设计必需的界面环境, (1) 加密密钥和解密密钥,求p、q,使n=p*q (2) 设计有好的窗口显示实验结果 这是密码学课程设计的两个题目,希望对大家的学习有帮助。

资源截图

代码片段和文件信息

// DES 3 Rounds.cpp : Defines the class behaviors for the application.
//
// This project was created using the Worm Studio AppWizard
// 
// Project: DES 3 Rounds
// Author : 王凤伟
// Date : 星期三 三月 03 2010
//

#include “stdafx.h“
#include “DES 3 Rounds.h“
#include “DES 3 RoundsDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CDES3RoundsApp

BEGIN_MESSAGE_MAP(CDES3RoundsApp CWinApp)
ON_COMMAND(CG_IDS_TIPOFTHEDAY ShowTipOfTheDay)
//{{AFX_MSG_MAP(CDES3RoundsApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CDES3RoundsApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CDES3RoundsApp object

CDES3RoundsApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDES3RoundsApp initialization

BOOL CDES3RoundsApp::InitInstance()
{
// CG: This line inserted by ‘Tip of the Day‘ component.
ShowTipAtStartup();

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

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

void CDES3RoundsApp::ShowTipAtStartup(void)
{
// CG: This function added by ‘Tip of the Day‘ component.

CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
if (cmdInfo.m_bShowSplash)
{
CTipDlg dlg;
if (dlg.m_bStartup)
dlg.DoModal();
}

}

void CDES3RoundsApp::ShowTipOfTheDay(void)
{
// CG: This function added by ‘Tip of the Day‘ component.

CTipDlg dlg;
dlg.DoModal();

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2010-06-30 09:17  密码学实验\
     目录           0  2010-03-19 12:15  密码学实验\DES 3 Rounds\
     目录           0  2010-03-19 12:07  密码学实验\DES 3 Rounds\Debug\
     文件      122972  2010-03-19 11:53  密码学实验\DES 3 Rounds\Debug\DES 3 Rounds.exe
     文件       24724  2010-03-19 11:49  密码学实验\DES 3 Rounds\DES 3 Rounds.aps
     文件        2143  2010-03-19 12:15  密码学实验\DES 3 Rounds\DES 3 Rounds.clw
     文件        2824  2010-03-03 18:32  密码学实验\DES 3 Rounds\DES 3 Rounds.cpp
     文件        5463  2010-03-03 22:25  密码学实验\DES 3 Rounds\DES 3 Rounds.dsp
     文件         549  2010-03-03 18:08  密码学实验\DES 3 Rounds\DES 3 Rounds.dsw
     文件       36864  2010-03-19 12:14  密码学实验\DES 3 Rounds\DES 3 Rounds.exe
     文件        1604  2010-03-03 18:32  密码学实验\DES 3 Rounds\DES 3 Rounds.h
     文件       99328  2010-03-19 12:15  密码学实验\DES 3 Rounds\DES 3 Rounds.ncb
     文件       56832  2010-03-19 12:15  密码学实验\DES 3 Rounds\DES 3 Rounds.opt
     文件        2080  2010-03-19 12:14  密码学实验\DES 3 Rounds\DES 3 Rounds.plg
     文件        7837  2010-03-07 09:26  密码学实验\DES 3 Rounds\DES 3 Rounds.rc
     文件        8325  2010-03-07 14:24  密码学实验\DES 3 Rounds\DES 3 RoundsDlg.cpp
     文件        2094  2010-03-07 14:24  密码学实验\DES 3 Rounds\DES 3 RoundsDlg.h
     文件        6707  2010-03-06 12:40  密码学实验\DES 3 Rounds\DES.cpp
     文件        1326  2010-03-06 12:42  密码学实验\DES 3 Rounds\DES.h
     文件        3681  2010-03-03 18:08  密码学实验\DES 3 Rounds\ReadMe.txt
     目录           0  2010-03-19 12:14  密码学实验\DES 3 Rounds\Release\
     文件       36864  2010-03-19 12:14  密码学实验\DES 3 Rounds\Release\DES 3 Rounds.exe
     目录           0  2010-03-18 17:17  密码学实验\DES 3 Rounds\res\
     文件        1602  2010-03-06 21:05  密码学实验\DES 3 Rounds\resource.h
     文件        1078  2010-03-03 18:08  密码学实验\DES 3 Rounds\res\DES 3 Rounds.ico
     文件         404  2010-03-03 18:08  密码学实验\DES 3 Rounds\res\DES 3 Rounds.rc2
     文件        1178  2010-03-03 18:32  密码学实验\DES 3 Rounds\res\litebulb.bmp
     文件         367  2010-03-03 18:08  密码学实验\DES 3 Rounds\StdAfx.cpp
     文件        1224  2010-03-19 11:53  密码学实验\DES 3 Rounds\stdafx.h
     文件        5789  2010-03-03 18:32  密码学实验\DES 3 Rounds\TipDlg.cpp
     文件        1117  2010-03-03 18:32  密码学实验\DES 3 Rounds\TipDlg.h
............此处省略138个文件信息

评论

共有 条评论

相关资源