2014-06-02 00:22:16 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Austin English
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2015-02-27 18:49:28 +00:00
|
|
|
#include "msasn1.h"
|
2014-06-02 00:22:16 +00:00
|
|
|
|
2020-05-05 11:51:36 +00:00
|
|
|
#include "wine/heap.h"
|
2020-04-29 17:43:06 +00:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msasn1);
|
|
|
|
|
2014-06-02 00:22:16 +00:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case DLL_WINE_PREATTACH:
|
|
|
|
return FALSE; /* prefer native version */
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
DisableThreadLibraryCalls(instance);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2020-04-29 17:43:06 +00:00
|
|
|
|
|
|
|
ASN1module_t WINAPI ASN1_CreateModule(ASN1uint32_t ver, ASN1encodingrule_e rule, ASN1uint32_t flags,
|
|
|
|
ASN1uint32_t pdu, const ASN1GenericFun_t encoder[],
|
|
|
|
const ASN1GenericFun_t decoder[], const ASN1FreeFun_t freemem[],
|
|
|
|
const ASN1uint32_t size[], ASN1magic_t magic)
|
|
|
|
{
|
|
|
|
ASN1module_t module = NULL;
|
|
|
|
|
2020-05-05 11:51:36 +00:00
|
|
|
TRACE("(%08x %08x %08x %u %p %p %p %p %u)\n", ver, rule, flags, pdu, encoder, decoder, freemem, size, magic);
|
2020-04-29 17:43:06 +00:00
|
|
|
|
|
|
|
if (!encoder || !decoder || !freemem || !size)
|
|
|
|
return module;
|
|
|
|
|
2020-05-05 11:51:36 +00:00
|
|
|
module = heap_alloc(sizeof(module));
|
|
|
|
if (module)
|
|
|
|
{
|
|
|
|
module->nModuleName = magic;
|
|
|
|
module->eRule = rule;
|
|
|
|
module->dwFlags = flags;
|
|
|
|
module->cPDUs = pdu;
|
|
|
|
module->apfnFreeMemory = freemem;
|
|
|
|
module->acbStructSize = size;
|
|
|
|
|
|
|
|
if (rule & ASN1_PER_RULE)
|
|
|
|
{
|
|
|
|
module->PER.apfnEncoder = (ASN1PerEncFun_t *)encoder;
|
|
|
|
module->PER.apfnDecoder = (ASN1PerDecFun_t *)decoder;
|
|
|
|
}
|
|
|
|
else if (rule & ASN1_BER_RULE)
|
|
|
|
{
|
|
|
|
module->BER.apfnEncoder = (ASN1BerEncFun_t *)encoder;
|
|
|
|
module->BER.apfnDecoder = (ASN1BerDecFun_t *)decoder;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
module->PER.apfnEncoder = NULL;
|
|
|
|
module->PER.apfnDecoder = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-29 17:43:06 +00:00
|
|
|
return module;
|
|
|
|
}
|
2020-05-05 12:21:43 +00:00
|
|
|
|
|
|
|
void WINAPI ASN1_CloseModule(ASN1module_t module)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", module);
|
|
|
|
|
|
|
|
heap_free(module);
|
|
|
|
}
|