You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
163 lines
4.7 KiB
163 lines
4.7 KiB
// CAPICOM.cpp : Implementation of DLL Exports.
|
|
|
|
|
|
// Note: Proxy/Stub Information
|
|
// To build a separate proxy/stub DLL,
|
|
// run nmake -f CAPICOMps.mk in the project directory.
|
|
|
|
//
|
|
// Turn off:
|
|
//
|
|
// - Unreferenced formal parameter warning.
|
|
// - Assignment within conditional expression warning.
|
|
//
|
|
#pragma warning (disable: 4100)
|
|
#pragma warning (disable: 4706)
|
|
|
|
#include "StdAfx.h"
|
|
#include "Resource.h"
|
|
#include <initguid.h>
|
|
#include "CAPICOM.h"
|
|
#include "CAPICOM_i.c"
|
|
|
|
#include "Algorithm.h"
|
|
#include "Attribute.h"
|
|
#include "Attributes.h"
|
|
#include "BasicConstraints.h"
|
|
#include "Certificate.h"
|
|
#include "Certificates.h"
|
|
#include "CertificatePolicies.h"
|
|
#include "CertificateStatus.h"
|
|
#include "Chain.h"
|
|
#include "EKU.h"
|
|
#include "EKUs.h"
|
|
#include "EncodedData.h"
|
|
#include "EncryptedData.h"
|
|
#include "EnvelopedData.h"
|
|
#include "ExtendedKeyUsage.h"
|
|
#include "ExtendedProperties.h"
|
|
#include "ExtendedProperty.h"
|
|
#include "Extension.h"
|
|
#include "Extensions.h"
|
|
#include "HashedData.h"
|
|
#include "KeyUsage.h"
|
|
#include "NoticeNumbers.h"
|
|
#include "OID.h"
|
|
#include "PolicyInformation.h"
|
|
#include "PrivateKey.h"
|
|
#include "PublicKey.h"
|
|
#include "Qualifier.h"
|
|
#include "Qualifiers.h"
|
|
#include "Recipients.h"
|
|
#include "Settings.h"
|
|
#include "SignedCode.h"
|
|
#include "SignedData.h"
|
|
#include "Signer2.h"
|
|
#include "Signers.h"
|
|
#include "Store.h"
|
|
#include "Template.h"
|
|
#include "Utilities.h"
|
|
#include "OIDs.h"
|
|
|
|
CComModule _Module;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Objec map
|
|
//
|
|
|
|
BEGIN_OBJECT_MAP(ObjectMap)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CEKU)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CEKUs)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CKeyUsage)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CExtendedKeyUsage)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CBasicConstraints)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CCertificateStatus)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CAttributes)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CSigners)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CAlgorithm)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CRecipients)
|
|
OBJECT_ENTRY(CLSID_Settings, CSettings)
|
|
OBJECT_ENTRY(CLSID_Certificate, CCertificate)
|
|
OBJECT_ENTRY(CLSID_Certificates, CCertificates)
|
|
OBJECT_ENTRY(CLSID_Store, CStore)
|
|
OBJECT_ENTRY(CLSID_Chain, CChain)
|
|
OBJECT_ENTRY(CLSID_Attribute, CAttribute)
|
|
OBJECT_ENTRY(CLSID_Signer, CSigner)
|
|
OBJECT_ENTRY(CLSID_SignedData, CSignedData)
|
|
OBJECT_ENTRY(CLSID_EnvelopedData, CEnvelopedData)
|
|
OBJECT_ENTRY(CLSID_EncryptedData, CEncryptedData)
|
|
|
|
//
|
|
// CAPICOM v2.0
|
|
//
|
|
OBJECT_ENTRY(CLSID_OID, COID)
|
|
OBJECT_ENTRY_NON_CREATEABLE(COIDs)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CNoticeNumbers)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CQualifier)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CQualifiers)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CPolicyInformation)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CCertificatePolicies)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CEncodedData)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CTemplate)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CPublicKey)
|
|
OBJECT_ENTRY(CLSID_PrivateKey, CPrivateKey)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CExtension)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CExtensions)
|
|
OBJECT_ENTRY(CLSID_ExtendedProperty, CExtendedProperty)
|
|
OBJECT_ENTRY_NON_CREATEABLE(CExtendedProperties)
|
|
OBJECT_ENTRY(CLSID_SignedCode, CSignedCode)
|
|
OBJECT_ENTRY(CLSID_HashedData, CHashedData)
|
|
OBJECT_ENTRY(CLSID_Utilities, CUtilities)
|
|
END_OBJECT_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// DLL Entry Point
|
|
//
|
|
|
|
extern "C"
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
|
|
{
|
|
if (dwReason == DLL_PROCESS_ATTACH)
|
|
{
|
|
_Module.Init(ObjectMap, hInstance, &LIBID_CAPICOM);
|
|
DisableThreadLibraryCalls(hInstance);
|
|
}
|
|
else if (dwReason == DLL_PROCESS_DETACH)
|
|
_Module.Term();
|
|
return TRUE; // ok
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Used to determine whether the DLL can be unloaded by OLE
|
|
|
|
STDAPI DllCanUnloadNow(void)
|
|
{
|
|
return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Returns a class factory to create an object of the requested type
|
|
|
|
STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
|
|
{
|
|
return _Module.GetClassObject(rclsid, riid, ppv);
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// DllRegisterServer - Adds entries to the system registry
|
|
|
|
STDAPI DllRegisterServer(void)
|
|
{
|
|
// registers object, typelib and all interfaces in typelib
|
|
return _Module.RegisterServer(TRUE);
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// DllUnregisterServer - Removes entries from the system registry
|
|
|
|
STDAPI DllUnregisterServer(void)
|
|
{
|
|
return _Module.UnregisterServer(TRUE);
|
|
}
|