demodlg.h
来自「RSA加解密算法源代码」· C头文件 代码 · 共 34 行
H
34 行
#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 + =
减小字号Ctrl + -
显示快捷键?