📄 dlgaesencrypt.h
字号:
#if !defined(AFX_DLGENCRYPT_H__DB0CAC91_A92E_4B50_8101_09101EC23D74__INCLUDED_)
#define AFX_DLGENCRYPT_H__DB0CAC91_A92E_4B50_8101_09101EC23D74__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DlgEncrypt.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CDlgAESEncrypt dialog
#include "AES.h"
class CDlgAESEncrypt : public CDialog
{
// Construction
public:
CDlgAESEncrypt(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CDlgAESEncrypt)
enum { IDD = IDD_DIALOG_AES_ENCRYPT };
CString m_strDecrypt;
CString m_strCrypt;
CString m_strMsg;
int m_iKeySize;
CString m_strKey;
int m_iRound;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDlgAESEncrypt)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CDlgAESEncrypt)
virtual BOOL OnInitDialog();
afx_msg void OnButtonEncrypt();
afx_msg void OnButtonDecrypt();
afx_msg void OnChangeEditMessage();
afx_msg void OnButtonGenerateRandomKey();
afx_msg void OnButtonSetRound();
afx_msg void OnButtonSetKeySize();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CAES m_AES;
bool m_bEncrypt;
bool m_bDecrypt;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DLGENCRYPT_H__DB0CAC91_A92E_4B50_8101_09101EC23D74__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -