13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync/* $Id$ */
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync/** @file
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync * IPRT - ASN.1, Octet String Type, Collection Type Template.
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#define RTASN1TMPL_DECL RTDECL
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#define RTASN1TMPL_TYPE RTASN1SEQOFOCTETSTRINGS
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#define RTASN1TMPL_EXT_NAME RTAsn1SeqOfOctetStrings
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#define RTASN1TMPL_INT_NAME rtAsn1SeqOfOctetStrings
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsyncRTASN1TMPL_SEQ_OF(RTASN1OCTETSTRING, RTAsn1OctetString);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#undef RTASN1TMPL_TYPE
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#undef RTASN1TMPL_EXT_NAME
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#undef RTASN1TMPL_INT_NAME
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#define RTASN1TMPL_TYPE RTASN1SETOFOCTETSTRINGS
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#define RTASN1TMPL_EXT_NAME RTAsn1SetOfOctetStrings
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#define RTASN1TMPL_INT_NAME rtAsn1SetOfOctetStrings
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsyncRTASN1TMPL_SET_OF(RTASN1OCTETSTRING, RTAsn1OctetString);
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#undef RTASN1TMPL_TYPE
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#undef RTASN1TMPL_EXT_NAME
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#undef RTASN1TMPL_INT_NAME
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync