certificat.h

来自「PKCS#11的微软CSP实现源码」· C头文件 代码 · 共 32 行

H
32
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?