1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM c:/mozilla/security/manager/ssl/public/nsIASN1Object.idl
*/
#ifndef __gen_nsIASN1Object_h__
#define __gen_nsIASN1Object_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIASN1Object */
#define NS_IASN1OBJECT_IID_STR "ba8bf582-1dd1-11b2-898c-f40246bc9a63"
#define NS_IASN1OBJECT_IID \
{0xba8bf582, 0x1dd1, 0x11b2, \
{ 0x89, 0x8c, 0xf4, 0x02, 0x46, 0xbc, 0x9a, 0x63 }}
/**
* This represents an ASN.1 object,
* where ASN.1 is "Abstract Syntax Notation number One".
*
* The additional state information carried in this interface
* makes it fit for being used as the data structure
* when working with visual reprenstation of ASN.1 objects
* in a human user interface, like in a tree widget
* where open/close state of nodes must be remembered.
*
* @status FROZEN
*/
class NS_NO_VTABLE nsIASN1Object : public nsISupports {
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IASN1OBJECT_IID)
/**
* Identifiers for the possible types of object.
*/
enum { ASN1_END_CONTENTS = 0U };
enum { ASN1_BOOLEAN = 1U };
enum { ASN1_INTEGER = 2U };
enum { ASN1_BIT_STRING = 3U };
enum { ASN1_OCTET_STRING = 4U };
enum { ASN1_NULL = 5U };
enum { ASN1_OBJECT_ID = 6U };
enum { ASN1_ENUMERATED = 10U };
enum { ASN1_UTF8_STRING = 12U };
enum { ASN1_SEQUENCE = 16U };
enum { ASN1_SET = 17U };
enum { ASN1_PRINTABLE_STRING = 19U };
enum { ASN1_T61_STRING = 20U };
enum { ASN1_IA5_STRING = 22U };
enum { ASN1_UTC_TIME = 23U };
enum { ASN1_GEN_TIME = 24U };
enum { ASN1_VISIBLE_STRING = 26U };
enum { ASN1_UNIVERSAL_STRING = 28U };
enum { ASN1_BMP_STRING = 30U };
enum { ASN1_HIGH_TAG_NUMBER = 31U };
enum { ASN1_CONTEXT_SPECIFIC = 32U };
enum { ASN1_APPLICATION = 33U };
enum { ASN1_PRIVATE = 34U };
/**
* "type" will be equal to one of the defined object identifiers.
*/
/* attribute unsigned long type; */
NS_IMETHOD GetType(PRUint32 *aType) = 0;
NS_IMETHOD SetType(PRUint32 aType) = 0;
/**
* This contains a tag as explained in ASN.1 standards documents.
*/
/* attribute unsigned long tag; */
NS_IMETHOD GetTag(PRUint32 *aTag) = 0;
NS_IMETHOD SetTag(PRUint32 aTag) = 0;
/**
* "displayName" contains a human readable explanatory label.
*/
/* attribute AString displayName; */
NS_IMETHOD GetDisplayName(nsAString & aDisplayName) = 0;
NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) = 0;
/**
* "displayValue" contains the human readable value.
*/
/* attribute AString displayValue; */
NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) = 0;
NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue) = 0;
};
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIASN1OBJECT \
NS_IMETHOD GetType(PRUint32 *aType); \
NS_IMETHOD SetType(PRUint32 aType); \
NS_IMETHOD GetTag(PRUint32 *aTag); \
NS_IMETHOD SetTag(PRUint32 aTag); \
NS_IMETHOD GetDisplayName(nsAString & aDisplayName); \
NS_IMETHOD SetDisplayName(const nsAString & aDisplayName); \
NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue); \
NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIASN1OBJECT(_to) \
NS_IMETHOD GetType(PRUint32 *aType) { return _to GetType(aType); } \
NS_IMETHOD SetType(PRUint32 aType) { return _to SetType(aType); } \
NS_IMETHOD GetTag(PRUint32 *aTag) { return _to GetTag(aTag); } \
NS_IMETHOD SetTag(PRUint32 aTag) { return _to SetTag(aTag); } \
NS_IMETHOD GetDisplayName(nsAString & aDisplayName) { return _to GetDisplayName(aDisplayName); } \
NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) { return _to SetDisplayName(aDisplayName); } \
NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) { return _to GetDisplayValue(aDisplayValue); } \
NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue) { return _to SetDisplayValue(aDisplayValue); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIASN1OBJECT(_to) \
NS_IMETHOD GetType(PRUint32 *aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
NS_IMETHOD SetType(PRUint32 aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetType(aType); } \
NS_IMETHOD GetTag(PRUint32 *aTag) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTag(aTag); } \
NS_IMETHOD SetTag(PRUint32 aTag) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTag(aTag); } \
NS_IMETHOD GetDisplayName(nsAString & aDisplayName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisplayName(aDisplayName); } \
NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDisplayName(aDisplayName); } \
NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisplayValue(aDisplayValue); } \
NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDisplayValue(aDisplayValue); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsASN1Object : public nsIASN1Object
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIASN1OBJECT
nsASN1Object();
private:
~nsASN1Object();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsASN1Object, nsIASN1Object)
nsASN1Object::nsASN1Object()
{
/* member initializers and constructor code */
}
nsASN1Object::~nsASN1Object()
{
/* destructor code */
}
/* attribute unsigned long type; */
NS_IMETHODIMP nsASN1Object::GetType(PRUint32 *aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetType(PRUint32 aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long tag; */
NS_IMETHODIMP nsASN1Object::GetTag(PRUint32 *aTag)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetTag(PRUint32 aTag)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute AString displayName; */
NS_IMETHODIMP nsASN1Object::GetDisplayName(nsAString & aDisplayName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetDisplayName(const nsAString & aDisplayName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute AString displayValue; */
NS_IMETHODIMP nsASN1Object::GetDisplayValue(nsAString & aDisplayValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetDisplayValue(const nsAString & aDisplayValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIASN1Object_h__ */
|