Second step in introducing asn context to BER dissectors just like in PER.
[obnox/wireshark/wip.git] / asn1 / pkix1explicit / packet-pkix1explicit-template.c
1 #define BER_UNI_TAG_TeletexString           20  /* workaround bug in asn2wrs */
2
3 /* packet-pkix1explicit.c
4  * Routines for PKIX1Explitic packet dissection
5  *
6  * $Id$
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <glib.h>
32 #include <epan/packet.h>
33 #include <epan/conversation.h>
34 #include <epan/asn1.h>
35
36 #include <stdio.h>
37 #include <string.h>
38
39 #include "packet-ber.h"
40 #include "packet-pkix1explicit.h"
41 #include "packet-x509af.h"
42 #include "packet-x509if.h"
43 #include "packet-x509ce.h"
44
45 #define PNAME  "PKIX1Explitit"
46 #define PSNAME "PKIX1EXPLICIT"
47 #define PFNAME "pkix1explicit"
48
49 /* Initialize the protocol and registered fields */
50 static int proto_pkix1explicit = -1;
51 static int hf_pkix1explicit_object_identifier_id = -1;
52 #include "packet-pkix1explicit-hf.c"
53
54 /* Initialize the subtree pointers */
55 #include "packet-pkix1explicit-ett.c"
56
57
58 static const char *object_identifier_id;
59
60 int
61 dissect_pkix1explicit_Certificate(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
62   offset = dissect_x509af_Certificate(implicit_tag, tvb, offset, actx, tree, hf_index);
63
64   return offset;
65 }
66 int
67 dissect_pkix1explicit_CertificateList(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
68   offset = dissect_x509af_CertificateList(implicit_tag, tvb, offset, actx, tree, hf_index);
69
70   return offset;
71 }
72 int
73 dissect_pkix1explicit_GeneralName(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
74   offset = dissect_x509ce_GeneralName(implicit_tag, tvb, offset, actx, tree, hf_index);
75
76   return offset;
77 }
78 int
79 dissect_pkix1explicit_Name(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
80   offset = dissect_x509if_Name(implicit_tag, tvb, offset, actx, tree, hf_index);
81
82   return offset;
83 }
84 int
85 dissect_pkix1explicit_AlgorithmIdentifier(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
86   offset = dissect_x509af_AlgorithmIdentifier(implicit_tag, tvb, offset, actx, tree, hf_index);
87
88   return offset;
89 }
90
91 int
92 dissect_pkix1explicit_SubjectPublicKeyInfo(gboolean implicit_tag, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
93   offset = dissect_x509af_SubjectPublicKeyInfo(implicit_tag, tvb, offset, actx, tree, hf_index);
94
95   return offset;
96 }
97
98
99 #include "packet-pkix1explicit-fn.c"
100
101
102 /*--- proto_register_pkix1explicit ----------------------------------------------*/
103 void proto_register_pkix1explicit(void) {
104
105   /* List of fields */
106   static hf_register_info hf[] = {
107     { &hf_pkix1explicit_object_identifier_id, 
108       { "Id", "pkix1explicit.id", FT_STRING, BASE_NONE, NULL, 0,
109         "Object identifier Id", HFILL }},
110 #include "packet-pkix1explicit-hfarr.c"
111   };
112
113   /* List of subtrees */
114   static gint *ett[] = {
115 #include "packet-pkix1explicit-ettarr.c"
116   };
117
118   /* Register protocol */
119   proto_pkix1explicit = proto_register_protocol(PNAME, PSNAME, PFNAME);
120
121   /* Register fields and subtrees */
122   proto_register_field_array(proto_pkix1explicit, hf, array_length(hf));
123   proto_register_subtree_array(ett, array_length(ett));
124
125 }
126
127
128 /*--- proto_reg_handoff_pkix1explicit -------------------------------------------*/
129 void proto_reg_handoff_pkix1explicit(void) {
130 #include "packet-pkix1explicit-dis-tab.c"
131 }
132