⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 elgmaltest.cpp

📁 这个程序是网络信息安全概论课的课程实践,自己动手编写一个具于1024位大数 运算的ELGamal加密系统。 ELGamal 依赖大数运算
💻 CPP
字号:
// ELGmaltest.cpp : implementation file
//

#include "stdafx.h"
#include "elgamaltool.h"
#include "ELGmaltest.h"

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

/////////////////////////////////////////////////////////////////////////////
// ELGmaltest dialog


ELGmaltest::ELGmaltest(CWnd* pParent /*=NULL*/)
	: CDialog(ELGmaltest::IDD, pParent)
{
	//{{AFX_DATA_INIT(ELGmaltest)
	m_in = _T("");
	m_out = _T("");
	//}}AFX_DATA_INIT
}


void ELGmaltest::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(ELGmaltest)
	DDX_Text(pDX, IDC_EDIT1, m_in);
	DDX_Text(pDX, IDC_EDIT2, m_out);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(ELGmaltest, CDialog)
	//{{AFX_MSG_MAP(ELGmaltest)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// ELGmaltest message handlers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -