Certificat.h
资源名称:pkcs11.rar [点击查看]
上传用户:filter2008
上传日期:2013-02-01
资源大小:101k
文件大小:1k
源码类别:
CA认证
开发平台:
C/C++
- // 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_)