1325326Sjkim/* asn1t.h */
2325326Sjkim/*
3325326Sjkim * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
4325326Sjkim * 2006.
5325326Sjkim */
6325326Sjkim/* ====================================================================
7325326Sjkim * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
8325326Sjkim *
9325326Sjkim * Redistribution and use in source and binary forms, with or without
10325326Sjkim * modification, are permitted provided that the following conditions
11325326Sjkim * are met:
12325326Sjkim *
13325326Sjkim * 1. Redistributions of source code must retain the above copyright
14325326Sjkim *    notice, this list of conditions and the following disclaimer.
15325326Sjkim *
16325326Sjkim * 2. Redistributions in binary form must reproduce the above copyright
17325326Sjkim *    notice, this list of conditions and the following disclaimer in
18325326Sjkim *    the documentation and/or other materials provided with the
19325326Sjkim *    distribution.
20325326Sjkim *
21325326Sjkim * 3. All advertising materials mentioning features or use of this
22325326Sjkim *    software must display the following acknowledgment:
23325326Sjkim *    "This product includes software developed by the OpenSSL Project
24325326Sjkim *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25325326Sjkim *
26325326Sjkim * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27325326Sjkim *    endorse or promote products derived from this software without
28325326Sjkim *    prior written permission. For written permission, please contact
29325326Sjkim *    licensing@OpenSSL.org.
30325326Sjkim *
31325326Sjkim * 5. Products derived from this software may not be called "OpenSSL"
32325326Sjkim *    nor may "OpenSSL" appear in their names without prior written
33325326Sjkim *    permission of the OpenSSL Project.
34325326Sjkim *
35325326Sjkim * 6. Redistributions of any form whatsoever must retain the following
36325326Sjkim *    acknowledgment:
37325326Sjkim *    "This product includes software developed by the OpenSSL Project
38325326Sjkim *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39325326Sjkim *
40325326Sjkim * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41325326Sjkim * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42325326Sjkim * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43325326Sjkim * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
44325326Sjkim * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45325326Sjkim * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46325326Sjkim * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47325326Sjkim * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48325326Sjkim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49325326Sjkim * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50325326Sjkim * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51325326Sjkim * OF THE POSSIBILITY OF SUCH DAMAGE.
52325326Sjkim * ====================================================================
53325326Sjkim *
54325326Sjkim * This product includes cryptographic software written by Eric Young
55325326Sjkim * (eay@cryptsoft.com).  This product includes software written by Tim
56325326Sjkim * Hudson (tjh@cryptsoft.com).
57325326Sjkim *
58325326Sjkim */
59325326Sjkim
60325326Sjkim/* Internal ASN1 template structures and functions: not for application use */
61325326Sjkim
62325326Sjkimvoid asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it,
63325326Sjkim                            int combine);
64