1e1051a39Sopenharmony_ci/*
2e1051a39Sopenharmony_ci * Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
3e1051a39Sopenharmony_ci *
4e1051a39Sopenharmony_ci * Licensed under the Apache License 2.0 (the "License").  You may not use
5e1051a39Sopenharmony_ci * this file except in compliance with the License.  You can obtain a copy
6e1051a39Sopenharmony_ci * in the file LICENSE in the source distribution or at
7e1051a39Sopenharmony_ci * https://www.openssl.org/source/license.html
8e1051a39Sopenharmony_ci */
9e1051a39Sopenharmony_ci
10e1051a39Sopenharmony_ci#include <stdio.h>
11e1051a39Sopenharmony_ci#include <stdlib.h>
12e1051a39Sopenharmony_ci#include <openssl/asn1t.h>
13e1051a39Sopenharmony_ci#include <openssl/x509.h>
14e1051a39Sopenharmony_ci#include <openssl/objects.h>
15e1051a39Sopenharmony_ci
16e1051a39Sopenharmony_cistatic int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
17e1051a39Sopenharmony_ci                    void *exarg)
18e1051a39Sopenharmony_ci{
19e1051a39Sopenharmony_ci    if (operation == ASN1_OP_NEW_POST) {
20e1051a39Sopenharmony_ci        NETSCAPE_CERT_SEQUENCE *nsseq;
21e1051a39Sopenharmony_ci        nsseq = (NETSCAPE_CERT_SEQUENCE *)*pval;
22e1051a39Sopenharmony_ci        nsseq->type = OBJ_nid2obj(NID_netscape_cert_sequence);
23e1051a39Sopenharmony_ci    }
24e1051a39Sopenharmony_ci    return 1;
25e1051a39Sopenharmony_ci}
26e1051a39Sopenharmony_ci
27e1051a39Sopenharmony_ci/* Netscape certificate sequence structure */
28e1051a39Sopenharmony_ci
29e1051a39Sopenharmony_ciASN1_SEQUENCE_cb(NETSCAPE_CERT_SEQUENCE, nsseq_cb) = {
30e1051a39Sopenharmony_ci        ASN1_SIMPLE(NETSCAPE_CERT_SEQUENCE, type, ASN1_OBJECT),
31e1051a39Sopenharmony_ci        ASN1_EXP_SEQUENCE_OF_OPT(NETSCAPE_CERT_SEQUENCE, certs, X509, 0)
32e1051a39Sopenharmony_ci} ASN1_SEQUENCE_END_cb(NETSCAPE_CERT_SEQUENCE, NETSCAPE_CERT_SEQUENCE)
33e1051a39Sopenharmony_ci
34e1051a39Sopenharmony_ciIMPLEMENT_ASN1_FUNCTIONS(NETSCAPE_CERT_SEQUENCE)
35