13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync/* $Id$ */
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync/** @file
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * IPRT - ASN.1, Dynamic Type, Decoding.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync */
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync/*
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * Copyright (C) 2006-2014 Oracle Corporation
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync *
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * available from http://www.virtualbox.org. This file is free software;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * you can redistribute it and/or modify it under the terms of the GNU
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * General Public License (GPL) as published by the Free Software
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync *
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * The contents of this file may alternatively be used under the terms
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * of the Common Development and Distribution License Version 1.0
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * VirtualBox OSE distribution, in which case the provisions of the
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * CDDL are applicable instead of those of the GPL.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync *
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * You may elect to license modified versions of this file under the
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * terms and conditions of either the GPL or the CDDL or both.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync */
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync/*******************************************************************************
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync* Header Files *
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync*******************************************************************************/
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#include "internal/iprt.h"
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#include <iprt/asn1.h>
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#include <iprt/err.h>
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#include <iprt/string.h>
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#include <iprt/formats/asn1.h>
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsyncRTDECL(int) RTAsn1DynType_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1DYNTYPE pDynType, const char *pszErrorTag)
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync{
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync Assert(!(fFlags & RTASN1CURSOR_GET_F_IMPLICIT));
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync uint32_t cbSavedLeft = pCursor->cbLeft;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync uint8_t const *pbSavedCur = pCursor->pbCur;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync int rc = RTAsn1CursorReadHdr(pCursor, &pDynType->u.Core, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync if (RT_SUCCESS(rc))
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync {
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_CORE;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync if (pDynType->u.Core.fClass == (ASN1_TAGCLASS_UNIVERSAL | ASN1_TAGFLAG_PRIMITIVE))
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync {
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync switch (pDynType->u.Core.uTag)
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync {
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_BOOLEAN:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_BOOLEAN;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_INTEGER:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_INTEGER;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync //case ASN1_TAG_ENUMERATED:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // pDynType->enmType = RTASN1TYPE_ENUMERATED;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync //case ASN1_TAG_REAL:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // pDynType->enmType = RTASN1TYPE_REAL;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_BIT_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_BIT_STRING;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_OCTET_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_OCTET_STRING;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_NULL:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_NULL;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_SEQUENCE:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 SEQUENCE shall be constructed.");
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_SET:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 SET shall be constructed.");
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_OID:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_OBJID;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync //case ASN1_TAG_RELATIVE_OID:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // pDynType->enmType = RTASN1TYPE_RELATIVE_OBJID;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_UTC_TIME:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_GENERALIZED_TIME:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_TIME;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_UTF8_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_NUMERIC_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_PRINTABLE_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_T61_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_VIDEOTEX_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_IA5_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_GRAPHIC_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_VISIBLE_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_UNIVERSAL_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_GENERAL_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_BMP_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_STRING;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync //case ASN1_TAG_CHARACTER_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // pDynType->enmType = RTASN1TYPE_CHARACTER_STRING;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync default:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_TAG_NOT_IMPL,
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync "Primitive tag %u (%#x) not implemented.",
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->u.Core.uTag, pDynType->u.Core.uTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync }
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync }
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync else if (pDynType->u.Core.fClass == (ASN1_TAGCLASS_UNIVERSAL | ASN1_TAGFLAG_CONSTRUCTED))
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync switch (pDynType->u.Core.uTag)
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync {
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_BOOLEAN:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 BOOLEAN shall be primitive.");
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_INTEGER:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 BOOLEAN shall be primitive.");
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_ENUMERATED:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 ENUMERATED shall be primitive.");
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_REAL:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 REAL shall be primitive.");
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_BIT_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_BIT_STRING;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_OCTET_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_OCTET_STRING;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_NULL:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 NULL shall be primitive.");
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_SEQUENCE:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#if 0
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_SEQUENCE_CORE;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->u.SeqCore.Asn1Core.fFlags |= RTASN1CORE_F_PRIMITE_TAG_STRUCT;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync RTAsn1CursorSkip(pCursor, pDynType->u.Core.cb);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return VINF_SUCCESS;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#else
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_CORE;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#endif
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_SET:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#if 0
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_SET_CORE;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->u.SeqCore.Asn1Core.fFlags |= RTASN1CORE_F_PRIMITE_TAG_STRUCT;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync RTAsn1CursorSkip(pCursor, pDynType->u.Core.cb);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return VINF_SUCCESS;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#else
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_CORE;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#endif
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_OID:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 OBJECT ID shall be primitive.");
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_RELATIVE_OID:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 RELATIVE OID shall be primitive.");
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_UTF8_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_NUMERIC_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_PRINTABLE_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_T61_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_VIDEOTEX_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_IA5_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_GRAPHIC_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_VISIBLE_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_UNIVERSAL_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_GENERAL_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case ASN1_TAG_BMP_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->enmType = RTASN1TYPE_STRING;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync //case ASN1_TAG_CHARACTER_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // pDynType->enmType = RTASN1TYPE_CHARACTER_STRING;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync // break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync default:
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_TAG_NOT_IMPL,
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync "Constructed tag %u (%#x) not implemented.",
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pDynType->u.Core.uTag, pDynType->u.Core.uTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync }
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync else
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync {
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync RTAsn1CursorSkip(pCursor, pDynType->u.Core.cb);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return VINF_SUCCESS;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync }
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync /*
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * Restore the cursor and redo with specific type.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync */
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pCursor->pbCur = pbSavedCur;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync pCursor->cbLeft = cbSavedLeft;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync switch (pDynType->enmType)
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync {
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case RTASN1TYPE_INTEGER:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync rc = RTAsn1Integer_DecodeAsn1(pCursor, 0, &pDynType->u.Integer, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case RTASN1TYPE_BOOLEAN:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync rc = RTAsn1Boolean_DecodeAsn1(pCursor, 0, &pDynType->u.Boolean, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case RTASN1TYPE_OBJID:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync rc = RTAsn1ObjId_DecodeAsn1(pCursor, 0, &pDynType->u.ObjId, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case RTASN1TYPE_BIT_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync rc = RTAsn1BitString_DecodeAsn1(pCursor, 0, &pDynType->u.BitString, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case RTASN1TYPE_OCTET_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync rc = RTAsn1OctetString_DecodeAsn1(pCursor, 0, &pDynType->u.OctetString, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case RTASN1TYPE_NULL:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync rc = RTAsn1Null_DecodeAsn1(pCursor, 0, &pDynType->u.Asn1Null, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case RTASN1TYPE_TIME:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync rc = RTAsn1Time_DecodeAsn1(pCursor, 0, &pDynType->u.Time, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case RTASN1TYPE_STRING:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync rc = RTAsn1String_DecodeAsn1(pCursor, 0, &pDynType->u.String, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync case RTASN1TYPE_CORE:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync rc = RTAsn1Core_DecodeAsn1(pCursor, 0, &pDynType->u.Core, pszErrorTag);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync break;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync default:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync AssertFailedReturn(VERR_INTERNAL_ERROR_4);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync }
375c27aef516595a50459787463506d474668e8cvboxsync if (RT_SUCCESS(rc))
375c27aef516595a50459787463506d474668e8cvboxsync return rc;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync }
375c27aef516595a50459787463506d474668e8cvboxsync RT_ZERO(*pDynType);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync return rc;
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync}
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync