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

📄 decryptkeydlg.cpp

📁 RSA算法的原理分析及实现。RSA是既能用于数据加密也能用于数字签名的一种非对称密码体制的算法。它有一对密钥
💻 CPP
字号:
// DecryptKeyDlg.cpp : implementation file
//

#include "stdafx.h"
#include "RSA.h"
#include "DecryptKeyDlg.h"
#include "RSADlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDecryptKeyDlg dialog


CDecryptKeyDlg::CDecryptKeyDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CDecryptKeyDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDecryptKeyDlg)
	m_strInputDecryptKey = _T("");
	m_strInputModeR1 = _T("");
	//}}AFX_DATA_INIT
}


void CDecryptKeyDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDecryptKeyDlg)
	DDX_Text(pDX, IDC_INPUTDECRYPTKEY, m_strInputDecryptKey);
	DDX_Text(pDX, IDC_INPUTMODER1, m_strInputModeR1);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDecryptKeyDlg, CDialog)
	//{{AFX_MSG_MAP(CDecryptKeyDlg)
	ON_BN_CLICKED(IDC_DECRYPTKEY, OnDecryptkey)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDecryptKeyDlg message handlers

void CDecryptKeyDlg::OnDecryptkey() 
{
	// TODO: Add your control notification handler code here
	UpdateData(TRUE);
	//dlg.m_strInputPublicKey=m_strInputEncryptKey;
	CDialog::OnOK();
}

⌨️ 快捷键说明

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