rsapropertypage.h

来自「RSA加密」· C头文件 代码 · 共 64 行

H
64
字号
#if !defined(AFX_RSAPROPERTYPAGE_H__DE49CB6C_344E_4718_A5B7_9C6F9FA7B703__INCLUDED_)
#define AFX_RSAPROPERTYPAGE_H__DE49CB6C_344E_4718_A5B7_9C6F9FA7B703__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// RSAPropertyPage.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CRSAPropertyPage dialog

class CRSAPropertyPage : public CPropertyPage
{
	DECLARE_DYNCREATE(CRSAPropertyPage)

// Construction
public:
	CRSAPropertyPage();
	~CRSAPropertyPage();

// Dialog Data
	//{{AFX_DATA(CRSAPropertyPage)
	enum { IDD = IDD_DIALOG_RSA };
	CString	m_strDecryptString;
	CString	m_strEncryptString;
	CString	m_strPublicKey;
	CString	m_strPrivateKey;
	CString	m_strR;
	CString	m_strSourceString;

	CStringArray m_strEncryptStringArray;
	CString m_strInputPublicKey;
	CString m_strInputPrivateKey;
	//}}AFX_DATA


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

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CRSAPropertyPage)
	afx_msg void OnGeneratekey();
	afx_msg void OnEncrypt();
	afx_msg void OnDecrypt();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	CString m_strInputModeR1;
	CString m_strInputR;

};

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

#endif // !defined(AFX_RSAPROPERTYPAGE_H__DE49CB6C_344E_4718_A5B7_9C6F9FA7B703__INCLUDED_)

⌨️ 快捷键说明

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