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

📄 demodlg.h

📁 RSA加解密算法源代码
💻 H
字号:
#include "BigInt.h"

class CDemoDlg : public CDialog
{
public:
	CDemoDlg(CWnd* pParent = NULL);   // standard constructor

	//{{AFX_DATA(CDemoDlg)
	enum { IDD = IDD_DEMO_FORM };
	CString	m_D;
	CString	m_E;
	CString	m_N;
	CString	m_IN;
	CString	m_OUT;
	int		m_Len;
	//}}AFX_DATA

	CBigInt P,Q,N,D,E;
	int seed,ready;

protected:
	//{{AFX_VIRTUAL(CDemoDlg)
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

	//{{AFX_MSG(CDemoDlg)
	afx_msg void OnButtonGet();
	afx_msg void OnButtonPut();
	afx_msg void OnButtonDecrypt();
	afx_msg void OnButtonEncrypt();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

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