00001 00009 #ifndef __KeyUsageFactory_H__ 00010 #define __KeyUsageFactory_H__ 00011 00012 #if _MSC_VER > 1000 00013 #pragma once 00014 #endif // _MSC_VER > 1000 00015 00016 00017 #include "PKIFdll.h" 00018 #define CAC_API_FACTORY 00019 00020 #include "IPKIFColleague.h" 00021 #include "ICACExtensionFactory.h" 00022 00023 00029 class CAC_API_FACTORY CPKIFKeyUsageFactory : public IPKIFColleague, public ICACExtensionFactory 00030 { 00031 public: 00032 CPKIFKeyUsageFactory(); 00033 virtual ~CPKIFKeyUsageFactory(); 00034 00035 void Initialize(); 00036 //CPKIFX509ExtensionPtr create(const CACX509V3Extension& ext); 00037 CPKIFX509ExtensionPtr create(bool criticality, const CPKIFBufferPtr& ext); 00038 const char* refOID(); 00039 00040 private: 00042 CPKIFKeyUsageFactory(const CPKIFKeyUsageFactory& ext); 00044 CPKIFKeyUsageFactory& operator=(const CPKIFKeyUsageFactory& rhs); //added 4/6/2004 00045 }; 00046 DECLARE_SMART_POINTERS(CPKIFKeyUsageFactory); 00047 #endif