📄 certificat.h
字号:
// Certificat.h: interface for the CCertificat class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CERTIFICAT_H__858A1C1A_938D_4ACF_84A8_8A7A534E9478__INCLUDED_)
#define AFX_CERTIFICAT_H__858A1C1A_938D_4ACF_84A8_8A7A534E9478__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CCertificat
{
public:
CCertificat();
virtual ~CCertificat();
void setContName(char * strContainerName);
void setValueCert(unsigned char * ucValueCert, int ulValueCertLen);
void setLabel(char * strLabel);
char * getContName();
unsigned char * getValueCert();
unsigned long getValueCertLen();
char * getLabel();
char * m_strLabel;
char * m_strContainerName;
unsigned char * m_ucValueCert;
unsigned long m_ulValueCertLen;
};
#endif // !defined(AFX_CERTIFICAT_H__858A1C1A_938D_4ACF_84A8_8A7A534E9478__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -