rsasystemdlg.h

来自「RSA算法是第一个能同时用于加密和数字签名的算法」· C头文件 代码 · 共 92 行

H
92
字号
// rsasystemDlg.h : header file
//

#if !defined(AFX_RSASYSTEMDLG_H__C42823CE_0369_4B08_9AAE_9A716B5050E0__INCLUDED_)
#define AFX_RSASYSTEMDLG_H__C42823CE_0369_4B08_9AAE_9A716B5050E0__INCLUDED_

#include "big.h"	// Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000



/////////////////////////////////////////////////////////////////////////////
// CRsasystemDlg dialog

class CRsasystemDlg : public CDialog
{
// Construction
public:
	void strip(char *name);
	Big strongp(int n, long seed1, long seed2);
	CRsasystemDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CRsasystemDlg)
	enum { IDD = IDD_RSASYSTEM_DIALOG };
	CEdit	m_showprikey2c;
	CButton	m_BUTTON7;
	CEdit	m_showpubkeyc;
	CEdit	m_showprikeyc;
	CStatic	m_static7;
	CStatic	m_static6;
	CStatic	m_static5;
	CButton	m_BUTTON3;
	CButton	m_BUTTON2;
	CButton	m_BUTTON1;
	CEdit	m_keybitc;
	CEdit	m_seed4c;
	CEdit	m_seed3c;
	CEdit	m_seed1c;
	CEdit	m_seed2c;
	CButton	m_static4;
	CButton	m_static3;
	CButton	m_static2;
	CButton	m_static1;
	CTabCtrl	m_Tab;
	CEdit	m_decode;
	CEdit	m_encode;
	CEdit	m_source;
	CEdit	m_pubadd;
	CEdit	m_priadd;
	long	m_seed1;
	long	m_seed2;
	long	m_seed3;
	long	m_seed4;
	int		m_keybit;
	CString	m_showprikey;
	CString	m_showpubkey;
	CString	m_showprikey2;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CRsasystemDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CRsasystemDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnButton1();
	afx_msg void OnButton2();
	afx_msg void OnButton3();
	afx_msg void OnSelchangeTab(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnButton7();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_RSASYSTEMDLG_H__C42823CE_0369_4B08_9AAE_9A716B5050E0__INCLUDED_)

⌨️ 快捷键说明

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