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

📄 cryptographydlg.h

📁 实现了凯撒、Playfair维吉尼亚和置换算法的MFC加解密程序。
💻 H
字号:
// CryptographyDlg.h : header file
//

#if !defined(AFX_CRYPTOGRAPHYDLG_H__2A6E1225_AC6E_4D8C_AF02_C57F35B52F86__INCLUDED_)
#define AFX_CRYPTOGRAPHYDLG_H__2A6E1225_AC6E_4D8C_AF02_C57F35B52F86__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CCryptographyDlg dialog

class CCryptographyDlg : public CDialog
{
// Construction
public:
	void Permutation();
	void PermutationDecrypt();		
	CString pass[26];
	void Vigenere();
	void VigenereDecrypt();
	void Playfair();
	void PlayfairDecrypt();
	void Caesar();
	void CaesarDecrypt();
	int Choose;
	CCryptographyDlg(CWnd* pParent = NULL);	// standard constructor
	void Openfile(CString FilePath);
// Dialog Data
	//{{AFX_DATA(CCryptographyDlg)
	enum { IDD = IDD_CRYPTOGRAPHY_DIALOG };
	CString	m_StrCipInPut;
	CString	m_StrPlainTextOut;
	CString	m_StrPlaintTextInPut;
	CString	m_StrPass;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CCryptographyDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnBUTTONEncrypt();
	afx_msg void OnBUTTONDecrypt();
	afx_msg void OnRADIOCaesar();
	afx_msg void OnRADIOPlayfair();
	afx_msg void OnRADIOVigenere();
	afx_msg void OnRADIOPermutation();
	afx_msg void OnBUTTONChoose();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_CRYPTOGRAPHYDLG_H__2A6E1225_AC6E_4D8C_AF02_C57F35B52F86__INCLUDED_)

⌨️ 快捷键说明

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