encryption1dlg.h

来自「VC环境下BlowFish算法加密解密原程序.This is a simple 」· C头文件 代码 · 共 40 行

H
40
字号
// encryption1Dlg.h : header file
//

#pragma once
#include "afxwin.h"


// Cencryption1Dlg dialog
class Cencryption1Dlg : public CDialog
{
// Construction
public:
	Cencryption1Dlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	enum { IDD = IDD_ENCRYPTION1_DIALOG };

	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support


// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	DECLARE_MESSAGE_MAP()
public:
	CEdit m_editbox;
	CEdit m_outputbox;
	afx_msg void OnBnClickedButton1();
	afx_msg void OnBnClickedButton2();
	CEdit m_key;
	CEdit m_bit;
	CEdit m_output2;
};

⌨️ 快捷键说明

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