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

📄 signdlg.h

📁 实现文件加密解密与数字签名,主要采用RES,AES算法
💻 H
字号:
#if !defined(AFX_SIGNDLG_H__94C83273_7B0C_4F17_82E9_7F6FB841C2A6__INCLUDED_)
#define AFX_SIGNDLG_H__94C83273_7B0C_4F17_82E9_7F6FB841C2A6__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CSignDlg dialog

class CSignDlg : public CDialog
{
// Construction
public:
	CString GetProvType(unsigned int prov);
	int m_session_type;
	int m_prov_type;
	int m_hash_type;
	unsigned int m_prov_sign;
	CString GetSessionType(unsigned int session);
	CString GetHashType(unsigned int hash);
	unsigned int m_hash_sign;

	CSignDlg(CWnd* pParent = NULL);   // standard constructor

	unsigned int m_alg_id_sign;
// Dialog Data
	//{{AFX_DATA(CSignDlg)
	enum { IDD = IDD_SIGN_DIALOG };
	CString	m_file_sign;
	CString	m_letter_sign;
	CString	m_pkey_sign;
	CString	m_signed_sign;
	CString	m_state_sign;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CSignDlg)
	virtual void OnCancel();
	afx_msg void OnFileSignButton();
	afx_msg void OnPubkeySignButton();
	afx_msg void OnSignedFileButton();
	afx_msg void OnLetterSignButton();
	afx_msg void OnSignButton();
	afx_msg void OnLetterButton();
	afx_msg void OnSetSignButton();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_SIGNDLG_H__94C83273_7B0C_4F17_82E9_7F6FB841C2A6__INCLUDED_)

⌨️ 快捷键说明

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