Certificat.h
上传用户:filter2008
上传日期:2013-02-01
资源大小:101k
文件大小:1k
源码类别:

CA认证

开发平台:

C/C++

  1. // Certificat.h: interface for the CCertificat class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CERTIFICAT_H__858A1C1A_938D_4ACF_84A8_8A7A534E9478__INCLUDED_)
  5. #define AFX_CERTIFICAT_H__858A1C1A_938D_4ACF_84A8_8A7A534E9478__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CCertificat  
  10. {
  11. public:
  12. CCertificat();
  13. virtual ~CCertificat();
  14.   void            setContName(char * strContainerName);
  15.   void            setValueCert(unsigned char * ucValueCert, int ulValueCertLen);
  16.   void            setLabel(char * strLabel);
  17.   char *          getContName();
  18.   unsigned char * getValueCert();
  19.   unsigned long   getValueCertLen();
  20.   char *          getLabel();
  21.   char *          m_strLabel;
  22.   char *          m_strContainerName;
  23.   unsigned char * m_ucValueCert;
  24.   unsigned long   m_ulValueCertLen;
  25. };
  26. #endif // !defined(AFX_CERTIFICAT_H__858A1C1A_938D_4ACF_84A8_8A7A534E9478__INCLUDED_)