diff options
Diffstat (limited to 'src/lib/libcrypto/objects')
-rw-r--r-- | src/lib/libcrypto/objects/Makefile.ssl | 123 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/o_names.c | 369 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/obj_dat.c | 668 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/obj_dat.h | 4360 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/obj_dat.pl | 307 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/obj_err.c | 105 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/obj_lib.c | 127 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/obj_mac.h | 3482 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/obj_mac.num | 675 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/objects.README | 44 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/objects.h | 1044 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/objects.pl | 230 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/objects.txt | 952 |
13 files changed, 4644 insertions, 7842 deletions
diff --git a/src/lib/libcrypto/objects/Makefile.ssl b/src/lib/libcrypto/objects/Makefile.ssl new file mode 100644 index 0000000000..3e7a194cf9 --- /dev/null +++ b/src/lib/libcrypto/objects/Makefile.ssl | |||
@@ -0,0 +1,123 @@ | |||
1 | # | ||
2 | # SSLeay/crypto/objects/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= objects | ||
6 | TOP= ../.. | ||
7 | CC= cc | ||
8 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
9 | CFLAG=-g | ||
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKE= make -f Makefile.ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile.ssl | ||
17 | AR= ar r | ||
18 | PERL= perl | ||
19 | |||
20 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
21 | |||
22 | GENERAL=Makefile README | ||
23 | TEST= | ||
24 | APPS= | ||
25 | |||
26 | LIB=$(TOP)/libcrypto.a | ||
27 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c | ||
28 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o | ||
29 | |||
30 | SRC= $(LIBSRC) | ||
31 | |||
32 | EXHEADER= objects.h obj_mac.h | ||
33 | HEADER= $(EXHEADER) obj_dat.h | ||
34 | |||
35 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
36 | |||
37 | top: | ||
38 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
39 | |||
40 | all: obj_dat.h lib | ||
41 | |||
42 | lib: $(LIBOBJ) | ||
43 | $(AR) $(LIB) $(LIBOBJ) | ||
44 | $(RANLIB) $(LIB) || echo Never mind. | ||
45 | @touch lib | ||
46 | |||
47 | obj_dat.h: obj_dat.pl obj_mac.h | ||
48 | $(PERL) obj_dat.pl obj_mac.h obj_dat.h | ||
49 | |||
50 | # objects.pl both reads and writes obj_mac.num | ||
51 | obj_mac.h: objects.pl objects.txt obj_mac.num | ||
52 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h | ||
53 | |||
54 | files: | ||
55 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
56 | |||
57 | links: | ||
58 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | ||
59 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
60 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
62 | |||
63 | install: | ||
64 | @for i in $(EXHEADER) ; \ | ||
65 | do \ | ||
66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
67 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
68 | done; | ||
69 | |||
70 | tags: | ||
71 | ctags $(SRC) | ||
72 | |||
73 | tests: | ||
74 | |||
75 | lint: | ||
76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
77 | |||
78 | depend: | ||
79 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
80 | |||
81 | dclean: | ||
82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
83 | mv -f Makefile.new $(MAKEFILE) | ||
84 | |||
85 | clean: | ||
86 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
87 | |||
88 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
89 | |||
90 | o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
91 | o_names.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
92 | o_names.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h | ||
93 | o_names.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
94 | o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
95 | o_names.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
96 | o_names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
97 | o_names.o: o_names.c | ||
98 | obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h | ||
99 | obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
100 | obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
101 | obj_dat.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
102 | obj_dat.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
103 | obj_dat.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
104 | obj_dat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
105 | obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
106 | obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h | ||
107 | obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
108 | obj_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
109 | obj_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
110 | obj_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
111 | obj_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
112 | obj_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
113 | obj_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
114 | obj_err.o: ../../include/openssl/symhacks.h obj_err.c | ||
115 | obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
116 | obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
117 | obj_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
118 | obj_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
119 | obj_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
120 | obj_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
121 | obj_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
122 | obj_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
123 | obj_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_lib.c | ||
diff --git a/src/lib/libcrypto/objects/o_names.c b/src/lib/libcrypto/objects/o_names.c new file mode 100644 index 0000000000..28c9370ca3 --- /dev/null +++ b/src/lib/libcrypto/objects/o_names.c | |||
@@ -0,0 +1,369 @@ | |||
1 | #include <stdio.h> | ||
2 | #include <stdlib.h> | ||
3 | #include <string.h> | ||
4 | |||
5 | #include <openssl/err.h> | ||
6 | #include <openssl/lhash.h> | ||
7 | #include <openssl/objects.h> | ||
8 | #include <openssl/safestack.h> | ||
9 | #include <openssl/e_os2.h> | ||
10 | |||
11 | /* Later versions of DEC C has started to add lnkage information to certain | ||
12 | * functions, which makes it tricky to use them as values to regular function | ||
13 | * pointers. One way is to define a macro that takes care of casting them | ||
14 | * correctly. | ||
15 | */ | ||
16 | #ifdef OPENSSL_SYS_VMS_DECC | ||
17 | # define OPENSSL_strcmp (int (*)(const char *,const char *))strcmp | ||
18 | #else | ||
19 | # define OPENSSL_strcmp strcmp | ||
20 | #endif | ||
21 | |||
22 | /* I use the ex_data stuff to manage the identifiers for the obj_name_types | ||
23 | * that applications may define. I only really use the free function field. | ||
24 | */ | ||
25 | static LHASH *names_lh=NULL; | ||
26 | static int names_type_num=OBJ_NAME_TYPE_NUM; | ||
27 | |||
28 | typedef struct name_funcs_st | ||
29 | { | ||
30 | unsigned long (*hash_func)(const char *name); | ||
31 | int (*cmp_func)(const char *a,const char *b); | ||
32 | void (*free_func)(const char *, int, const char *); | ||
33 | } NAME_FUNCS; | ||
34 | |||
35 | DECLARE_STACK_OF(NAME_FUNCS) | ||
36 | IMPLEMENT_STACK_OF(NAME_FUNCS) | ||
37 | |||
38 | static STACK_OF(NAME_FUNCS) *name_funcs_stack; | ||
39 | |||
40 | /* The LHASH callbacks now use the raw "void *" prototypes and do per-variable | ||
41 | * casting in the functions. This prevents function pointer casting without the | ||
42 | * need for macro-generated wrapper functions. */ | ||
43 | |||
44 | /* static unsigned long obj_name_hash(OBJ_NAME *a); */ | ||
45 | static unsigned long obj_name_hash(const void *a_void); | ||
46 | /* static int obj_name_cmp(OBJ_NAME *a,OBJ_NAME *b); */ | ||
47 | static int obj_name_cmp(const void *a_void,const void *b_void); | ||
48 | |||
49 | int OBJ_NAME_init(void) | ||
50 | { | ||
51 | if (names_lh != NULL) return(1); | ||
52 | MemCheck_off(); | ||
53 | names_lh=lh_new(obj_name_hash, obj_name_cmp); | ||
54 | MemCheck_on(); | ||
55 | return(names_lh != NULL); | ||
56 | } | ||
57 | |||
58 | int OBJ_NAME_new_index(unsigned long (*hash_func)(const char *), | ||
59 | int (*cmp_func)(const char *, const char *), | ||
60 | void (*free_func)(const char *, int, const char *)) | ||
61 | { | ||
62 | int ret; | ||
63 | int i; | ||
64 | NAME_FUNCS *name_funcs; | ||
65 | |||
66 | if (name_funcs_stack == NULL) | ||
67 | { | ||
68 | MemCheck_off(); | ||
69 | name_funcs_stack=sk_NAME_FUNCS_new_null(); | ||
70 | MemCheck_on(); | ||
71 | } | ||
72 | if ((name_funcs_stack == NULL)) | ||
73 | { | ||
74 | /* ERROR */ | ||
75 | return(0); | ||
76 | } | ||
77 | ret=names_type_num; | ||
78 | names_type_num++; | ||
79 | for (i=sk_NAME_FUNCS_num(name_funcs_stack); i<names_type_num; i++) | ||
80 | { | ||
81 | MemCheck_off(); | ||
82 | name_funcs = OPENSSL_malloc(sizeof(NAME_FUNCS)); | ||
83 | MemCheck_on(); | ||
84 | if (!name_funcs) | ||
85 | { | ||
86 | OBJerr(OBJ_F_OBJ_NAME_NEW_INDEX,ERR_R_MALLOC_FAILURE); | ||
87 | return(0); | ||
88 | } | ||
89 | name_funcs->hash_func = lh_strhash; | ||
90 | name_funcs->cmp_func = OPENSSL_strcmp; | ||
91 | name_funcs->free_func = 0; /* NULL is often declared to | ||
92 | * ((void *)0), which according | ||
93 | * to Compaq C is not really | ||
94 | * compatible with a function | ||
95 | * pointer. -- Richard Levitte*/ | ||
96 | MemCheck_off(); | ||
97 | sk_NAME_FUNCS_push(name_funcs_stack,name_funcs); | ||
98 | MemCheck_on(); | ||
99 | } | ||
100 | name_funcs = sk_NAME_FUNCS_value(name_funcs_stack, ret); | ||
101 | if (hash_func != NULL) | ||
102 | name_funcs->hash_func = hash_func; | ||
103 | if (cmp_func != NULL) | ||
104 | name_funcs->cmp_func = cmp_func; | ||
105 | if (free_func != NULL) | ||
106 | name_funcs->free_func = free_func; | ||
107 | return(ret); | ||
108 | } | ||
109 | |||
110 | /* static int obj_name_cmp(OBJ_NAME *a, OBJ_NAME *b) */ | ||
111 | static int obj_name_cmp(const void *a_void, const void *b_void) | ||
112 | { | ||
113 | int ret; | ||
114 | OBJ_NAME *a = (OBJ_NAME *)a_void; | ||
115 | OBJ_NAME *b = (OBJ_NAME *)b_void; | ||
116 | |||
117 | ret=a->type-b->type; | ||
118 | if (ret == 0) | ||
119 | { | ||
120 | if ((name_funcs_stack != NULL) | ||
121 | && (sk_NAME_FUNCS_num(name_funcs_stack) > a->type)) | ||
122 | { | ||
123 | ret=sk_NAME_FUNCS_value(name_funcs_stack, | ||
124 | a->type)->cmp_func(a->name,b->name); | ||
125 | } | ||
126 | else | ||
127 | ret=strcmp(a->name,b->name); | ||
128 | } | ||
129 | return(ret); | ||
130 | } | ||
131 | |||
132 | /* static unsigned long obj_name_hash(OBJ_NAME *a) */ | ||
133 | static unsigned long obj_name_hash(const void *a_void) | ||
134 | { | ||
135 | unsigned long ret; | ||
136 | OBJ_NAME *a = (OBJ_NAME *)a_void; | ||
137 | |||
138 | if ((name_funcs_stack != NULL) && (sk_NAME_FUNCS_num(name_funcs_stack) > a->type)) | ||
139 | { | ||
140 | ret=sk_NAME_FUNCS_value(name_funcs_stack, | ||
141 | a->type)->hash_func(a->name); | ||
142 | } | ||
143 | else | ||
144 | { | ||
145 | ret=lh_strhash(a->name); | ||
146 | } | ||
147 | ret^=a->type; | ||
148 | return(ret); | ||
149 | } | ||
150 | |||
151 | const char *OBJ_NAME_get(const char *name, int type) | ||
152 | { | ||
153 | OBJ_NAME on,*ret; | ||
154 | int num=0,alias; | ||
155 | |||
156 | if (name == NULL) return(NULL); | ||
157 | if ((names_lh == NULL) && !OBJ_NAME_init()) return(NULL); | ||
158 | |||
159 | alias=type&OBJ_NAME_ALIAS; | ||
160 | type&= ~OBJ_NAME_ALIAS; | ||
161 | |||
162 | on.name=name; | ||
163 | on.type=type; | ||
164 | |||
165 | for (;;) | ||
166 | { | ||
167 | ret=(OBJ_NAME *)lh_retrieve(names_lh,&on); | ||
168 | if (ret == NULL) return(NULL); | ||
169 | if ((ret->alias) && !alias) | ||
170 | { | ||
171 | if (++num > 10) return(NULL); | ||
172 | on.name=ret->data; | ||
173 | } | ||
174 | else | ||
175 | { | ||
176 | return(ret->data); | ||
177 | } | ||
178 | } | ||
179 | } | ||
180 | |||
181 | int OBJ_NAME_add(const char *name, int type, const char *data) | ||
182 | { | ||
183 | OBJ_NAME *onp,*ret; | ||
184 | int alias; | ||
185 | |||
186 | if ((names_lh == NULL) && !OBJ_NAME_init()) return(0); | ||
187 | |||
188 | alias=type&OBJ_NAME_ALIAS; | ||
189 | type&= ~OBJ_NAME_ALIAS; | ||
190 | |||
191 | onp=(OBJ_NAME *)OPENSSL_malloc(sizeof(OBJ_NAME)); | ||
192 | if (onp == NULL) | ||
193 | { | ||
194 | /* ERROR */ | ||
195 | return(0); | ||
196 | } | ||
197 | |||
198 | onp->name=name; | ||
199 | onp->alias=alias; | ||
200 | onp->type=type; | ||
201 | onp->data=data; | ||
202 | |||
203 | ret=(OBJ_NAME *)lh_insert(names_lh,onp); | ||
204 | if (ret != NULL) | ||
205 | { | ||
206 | /* free things */ | ||
207 | if ((name_funcs_stack != NULL) && (sk_NAME_FUNCS_num(name_funcs_stack) > ret->type)) | ||
208 | { | ||
209 | /* XXX: I'm not sure I understand why the free | ||
210 | * function should get three arguments... | ||
211 | * -- Richard Levitte | ||
212 | */ | ||
213 | sk_NAME_FUNCS_value(name_funcs_stack, | ||
214 | ret->type)->free_func(ret->name,ret->type,ret->data); | ||
215 | } | ||
216 | OPENSSL_free(ret); | ||
217 | } | ||
218 | else | ||
219 | { | ||
220 | if (lh_error(names_lh)) | ||
221 | { | ||
222 | /* ERROR */ | ||
223 | return(0); | ||
224 | } | ||
225 | } | ||
226 | return(1); | ||
227 | } | ||
228 | |||
229 | int OBJ_NAME_remove(const char *name, int type) | ||
230 | { | ||
231 | OBJ_NAME on,*ret; | ||
232 | |||
233 | if (names_lh == NULL) return(0); | ||
234 | |||
235 | type&= ~OBJ_NAME_ALIAS; | ||
236 | on.name=name; | ||
237 | on.type=type; | ||
238 | ret=(OBJ_NAME *)lh_delete(names_lh,&on); | ||
239 | if (ret != NULL) | ||
240 | { | ||
241 | /* free things */ | ||
242 | if ((name_funcs_stack != NULL) && (sk_NAME_FUNCS_num(name_funcs_stack) > ret->type)) | ||
243 | { | ||
244 | /* XXX: I'm not sure I understand why the free | ||
245 | * function should get three arguments... | ||
246 | * -- Richard Levitte | ||
247 | */ | ||
248 | sk_NAME_FUNCS_value(name_funcs_stack, | ||
249 | ret->type)->free_func(ret->name,ret->type,ret->data); | ||
250 | } | ||
251 | OPENSSL_free(ret); | ||
252 | return(1); | ||
253 | } | ||
254 | else | ||
255 | return(0); | ||
256 | } | ||
257 | |||
258 | struct doall | ||
259 | { | ||
260 | int type; | ||
261 | void (*fn)(const OBJ_NAME *,void *arg); | ||
262 | void *arg; | ||
263 | }; | ||
264 | |||
265 | static void do_all_fn(const OBJ_NAME *name,struct doall *d) | ||
266 | { | ||
267 | if(name->type == d->type) | ||
268 | d->fn(name,d->arg); | ||
269 | } | ||
270 | |||
271 | static IMPLEMENT_LHASH_DOALL_ARG_FN(do_all_fn, const OBJ_NAME *, struct doall *) | ||
272 | |||
273 | void OBJ_NAME_do_all(int type,void (*fn)(const OBJ_NAME *,void *arg),void *arg) | ||
274 | { | ||
275 | struct doall d; | ||
276 | |||
277 | d.type=type; | ||
278 | d.fn=fn; | ||
279 | d.arg=arg; | ||
280 | |||
281 | lh_doall_arg(names_lh,LHASH_DOALL_ARG_FN(do_all_fn),&d); | ||
282 | } | ||
283 | |||
284 | struct doall_sorted | ||
285 | { | ||
286 | int type; | ||
287 | int n; | ||
288 | const OBJ_NAME **names; | ||
289 | }; | ||
290 | |||
291 | static void do_all_sorted_fn(const OBJ_NAME *name,void *d_) | ||
292 | { | ||
293 | struct doall_sorted *d=d_; | ||
294 | |||
295 | if(name->type != d->type) | ||
296 | return; | ||
297 | |||
298 | d->names[d->n++]=name; | ||
299 | } | ||
300 | |||
301 | static int do_all_sorted_cmp(const void *n1_,const void *n2_) | ||
302 | { | ||
303 | const OBJ_NAME * const *n1=n1_; | ||
304 | const OBJ_NAME * const *n2=n2_; | ||
305 | |||
306 | return strcmp((*n1)->name,(*n2)->name); | ||
307 | } | ||
308 | |||
309 | void OBJ_NAME_do_all_sorted(int type,void (*fn)(const OBJ_NAME *,void *arg), | ||
310 | void *arg) | ||
311 | { | ||
312 | struct doall_sorted d; | ||
313 | int n; | ||
314 | |||
315 | d.type=type; | ||
316 | d.names=OPENSSL_malloc(lh_num_items(names_lh)*sizeof *d.names); | ||
317 | d.n=0; | ||
318 | OBJ_NAME_do_all(type,do_all_sorted_fn,&d); | ||
319 | |||
320 | qsort((void *)d.names,d.n,sizeof *d.names,do_all_sorted_cmp); | ||
321 | |||
322 | for(n=0 ; n < d.n ; ++n) | ||
323 | fn(d.names[n],arg); | ||
324 | |||
325 | OPENSSL_free((void *)d.names); | ||
326 | } | ||
327 | |||
328 | static int free_type; | ||
329 | |||
330 | static void names_lh_free(OBJ_NAME *onp) | ||
331 | { | ||
332 | if(onp == NULL) | ||
333 | return; | ||
334 | |||
335 | if ((free_type < 0) || (free_type == onp->type)) | ||
336 | { | ||
337 | OBJ_NAME_remove(onp->name,onp->type); | ||
338 | } | ||
339 | } | ||
340 | |||
341 | static IMPLEMENT_LHASH_DOALL_FN(names_lh_free, OBJ_NAME *) | ||
342 | |||
343 | static void name_funcs_free(NAME_FUNCS *ptr) | ||
344 | { | ||
345 | OPENSSL_free(ptr); | ||
346 | } | ||
347 | |||
348 | void OBJ_NAME_cleanup(int type) | ||
349 | { | ||
350 | unsigned long down_load; | ||
351 | |||
352 | if (names_lh == NULL) return; | ||
353 | |||
354 | free_type=type; | ||
355 | down_load=names_lh->down_load; | ||
356 | names_lh->down_load=0; | ||
357 | |||
358 | lh_doall(names_lh,LHASH_DOALL_FN(names_lh_free)); | ||
359 | if (type < 0) | ||
360 | { | ||
361 | lh_free(names_lh); | ||
362 | sk_NAME_FUNCS_pop_free(name_funcs_stack,name_funcs_free); | ||
363 | names_lh=NULL; | ||
364 | name_funcs_stack = NULL; | ||
365 | } | ||
366 | else | ||
367 | names_lh->down_load=down_load; | ||
368 | } | ||
369 | |||
diff --git a/src/lib/libcrypto/objects/obj_dat.c b/src/lib/libcrypto/objects/obj_dat.c new file mode 100644 index 0000000000..f549d078ef --- /dev/null +++ b/src/lib/libcrypto/objects/obj_dat.c | |||
@@ -0,0 +1,668 @@ | |||
1 | /* crypto/objects/obj_dat.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <ctype.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/lhash.h> | ||
63 | #include <openssl/asn1.h> | ||
64 | #include <openssl/objects.h> | ||
65 | |||
66 | /* obj_dat.h is generated from objects.h by obj_dat.pl */ | ||
67 | #ifndef OPENSSL_NO_OBJECT | ||
68 | #include "obj_dat.h" | ||
69 | #else | ||
70 | /* You will have to load all the objects needed manually in the application */ | ||
71 | #define NUM_NID 0 | ||
72 | #define NUM_SN 0 | ||
73 | #define NUM_LN 0 | ||
74 | #define NUM_OBJ 0 | ||
75 | static unsigned char lvalues[1]; | ||
76 | static ASN1_OBJECT nid_objs[1]; | ||
77 | static ASN1_OBJECT *sn_objs[1]; | ||
78 | static ASN1_OBJECT *ln_objs[1]; | ||
79 | static ASN1_OBJECT *obj_objs[1]; | ||
80 | #endif | ||
81 | |||
82 | static int sn_cmp(const void *a, const void *b); | ||
83 | static int ln_cmp(const void *a, const void *b); | ||
84 | static int obj_cmp(const void *a, const void *b); | ||
85 | #define ADDED_DATA 0 | ||
86 | #define ADDED_SNAME 1 | ||
87 | #define ADDED_LNAME 2 | ||
88 | #define ADDED_NID 3 | ||
89 | |||
90 | typedef struct added_obj_st | ||
91 | { | ||
92 | int type; | ||
93 | ASN1_OBJECT *obj; | ||
94 | } ADDED_OBJ; | ||
95 | |||
96 | static int new_nid=NUM_NID; | ||
97 | static LHASH *added=NULL; | ||
98 | |||
99 | static int sn_cmp(const void *a, const void *b) | ||
100 | { | ||
101 | const ASN1_OBJECT * const *ap = a, * const *bp = b; | ||
102 | return(strcmp((*ap)->sn,(*bp)->sn)); | ||
103 | } | ||
104 | |||
105 | static int ln_cmp(const void *a, const void *b) | ||
106 | { | ||
107 | const ASN1_OBJECT * const *ap = a, * const *bp = b; | ||
108 | return(strcmp((*ap)->ln,(*bp)->ln)); | ||
109 | } | ||
110 | |||
111 | /* static unsigned long add_hash(ADDED_OBJ *ca) */ | ||
112 | static unsigned long add_hash(const void *ca_void) | ||
113 | { | ||
114 | const ASN1_OBJECT *a; | ||
115 | int i; | ||
116 | unsigned long ret=0; | ||
117 | unsigned char *p; | ||
118 | ADDED_OBJ *ca = (ADDED_OBJ *)ca_void; | ||
119 | |||
120 | a=ca->obj; | ||
121 | switch (ca->type) | ||
122 | { | ||
123 | case ADDED_DATA: | ||
124 | ret=a->length<<20L; | ||
125 | p=(unsigned char *)a->data; | ||
126 | for (i=0; i<a->length; i++) | ||
127 | ret^=p[i]<<((i*3)%24); | ||
128 | break; | ||
129 | case ADDED_SNAME: | ||
130 | ret=lh_strhash(a->sn); | ||
131 | break; | ||
132 | case ADDED_LNAME: | ||
133 | ret=lh_strhash(a->ln); | ||
134 | break; | ||
135 | case ADDED_NID: | ||
136 | ret=a->nid; | ||
137 | break; | ||
138 | default: | ||
139 | /* abort(); */ | ||
140 | return 0; | ||
141 | } | ||
142 | ret&=0x3fffffffL; | ||
143 | ret|=ca->type<<30L; | ||
144 | return(ret); | ||
145 | } | ||
146 | |||
147 | /* static int add_cmp(ADDED_OBJ *ca, ADDED_OBJ *cb) */ | ||
148 | static int add_cmp(const void *ca_void, const void *cb_void) | ||
149 | { | ||
150 | ASN1_OBJECT *a,*b; | ||
151 | int i; | ||
152 | ADDED_OBJ *ca = (ADDED_OBJ *)ca_void; | ||
153 | ADDED_OBJ *cb = (ADDED_OBJ *)cb_void; | ||
154 | |||
155 | i=ca->type-cb->type; | ||
156 | if (i) return(i); | ||
157 | a=ca->obj; | ||
158 | b=cb->obj; | ||
159 | switch (ca->type) | ||
160 | { | ||
161 | case ADDED_DATA: | ||
162 | i=(a->length - b->length); | ||
163 | if (i) return(i); | ||
164 | return(memcmp(a->data,b->data,a->length)); | ||
165 | case ADDED_SNAME: | ||
166 | if (a->sn == NULL) return(-1); | ||
167 | else if (b->sn == NULL) return(1); | ||
168 | else return(strcmp(a->sn,b->sn)); | ||
169 | case ADDED_LNAME: | ||
170 | if (a->ln == NULL) return(-1); | ||
171 | else if (b->ln == NULL) return(1); | ||
172 | else return(strcmp(a->ln,b->ln)); | ||
173 | case ADDED_NID: | ||
174 | return(a->nid-b->nid); | ||
175 | default: | ||
176 | /* abort(); */ | ||
177 | return 0; | ||
178 | } | ||
179 | } | ||
180 | |||
181 | static int init_added(void) | ||
182 | { | ||
183 | if (added != NULL) return(1); | ||
184 | added=lh_new(add_hash,add_cmp); | ||
185 | return(added != NULL); | ||
186 | } | ||
187 | |||
188 | static void cleanup1(ADDED_OBJ *a) | ||
189 | { | ||
190 | a->obj->nid=0; | ||
191 | a->obj->flags|=ASN1_OBJECT_FLAG_DYNAMIC| | ||
192 | ASN1_OBJECT_FLAG_DYNAMIC_STRINGS| | ||
193 | ASN1_OBJECT_FLAG_DYNAMIC_DATA; | ||
194 | } | ||
195 | |||
196 | static void cleanup2(ADDED_OBJ *a) | ||
197 | { a->obj->nid++; } | ||
198 | |||
199 | static void cleanup3(ADDED_OBJ *a) | ||
200 | { | ||
201 | if (--a->obj->nid == 0) | ||
202 | ASN1_OBJECT_free(a->obj); | ||
203 | OPENSSL_free(a); | ||
204 | } | ||
205 | |||
206 | static IMPLEMENT_LHASH_DOALL_FN(cleanup1, ADDED_OBJ *) | ||
207 | static IMPLEMENT_LHASH_DOALL_FN(cleanup2, ADDED_OBJ *) | ||
208 | static IMPLEMENT_LHASH_DOALL_FN(cleanup3, ADDED_OBJ *) | ||
209 | |||
210 | void OBJ_cleanup(void) | ||
211 | { | ||
212 | if (added == NULL) return; | ||
213 | added->down_load=0; | ||
214 | lh_doall(added,LHASH_DOALL_FN(cleanup1)); /* zero counters */ | ||
215 | lh_doall(added,LHASH_DOALL_FN(cleanup2)); /* set counters */ | ||
216 | lh_doall(added,LHASH_DOALL_FN(cleanup3)); /* free objects */ | ||
217 | lh_free(added); | ||
218 | added=NULL; | ||
219 | } | ||
220 | |||
221 | int OBJ_new_nid(int num) | ||
222 | { | ||
223 | int i; | ||
224 | |||
225 | i=new_nid; | ||
226 | new_nid+=num; | ||
227 | return(i); | ||
228 | } | ||
229 | |||
230 | int OBJ_add_object(const ASN1_OBJECT *obj) | ||
231 | { | ||
232 | ASN1_OBJECT *o; | ||
233 | ADDED_OBJ *ao[4]={NULL,NULL,NULL,NULL},*aop; | ||
234 | int i; | ||
235 | |||
236 | if (added == NULL) | ||
237 | if (!init_added()) return(0); | ||
238 | if ((o=OBJ_dup(obj)) == NULL) goto err; | ||
239 | if (!(ao[ADDED_NID]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2; | ||
240 | if ((o->length != 0) && (obj->data != NULL)) | ||
241 | if (!(ao[ADDED_DATA]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2; | ||
242 | if (o->sn != NULL) | ||
243 | if (!(ao[ADDED_SNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2; | ||
244 | if (o->ln != NULL) | ||
245 | if (!(ao[ADDED_LNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2; | ||
246 | |||
247 | for (i=ADDED_DATA; i<=ADDED_NID; i++) | ||
248 | { | ||
249 | if (ao[i] != NULL) | ||
250 | { | ||
251 | ao[i]->type=i; | ||
252 | ao[i]->obj=o; | ||
253 | aop=(ADDED_OBJ *)lh_insert(added,ao[i]); | ||
254 | /* memory leak, buit should not normally matter */ | ||
255 | if (aop != NULL) | ||
256 | OPENSSL_free(aop); | ||
257 | } | ||
258 | } | ||
259 | o->flags&= ~(ASN1_OBJECT_FLAG_DYNAMIC|ASN1_OBJECT_FLAG_DYNAMIC_STRINGS| | ||
260 | ASN1_OBJECT_FLAG_DYNAMIC_DATA); | ||
261 | |||
262 | return(o->nid); | ||
263 | err2: | ||
264 | OBJerr(OBJ_F_OBJ_ADD_OBJECT,ERR_R_MALLOC_FAILURE); | ||
265 | err: | ||
266 | for (i=ADDED_DATA; i<=ADDED_NID; i++) | ||
267 | if (ao[i] != NULL) OPENSSL_free(ao[i]); | ||
268 | if (o != NULL) OPENSSL_free(o); | ||
269 | return(NID_undef); | ||
270 | } | ||
271 | |||
272 | ASN1_OBJECT *OBJ_nid2obj(int n) | ||
273 | { | ||
274 | ADDED_OBJ ad,*adp; | ||
275 | ASN1_OBJECT ob; | ||
276 | |||
277 | if ((n >= 0) && (n < NUM_NID)) | ||
278 | { | ||
279 | if ((n != NID_undef) && (nid_objs[n].nid == NID_undef)) | ||
280 | { | ||
281 | OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID); | ||
282 | return(NULL); | ||
283 | } | ||
284 | return((ASN1_OBJECT *)&(nid_objs[n])); | ||
285 | } | ||
286 | else if (added == NULL) | ||
287 | return(NULL); | ||
288 | else | ||
289 | { | ||
290 | ad.type=ADDED_NID; | ||
291 | ad.obj= &ob; | ||
292 | ob.nid=n; | ||
293 | adp=(ADDED_OBJ *)lh_retrieve(added,&ad); | ||
294 | if (adp != NULL) | ||
295 | return(adp->obj); | ||
296 | else | ||
297 | { | ||
298 | OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID); | ||
299 | return(NULL); | ||
300 | } | ||
301 | } | ||
302 | } | ||
303 | |||
304 | const char *OBJ_nid2sn(int n) | ||
305 | { | ||
306 | ADDED_OBJ ad,*adp; | ||
307 | ASN1_OBJECT ob; | ||
308 | |||
309 | if ((n >= 0) && (n < NUM_NID)) | ||
310 | { | ||
311 | if ((n != NID_undef) && (nid_objs[n].nid == NID_undef)) | ||
312 | { | ||
313 | OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID); | ||
314 | return(NULL); | ||
315 | } | ||
316 | return(nid_objs[n].sn); | ||
317 | } | ||
318 | else if (added == NULL) | ||
319 | return(NULL); | ||
320 | else | ||
321 | { | ||
322 | ad.type=ADDED_NID; | ||
323 | ad.obj= &ob; | ||
324 | ob.nid=n; | ||
325 | adp=(ADDED_OBJ *)lh_retrieve(added,&ad); | ||
326 | if (adp != NULL) | ||
327 | return(adp->obj->sn); | ||
328 | else | ||
329 | { | ||
330 | OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID); | ||
331 | return(NULL); | ||
332 | } | ||
333 | } | ||
334 | } | ||
335 | |||
336 | const char *OBJ_nid2ln(int n) | ||
337 | { | ||
338 | ADDED_OBJ ad,*adp; | ||
339 | ASN1_OBJECT ob; | ||
340 | |||
341 | if ((n >= 0) && (n < NUM_NID)) | ||
342 | { | ||
343 | if ((n != NID_undef) && (nid_objs[n].nid == NID_undef)) | ||
344 | { | ||
345 | OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID); | ||
346 | return(NULL); | ||
347 | } | ||
348 | return(nid_objs[n].ln); | ||
349 | } | ||
350 | else if (added == NULL) | ||
351 | return(NULL); | ||
352 | else | ||
353 | { | ||
354 | ad.type=ADDED_NID; | ||
355 | ad.obj= &ob; | ||
356 | ob.nid=n; | ||
357 | adp=(ADDED_OBJ *)lh_retrieve(added,&ad); | ||
358 | if (adp != NULL) | ||
359 | return(adp->obj->ln); | ||
360 | else | ||
361 | { | ||
362 | OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID); | ||
363 | return(NULL); | ||
364 | } | ||
365 | } | ||
366 | } | ||
367 | |||
368 | int OBJ_obj2nid(const ASN1_OBJECT *a) | ||
369 | { | ||
370 | ASN1_OBJECT **op; | ||
371 | ADDED_OBJ ad,*adp; | ||
372 | |||
373 | if (a == NULL) | ||
374 | return(NID_undef); | ||
375 | if (a->nid != 0) | ||
376 | return(a->nid); | ||
377 | |||
378 | if (added != NULL) | ||
379 | { | ||
380 | ad.type=ADDED_DATA; | ||
381 | ad.obj=(ASN1_OBJECT *)a; /* XXX: ugly but harmless */ | ||
382 | adp=(ADDED_OBJ *)lh_retrieve(added,&ad); | ||
383 | if (adp != NULL) return (adp->obj->nid); | ||
384 | } | ||
385 | op=(ASN1_OBJECT **)OBJ_bsearch((char *)&a,(char *)obj_objs,NUM_OBJ, | ||
386 | sizeof(ASN1_OBJECT *),obj_cmp); | ||
387 | if (op == NULL) | ||
388 | return(NID_undef); | ||
389 | return((*op)->nid); | ||
390 | } | ||
391 | |||
392 | /* Convert an object name into an ASN1_OBJECT | ||
393 | * if "noname" is not set then search for short and long names first. | ||
394 | * This will convert the "dotted" form into an object: unlike OBJ_txt2nid | ||
395 | * it can be used with any objects, not just registered ones. | ||
396 | */ | ||
397 | |||
398 | ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name) | ||
399 | { | ||
400 | int nid = NID_undef; | ||
401 | ASN1_OBJECT *op=NULL; | ||
402 | unsigned char *buf,*p; | ||
403 | int i, j; | ||
404 | |||
405 | if(!no_name) { | ||
406 | if( ((nid = OBJ_sn2nid(s)) != NID_undef) || | ||
407 | ((nid = OBJ_ln2nid(s)) != NID_undef) ) | ||
408 | return OBJ_nid2obj(nid); | ||
409 | } | ||
410 | |||
411 | /* Work out size of content octets */ | ||
412 | i=a2d_ASN1_OBJECT(NULL,0,s,-1); | ||
413 | if (i <= 0) { | ||
414 | /* Clear the error */ | ||
415 | ERR_get_error(); | ||
416 | return NULL; | ||
417 | } | ||
418 | /* Work out total size */ | ||
419 | j = ASN1_object_size(0,i,V_ASN1_OBJECT); | ||
420 | |||
421 | if((buf=(unsigned char *)OPENSSL_malloc(j)) == NULL) return NULL; | ||
422 | |||
423 | p = buf; | ||
424 | /* Write out tag+length */ | ||
425 | ASN1_put_object(&p,0,i,V_ASN1_OBJECT,V_ASN1_UNIVERSAL); | ||
426 | /* Write out contents */ | ||
427 | a2d_ASN1_OBJECT(p,i,s,-1); | ||
428 | |||
429 | p=buf; | ||
430 | op=d2i_ASN1_OBJECT(NULL,&p,j); | ||
431 | OPENSSL_free(buf); | ||
432 | return op; | ||
433 | } | ||
434 | |||
435 | int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name) | ||
436 | { | ||
437 | int i,idx=0,n=0,len,nid; | ||
438 | unsigned long l; | ||
439 | unsigned char *p; | ||
440 | const char *s; | ||
441 | char tbuf[DECIMAL_SIZE(i)+DECIMAL_SIZE(l)+2]; | ||
442 | |||
443 | if (buf_len <= 0) return(0); | ||
444 | |||
445 | if ((a == NULL) || (a->data == NULL)) { | ||
446 | buf[0]='\0'; | ||
447 | return(0); | ||
448 | } | ||
449 | |||
450 | if (no_name || (nid=OBJ_obj2nid(a)) == NID_undef) { | ||
451 | len=a->length; | ||
452 | p=a->data; | ||
453 | |||
454 | idx=0; | ||
455 | l=0; | ||
456 | while (idx < a->length) { | ||
457 | l|=(p[idx]&0x7f); | ||
458 | if (!(p[idx] & 0x80)) break; | ||
459 | l<<=7L; | ||
460 | idx++; | ||
461 | } | ||
462 | idx++; | ||
463 | i=(int)(l/40); | ||
464 | if (i > 2) i=2; | ||
465 | l-=(long)(i*40); | ||
466 | |||
467 | BIO_snprintf(tbuf,sizeof tbuf,"%d.%lu",i,l); | ||
468 | i=strlen(tbuf); | ||
469 | BUF_strlcpy(buf,tbuf,buf_len); | ||
470 | buf_len-=i; | ||
471 | buf+=i; | ||
472 | n+=i; | ||
473 | |||
474 | l=0; | ||
475 | for (; idx<len; idx++) { | ||
476 | l|=p[idx]&0x7f; | ||
477 | if (!(p[idx] & 0x80)) { | ||
478 | BIO_snprintf(tbuf,sizeof tbuf,".%lu",l); | ||
479 | i=strlen(tbuf); | ||
480 | if (buf_len > 0) | ||
481 | BUF_strlcpy(buf,tbuf,buf_len); | ||
482 | buf_len-=i; | ||
483 | buf+=i; | ||
484 | n+=i; | ||
485 | l=0; | ||
486 | } | ||
487 | l<<=7L; | ||
488 | } | ||
489 | } else { | ||
490 | s=OBJ_nid2ln(nid); | ||
491 | if (s == NULL) | ||
492 | s=OBJ_nid2sn(nid); | ||
493 | BUF_strlcpy(buf,s,buf_len); | ||
494 | n=strlen(s); | ||
495 | } | ||
496 | return(n); | ||
497 | } | ||
498 | |||
499 | int OBJ_txt2nid(const char *s) | ||
500 | { | ||
501 | ASN1_OBJECT *obj; | ||
502 | int nid; | ||
503 | obj = OBJ_txt2obj(s, 0); | ||
504 | nid = OBJ_obj2nid(obj); | ||
505 | ASN1_OBJECT_free(obj); | ||
506 | return nid; | ||
507 | } | ||
508 | |||
509 | int OBJ_ln2nid(const char *s) | ||
510 | { | ||
511 | ASN1_OBJECT o,*oo= &o,**op; | ||
512 | ADDED_OBJ ad,*adp; | ||
513 | |||
514 | o.ln=s; | ||
515 | if (added != NULL) | ||
516 | { | ||
517 | ad.type=ADDED_LNAME; | ||
518 | ad.obj= &o; | ||
519 | adp=(ADDED_OBJ *)lh_retrieve(added,&ad); | ||
520 | if (adp != NULL) return (adp->obj->nid); | ||
521 | } | ||
522 | op=(ASN1_OBJECT **)OBJ_bsearch((char *)&oo,(char *)ln_objs,NUM_LN, | ||
523 | sizeof(ASN1_OBJECT *),ln_cmp); | ||
524 | if (op == NULL) return(NID_undef); | ||
525 | return((*op)->nid); | ||
526 | } | ||
527 | |||
528 | int OBJ_sn2nid(const char *s) | ||
529 | { | ||
530 | ASN1_OBJECT o,*oo= &o,**op; | ||
531 | ADDED_OBJ ad,*adp; | ||
532 | |||
533 | o.sn=s; | ||
534 | if (added != NULL) | ||
535 | { | ||
536 | ad.type=ADDED_SNAME; | ||
537 | ad.obj= &o; | ||
538 | adp=(ADDED_OBJ *)lh_retrieve(added,&ad); | ||
539 | if (adp != NULL) return (adp->obj->nid); | ||
540 | } | ||
541 | op=(ASN1_OBJECT **)OBJ_bsearch((char *)&oo,(char *)sn_objs,NUM_SN, | ||
542 | sizeof(ASN1_OBJECT *),sn_cmp); | ||
543 | if (op == NULL) return(NID_undef); | ||
544 | return((*op)->nid); | ||
545 | } | ||
546 | |||
547 | static int obj_cmp(const void *ap, const void *bp) | ||
548 | { | ||
549 | int j; | ||
550 | ASN1_OBJECT *a= *(ASN1_OBJECT **)ap; | ||
551 | ASN1_OBJECT *b= *(ASN1_OBJECT **)bp; | ||
552 | |||
553 | j=(a->length - b->length); | ||
554 | if (j) return(j); | ||
555 | return(memcmp(a->data,b->data,a->length)); | ||
556 | } | ||
557 | |||
558 | const char *OBJ_bsearch(const char *key, const char *base, int num, int size, | ||
559 | int (*cmp)(const void *, const void *)) | ||
560 | { | ||
561 | int l,h,i,c; | ||
562 | const char *p; | ||
563 | |||
564 | if (num == 0) return(NULL); | ||
565 | l=0; | ||
566 | h=num; | ||
567 | while (l < h) | ||
568 | { | ||
569 | i=(l+h)/2; | ||
570 | p= &(base[i*size]); | ||
571 | c=(*cmp)(key,p); | ||
572 | if (c < 0) | ||
573 | h=i; | ||
574 | else if (c > 0) | ||
575 | l=i+1; | ||
576 | else | ||
577 | return(p); | ||
578 | } | ||
579 | #ifdef CHARSET_EBCDIC | ||
580 | /* THIS IS A KLUDGE - Because the *_obj is sorted in ASCII order, and | ||
581 | * I don't have perl (yet), we revert to a *LINEAR* search | ||
582 | * when the object wasn't found in the binary search. | ||
583 | */ | ||
584 | for (i=0; i<num; ++i) { | ||
585 | p= &(base[i*size]); | ||
586 | if ((*cmp)(key,p) == 0) | ||
587 | return p; | ||
588 | } | ||
589 | #endif | ||
590 | return(NULL); | ||
591 | } | ||
592 | |||
593 | int OBJ_create_objects(BIO *in) | ||
594 | { | ||
595 | MS_STATIC char buf[512]; | ||
596 | int i,num=0; | ||
597 | char *o,*s,*l=NULL; | ||
598 | |||
599 | for (;;) | ||
600 | { | ||
601 | s=o=NULL; | ||
602 | i=BIO_gets(in,buf,512); | ||
603 | if (i <= 0) return(num); | ||
604 | buf[i-1]='\0'; | ||
605 | if (!isalnum((unsigned char)buf[0])) return(num); | ||
606 | o=s=buf; | ||
607 | while (isdigit((unsigned char)*s) || (*s == '.')) | ||
608 | s++; | ||
609 | if (*s != '\0') | ||
610 | { | ||
611 | *(s++)='\0'; | ||
612 | while (isspace((unsigned char)*s)) | ||
613 | s++; | ||
614 | if (*s == '\0') | ||
615 | s=NULL; | ||
616 | else | ||
617 | { | ||
618 | l=s; | ||
619 | while ((*l != '\0') && !isspace((unsigned char)*l)) | ||
620 | l++; | ||
621 | if (*l != '\0') | ||
622 | { | ||
623 | *(l++)='\0'; | ||
624 | while (isspace((unsigned char)*l)) | ||
625 | l++; | ||
626 | if (*l == '\0') l=NULL; | ||
627 | } | ||
628 | else | ||
629 | l=NULL; | ||
630 | } | ||
631 | } | ||
632 | else | ||
633 | s=NULL; | ||
634 | if ((o == NULL) || (*o == '\0')) return(num); | ||
635 | if (!OBJ_create(o,s,l)) return(num); | ||
636 | num++; | ||
637 | } | ||
638 | /* return(num); */ | ||
639 | } | ||
640 | |||
641 | int OBJ_create(const char *oid, const char *sn, const char *ln) | ||
642 | { | ||
643 | int ok=0; | ||
644 | ASN1_OBJECT *op=NULL; | ||
645 | unsigned char *buf; | ||
646 | int i; | ||
647 | |||
648 | i=a2d_ASN1_OBJECT(NULL,0,oid,-1); | ||
649 | if (i <= 0) return(0); | ||
650 | |||
651 | if ((buf=(unsigned char *)OPENSSL_malloc(i)) == NULL) | ||
652 | { | ||
653 | OBJerr(OBJ_F_OBJ_CREATE,ERR_R_MALLOC_FAILURE); | ||
654 | return(0); | ||
655 | } | ||
656 | i=a2d_ASN1_OBJECT(buf,i,oid,-1); | ||
657 | if (i == 0) | ||
658 | goto err; | ||
659 | op=(ASN1_OBJECT *)ASN1_OBJECT_create(OBJ_new_nid(1),buf,i,sn,ln); | ||
660 | if (op == NULL) | ||
661 | goto err; | ||
662 | ok=OBJ_add_object(op); | ||
663 | err: | ||
664 | ASN1_OBJECT_free(op); | ||
665 | OPENSSL_free(buf); | ||
666 | return(ok); | ||
667 | } | ||
668 | |||
diff --git a/src/lib/libcrypto/objects/obj_dat.h b/src/lib/libcrypto/objects/obj_dat.h deleted file mode 100644 index 99acf131f8..0000000000 --- a/src/lib/libcrypto/objects/obj_dat.h +++ /dev/null | |||
@@ -1,4360 +0,0 @@ | |||
1 | /* crypto/objects/obj_dat.h */ | ||
2 | |||
3 | /* THIS FILE IS GENERATED FROM objects.h by obj_dat.pl via the | ||
4 | * following command: | ||
5 | * perl obj_dat.pl obj_mac.h obj_dat.h | ||
6 | */ | ||
7 | |||
8 | /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) | ||
9 | * All rights reserved. | ||
10 | * | ||
11 | * This package is an SSL implementation written | ||
12 | * by Eric Young (eay@cryptsoft.com). | ||
13 | * The implementation was written so as to conform with Netscapes SSL. | ||
14 | * | ||
15 | * This library is free for commercial and non-commercial use as long as | ||
16 | * the following conditions are aheared to. The following conditions | ||
17 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
18 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
19 | * included with this distribution is covered by the same copyright terms | ||
20 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
21 | * | ||
22 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
23 | * the code are not to be removed. | ||
24 | * If this package is used in a product, Eric Young should be given attribution | ||
25 | * as the author of the parts of the library used. | ||
26 | * This can be in the form of a textual message at program startup or | ||
27 | * in documentation (online or textual) provided with the package. | ||
28 | * | ||
29 | * Redistribution and use in source and binary forms, with or without | ||
30 | * modification, are permitted provided that the following conditions | ||
31 | * are met: | ||
32 | * 1. Redistributions of source code must retain the copyright | ||
33 | * notice, this list of conditions and the following disclaimer. | ||
34 | * 2. Redistributions in binary form must reproduce the above copyright | ||
35 | * notice, this list of conditions and the following disclaimer in the | ||
36 | * documentation and/or other materials provided with the distribution. | ||
37 | * 3. All advertising materials mentioning features or use of this software | ||
38 | * must display the following acknowledgement: | ||
39 | * "This product includes cryptographic software written by | ||
40 | * Eric Young (eay@cryptsoft.com)" | ||
41 | * The word 'cryptographic' can be left out if the rouines from the library | ||
42 | * being used are not cryptographic related :-). | ||
43 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
44 | * the apps directory (application code) you must include an acknowledgement: | ||
45 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
46 | * | ||
47 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
48 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
49 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
50 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
51 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
52 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
53 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
54 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
55 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
56 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
57 | * SUCH DAMAGE. | ||
58 | * | ||
59 | * The licence and distribution terms for any publically available version or | ||
60 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
61 | * copied and put under another distribution licence | ||
62 | * [including the GNU Public Licence.] | ||
63 | */ | ||
64 | |||
65 | #define NUM_NID 791 | ||
66 | #define NUM_SN 784 | ||
67 | #define NUM_LN 784 | ||
68 | #define NUM_OBJ 740 | ||
69 | |||
70 | static unsigned char lvalues[5258]={ | ||
71 | 0x00, /* [ 0] OBJ_undef */ | ||
72 | 0x2A,0x86,0x48,0x86,0xF7,0x0D, /* [ 1] OBJ_rsadsi */ | ||
73 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01, /* [ 7] OBJ_pkcs */ | ||
74 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x02, /* [ 14] OBJ_md2 */ | ||
75 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x05, /* [ 22] OBJ_md5 */ | ||
76 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x04, /* [ 30] OBJ_rc4 */ | ||
77 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x01,/* [ 38] OBJ_rsaEncryption */ | ||
78 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x02,/* [ 47] OBJ_md2WithRSAEncryption */ | ||
79 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x04,/* [ 56] OBJ_md5WithRSAEncryption */ | ||
80 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x01,/* [ 65] OBJ_pbeWithMD2AndDES_CBC */ | ||
81 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x03,/* [ 74] OBJ_pbeWithMD5AndDES_CBC */ | ||
82 | 0x55, /* [ 83] OBJ_X500 */ | ||
83 | 0x55,0x04, /* [ 84] OBJ_X509 */ | ||
84 | 0x55,0x04,0x03, /* [ 86] OBJ_commonName */ | ||
85 | 0x55,0x04,0x06, /* [ 89] OBJ_countryName */ | ||
86 | 0x55,0x04,0x07, /* [ 92] OBJ_localityName */ | ||
87 | 0x55,0x04,0x08, /* [ 95] OBJ_stateOrProvinceName */ | ||
88 | 0x55,0x04,0x0A, /* [ 98] OBJ_organizationName */ | ||
89 | 0x55,0x04,0x0B, /* [101] OBJ_organizationalUnitName */ | ||
90 | 0x55,0x08,0x01,0x01, /* [104] OBJ_rsa */ | ||
91 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07, /* [108] OBJ_pkcs7 */ | ||
92 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x01,/* [116] OBJ_pkcs7_data */ | ||
93 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x02,/* [125] OBJ_pkcs7_signed */ | ||
94 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x03,/* [134] OBJ_pkcs7_enveloped */ | ||
95 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x04,/* [143] OBJ_pkcs7_signedAndEnveloped */ | ||
96 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x05,/* [152] OBJ_pkcs7_digest */ | ||
97 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x06,/* [161] OBJ_pkcs7_encrypted */ | ||
98 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x03, /* [170] OBJ_pkcs3 */ | ||
99 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x03,0x01,/* [178] OBJ_dhKeyAgreement */ | ||
100 | 0x2B,0x0E,0x03,0x02,0x06, /* [187] OBJ_des_ecb */ | ||
101 | 0x2B,0x0E,0x03,0x02,0x09, /* [192] OBJ_des_cfb64 */ | ||
102 | 0x2B,0x0E,0x03,0x02,0x07, /* [197] OBJ_des_cbc */ | ||
103 | 0x2B,0x0E,0x03,0x02,0x11, /* [202] OBJ_des_ede_ecb */ | ||
104 | 0x2B,0x06,0x01,0x04,0x01,0x81,0x3C,0x07,0x01,0x01,0x02,/* [207] OBJ_idea_cbc */ | ||
105 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x02, /* [218] OBJ_rc2_cbc */ | ||
106 | 0x2B,0x0E,0x03,0x02,0x12, /* [226] OBJ_sha */ | ||
107 | 0x2B,0x0E,0x03,0x02,0x0F, /* [231] OBJ_shaWithRSAEncryption */ | ||
108 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x07, /* [236] OBJ_des_ede3_cbc */ | ||
109 | 0x2B,0x0E,0x03,0x02,0x08, /* [244] OBJ_des_ofb64 */ | ||
110 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09, /* [249] OBJ_pkcs9 */ | ||
111 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x01,/* [257] OBJ_pkcs9_emailAddress */ | ||
112 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x02,/* [266] OBJ_pkcs9_unstructuredName */ | ||
113 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x03,/* [275] OBJ_pkcs9_contentType */ | ||
114 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x04,/* [284] OBJ_pkcs9_messageDigest */ | ||
115 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x05,/* [293] OBJ_pkcs9_signingTime */ | ||
116 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x06,/* [302] OBJ_pkcs9_countersignature */ | ||
117 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x07,/* [311] OBJ_pkcs9_challengePassword */ | ||
118 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x08,/* [320] OBJ_pkcs9_unstructuredAddress */ | ||
119 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x09,/* [329] OBJ_pkcs9_extCertAttributes */ | ||
120 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42, /* [338] OBJ_netscape */ | ||
121 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01, /* [345] OBJ_netscape_cert_extension */ | ||
122 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x02, /* [353] OBJ_netscape_data_type */ | ||
123 | 0x2B,0x0E,0x03,0x02,0x1A, /* [361] OBJ_sha1 */ | ||
124 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x05,/* [366] OBJ_sha1WithRSAEncryption */ | ||
125 | 0x2B,0x0E,0x03,0x02,0x0D, /* [375] OBJ_dsaWithSHA */ | ||
126 | 0x2B,0x0E,0x03,0x02,0x0C, /* [380] OBJ_dsa_2 */ | ||
127 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0B,/* [385] OBJ_pbeWithSHA1AndRC2_CBC */ | ||
128 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0C,/* [394] OBJ_id_pbkdf2 */ | ||
129 | 0x2B,0x0E,0x03,0x02,0x1B, /* [403] OBJ_dsaWithSHA1_2 */ | ||
130 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x01,/* [408] OBJ_netscape_cert_type */ | ||
131 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x02,/* [417] OBJ_netscape_base_url */ | ||
132 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x03,/* [426] OBJ_netscape_revocation_url */ | ||
133 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x04,/* [435] OBJ_netscape_ca_revocation_url */ | ||
134 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x07,/* [444] OBJ_netscape_renewal_url */ | ||
135 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x08,/* [453] OBJ_netscape_ca_policy_url */ | ||
136 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x0C,/* [462] OBJ_netscape_ssl_server_name */ | ||
137 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x0D,/* [471] OBJ_netscape_comment */ | ||
138 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x02,0x05,/* [480] OBJ_netscape_cert_sequence */ | ||
139 | 0x55,0x1D, /* [489] OBJ_id_ce */ | ||
140 | 0x55,0x1D,0x0E, /* [491] OBJ_subject_key_identifier */ | ||
141 | 0x55,0x1D,0x0F, /* [494] OBJ_key_usage */ | ||
142 | 0x55,0x1D,0x10, /* [497] OBJ_private_key_usage_period */ | ||
143 | 0x55,0x1D,0x11, /* [500] OBJ_subject_alt_name */ | ||
144 | 0x55,0x1D,0x12, /* [503] OBJ_issuer_alt_name */ | ||
145 | 0x55,0x1D,0x13, /* [506] OBJ_basic_constraints */ | ||
146 | 0x55,0x1D,0x14, /* [509] OBJ_crl_number */ | ||
147 | 0x55,0x1D,0x20, /* [512] OBJ_certificate_policies */ | ||
148 | 0x55,0x1D,0x23, /* [515] OBJ_authority_key_identifier */ | ||
149 | 0x2B,0x06,0x01,0x04,0x01,0x97,0x55,0x01,0x02,/* [518] OBJ_bf_cbc */ | ||
150 | 0x55,0x08,0x03,0x65, /* [527] OBJ_mdc2 */ | ||
151 | 0x55,0x08,0x03,0x64, /* [531] OBJ_mdc2WithRSA */ | ||
152 | 0x55,0x04,0x2A, /* [535] OBJ_givenName */ | ||
153 | 0x55,0x04,0x04, /* [538] OBJ_surname */ | ||
154 | 0x55,0x04,0x2B, /* [541] OBJ_initials */ | ||
155 | 0x55,0x1D,0x1F, /* [544] OBJ_crl_distribution_points */ | ||
156 | 0x2B,0x0E,0x03,0x02,0x03, /* [547] OBJ_md5WithRSA */ | ||
157 | 0x55,0x04,0x05, /* [552] OBJ_serialNumber */ | ||
158 | 0x55,0x04,0x0C, /* [555] OBJ_title */ | ||
159 | 0x55,0x04,0x0D, /* [558] OBJ_description */ | ||
160 | 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0A,/* [561] OBJ_cast5_cbc */ | ||
161 | 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0C,/* [570] OBJ_pbeWithMD5AndCast5_CBC */ | ||
162 | 0x2A,0x86,0x48,0xCE,0x38,0x04,0x03, /* [579] OBJ_dsaWithSHA1 */ | ||
163 | 0x2B,0x0E,0x03,0x02,0x1D, /* [586] OBJ_sha1WithRSA */ | ||
164 | 0x2A,0x86,0x48,0xCE,0x38,0x04,0x01, /* [591] OBJ_dsa */ | ||
165 | 0x2B,0x24,0x03,0x02,0x01, /* [598] OBJ_ripemd160 */ | ||
166 | 0x2B,0x24,0x03,0x03,0x01,0x02, /* [603] OBJ_ripemd160WithRSA */ | ||
167 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x08, /* [609] OBJ_rc5_cbc */ | ||
168 | 0x29,0x01,0x01,0x85,0x1A,0x01, /* [617] OBJ_rle_compression */ | ||
169 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x08,/* [623] OBJ_zlib_compression */ | ||
170 | 0x55,0x1D,0x25, /* [634] OBJ_ext_key_usage */ | ||
171 | 0x2B,0x06,0x01,0x05,0x05,0x07, /* [637] OBJ_id_pkix */ | ||
172 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03, /* [643] OBJ_id_kp */ | ||
173 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x01, /* [650] OBJ_server_auth */ | ||
174 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x02, /* [658] OBJ_client_auth */ | ||
175 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x03, /* [666] OBJ_code_sign */ | ||
176 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x04, /* [674] OBJ_email_protect */ | ||
177 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x08, /* [682] OBJ_time_stamp */ | ||
178 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x15,/* [690] OBJ_ms_code_ind */ | ||
179 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x16,/* [700] OBJ_ms_code_com */ | ||
180 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x01,/* [710] OBJ_ms_ctl_sign */ | ||
181 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x03,/* [720] OBJ_ms_sgc */ | ||
182 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x04,/* [730] OBJ_ms_efs */ | ||
183 | 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x04,0x01,/* [740] OBJ_ns_sgc */ | ||
184 | 0x55,0x1D,0x1B, /* [749] OBJ_delta_crl */ | ||
185 | 0x55,0x1D,0x15, /* [752] OBJ_crl_reason */ | ||
186 | 0x55,0x1D,0x18, /* [755] OBJ_invalidity_date */ | ||
187 | 0x2B,0x65,0x01,0x04,0x01, /* [758] OBJ_sxnet */ | ||
188 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x01,/* [763] OBJ_pbe_WithSHA1And128BitRC4 */ | ||
189 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x02,/* [773] OBJ_pbe_WithSHA1And40BitRC4 */ | ||
190 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x03,/* [783] OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC */ | ||
191 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x04,/* [793] OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC */ | ||
192 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x05,/* [803] OBJ_pbe_WithSHA1And128BitRC2_CBC */ | ||
193 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x06,/* [813] OBJ_pbe_WithSHA1And40BitRC2_CBC */ | ||
194 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x01,/* [823] OBJ_keyBag */ | ||
195 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x02,/* [834] OBJ_pkcs8ShroudedKeyBag */ | ||
196 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x03,/* [845] OBJ_certBag */ | ||
197 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x04,/* [856] OBJ_crlBag */ | ||
198 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x05,/* [867] OBJ_secretBag */ | ||
199 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x06,/* [878] OBJ_safeContentsBag */ | ||
200 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x14,/* [889] OBJ_friendlyName */ | ||
201 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x15,/* [898] OBJ_localKeyID */ | ||
202 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x16,0x01,/* [907] OBJ_x509Certificate */ | ||
203 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x16,0x02,/* [917] OBJ_sdsiCertificate */ | ||
204 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x17,0x01,/* [927] OBJ_x509Crl */ | ||
205 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0D,/* [937] OBJ_pbes2 */ | ||
206 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0E,/* [946] OBJ_pbmac1 */ | ||
207 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x07, /* [955] OBJ_hmacWithSHA1 */ | ||
208 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x01, /* [963] OBJ_id_qt_cps */ | ||
209 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x02, /* [971] OBJ_id_qt_unotice */ | ||
210 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x0F,/* [979] OBJ_SMIMECapabilities */ | ||
211 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x04,/* [988] OBJ_pbeWithMD2AndRC2_CBC */ | ||
212 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x06,/* [997] OBJ_pbeWithMD5AndRC2_CBC */ | ||
213 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0A,/* [1006] OBJ_pbeWithSHA1AndDES_CBC */ | ||
214 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x0E,/* [1015] OBJ_ms_ext_req */ | ||
215 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x0E,/* [1025] OBJ_ext_req */ | ||
216 | 0x55,0x04,0x29, /* [1034] OBJ_name */ | ||
217 | 0x55,0x04,0x2E, /* [1037] OBJ_dnQualifier */ | ||
218 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01, /* [1040] OBJ_id_pe */ | ||
219 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30, /* [1047] OBJ_id_ad */ | ||
220 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x01, /* [1054] OBJ_info_access */ | ||
221 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01, /* [1062] OBJ_ad_OCSP */ | ||
222 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x02, /* [1070] OBJ_ad_ca_issuers */ | ||
223 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x09, /* [1078] OBJ_OCSP_sign */ | ||
224 | 0x28, /* [1086] OBJ_iso */ | ||
225 | 0x2A, /* [1087] OBJ_member_body */ | ||
226 | 0x2A,0x86,0x48, /* [1088] OBJ_ISO_US */ | ||
227 | 0x2A,0x86,0x48,0xCE,0x38, /* [1091] OBJ_X9_57 */ | ||
228 | 0x2A,0x86,0x48,0xCE,0x38,0x04, /* [1096] OBJ_X9cm */ | ||
229 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01, /* [1102] OBJ_pkcs1 */ | ||
230 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05, /* [1110] OBJ_pkcs5 */ | ||
231 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,/* [1118] OBJ_SMIME */ | ||
232 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,/* [1127] OBJ_id_smime_mod */ | ||
233 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,/* [1137] OBJ_id_smime_ct */ | ||
234 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,/* [1147] OBJ_id_smime_aa */ | ||
235 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,/* [1157] OBJ_id_smime_alg */ | ||
236 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x04,/* [1167] OBJ_id_smime_cd */ | ||
237 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,/* [1177] OBJ_id_smime_spq */ | ||
238 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,/* [1187] OBJ_id_smime_cti */ | ||
239 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x01,/* [1197] OBJ_id_smime_mod_cms */ | ||
240 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x02,/* [1208] OBJ_id_smime_mod_ess */ | ||
241 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x03,/* [1219] OBJ_id_smime_mod_oid */ | ||
242 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x04,/* [1230] OBJ_id_smime_mod_msg_v3 */ | ||
243 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x05,/* [1241] OBJ_id_smime_mod_ets_eSignature_88 */ | ||
244 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x06,/* [1252] OBJ_id_smime_mod_ets_eSignature_97 */ | ||
245 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x07,/* [1263] OBJ_id_smime_mod_ets_eSigPolicy_88 */ | ||
246 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x08,/* [1274] OBJ_id_smime_mod_ets_eSigPolicy_97 */ | ||
247 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x01,/* [1285] OBJ_id_smime_ct_receipt */ | ||
248 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x02,/* [1296] OBJ_id_smime_ct_authData */ | ||
249 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x03,/* [1307] OBJ_id_smime_ct_publishCert */ | ||
250 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x04,/* [1318] OBJ_id_smime_ct_TSTInfo */ | ||
251 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x05,/* [1329] OBJ_id_smime_ct_TDTInfo */ | ||
252 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x06,/* [1340] OBJ_id_smime_ct_contentInfo */ | ||
253 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x07,/* [1351] OBJ_id_smime_ct_DVCSRequestData */ | ||
254 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x08,/* [1362] OBJ_id_smime_ct_DVCSResponseData */ | ||
255 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x01,/* [1373] OBJ_id_smime_aa_receiptRequest */ | ||
256 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x02,/* [1384] OBJ_id_smime_aa_securityLabel */ | ||
257 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x03,/* [1395] OBJ_id_smime_aa_mlExpandHistory */ | ||
258 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x04,/* [1406] OBJ_id_smime_aa_contentHint */ | ||
259 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x05,/* [1417] OBJ_id_smime_aa_msgSigDigest */ | ||
260 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x06,/* [1428] OBJ_id_smime_aa_encapContentType */ | ||
261 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x07,/* [1439] OBJ_id_smime_aa_contentIdentifier */ | ||
262 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x08,/* [1450] OBJ_id_smime_aa_macValue */ | ||
263 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x09,/* [1461] OBJ_id_smime_aa_equivalentLabels */ | ||
264 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0A,/* [1472] OBJ_id_smime_aa_contentReference */ | ||
265 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0B,/* [1483] OBJ_id_smime_aa_encrypKeyPref */ | ||
266 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0C,/* [1494] OBJ_id_smime_aa_signingCertificate */ | ||
267 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0D,/* [1505] OBJ_id_smime_aa_smimeEncryptCerts */ | ||
268 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0E,/* [1516] OBJ_id_smime_aa_timeStampToken */ | ||
269 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0F,/* [1527] OBJ_id_smime_aa_ets_sigPolicyId */ | ||
270 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x10,/* [1538] OBJ_id_smime_aa_ets_commitmentType */ | ||
271 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x11,/* [1549] OBJ_id_smime_aa_ets_signerLocation */ | ||
272 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x12,/* [1560] OBJ_id_smime_aa_ets_signerAttr */ | ||
273 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x13,/* [1571] OBJ_id_smime_aa_ets_otherSigCert */ | ||
274 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x14,/* [1582] OBJ_id_smime_aa_ets_contentTimestamp */ | ||
275 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x15,/* [1593] OBJ_id_smime_aa_ets_CertificateRefs */ | ||
276 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x16,/* [1604] OBJ_id_smime_aa_ets_RevocationRefs */ | ||
277 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x17,/* [1615] OBJ_id_smime_aa_ets_certValues */ | ||
278 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x18,/* [1626] OBJ_id_smime_aa_ets_revocationValues */ | ||
279 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x19,/* [1637] OBJ_id_smime_aa_ets_escTimeStamp */ | ||
280 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1A,/* [1648] OBJ_id_smime_aa_ets_certCRLTimestamp */ | ||
281 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1B,/* [1659] OBJ_id_smime_aa_ets_archiveTimeStamp */ | ||
282 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1C,/* [1670] OBJ_id_smime_aa_signatureType */ | ||
283 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1D,/* [1681] OBJ_id_smime_aa_dvcs_dvc */ | ||
284 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x01,/* [1692] OBJ_id_smime_alg_ESDHwith3DES */ | ||
285 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x02,/* [1703] OBJ_id_smime_alg_ESDHwithRC2 */ | ||
286 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x03,/* [1714] OBJ_id_smime_alg_3DESwrap */ | ||
287 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x04,/* [1725] OBJ_id_smime_alg_RC2wrap */ | ||
288 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x05,/* [1736] OBJ_id_smime_alg_ESDH */ | ||
289 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x06,/* [1747] OBJ_id_smime_alg_CMS3DESwrap */ | ||
290 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x07,/* [1758] OBJ_id_smime_alg_CMSRC2wrap */ | ||
291 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x04,0x01,/* [1769] OBJ_id_smime_cd_ldap */ | ||
292 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,0x01,/* [1780] OBJ_id_smime_spq_ets_sqt_uri */ | ||
293 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,0x02,/* [1791] OBJ_id_smime_spq_ets_sqt_unotice */ | ||
294 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x01,/* [1802] OBJ_id_smime_cti_ets_proofOfOrigin */ | ||
295 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x02,/* [1813] OBJ_id_smime_cti_ets_proofOfReceipt */ | ||
296 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x03,/* [1824] OBJ_id_smime_cti_ets_proofOfDelivery */ | ||
297 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x04,/* [1835] OBJ_id_smime_cti_ets_proofOfSender */ | ||
298 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x05,/* [1846] OBJ_id_smime_cti_ets_proofOfApproval */ | ||
299 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x06,/* [1857] OBJ_id_smime_cti_ets_proofOfCreation */ | ||
300 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x04, /* [1868] OBJ_md4 */ | ||
301 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00, /* [1876] OBJ_id_pkix_mod */ | ||
302 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x02, /* [1883] OBJ_id_qt */ | ||
303 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04, /* [1890] OBJ_id_it */ | ||
304 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05, /* [1897] OBJ_id_pkip */ | ||
305 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x06, /* [1904] OBJ_id_alg */ | ||
306 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07, /* [1911] OBJ_id_cmc */ | ||
307 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x08, /* [1918] OBJ_id_on */ | ||
308 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x09, /* [1925] OBJ_id_pda */ | ||
309 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A, /* [1932] OBJ_id_aca */ | ||
310 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0B, /* [1939] OBJ_id_qcs */ | ||
311 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C, /* [1946] OBJ_id_cct */ | ||
312 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x01, /* [1953] OBJ_id_pkix1_explicit_88 */ | ||
313 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x02, /* [1961] OBJ_id_pkix1_implicit_88 */ | ||
314 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x03, /* [1969] OBJ_id_pkix1_explicit_93 */ | ||
315 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x04, /* [1977] OBJ_id_pkix1_implicit_93 */ | ||
316 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x05, /* [1985] OBJ_id_mod_crmf */ | ||
317 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x06, /* [1993] OBJ_id_mod_cmc */ | ||
318 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x07, /* [2001] OBJ_id_mod_kea_profile_88 */ | ||
319 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x08, /* [2009] OBJ_id_mod_kea_profile_93 */ | ||
320 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x09, /* [2017] OBJ_id_mod_cmp */ | ||
321 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0A, /* [2025] OBJ_id_mod_qualified_cert_88 */ | ||
322 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0B, /* [2033] OBJ_id_mod_qualified_cert_93 */ | ||
323 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0C, /* [2041] OBJ_id_mod_attribute_cert */ | ||
324 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0D, /* [2049] OBJ_id_mod_timestamp_protocol */ | ||
325 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0E, /* [2057] OBJ_id_mod_ocsp */ | ||
326 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0F, /* [2065] OBJ_id_mod_dvcs */ | ||
327 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x10, /* [2073] OBJ_id_mod_cmp2000 */ | ||
328 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x02, /* [2081] OBJ_biometricInfo */ | ||
329 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x03, /* [2089] OBJ_qcStatements */ | ||
330 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x04, /* [2097] OBJ_ac_auditEntity */ | ||
331 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x05, /* [2105] OBJ_ac_targeting */ | ||
332 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x06, /* [2113] OBJ_aaControls */ | ||
333 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x07, /* [2121] OBJ_sbgp_ipAddrBlock */ | ||
334 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x08, /* [2129] OBJ_sbgp_autonomousSysNum */ | ||
335 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x09, /* [2137] OBJ_sbgp_routerIdentifier */ | ||
336 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x03, /* [2145] OBJ_textNotice */ | ||
337 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x05, /* [2153] OBJ_ipsecEndSystem */ | ||
338 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x06, /* [2161] OBJ_ipsecTunnel */ | ||
339 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x07, /* [2169] OBJ_ipsecUser */ | ||
340 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x0A, /* [2177] OBJ_dvcs */ | ||
341 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x01, /* [2185] OBJ_id_it_caProtEncCert */ | ||
342 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x02, /* [2193] OBJ_id_it_signKeyPairTypes */ | ||
343 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x03, /* [2201] OBJ_id_it_encKeyPairTypes */ | ||
344 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x04, /* [2209] OBJ_id_it_preferredSymmAlg */ | ||
345 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x05, /* [2217] OBJ_id_it_caKeyUpdateInfo */ | ||
346 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x06, /* [2225] OBJ_id_it_currentCRL */ | ||
347 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x07, /* [2233] OBJ_id_it_unsupportedOIDs */ | ||
348 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x08, /* [2241] OBJ_id_it_subscriptionRequest */ | ||
349 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x09, /* [2249] OBJ_id_it_subscriptionResponse */ | ||
350 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0A, /* [2257] OBJ_id_it_keyPairParamReq */ | ||
351 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0B, /* [2265] OBJ_id_it_keyPairParamRep */ | ||
352 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0C, /* [2273] OBJ_id_it_revPassphrase */ | ||
353 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0D, /* [2281] OBJ_id_it_implicitConfirm */ | ||
354 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0E, /* [2289] OBJ_id_it_confirmWaitTime */ | ||
355 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0F, /* [2297] OBJ_id_it_origPKIMessage */ | ||
356 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01, /* [2305] OBJ_id_regCtrl */ | ||
357 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02, /* [2313] OBJ_id_regInfo */ | ||
358 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x01,/* [2321] OBJ_id_regCtrl_regToken */ | ||
359 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x02,/* [2330] OBJ_id_regCtrl_authenticator */ | ||
360 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x03,/* [2339] OBJ_id_regCtrl_pkiPublicationInfo */ | ||
361 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x04,/* [2348] OBJ_id_regCtrl_pkiArchiveOptions */ | ||
362 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x05,/* [2357] OBJ_id_regCtrl_oldCertID */ | ||
363 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x06,/* [2366] OBJ_id_regCtrl_protocolEncrKey */ | ||
364 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02,0x01,/* [2375] OBJ_id_regInfo_utf8Pairs */ | ||
365 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02,0x02,/* [2384] OBJ_id_regInfo_certReq */ | ||
366 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x01, /* [2393] OBJ_id_alg_des40 */ | ||
367 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x02, /* [2401] OBJ_id_alg_noSignature */ | ||
368 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x03, /* [2409] OBJ_id_alg_dh_sig_hmac_sha1 */ | ||
369 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x04, /* [2417] OBJ_id_alg_dh_pop */ | ||
370 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x01, /* [2425] OBJ_id_cmc_statusInfo */ | ||
371 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x02, /* [2433] OBJ_id_cmc_identification */ | ||
372 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x03, /* [2441] OBJ_id_cmc_identityProof */ | ||
373 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x04, /* [2449] OBJ_id_cmc_dataReturn */ | ||
374 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x05, /* [2457] OBJ_id_cmc_transactionId */ | ||
375 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x06, /* [2465] OBJ_id_cmc_senderNonce */ | ||
376 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x07, /* [2473] OBJ_id_cmc_recipientNonce */ | ||
377 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x08, /* [2481] OBJ_id_cmc_addExtensions */ | ||
378 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x09, /* [2489] OBJ_id_cmc_encryptedPOP */ | ||
379 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0A, /* [2497] OBJ_id_cmc_decryptedPOP */ | ||
380 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0B, /* [2505] OBJ_id_cmc_lraPOPWitness */ | ||
381 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0F, /* [2513] OBJ_id_cmc_getCert */ | ||
382 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x10, /* [2521] OBJ_id_cmc_getCRL */ | ||
383 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x11, /* [2529] OBJ_id_cmc_revokeRequest */ | ||
384 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x12, /* [2537] OBJ_id_cmc_regInfo */ | ||
385 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x13, /* [2545] OBJ_id_cmc_responseInfo */ | ||
386 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x15, /* [2553] OBJ_id_cmc_queryPending */ | ||
387 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x16, /* [2561] OBJ_id_cmc_popLinkRandom */ | ||
388 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x17, /* [2569] OBJ_id_cmc_popLinkWitness */ | ||
389 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x18, /* [2577] OBJ_id_cmc_confirmCertAcceptance */ | ||
390 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x08,0x01, /* [2585] OBJ_id_on_personalData */ | ||
391 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x01, /* [2593] OBJ_id_pda_dateOfBirth */ | ||
392 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x02, /* [2601] OBJ_id_pda_placeOfBirth */ | ||
393 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x03, /* [2609] OBJ_id_pda_gender */ | ||
394 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x04, /* [2617] OBJ_id_pda_countryOfCitizenship */ | ||
395 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x05, /* [2625] OBJ_id_pda_countryOfResidence */ | ||
396 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x01, /* [2633] OBJ_id_aca_authenticationInfo */ | ||
397 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x02, /* [2641] OBJ_id_aca_accessIdentity */ | ||
398 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x03, /* [2649] OBJ_id_aca_chargingIdentity */ | ||
399 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x04, /* [2657] OBJ_id_aca_group */ | ||
400 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x05, /* [2665] OBJ_id_aca_role */ | ||
401 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0B,0x01, /* [2673] OBJ_id_qcs_pkixQCSyntax_v1 */ | ||
402 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x01, /* [2681] OBJ_id_cct_crs */ | ||
403 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x02, /* [2689] OBJ_id_cct_PKIData */ | ||
404 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x03, /* [2697] OBJ_id_cct_PKIResponse */ | ||
405 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x03, /* [2705] OBJ_ad_timeStamping */ | ||
406 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x04, /* [2713] OBJ_ad_dvcs */ | ||
407 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x01,/* [2721] OBJ_id_pkix_OCSP_basic */ | ||
408 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x02,/* [2730] OBJ_id_pkix_OCSP_Nonce */ | ||
409 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x03,/* [2739] OBJ_id_pkix_OCSP_CrlID */ | ||
410 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x04,/* [2748] OBJ_id_pkix_OCSP_acceptableResponses */ | ||
411 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x05,/* [2757] OBJ_id_pkix_OCSP_noCheck */ | ||
412 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x06,/* [2766] OBJ_id_pkix_OCSP_archiveCutoff */ | ||
413 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x07,/* [2775] OBJ_id_pkix_OCSP_serviceLocator */ | ||
414 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x08,/* [2784] OBJ_id_pkix_OCSP_extendedStatus */ | ||
415 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x09,/* [2793] OBJ_id_pkix_OCSP_valid */ | ||
416 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x0A,/* [2802] OBJ_id_pkix_OCSP_path */ | ||
417 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x0B,/* [2811] OBJ_id_pkix_OCSP_trustRoot */ | ||
418 | 0x2B,0x0E,0x03,0x02, /* [2820] OBJ_algorithm */ | ||
419 | 0x2B,0x0E,0x03,0x02,0x0B, /* [2824] OBJ_rsaSignature */ | ||
420 | 0x55,0x08, /* [2829] OBJ_X500algorithms */ | ||
421 | 0x2B, /* [2831] OBJ_org */ | ||
422 | 0x2B,0x06, /* [2832] OBJ_dod */ | ||
423 | 0x2B,0x06,0x01, /* [2834] OBJ_iana */ | ||
424 | 0x2B,0x06,0x01,0x01, /* [2837] OBJ_Directory */ | ||
425 | 0x2B,0x06,0x01,0x02, /* [2841] OBJ_Management */ | ||
426 | 0x2B,0x06,0x01,0x03, /* [2845] OBJ_Experimental */ | ||
427 | 0x2B,0x06,0x01,0x04, /* [2849] OBJ_Private */ | ||
428 | 0x2B,0x06,0x01,0x05, /* [2853] OBJ_Security */ | ||
429 | 0x2B,0x06,0x01,0x06, /* [2857] OBJ_SNMPv2 */ | ||
430 | 0x2B,0x06,0x01,0x07, /* [2861] OBJ_Mail */ | ||
431 | 0x2B,0x06,0x01,0x04,0x01, /* [2865] OBJ_Enterprises */ | ||
432 | 0x2B,0x06,0x01,0x04,0x01,0x8B,0x3A,0x82,0x58,/* [2870] OBJ_dcObject */ | ||
433 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x19,/* [2879] OBJ_domainComponent */ | ||
434 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0D,/* [2889] OBJ_Domain */ | ||
435 | 0x00, /* [2899] OBJ_joint_iso_ccitt */ | ||
436 | 0x55,0x01,0x05, /* [2900] OBJ_selected_attribute_types */ | ||
437 | 0x55,0x01,0x05,0x37, /* [2903] OBJ_clearance */ | ||
438 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x03,/* [2907] OBJ_md4WithRSAEncryption */ | ||
439 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0A, /* [2916] OBJ_ac_proxying */ | ||
440 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0B, /* [2924] OBJ_sinfo_access */ | ||
441 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x06, /* [2932] OBJ_id_aca_encAttrs */ | ||
442 | 0x55,0x04,0x48, /* [2940] OBJ_role */ | ||
443 | 0x55,0x1D,0x24, /* [2943] OBJ_policy_constraints */ | ||
444 | 0x55,0x1D,0x37, /* [2946] OBJ_target_information */ | ||
445 | 0x55,0x1D,0x38, /* [2949] OBJ_no_rev_avail */ | ||
446 | 0x00, /* [2952] OBJ_ccitt */ | ||
447 | 0x2A,0x86,0x48,0xCE,0x3D, /* [2953] OBJ_ansi_X9_62 */ | ||
448 | 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x01, /* [2958] OBJ_X9_62_prime_field */ | ||
449 | 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02, /* [2965] OBJ_X9_62_characteristic_two_field */ | ||
450 | 0x2A,0x86,0x48,0xCE,0x3D,0x02,0x01, /* [2972] OBJ_X9_62_id_ecPublicKey */ | ||
451 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x01, /* [2979] OBJ_X9_62_prime192v1 */ | ||
452 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x02, /* [2987] OBJ_X9_62_prime192v2 */ | ||
453 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x03, /* [2995] OBJ_X9_62_prime192v3 */ | ||
454 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x04, /* [3003] OBJ_X9_62_prime239v1 */ | ||
455 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x05, /* [3011] OBJ_X9_62_prime239v2 */ | ||
456 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x06, /* [3019] OBJ_X9_62_prime239v3 */ | ||
457 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x07, /* [3027] OBJ_X9_62_prime256v1 */ | ||
458 | 0x2A,0x86,0x48,0xCE,0x3D,0x04,0x01, /* [3035] OBJ_ecdsa_with_SHA1 */ | ||
459 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x11,0x01,/* [3042] OBJ_ms_csp_name */ | ||
460 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x01,/* [3051] OBJ_aes_128_ecb */ | ||
461 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x02,/* [3060] OBJ_aes_128_cbc */ | ||
462 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x03,/* [3069] OBJ_aes_128_ofb128 */ | ||
463 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x04,/* [3078] OBJ_aes_128_cfb128 */ | ||
464 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x15,/* [3087] OBJ_aes_192_ecb */ | ||
465 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x16,/* [3096] OBJ_aes_192_cbc */ | ||
466 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x17,/* [3105] OBJ_aes_192_ofb128 */ | ||
467 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x18,/* [3114] OBJ_aes_192_cfb128 */ | ||
468 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x29,/* [3123] OBJ_aes_256_ecb */ | ||
469 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2A,/* [3132] OBJ_aes_256_cbc */ | ||
470 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2B,/* [3141] OBJ_aes_256_ofb128 */ | ||
471 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2C,/* [3150] OBJ_aes_256_cfb128 */ | ||
472 | 0x55,0x1D,0x17, /* [3159] OBJ_hold_instruction_code */ | ||
473 | 0x2A,0x86,0x48,0xCE,0x38,0x02,0x01, /* [3162] OBJ_hold_instruction_none */ | ||
474 | 0x2A,0x86,0x48,0xCE,0x38,0x02,0x02, /* [3169] OBJ_hold_instruction_call_issuer */ | ||
475 | 0x2A,0x86,0x48,0xCE,0x38,0x02,0x03, /* [3176] OBJ_hold_instruction_reject */ | ||
476 | 0x09, /* [3183] OBJ_data */ | ||
477 | 0x09,0x92,0x26, /* [3184] OBJ_pss */ | ||
478 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C, /* [3187] OBJ_ucl */ | ||
479 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64, /* [3194] OBJ_pilot */ | ||
480 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,/* [3202] OBJ_pilotAttributeType */ | ||
481 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,/* [3211] OBJ_pilotAttributeSyntax */ | ||
482 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,/* [3220] OBJ_pilotObjectClass */ | ||
483 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x0A,/* [3229] OBJ_pilotGroups */ | ||
484 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,0x04,/* [3238] OBJ_iA5StringSyntax */ | ||
485 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,0x05,/* [3248] OBJ_caseIgnoreIA5StringSyntax */ | ||
486 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x03,/* [3258] OBJ_pilotObject */ | ||
487 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x04,/* [3268] OBJ_pilotPerson */ | ||
488 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x05,/* [3278] OBJ_account */ | ||
489 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x06,/* [3288] OBJ_document */ | ||
490 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x07,/* [3298] OBJ_room */ | ||
491 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x09,/* [3308] OBJ_documentSeries */ | ||
492 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0E,/* [3318] OBJ_rFC822localPart */ | ||
493 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0F,/* [3328] OBJ_dNSDomain */ | ||
494 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x11,/* [3338] OBJ_domainRelatedObject */ | ||
495 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x12,/* [3348] OBJ_friendlyCountry */ | ||
496 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x13,/* [3358] OBJ_simpleSecurityObject */ | ||
497 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x14,/* [3368] OBJ_pilotOrganization */ | ||
498 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x15,/* [3378] OBJ_pilotDSA */ | ||
499 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x16,/* [3388] OBJ_qualityLabelledData */ | ||
500 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x01,/* [3398] OBJ_userId */ | ||
501 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x02,/* [3408] OBJ_textEncodedORAddress */ | ||
502 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x03,/* [3418] OBJ_rfc822Mailbox */ | ||
503 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x04,/* [3428] OBJ_info */ | ||
504 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x05,/* [3438] OBJ_favouriteDrink */ | ||
505 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x06,/* [3448] OBJ_roomNumber */ | ||
506 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x07,/* [3458] OBJ_photo */ | ||
507 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x08,/* [3468] OBJ_userClass */ | ||
508 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x09,/* [3478] OBJ_host */ | ||
509 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0A,/* [3488] OBJ_manager */ | ||
510 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0B,/* [3498] OBJ_documentIdentifier */ | ||
511 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0C,/* [3508] OBJ_documentTitle */ | ||
512 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0D,/* [3518] OBJ_documentVersion */ | ||
513 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0E,/* [3528] OBJ_documentAuthor */ | ||
514 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0F,/* [3538] OBJ_documentLocation */ | ||
515 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x14,/* [3548] OBJ_homeTelephoneNumber */ | ||
516 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x15,/* [3558] OBJ_secretary */ | ||
517 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x16,/* [3568] OBJ_otherMailbox */ | ||
518 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x17,/* [3578] OBJ_lastModifiedTime */ | ||
519 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x18,/* [3588] OBJ_lastModifiedBy */ | ||
520 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1A,/* [3598] OBJ_aRecord */ | ||
521 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1B,/* [3608] OBJ_pilotAttributeType27 */ | ||
522 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1C,/* [3618] OBJ_mXRecord */ | ||
523 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1D,/* [3628] OBJ_nSRecord */ | ||
524 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1E,/* [3638] OBJ_sOARecord */ | ||
525 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1F,/* [3648] OBJ_cNAMERecord */ | ||
526 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x25,/* [3658] OBJ_associatedDomain */ | ||
527 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x26,/* [3668] OBJ_associatedName */ | ||
528 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x27,/* [3678] OBJ_homePostalAddress */ | ||
529 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x28,/* [3688] OBJ_personalTitle */ | ||
530 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x29,/* [3698] OBJ_mobileTelephoneNumber */ | ||
531 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2A,/* [3708] OBJ_pagerTelephoneNumber */ | ||
532 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2B,/* [3718] OBJ_friendlyCountryName */ | ||
533 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2D,/* [3728] OBJ_organizationalStatus */ | ||
534 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2E,/* [3738] OBJ_janetMailbox */ | ||
535 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2F,/* [3748] OBJ_mailPreferenceOption */ | ||
536 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x30,/* [3758] OBJ_buildingName */ | ||
537 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x31,/* [3768] OBJ_dSAQuality */ | ||
538 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x32,/* [3778] OBJ_singleLevelQuality */ | ||
539 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x33,/* [3788] OBJ_subtreeMinimumQuality */ | ||
540 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x34,/* [3798] OBJ_subtreeMaximumQuality */ | ||
541 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x35,/* [3808] OBJ_personalSignature */ | ||
542 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x36,/* [3818] OBJ_dITRedirect */ | ||
543 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x37,/* [3828] OBJ_audio */ | ||
544 | 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x38,/* [3838] OBJ_documentPublisher */ | ||
545 | 0x55,0x04,0x2D, /* [3848] OBJ_x500UniqueIdentifier */ | ||
546 | 0x2B,0x06,0x01,0x07,0x01, /* [3851] OBJ_mime_mhs */ | ||
547 | 0x2B,0x06,0x01,0x07,0x01,0x01, /* [3856] OBJ_mime_mhs_headings */ | ||
548 | 0x2B,0x06,0x01,0x07,0x01,0x02, /* [3862] OBJ_mime_mhs_bodies */ | ||
549 | 0x2B,0x06,0x01,0x07,0x01,0x01,0x01, /* [3868] OBJ_id_hex_partial_message */ | ||
550 | 0x2B,0x06,0x01,0x07,0x01,0x01,0x02, /* [3875] OBJ_id_hex_multipart_message */ | ||
551 | 0x55,0x04,0x2C, /* [3882] OBJ_generationQualifier */ | ||
552 | 0x55,0x04,0x41, /* [3885] OBJ_pseudonym */ | ||
553 | 0x67,0x2A, /* [3888] OBJ_id_set */ | ||
554 | 0x67,0x2A,0x00, /* [3890] OBJ_set_ctype */ | ||
555 | 0x67,0x2A,0x01, /* [3893] OBJ_set_msgExt */ | ||
556 | 0x67,0x2A,0x03, /* [3896] OBJ_set_attr */ | ||
557 | 0x67,0x2A,0x05, /* [3899] OBJ_set_policy */ | ||
558 | 0x67,0x2A,0x07, /* [3902] OBJ_set_certExt */ | ||
559 | 0x67,0x2A,0x08, /* [3905] OBJ_set_brand */ | ||
560 | 0x67,0x2A,0x00,0x00, /* [3908] OBJ_setct_PANData */ | ||
561 | 0x67,0x2A,0x00,0x01, /* [3912] OBJ_setct_PANToken */ | ||
562 | 0x67,0x2A,0x00,0x02, /* [3916] OBJ_setct_PANOnly */ | ||
563 | 0x67,0x2A,0x00,0x03, /* [3920] OBJ_setct_OIData */ | ||
564 | 0x67,0x2A,0x00,0x04, /* [3924] OBJ_setct_PI */ | ||
565 | 0x67,0x2A,0x00,0x05, /* [3928] OBJ_setct_PIData */ | ||
566 | 0x67,0x2A,0x00,0x06, /* [3932] OBJ_setct_PIDataUnsigned */ | ||
567 | 0x67,0x2A,0x00,0x07, /* [3936] OBJ_setct_HODInput */ | ||
568 | 0x67,0x2A,0x00,0x08, /* [3940] OBJ_setct_AuthResBaggage */ | ||
569 | 0x67,0x2A,0x00,0x09, /* [3944] OBJ_setct_AuthRevReqBaggage */ | ||
570 | 0x67,0x2A,0x00,0x0A, /* [3948] OBJ_setct_AuthRevResBaggage */ | ||
571 | 0x67,0x2A,0x00,0x0B, /* [3952] OBJ_setct_CapTokenSeq */ | ||
572 | 0x67,0x2A,0x00,0x0C, /* [3956] OBJ_setct_PInitResData */ | ||
573 | 0x67,0x2A,0x00,0x0D, /* [3960] OBJ_setct_PI_TBS */ | ||
574 | 0x67,0x2A,0x00,0x0E, /* [3964] OBJ_setct_PResData */ | ||
575 | 0x67,0x2A,0x00,0x10, /* [3968] OBJ_setct_AuthReqTBS */ | ||
576 | 0x67,0x2A,0x00,0x11, /* [3972] OBJ_setct_AuthResTBS */ | ||
577 | 0x67,0x2A,0x00,0x12, /* [3976] OBJ_setct_AuthResTBSX */ | ||
578 | 0x67,0x2A,0x00,0x13, /* [3980] OBJ_setct_AuthTokenTBS */ | ||
579 | 0x67,0x2A,0x00,0x14, /* [3984] OBJ_setct_CapTokenData */ | ||
580 | 0x67,0x2A,0x00,0x15, /* [3988] OBJ_setct_CapTokenTBS */ | ||
581 | 0x67,0x2A,0x00,0x16, /* [3992] OBJ_setct_AcqCardCodeMsg */ | ||
582 | 0x67,0x2A,0x00,0x17, /* [3996] OBJ_setct_AuthRevReqTBS */ | ||
583 | 0x67,0x2A,0x00,0x18, /* [4000] OBJ_setct_AuthRevResData */ | ||
584 | 0x67,0x2A,0x00,0x19, /* [4004] OBJ_setct_AuthRevResTBS */ | ||
585 | 0x67,0x2A,0x00,0x1A, /* [4008] OBJ_setct_CapReqTBS */ | ||
586 | 0x67,0x2A,0x00,0x1B, /* [4012] OBJ_setct_CapReqTBSX */ | ||
587 | 0x67,0x2A,0x00,0x1C, /* [4016] OBJ_setct_CapResData */ | ||
588 | 0x67,0x2A,0x00,0x1D, /* [4020] OBJ_setct_CapRevReqTBS */ | ||
589 | 0x67,0x2A,0x00,0x1E, /* [4024] OBJ_setct_CapRevReqTBSX */ | ||
590 | 0x67,0x2A,0x00,0x1F, /* [4028] OBJ_setct_CapRevResData */ | ||
591 | 0x67,0x2A,0x00,0x20, /* [4032] OBJ_setct_CredReqTBS */ | ||
592 | 0x67,0x2A,0x00,0x21, /* [4036] OBJ_setct_CredReqTBSX */ | ||
593 | 0x67,0x2A,0x00,0x22, /* [4040] OBJ_setct_CredResData */ | ||
594 | 0x67,0x2A,0x00,0x23, /* [4044] OBJ_setct_CredRevReqTBS */ | ||
595 | 0x67,0x2A,0x00,0x24, /* [4048] OBJ_setct_CredRevReqTBSX */ | ||
596 | 0x67,0x2A,0x00,0x25, /* [4052] OBJ_setct_CredRevResData */ | ||
597 | 0x67,0x2A,0x00,0x26, /* [4056] OBJ_setct_PCertReqData */ | ||
598 | 0x67,0x2A,0x00,0x27, /* [4060] OBJ_setct_PCertResTBS */ | ||
599 | 0x67,0x2A,0x00,0x28, /* [4064] OBJ_setct_BatchAdminReqData */ | ||
600 | 0x67,0x2A,0x00,0x29, /* [4068] OBJ_setct_BatchAdminResData */ | ||
601 | 0x67,0x2A,0x00,0x2A, /* [4072] OBJ_setct_CardCInitResTBS */ | ||
602 | 0x67,0x2A,0x00,0x2B, /* [4076] OBJ_setct_MeAqCInitResTBS */ | ||
603 | 0x67,0x2A,0x00,0x2C, /* [4080] OBJ_setct_RegFormResTBS */ | ||
604 | 0x67,0x2A,0x00,0x2D, /* [4084] OBJ_setct_CertReqData */ | ||
605 | 0x67,0x2A,0x00,0x2E, /* [4088] OBJ_setct_CertReqTBS */ | ||
606 | 0x67,0x2A,0x00,0x2F, /* [4092] OBJ_setct_CertResData */ | ||
607 | 0x67,0x2A,0x00,0x30, /* [4096] OBJ_setct_CertInqReqTBS */ | ||
608 | 0x67,0x2A,0x00,0x31, /* [4100] OBJ_setct_ErrorTBS */ | ||
609 | 0x67,0x2A,0x00,0x32, /* [4104] OBJ_setct_PIDualSignedTBE */ | ||
610 | 0x67,0x2A,0x00,0x33, /* [4108] OBJ_setct_PIUnsignedTBE */ | ||
611 | 0x67,0x2A,0x00,0x34, /* [4112] OBJ_setct_AuthReqTBE */ | ||
612 | 0x67,0x2A,0x00,0x35, /* [4116] OBJ_setct_AuthResTBE */ | ||
613 | 0x67,0x2A,0x00,0x36, /* [4120] OBJ_setct_AuthResTBEX */ | ||
614 | 0x67,0x2A,0x00,0x37, /* [4124] OBJ_setct_AuthTokenTBE */ | ||
615 | 0x67,0x2A,0x00,0x38, /* [4128] OBJ_setct_CapTokenTBE */ | ||
616 | 0x67,0x2A,0x00,0x39, /* [4132] OBJ_setct_CapTokenTBEX */ | ||
617 | 0x67,0x2A,0x00,0x3A, /* [4136] OBJ_setct_AcqCardCodeMsgTBE */ | ||
618 | 0x67,0x2A,0x00,0x3B, /* [4140] OBJ_setct_AuthRevReqTBE */ | ||
619 | 0x67,0x2A,0x00,0x3C, /* [4144] OBJ_setct_AuthRevResTBE */ | ||
620 | 0x67,0x2A,0x00,0x3D, /* [4148] OBJ_setct_AuthRevResTBEB */ | ||
621 | 0x67,0x2A,0x00,0x3E, /* [4152] OBJ_setct_CapReqTBE */ | ||
622 | 0x67,0x2A,0x00,0x3F, /* [4156] OBJ_setct_CapReqTBEX */ | ||
623 | 0x67,0x2A,0x00,0x40, /* [4160] OBJ_setct_CapResTBE */ | ||
624 | 0x67,0x2A,0x00,0x41, /* [4164] OBJ_setct_CapRevReqTBE */ | ||
625 | 0x67,0x2A,0x00,0x42, /* [4168] OBJ_setct_CapRevReqTBEX */ | ||
626 | 0x67,0x2A,0x00,0x43, /* [4172] OBJ_setct_CapRevResTBE */ | ||
627 | 0x67,0x2A,0x00,0x44, /* [4176] OBJ_setct_CredReqTBE */ | ||
628 | 0x67,0x2A,0x00,0x45, /* [4180] OBJ_setct_CredReqTBEX */ | ||
629 | 0x67,0x2A,0x00,0x46, /* [4184] OBJ_setct_CredResTBE */ | ||
630 | 0x67,0x2A,0x00,0x47, /* [4188] OBJ_setct_CredRevReqTBE */ | ||
631 | 0x67,0x2A,0x00,0x48, /* [4192] OBJ_setct_CredRevReqTBEX */ | ||
632 | 0x67,0x2A,0x00,0x49, /* [4196] OBJ_setct_CredRevResTBE */ | ||
633 | 0x67,0x2A,0x00,0x4A, /* [4200] OBJ_setct_BatchAdminReqTBE */ | ||
634 | 0x67,0x2A,0x00,0x4B, /* [4204] OBJ_setct_BatchAdminResTBE */ | ||
635 | 0x67,0x2A,0x00,0x4C, /* [4208] OBJ_setct_RegFormReqTBE */ | ||
636 | 0x67,0x2A,0x00,0x4D, /* [4212] OBJ_setct_CertReqTBE */ | ||
637 | 0x67,0x2A,0x00,0x4E, /* [4216] OBJ_setct_CertReqTBEX */ | ||
638 | 0x67,0x2A,0x00,0x4F, /* [4220] OBJ_setct_CertResTBE */ | ||
639 | 0x67,0x2A,0x00,0x50, /* [4224] OBJ_setct_CRLNotificationTBS */ | ||
640 | 0x67,0x2A,0x00,0x51, /* [4228] OBJ_setct_CRLNotificationResTBS */ | ||
641 | 0x67,0x2A,0x00,0x52, /* [4232] OBJ_setct_BCIDistributionTBS */ | ||
642 | 0x67,0x2A,0x01,0x01, /* [4236] OBJ_setext_genCrypt */ | ||
643 | 0x67,0x2A,0x01,0x03, /* [4240] OBJ_setext_miAuth */ | ||
644 | 0x67,0x2A,0x01,0x04, /* [4244] OBJ_setext_pinSecure */ | ||
645 | 0x67,0x2A,0x01,0x05, /* [4248] OBJ_setext_pinAny */ | ||
646 | 0x67,0x2A,0x01,0x07, /* [4252] OBJ_setext_track2 */ | ||
647 | 0x67,0x2A,0x01,0x08, /* [4256] OBJ_setext_cv */ | ||
648 | 0x67,0x2A,0x05,0x00, /* [4260] OBJ_set_policy_root */ | ||
649 | 0x67,0x2A,0x07,0x00, /* [4264] OBJ_setCext_hashedRoot */ | ||
650 | 0x67,0x2A,0x07,0x01, /* [4268] OBJ_setCext_certType */ | ||
651 | 0x67,0x2A,0x07,0x02, /* [4272] OBJ_setCext_merchData */ | ||
652 | 0x67,0x2A,0x07,0x03, /* [4276] OBJ_setCext_cCertRequired */ | ||
653 | 0x67,0x2A,0x07,0x04, /* [4280] OBJ_setCext_tunneling */ | ||
654 | 0x67,0x2A,0x07,0x05, /* [4284] OBJ_setCext_setExt */ | ||
655 | 0x67,0x2A,0x07,0x06, /* [4288] OBJ_setCext_setQualf */ | ||
656 | 0x67,0x2A,0x07,0x07, /* [4292] OBJ_setCext_PGWYcapabilities */ | ||
657 | 0x67,0x2A,0x07,0x08, /* [4296] OBJ_setCext_TokenIdentifier */ | ||
658 | 0x67,0x2A,0x07,0x09, /* [4300] OBJ_setCext_Track2Data */ | ||
659 | 0x67,0x2A,0x07,0x0A, /* [4304] OBJ_setCext_TokenType */ | ||
660 | 0x67,0x2A,0x07,0x0B, /* [4308] OBJ_setCext_IssuerCapabilities */ | ||
661 | 0x67,0x2A,0x03,0x00, /* [4312] OBJ_setAttr_Cert */ | ||
662 | 0x67,0x2A,0x03,0x01, /* [4316] OBJ_setAttr_PGWYcap */ | ||
663 | 0x67,0x2A,0x03,0x02, /* [4320] OBJ_setAttr_TokenType */ | ||
664 | 0x67,0x2A,0x03,0x03, /* [4324] OBJ_setAttr_IssCap */ | ||
665 | 0x67,0x2A,0x03,0x00,0x00, /* [4328] OBJ_set_rootKeyThumb */ | ||
666 | 0x67,0x2A,0x03,0x00,0x01, /* [4333] OBJ_set_addPolicy */ | ||
667 | 0x67,0x2A,0x03,0x02,0x01, /* [4338] OBJ_setAttr_Token_EMV */ | ||
668 | 0x67,0x2A,0x03,0x02,0x02, /* [4343] OBJ_setAttr_Token_B0Prime */ | ||
669 | 0x67,0x2A,0x03,0x03,0x03, /* [4348] OBJ_setAttr_IssCap_CVM */ | ||
670 | 0x67,0x2A,0x03,0x03,0x04, /* [4353] OBJ_setAttr_IssCap_T2 */ | ||
671 | 0x67,0x2A,0x03,0x03,0x05, /* [4358] OBJ_setAttr_IssCap_Sig */ | ||
672 | 0x67,0x2A,0x03,0x03,0x03,0x01, /* [4363] OBJ_setAttr_GenCryptgrm */ | ||
673 | 0x67,0x2A,0x03,0x03,0x04,0x01, /* [4369] OBJ_setAttr_T2Enc */ | ||
674 | 0x67,0x2A,0x03,0x03,0x04,0x02, /* [4375] OBJ_setAttr_T2cleartxt */ | ||
675 | 0x67,0x2A,0x03,0x03,0x05,0x01, /* [4381] OBJ_setAttr_TokICCsig */ | ||
676 | 0x67,0x2A,0x03,0x03,0x05,0x02, /* [4387] OBJ_setAttr_SecDevSig */ | ||
677 | 0x67,0x2A,0x08,0x01, /* [4393] OBJ_set_brand_IATA_ATA */ | ||
678 | 0x67,0x2A,0x08,0x1E, /* [4397] OBJ_set_brand_Diners */ | ||
679 | 0x67,0x2A,0x08,0x22, /* [4401] OBJ_set_brand_AmericanExpress */ | ||
680 | 0x67,0x2A,0x08,0x23, /* [4405] OBJ_set_brand_JCB */ | ||
681 | 0x67,0x2A,0x08,0x04, /* [4409] OBJ_set_brand_Visa */ | ||
682 | 0x67,0x2A,0x08,0x05, /* [4413] OBJ_set_brand_MasterCard */ | ||
683 | 0x67,0x2A,0x08,0xAE,0x7B, /* [4417] OBJ_set_brand_Novus */ | ||
684 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x0A, /* [4422] OBJ_des_cdmf */ | ||
685 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x06,/* [4430] OBJ_rsaOAEPEncryptionSET */ | ||
686 | 0x00, /* [4439] OBJ_itu_t */ | ||
687 | 0x50, /* [4440] OBJ_joint_iso_itu_t */ | ||
688 | 0x67, /* [4441] OBJ_international_organizations */ | ||
689 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x02,/* [4442] OBJ_ms_smartcard_login */ | ||
690 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x03,/* [4452] OBJ_ms_upn */ | ||
691 | 0x55,0x04,0x09, /* [4462] OBJ_streetAddress */ | ||
692 | 0x55,0x04,0x11, /* [4465] OBJ_postalCode */ | ||
693 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x15, /* [4468] OBJ_id_ppl */ | ||
694 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0E, /* [4475] OBJ_proxyCertInfo */ | ||
695 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x00, /* [4483] OBJ_id_ppl_anyLanguage */ | ||
696 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x01, /* [4491] OBJ_id_ppl_inheritAll */ | ||
697 | 0x55,0x1D,0x1E, /* [4499] OBJ_name_constraints */ | ||
698 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x02, /* [4502] OBJ_Independent */ | ||
699 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0B,/* [4510] OBJ_sha256WithRSAEncryption */ | ||
700 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0C,/* [4519] OBJ_sha384WithRSAEncryption */ | ||
701 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0D,/* [4528] OBJ_sha512WithRSAEncryption */ | ||
702 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0E,/* [4537] OBJ_sha224WithRSAEncryption */ | ||
703 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x01,/* [4546] OBJ_sha256 */ | ||
704 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x02,/* [4555] OBJ_sha384 */ | ||
705 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x03,/* [4564] OBJ_sha512 */ | ||
706 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x04,/* [4573] OBJ_sha224 */ | ||
707 | 0x2B, /* [4582] OBJ_identified_organization */ | ||
708 | 0x2B,0x81,0x04, /* [4583] OBJ_certicom_arc */ | ||
709 | 0x67,0x2B, /* [4586] OBJ_wap */ | ||
710 | 0x67,0x2B,0x0D, /* [4588] OBJ_wap_wsg */ | ||
711 | 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03, /* [4591] OBJ_X9_62_id_characteristic_two_basis */ | ||
712 | 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x01,/* [4599] OBJ_X9_62_onBasis */ | ||
713 | 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x02,/* [4608] OBJ_X9_62_tpBasis */ | ||
714 | 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x03,/* [4617] OBJ_X9_62_ppBasis */ | ||
715 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x01, /* [4626] OBJ_X9_62_c2pnb163v1 */ | ||
716 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x02, /* [4634] OBJ_X9_62_c2pnb163v2 */ | ||
717 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x03, /* [4642] OBJ_X9_62_c2pnb163v3 */ | ||
718 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x04, /* [4650] OBJ_X9_62_c2pnb176v1 */ | ||
719 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x05, /* [4658] OBJ_X9_62_c2tnb191v1 */ | ||
720 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x06, /* [4666] OBJ_X9_62_c2tnb191v2 */ | ||
721 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x07, /* [4674] OBJ_X9_62_c2tnb191v3 */ | ||
722 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x08, /* [4682] OBJ_X9_62_c2onb191v4 */ | ||
723 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x09, /* [4690] OBJ_X9_62_c2onb191v5 */ | ||
724 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0A, /* [4698] OBJ_X9_62_c2pnb208w1 */ | ||
725 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0B, /* [4706] OBJ_X9_62_c2tnb239v1 */ | ||
726 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0C, /* [4714] OBJ_X9_62_c2tnb239v2 */ | ||
727 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0D, /* [4722] OBJ_X9_62_c2tnb239v3 */ | ||
728 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0E, /* [4730] OBJ_X9_62_c2onb239v4 */ | ||
729 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0F, /* [4738] OBJ_X9_62_c2onb239v5 */ | ||
730 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x10, /* [4746] OBJ_X9_62_c2pnb272w1 */ | ||
731 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x11, /* [4754] OBJ_X9_62_c2pnb304w1 */ | ||
732 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x12, /* [4762] OBJ_X9_62_c2tnb359v1 */ | ||
733 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x13, /* [4770] OBJ_X9_62_c2pnb368w1 */ | ||
734 | 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x14, /* [4778] OBJ_X9_62_c2tnb431r1 */ | ||
735 | 0x2B,0x81,0x04,0x00,0x06, /* [4786] OBJ_secp112r1 */ | ||
736 | 0x2B,0x81,0x04,0x00,0x07, /* [4791] OBJ_secp112r2 */ | ||
737 | 0x2B,0x81,0x04,0x00,0x1C, /* [4796] OBJ_secp128r1 */ | ||
738 | 0x2B,0x81,0x04,0x00,0x1D, /* [4801] OBJ_secp128r2 */ | ||
739 | 0x2B,0x81,0x04,0x00,0x09, /* [4806] OBJ_secp160k1 */ | ||
740 | 0x2B,0x81,0x04,0x00,0x08, /* [4811] OBJ_secp160r1 */ | ||
741 | 0x2B,0x81,0x04,0x00,0x1E, /* [4816] OBJ_secp160r2 */ | ||
742 | 0x2B,0x81,0x04,0x00,0x1F, /* [4821] OBJ_secp192k1 */ | ||
743 | 0x2B,0x81,0x04,0x00,0x20, /* [4826] OBJ_secp224k1 */ | ||
744 | 0x2B,0x81,0x04,0x00,0x21, /* [4831] OBJ_secp224r1 */ | ||
745 | 0x2B,0x81,0x04,0x00,0x0A, /* [4836] OBJ_secp256k1 */ | ||
746 | 0x2B,0x81,0x04,0x00,0x22, /* [4841] OBJ_secp384r1 */ | ||
747 | 0x2B,0x81,0x04,0x00,0x23, /* [4846] OBJ_secp521r1 */ | ||
748 | 0x2B,0x81,0x04,0x00,0x04, /* [4851] OBJ_sect113r1 */ | ||
749 | 0x2B,0x81,0x04,0x00,0x05, /* [4856] OBJ_sect113r2 */ | ||
750 | 0x2B,0x81,0x04,0x00,0x16, /* [4861] OBJ_sect131r1 */ | ||
751 | 0x2B,0x81,0x04,0x00,0x17, /* [4866] OBJ_sect131r2 */ | ||
752 | 0x2B,0x81,0x04,0x00,0x01, /* [4871] OBJ_sect163k1 */ | ||
753 | 0x2B,0x81,0x04,0x00,0x02, /* [4876] OBJ_sect163r1 */ | ||
754 | 0x2B,0x81,0x04,0x00,0x0F, /* [4881] OBJ_sect163r2 */ | ||
755 | 0x2B,0x81,0x04,0x00,0x18, /* [4886] OBJ_sect193r1 */ | ||
756 | 0x2B,0x81,0x04,0x00,0x19, /* [4891] OBJ_sect193r2 */ | ||
757 | 0x2B,0x81,0x04,0x00,0x1A, /* [4896] OBJ_sect233k1 */ | ||
758 | 0x2B,0x81,0x04,0x00,0x1B, /* [4901] OBJ_sect233r1 */ | ||
759 | 0x2B,0x81,0x04,0x00,0x03, /* [4906] OBJ_sect239k1 */ | ||
760 | 0x2B,0x81,0x04,0x00,0x10, /* [4911] OBJ_sect283k1 */ | ||
761 | 0x2B,0x81,0x04,0x00,0x11, /* [4916] OBJ_sect283r1 */ | ||
762 | 0x2B,0x81,0x04,0x00,0x24, /* [4921] OBJ_sect409k1 */ | ||
763 | 0x2B,0x81,0x04,0x00,0x25, /* [4926] OBJ_sect409r1 */ | ||
764 | 0x2B,0x81,0x04,0x00,0x26, /* [4931] OBJ_sect571k1 */ | ||
765 | 0x2B,0x81,0x04,0x00,0x27, /* [4936] OBJ_sect571r1 */ | ||
766 | 0x67,0x2B,0x0D,0x04,0x01, /* [4941] OBJ_wap_wsg_idm_ecid_wtls1 */ | ||
767 | 0x67,0x2B,0x0D,0x04,0x03, /* [4946] OBJ_wap_wsg_idm_ecid_wtls3 */ | ||
768 | 0x67,0x2B,0x0D,0x04,0x04, /* [4951] OBJ_wap_wsg_idm_ecid_wtls4 */ | ||
769 | 0x67,0x2B,0x0D,0x04,0x05, /* [4956] OBJ_wap_wsg_idm_ecid_wtls5 */ | ||
770 | 0x67,0x2B,0x0D,0x04,0x06, /* [4961] OBJ_wap_wsg_idm_ecid_wtls6 */ | ||
771 | 0x67,0x2B,0x0D,0x04,0x07, /* [4966] OBJ_wap_wsg_idm_ecid_wtls7 */ | ||
772 | 0x67,0x2B,0x0D,0x04,0x08, /* [4971] OBJ_wap_wsg_idm_ecid_wtls8 */ | ||
773 | 0x67,0x2B,0x0D,0x04,0x09, /* [4976] OBJ_wap_wsg_idm_ecid_wtls9 */ | ||
774 | 0x67,0x2B,0x0D,0x04,0x0A, /* [4981] OBJ_wap_wsg_idm_ecid_wtls10 */ | ||
775 | 0x67,0x2B,0x0D,0x04,0x0B, /* [4986] OBJ_wap_wsg_idm_ecid_wtls11 */ | ||
776 | 0x67,0x2B,0x0D,0x04,0x0C, /* [4991] OBJ_wap_wsg_idm_ecid_wtls12 */ | ||
777 | 0x55,0x1D,0x20,0x00, /* [4996] OBJ_any_policy */ | ||
778 | 0x55,0x1D,0x21, /* [5000] OBJ_policy_mappings */ | ||
779 | 0x55,0x1D,0x36, /* [5003] OBJ_inhibit_any_policy */ | ||
780 | 0x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x01,0x02,/* [5006] OBJ_camellia_128_cbc */ | ||
781 | 0x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x01,0x03,/* [5017] OBJ_camellia_192_cbc */ | ||
782 | 0x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x01,0x04,/* [5028] OBJ_camellia_256_cbc */ | ||
783 | 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x01, /* [5039] OBJ_camellia_128_ecb */ | ||
784 | 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x15, /* [5047] OBJ_camellia_192_ecb */ | ||
785 | 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x29, /* [5055] OBJ_camellia_256_ecb */ | ||
786 | 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x04, /* [5063] OBJ_camellia_128_cfb128 */ | ||
787 | 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x18, /* [5071] OBJ_camellia_192_cfb128 */ | ||
788 | 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x2C, /* [5079] OBJ_camellia_256_cfb128 */ | ||
789 | 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x03, /* [5087] OBJ_camellia_128_ofb128 */ | ||
790 | 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x17, /* [5095] OBJ_camellia_192_ofb128 */ | ||
791 | 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x2B, /* [5103] OBJ_camellia_256_ofb128 */ | ||
792 | 0x55,0x1D,0x09, /* [5111] OBJ_subject_directory_attributes */ | ||
793 | 0x55,0x1D,0x1C, /* [5114] OBJ_issuing_distribution_point */ | ||
794 | 0x55,0x1D,0x1D, /* [5117] OBJ_certificate_issuer */ | ||
795 | 0x2A,0x83,0x1A,0x8C,0x9A,0x44, /* [5120] OBJ_kisa */ | ||
796 | 0x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x03, /* [5126] OBJ_seed_ecb */ | ||
797 | 0x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x04, /* [5134] OBJ_seed_cbc */ | ||
798 | 0x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x06, /* [5142] OBJ_seed_ofb128 */ | ||
799 | 0x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x05, /* [5150] OBJ_seed_cfb128 */ | ||
800 | 0x2B,0x06,0x01,0x05,0x05,0x08,0x01,0x01, /* [5158] OBJ_hmac_md5 */ | ||
801 | 0x2B,0x06,0x01,0x05,0x05,0x08,0x01,0x02, /* [5166] OBJ_hmac_sha1 */ | ||
802 | 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0D,/* [5174] OBJ_id_PasswordBasedMAC */ | ||
803 | 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x1E,/* [5183] OBJ_id_DHBasedMac */ | ||
804 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x10, /* [5192] OBJ_id_it_suppLangTags */ | ||
805 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x05, /* [5200] OBJ_caRepository */ | ||
806 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x09,/* [5208] OBJ_id_smime_ct_compressedData */ | ||
807 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x1B,/* [5219] OBJ_id_ct_asciiTextWithCRLF */ | ||
808 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x05,/* [5230] OBJ_id_aes128_wrap */ | ||
809 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x19,/* [5239] OBJ_id_aes192_wrap */ | ||
810 | 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2D,/* [5248] OBJ_id_aes256_wrap */ | ||
811 | }; | ||
812 | |||
813 | static ASN1_OBJECT nid_objs[NUM_NID]={ | ||
814 | {"UNDEF","undefined",NID_undef,1,&(lvalues[0]),0}, | ||
815 | {"rsadsi","RSA Data Security, Inc.",NID_rsadsi,6,&(lvalues[1]),0}, | ||
816 | {"pkcs","RSA Data Security, Inc. PKCS",NID_pkcs,7,&(lvalues[7]),0}, | ||
817 | {"MD2","md2",NID_md2,8,&(lvalues[14]),0}, | ||
818 | {"MD5","md5",NID_md5,8,&(lvalues[22]),0}, | ||
819 | {"RC4","rc4",NID_rc4,8,&(lvalues[30]),0}, | ||
820 | {"rsaEncryption","rsaEncryption",NID_rsaEncryption,9,&(lvalues[38]),0}, | ||
821 | {"RSA-MD2","md2WithRSAEncryption",NID_md2WithRSAEncryption,9, | ||
822 | &(lvalues[47]),0}, | ||
823 | {"RSA-MD5","md5WithRSAEncryption",NID_md5WithRSAEncryption,9, | ||
824 | &(lvalues[56]),0}, | ||
825 | {"PBE-MD2-DES","pbeWithMD2AndDES-CBC",NID_pbeWithMD2AndDES_CBC,9, | ||
826 | &(lvalues[65]),0}, | ||
827 | {"PBE-MD5-DES","pbeWithMD5AndDES-CBC",NID_pbeWithMD5AndDES_CBC,9, | ||
828 | &(lvalues[74]),0}, | ||
829 | {"X500","directory services (X.500)",NID_X500,1,&(lvalues[83]),0}, | ||
830 | {"X509","X509",NID_X509,2,&(lvalues[84]),0}, | ||
831 | {"CN","commonName",NID_commonName,3,&(lvalues[86]),0}, | ||
832 | {"C","countryName",NID_countryName,3,&(lvalues[89]),0}, | ||
833 | {"L","localityName",NID_localityName,3,&(lvalues[92]),0}, | ||
834 | {"ST","stateOrProvinceName",NID_stateOrProvinceName,3,&(lvalues[95]),0}, | ||
835 | {"O","organizationName",NID_organizationName,3,&(lvalues[98]),0}, | ||
836 | {"OU","organizationalUnitName",NID_organizationalUnitName,3, | ||
837 | &(lvalues[101]),0}, | ||
838 | {"RSA","rsa",NID_rsa,4,&(lvalues[104]),0}, | ||
839 | {"pkcs7","pkcs7",NID_pkcs7,8,&(lvalues[108]),0}, | ||
840 | {"pkcs7-data","pkcs7-data",NID_pkcs7_data,9,&(lvalues[116]),0}, | ||
841 | {"pkcs7-signedData","pkcs7-signedData",NID_pkcs7_signed,9, | ||
842 | &(lvalues[125]),0}, | ||
843 | {"pkcs7-envelopedData","pkcs7-envelopedData",NID_pkcs7_enveloped,9, | ||
844 | &(lvalues[134]),0}, | ||
845 | {"pkcs7-signedAndEnvelopedData","pkcs7-signedAndEnvelopedData", | ||
846 | NID_pkcs7_signedAndEnveloped,9,&(lvalues[143]),0}, | ||
847 | {"pkcs7-digestData","pkcs7-digestData",NID_pkcs7_digest,9, | ||
848 | &(lvalues[152]),0}, | ||
849 | {"pkcs7-encryptedData","pkcs7-encryptedData",NID_pkcs7_encrypted,9, | ||
850 | &(lvalues[161]),0}, | ||
851 | {"pkcs3","pkcs3",NID_pkcs3,8,&(lvalues[170]),0}, | ||
852 | {"dhKeyAgreement","dhKeyAgreement",NID_dhKeyAgreement,9, | ||
853 | &(lvalues[178]),0}, | ||
854 | {"DES-ECB","des-ecb",NID_des_ecb,5,&(lvalues[187]),0}, | ||
855 | {"DES-CFB","des-cfb",NID_des_cfb64,5,&(lvalues[192]),0}, | ||
856 | {"DES-CBC","des-cbc",NID_des_cbc,5,&(lvalues[197]),0}, | ||
857 | {"DES-EDE","des-ede",NID_des_ede_ecb,5,&(lvalues[202]),0}, | ||
858 | {"DES-EDE3","des-ede3",NID_des_ede3_ecb,0,NULL,0}, | ||
859 | {"IDEA-CBC","idea-cbc",NID_idea_cbc,11,&(lvalues[207]),0}, | ||
860 | {"IDEA-CFB","idea-cfb",NID_idea_cfb64,0,NULL,0}, | ||
861 | {"IDEA-ECB","idea-ecb",NID_idea_ecb,0,NULL,0}, | ||
862 | {"RC2-CBC","rc2-cbc",NID_rc2_cbc,8,&(lvalues[218]),0}, | ||
863 | {"RC2-ECB","rc2-ecb",NID_rc2_ecb,0,NULL,0}, | ||
864 | {"RC2-CFB","rc2-cfb",NID_rc2_cfb64,0,NULL,0}, | ||
865 | {"RC2-OFB","rc2-ofb",NID_rc2_ofb64,0,NULL,0}, | ||
866 | {"SHA","sha",NID_sha,5,&(lvalues[226]),0}, | ||
867 | {"RSA-SHA","shaWithRSAEncryption",NID_shaWithRSAEncryption,5, | ||
868 | &(lvalues[231]),0}, | ||
869 | {"DES-EDE-CBC","des-ede-cbc",NID_des_ede_cbc,0,NULL,0}, | ||
870 | {"DES-EDE3-CBC","des-ede3-cbc",NID_des_ede3_cbc,8,&(lvalues[236]),0}, | ||
871 | {"DES-OFB","des-ofb",NID_des_ofb64,5,&(lvalues[244]),0}, | ||
872 | {"IDEA-OFB","idea-ofb",NID_idea_ofb64,0,NULL,0}, | ||
873 | {"pkcs9","pkcs9",NID_pkcs9,8,&(lvalues[249]),0}, | ||
874 | {"emailAddress","emailAddress",NID_pkcs9_emailAddress,9, | ||
875 | &(lvalues[257]),0}, | ||
876 | {"unstructuredName","unstructuredName",NID_pkcs9_unstructuredName,9, | ||
877 | &(lvalues[266]),0}, | ||
878 | {"contentType","contentType",NID_pkcs9_contentType,9,&(lvalues[275]),0}, | ||
879 | {"messageDigest","messageDigest",NID_pkcs9_messageDigest,9, | ||
880 | &(lvalues[284]),0}, | ||
881 | {"signingTime","signingTime",NID_pkcs9_signingTime,9,&(lvalues[293]),0}, | ||
882 | {"countersignature","countersignature",NID_pkcs9_countersignature,9, | ||
883 | &(lvalues[302]),0}, | ||
884 | {"challengePassword","challengePassword",NID_pkcs9_challengePassword, | ||
885 | 9,&(lvalues[311]),0}, | ||
886 | {"unstructuredAddress","unstructuredAddress", | ||
887 | NID_pkcs9_unstructuredAddress,9,&(lvalues[320]),0}, | ||
888 | {"extendedCertificateAttributes","extendedCertificateAttributes", | ||
889 | NID_pkcs9_extCertAttributes,9,&(lvalues[329]),0}, | ||
890 | {"Netscape","Netscape Communications Corp.",NID_netscape,7, | ||
891 | &(lvalues[338]),0}, | ||
892 | {"nsCertExt","Netscape Certificate Extension", | ||
893 | NID_netscape_cert_extension,8,&(lvalues[345]),0}, | ||
894 | {"nsDataType","Netscape Data Type",NID_netscape_data_type,8, | ||
895 | &(lvalues[353]),0}, | ||
896 | {"DES-EDE-CFB","des-ede-cfb",NID_des_ede_cfb64,0,NULL,0}, | ||
897 | {"DES-EDE3-CFB","des-ede3-cfb",NID_des_ede3_cfb64,0,NULL,0}, | ||
898 | {"DES-EDE-OFB","des-ede-ofb",NID_des_ede_ofb64,0,NULL,0}, | ||
899 | {"DES-EDE3-OFB","des-ede3-ofb",NID_des_ede3_ofb64,0,NULL,0}, | ||
900 | {"SHA1","sha1",NID_sha1,5,&(lvalues[361]),0}, | ||
901 | {"RSA-SHA1","sha1WithRSAEncryption",NID_sha1WithRSAEncryption,9, | ||
902 | &(lvalues[366]),0}, | ||
903 | {"DSA-SHA","dsaWithSHA",NID_dsaWithSHA,5,&(lvalues[375]),0}, | ||
904 | {"DSA-old","dsaEncryption-old",NID_dsa_2,5,&(lvalues[380]),0}, | ||
905 | {"PBE-SHA1-RC2-64","pbeWithSHA1AndRC2-CBC",NID_pbeWithSHA1AndRC2_CBC, | ||
906 | 9,&(lvalues[385]),0}, | ||
907 | {"PBKDF2","PBKDF2",NID_id_pbkdf2,9,&(lvalues[394]),0}, | ||
908 | {"DSA-SHA1-old","dsaWithSHA1-old",NID_dsaWithSHA1_2,5,&(lvalues[403]),0}, | ||
909 | {"nsCertType","Netscape Cert Type",NID_netscape_cert_type,9, | ||
910 | &(lvalues[408]),0}, | ||
911 | {"nsBaseUrl","Netscape Base Url",NID_netscape_base_url,9, | ||
912 | &(lvalues[417]),0}, | ||
913 | {"nsRevocationUrl","Netscape Revocation Url", | ||
914 | NID_netscape_revocation_url,9,&(lvalues[426]),0}, | ||
915 | {"nsCaRevocationUrl","Netscape CA Revocation Url", | ||
916 | NID_netscape_ca_revocation_url,9,&(lvalues[435]),0}, | ||
917 | {"nsRenewalUrl","Netscape Renewal Url",NID_netscape_renewal_url,9, | ||
918 | &(lvalues[444]),0}, | ||
919 | {"nsCaPolicyUrl","Netscape CA Policy Url",NID_netscape_ca_policy_url, | ||
920 | 9,&(lvalues[453]),0}, | ||
921 | {"nsSslServerName","Netscape SSL Server Name", | ||
922 | NID_netscape_ssl_server_name,9,&(lvalues[462]),0}, | ||
923 | {"nsComment","Netscape Comment",NID_netscape_comment,9,&(lvalues[471]),0}, | ||
924 | {"nsCertSequence","Netscape Certificate Sequence", | ||
925 | NID_netscape_cert_sequence,9,&(lvalues[480]),0}, | ||
926 | {"DESX-CBC","desx-cbc",NID_desx_cbc,0,NULL,0}, | ||
927 | {"id-ce","id-ce",NID_id_ce,2,&(lvalues[489]),0}, | ||
928 | {"subjectKeyIdentifier","X509v3 Subject Key Identifier", | ||
929 | NID_subject_key_identifier,3,&(lvalues[491]),0}, | ||
930 | {"keyUsage","X509v3 Key Usage",NID_key_usage,3,&(lvalues[494]),0}, | ||
931 | {"privateKeyUsagePeriod","X509v3 Private Key Usage Period", | ||
932 | NID_private_key_usage_period,3,&(lvalues[497]),0}, | ||
933 | {"subjectAltName","X509v3 Subject Alternative Name", | ||
934 | NID_subject_alt_name,3,&(lvalues[500]),0}, | ||
935 | {"issuerAltName","X509v3 Issuer Alternative Name",NID_issuer_alt_name, | ||
936 | 3,&(lvalues[503]),0}, | ||
937 | {"basicConstraints","X509v3 Basic Constraints",NID_basic_constraints, | ||
938 | 3,&(lvalues[506]),0}, | ||
939 | {"crlNumber","X509v3 CRL Number",NID_crl_number,3,&(lvalues[509]),0}, | ||
940 | {"certificatePolicies","X509v3 Certificate Policies", | ||
941 | NID_certificate_policies,3,&(lvalues[512]),0}, | ||
942 | {"authorityKeyIdentifier","X509v3 Authority Key Identifier", | ||
943 | NID_authority_key_identifier,3,&(lvalues[515]),0}, | ||
944 | {"BF-CBC","bf-cbc",NID_bf_cbc,9,&(lvalues[518]),0}, | ||
945 | {"BF-ECB","bf-ecb",NID_bf_ecb,0,NULL,0}, | ||
946 | {"BF-CFB","bf-cfb",NID_bf_cfb64,0,NULL,0}, | ||
947 | {"BF-OFB","bf-ofb",NID_bf_ofb64,0,NULL,0}, | ||
948 | {"MDC2","mdc2",NID_mdc2,4,&(lvalues[527]),0}, | ||
949 | {"RSA-MDC2","mdc2WithRSA",NID_mdc2WithRSA,4,&(lvalues[531]),0}, | ||
950 | {"RC4-40","rc4-40",NID_rc4_40,0,NULL,0}, | ||
951 | {"RC2-40-CBC","rc2-40-cbc",NID_rc2_40_cbc,0,NULL,0}, | ||
952 | {"GN","givenName",NID_givenName,3,&(lvalues[535]),0}, | ||
953 | {"SN","surname",NID_surname,3,&(lvalues[538]),0}, | ||
954 | {"initials","initials",NID_initials,3,&(lvalues[541]),0}, | ||
955 | {NULL,NULL,NID_undef,0,NULL,0}, | ||
956 | {"crlDistributionPoints","X509v3 CRL Distribution Points", | ||
957 | NID_crl_distribution_points,3,&(lvalues[544]),0}, | ||
958 | {"RSA-NP-MD5","md5WithRSA",NID_md5WithRSA,5,&(lvalues[547]),0}, | ||
959 | {"serialNumber","serialNumber",NID_serialNumber,3,&(lvalues[552]),0}, | ||
960 | {"title","title",NID_title,3,&(lvalues[555]),0}, | ||
961 | {"description","description",NID_description,3,&(lvalues[558]),0}, | ||
962 | {"CAST5-CBC","cast5-cbc",NID_cast5_cbc,9,&(lvalues[561]),0}, | ||
963 | {"CAST5-ECB","cast5-ecb",NID_cast5_ecb,0,NULL,0}, | ||
964 | {"CAST5-CFB","cast5-cfb",NID_cast5_cfb64,0,NULL,0}, | ||
965 | {"CAST5-OFB","cast5-ofb",NID_cast5_ofb64,0,NULL,0}, | ||
966 | {"pbeWithMD5AndCast5CBC","pbeWithMD5AndCast5CBC", | ||
967 | NID_pbeWithMD5AndCast5_CBC,9,&(lvalues[570]),0}, | ||
968 | {"DSA-SHA1","dsaWithSHA1",NID_dsaWithSHA1,7,&(lvalues[579]),0}, | ||
969 | {"MD5-SHA1","md5-sha1",NID_md5_sha1,0,NULL,0}, | ||
970 | {"RSA-SHA1-2","sha1WithRSA",NID_sha1WithRSA,5,&(lvalues[586]),0}, | ||
971 | {"DSA","dsaEncryption",NID_dsa,7,&(lvalues[591]),0}, | ||
972 | {"RIPEMD160","ripemd160",NID_ripemd160,5,&(lvalues[598]),0}, | ||
973 | {NULL,NULL,NID_undef,0,NULL,0}, | ||
974 | {"RSA-RIPEMD160","ripemd160WithRSA",NID_ripemd160WithRSA,6, | ||
975 | &(lvalues[603]),0}, | ||
976 | {"RC5-CBC","rc5-cbc",NID_rc5_cbc,8,&(lvalues[609]),0}, | ||
977 | {"RC5-ECB","rc5-ecb",NID_rc5_ecb,0,NULL,0}, | ||
978 | {"RC5-CFB","rc5-cfb",NID_rc5_cfb64,0,NULL,0}, | ||
979 | {"RC5-OFB","rc5-ofb",NID_rc5_ofb64,0,NULL,0}, | ||
980 | {"RLE","run length compression",NID_rle_compression,6,&(lvalues[617]),0}, | ||
981 | {"ZLIB","zlib compression",NID_zlib_compression,11,&(lvalues[623]),0}, | ||
982 | {"extendedKeyUsage","X509v3 Extended Key Usage",NID_ext_key_usage,3, | ||
983 | &(lvalues[634]),0}, | ||
984 | {"PKIX","PKIX",NID_id_pkix,6,&(lvalues[637]),0}, | ||
985 | {"id-kp","id-kp",NID_id_kp,7,&(lvalues[643]),0}, | ||
986 | {"serverAuth","TLS Web Server Authentication",NID_server_auth,8, | ||
987 | &(lvalues[650]),0}, | ||
988 | {"clientAuth","TLS Web Client Authentication",NID_client_auth,8, | ||
989 | &(lvalues[658]),0}, | ||
990 | {"codeSigning","Code Signing",NID_code_sign,8,&(lvalues[666]),0}, | ||
991 | {"emailProtection","E-mail Protection",NID_email_protect,8, | ||
992 | &(lvalues[674]),0}, | ||
993 | {"timeStamping","Time Stamping",NID_time_stamp,8,&(lvalues[682]),0}, | ||
994 | {"msCodeInd","Microsoft Individual Code Signing",NID_ms_code_ind,10, | ||
995 | &(lvalues[690]),0}, | ||
996 | {"msCodeCom","Microsoft Commercial Code Signing",NID_ms_code_com,10, | ||
997 | &(lvalues[700]),0}, | ||
998 | {"msCTLSign","Microsoft Trust List Signing",NID_ms_ctl_sign,10, | ||
999 | &(lvalues[710]),0}, | ||
1000 | {"msSGC","Microsoft Server Gated Crypto",NID_ms_sgc,10,&(lvalues[720]),0}, | ||
1001 | {"msEFS","Microsoft Encrypted File System",NID_ms_efs,10, | ||
1002 | &(lvalues[730]),0}, | ||
1003 | {"nsSGC","Netscape Server Gated Crypto",NID_ns_sgc,9,&(lvalues[740]),0}, | ||
1004 | {"deltaCRL","X509v3 Delta CRL Indicator",NID_delta_crl,3, | ||
1005 | &(lvalues[749]),0}, | ||
1006 | {"CRLReason","X509v3 CRL Reason Code",NID_crl_reason,3,&(lvalues[752]),0}, | ||
1007 | {"invalidityDate","Invalidity Date",NID_invalidity_date,3, | ||
1008 | &(lvalues[755]),0}, | ||
1009 | {"SXNetID","Strong Extranet ID",NID_sxnet,5,&(lvalues[758]),0}, | ||
1010 | {"PBE-SHA1-RC4-128","pbeWithSHA1And128BitRC4", | ||
1011 | NID_pbe_WithSHA1And128BitRC4,10,&(lvalues[763]),0}, | ||
1012 | {"PBE-SHA1-RC4-40","pbeWithSHA1And40BitRC4", | ||
1013 | NID_pbe_WithSHA1And40BitRC4,10,&(lvalues[773]),0}, | ||
1014 | {"PBE-SHA1-3DES","pbeWithSHA1And3-KeyTripleDES-CBC", | ||
1015 | NID_pbe_WithSHA1And3_Key_TripleDES_CBC,10,&(lvalues[783]),0}, | ||
1016 | {"PBE-SHA1-2DES","pbeWithSHA1And2-KeyTripleDES-CBC", | ||
1017 | NID_pbe_WithSHA1And2_Key_TripleDES_CBC,10,&(lvalues[793]),0}, | ||
1018 | {"PBE-SHA1-RC2-128","pbeWithSHA1And128BitRC2-CBC", | ||
1019 | NID_pbe_WithSHA1And128BitRC2_CBC,10,&(lvalues[803]),0}, | ||
1020 | {"PBE-SHA1-RC2-40","pbeWithSHA1And40BitRC2-CBC", | ||
1021 | NID_pbe_WithSHA1And40BitRC2_CBC,10,&(lvalues[813]),0}, | ||
1022 | {"keyBag","keyBag",NID_keyBag,11,&(lvalues[823]),0}, | ||
1023 | {"pkcs8ShroudedKeyBag","pkcs8ShroudedKeyBag",NID_pkcs8ShroudedKeyBag, | ||
1024 | 11,&(lvalues[834]),0}, | ||
1025 | {"certBag","certBag",NID_certBag,11,&(lvalues[845]),0}, | ||
1026 | {"crlBag","crlBag",NID_crlBag,11,&(lvalues[856]),0}, | ||
1027 | {"secretBag","secretBag",NID_secretBag,11,&(lvalues[867]),0}, | ||
1028 | {"safeContentsBag","safeContentsBag",NID_safeContentsBag,11, | ||
1029 | &(lvalues[878]),0}, | ||
1030 | {"friendlyName","friendlyName",NID_friendlyName,9,&(lvalues[889]),0}, | ||
1031 | {"localKeyID","localKeyID",NID_localKeyID,9,&(lvalues[898]),0}, | ||
1032 | {"x509Certificate","x509Certificate",NID_x509Certificate,10, | ||
1033 | &(lvalues[907]),0}, | ||
1034 | {"sdsiCertificate","sdsiCertificate",NID_sdsiCertificate,10, | ||
1035 | &(lvalues[917]),0}, | ||
1036 | {"x509Crl","x509Crl",NID_x509Crl,10,&(lvalues[927]),0}, | ||
1037 | {"PBES2","PBES2",NID_pbes2,9,&(lvalues[937]),0}, | ||
1038 | {"PBMAC1","PBMAC1",NID_pbmac1,9,&(lvalues[946]),0}, | ||
1039 | {"hmacWithSHA1","hmacWithSHA1",NID_hmacWithSHA1,8,&(lvalues[955]),0}, | ||
1040 | {"id-qt-cps","Policy Qualifier CPS",NID_id_qt_cps,8,&(lvalues[963]),0}, | ||
1041 | {"id-qt-unotice","Policy Qualifier User Notice",NID_id_qt_unotice,8, | ||
1042 | &(lvalues[971]),0}, | ||
1043 | {"RC2-64-CBC","rc2-64-cbc",NID_rc2_64_cbc,0,NULL,0}, | ||
1044 | {"SMIME-CAPS","S/MIME Capabilities",NID_SMIMECapabilities,9, | ||
1045 | &(lvalues[979]),0}, | ||
1046 | {"PBE-MD2-RC2-64","pbeWithMD2AndRC2-CBC",NID_pbeWithMD2AndRC2_CBC,9, | ||
1047 | &(lvalues[988]),0}, | ||
1048 | {"PBE-MD5-RC2-64","pbeWithMD5AndRC2-CBC",NID_pbeWithMD5AndRC2_CBC,9, | ||
1049 | &(lvalues[997]),0}, | ||
1050 | {"PBE-SHA1-DES","pbeWithSHA1AndDES-CBC",NID_pbeWithSHA1AndDES_CBC,9, | ||
1051 | &(lvalues[1006]),0}, | ||
1052 | {"msExtReq","Microsoft Extension Request",NID_ms_ext_req,10, | ||
1053 | &(lvalues[1015]),0}, | ||
1054 | {"extReq","Extension Request",NID_ext_req,9,&(lvalues[1025]),0}, | ||
1055 | {"name","name",NID_name,3,&(lvalues[1034]),0}, | ||
1056 | {"dnQualifier","dnQualifier",NID_dnQualifier,3,&(lvalues[1037]),0}, | ||
1057 | {"id-pe","id-pe",NID_id_pe,7,&(lvalues[1040]),0}, | ||
1058 | {"id-ad","id-ad",NID_id_ad,7,&(lvalues[1047]),0}, | ||
1059 | {"authorityInfoAccess","Authority Information Access",NID_info_access, | ||
1060 | 8,&(lvalues[1054]),0}, | ||
1061 | {"OCSP","OCSP",NID_ad_OCSP,8,&(lvalues[1062]),0}, | ||
1062 | {"caIssuers","CA Issuers",NID_ad_ca_issuers,8,&(lvalues[1070]),0}, | ||
1063 | {"OCSPSigning","OCSP Signing",NID_OCSP_sign,8,&(lvalues[1078]),0}, | ||
1064 | {"ISO","iso",NID_iso,1,&(lvalues[1086]),0}, | ||
1065 | {"member-body","ISO Member Body",NID_member_body,1,&(lvalues[1087]),0}, | ||
1066 | {"ISO-US","ISO US Member Body",NID_ISO_US,3,&(lvalues[1088]),0}, | ||
1067 | {"X9-57","X9.57",NID_X9_57,5,&(lvalues[1091]),0}, | ||
1068 | {"X9cm","X9.57 CM ?",NID_X9cm,6,&(lvalues[1096]),0}, | ||
1069 | {"pkcs1","pkcs1",NID_pkcs1,8,&(lvalues[1102]),0}, | ||
1070 | {"pkcs5","pkcs5",NID_pkcs5,8,&(lvalues[1110]),0}, | ||
1071 | {"SMIME","S/MIME",NID_SMIME,9,&(lvalues[1118]),0}, | ||
1072 | {"id-smime-mod","id-smime-mod",NID_id_smime_mod,10,&(lvalues[1127]),0}, | ||
1073 | {"id-smime-ct","id-smime-ct",NID_id_smime_ct,10,&(lvalues[1137]),0}, | ||
1074 | {"id-smime-aa","id-smime-aa",NID_id_smime_aa,10,&(lvalues[1147]),0}, | ||
1075 | {"id-smime-alg","id-smime-alg",NID_id_smime_alg,10,&(lvalues[1157]),0}, | ||
1076 | {"id-smime-cd","id-smime-cd",NID_id_smime_cd,10,&(lvalues[1167]),0}, | ||
1077 | {"id-smime-spq","id-smime-spq",NID_id_smime_spq,10,&(lvalues[1177]),0}, | ||
1078 | {"id-smime-cti","id-smime-cti",NID_id_smime_cti,10,&(lvalues[1187]),0}, | ||
1079 | {"id-smime-mod-cms","id-smime-mod-cms",NID_id_smime_mod_cms,11, | ||
1080 | &(lvalues[1197]),0}, | ||
1081 | {"id-smime-mod-ess","id-smime-mod-ess",NID_id_smime_mod_ess,11, | ||
1082 | &(lvalues[1208]),0}, | ||
1083 | {"id-smime-mod-oid","id-smime-mod-oid",NID_id_smime_mod_oid,11, | ||
1084 | &(lvalues[1219]),0}, | ||
1085 | {"id-smime-mod-msg-v3","id-smime-mod-msg-v3",NID_id_smime_mod_msg_v3, | ||
1086 | 11,&(lvalues[1230]),0}, | ||
1087 | {"id-smime-mod-ets-eSignature-88","id-smime-mod-ets-eSignature-88", | ||
1088 | NID_id_smime_mod_ets_eSignature_88,11,&(lvalues[1241]),0}, | ||
1089 | {"id-smime-mod-ets-eSignature-97","id-smime-mod-ets-eSignature-97", | ||
1090 | NID_id_smime_mod_ets_eSignature_97,11,&(lvalues[1252]),0}, | ||
1091 | {"id-smime-mod-ets-eSigPolicy-88","id-smime-mod-ets-eSigPolicy-88", | ||
1092 | NID_id_smime_mod_ets_eSigPolicy_88,11,&(lvalues[1263]),0}, | ||
1093 | {"id-smime-mod-ets-eSigPolicy-97","id-smime-mod-ets-eSigPolicy-97", | ||
1094 | NID_id_smime_mod_ets_eSigPolicy_97,11,&(lvalues[1274]),0}, | ||
1095 | {"id-smime-ct-receipt","id-smime-ct-receipt",NID_id_smime_ct_receipt, | ||
1096 | 11,&(lvalues[1285]),0}, | ||
1097 | {"id-smime-ct-authData","id-smime-ct-authData", | ||
1098 | NID_id_smime_ct_authData,11,&(lvalues[1296]),0}, | ||
1099 | {"id-smime-ct-publishCert","id-smime-ct-publishCert", | ||
1100 | NID_id_smime_ct_publishCert,11,&(lvalues[1307]),0}, | ||
1101 | {"id-smime-ct-TSTInfo","id-smime-ct-TSTInfo",NID_id_smime_ct_TSTInfo, | ||
1102 | 11,&(lvalues[1318]),0}, | ||
1103 | {"id-smime-ct-TDTInfo","id-smime-ct-TDTInfo",NID_id_smime_ct_TDTInfo, | ||
1104 | 11,&(lvalues[1329]),0}, | ||
1105 | {"id-smime-ct-contentInfo","id-smime-ct-contentInfo", | ||
1106 | NID_id_smime_ct_contentInfo,11,&(lvalues[1340]),0}, | ||
1107 | {"id-smime-ct-DVCSRequestData","id-smime-ct-DVCSRequestData", | ||
1108 | NID_id_smime_ct_DVCSRequestData,11,&(lvalues[1351]),0}, | ||
1109 | {"id-smime-ct-DVCSResponseData","id-smime-ct-DVCSResponseData", | ||
1110 | NID_id_smime_ct_DVCSResponseData,11,&(lvalues[1362]),0}, | ||
1111 | {"id-smime-aa-receiptRequest","id-smime-aa-receiptRequest", | ||
1112 | NID_id_smime_aa_receiptRequest,11,&(lvalues[1373]),0}, | ||
1113 | {"id-smime-aa-securityLabel","id-smime-aa-securityLabel", | ||
1114 | NID_id_smime_aa_securityLabel,11,&(lvalues[1384]),0}, | ||
1115 | {"id-smime-aa-mlExpandHistory","id-smime-aa-mlExpandHistory", | ||
1116 | NID_id_smime_aa_mlExpandHistory,11,&(lvalues[1395]),0}, | ||
1117 | {"id-smime-aa-contentHint","id-smime-aa-contentHint", | ||
1118 | NID_id_smime_aa_contentHint,11,&(lvalues[1406]),0}, | ||
1119 | {"id-smime-aa-msgSigDigest","id-smime-aa-msgSigDigest", | ||
1120 | NID_id_smime_aa_msgSigDigest,11,&(lvalues[1417]),0}, | ||
1121 | {"id-smime-aa-encapContentType","id-smime-aa-encapContentType", | ||
1122 | NID_id_smime_aa_encapContentType,11,&(lvalues[1428]),0}, | ||
1123 | {"id-smime-aa-contentIdentifier","id-smime-aa-contentIdentifier", | ||
1124 | NID_id_smime_aa_contentIdentifier,11,&(lvalues[1439]),0}, | ||
1125 | {"id-smime-aa-macValue","id-smime-aa-macValue", | ||
1126 | NID_id_smime_aa_macValue,11,&(lvalues[1450]),0}, | ||
1127 | {"id-smime-aa-equivalentLabels","id-smime-aa-equivalentLabels", | ||
1128 | NID_id_smime_aa_equivalentLabels,11,&(lvalues[1461]),0}, | ||
1129 | {"id-smime-aa-contentReference","id-smime-aa-contentReference", | ||
1130 | NID_id_smime_aa_contentReference,11,&(lvalues[1472]),0}, | ||
1131 | {"id-smime-aa-encrypKeyPref","id-smime-aa-encrypKeyPref", | ||
1132 | NID_id_smime_aa_encrypKeyPref,11,&(lvalues[1483]),0}, | ||
1133 | {"id-smime-aa-signingCertificate","id-smime-aa-signingCertificate", | ||
1134 | NID_id_smime_aa_signingCertificate,11,&(lvalues[1494]),0}, | ||
1135 | {"id-smime-aa-smimeEncryptCerts","id-smime-aa-smimeEncryptCerts", | ||
1136 | NID_id_smime_aa_smimeEncryptCerts,11,&(lvalues[1505]),0}, | ||
1137 | {"id-smime-aa-timeStampToken","id-smime-aa-timeStampToken", | ||
1138 | NID_id_smime_aa_timeStampToken,11,&(lvalues[1516]),0}, | ||
1139 | {"id-smime-aa-ets-sigPolicyId","id-smime-aa-ets-sigPolicyId", | ||
1140 | NID_id_smime_aa_ets_sigPolicyId,11,&(lvalues[1527]),0}, | ||
1141 | {"id-smime-aa-ets-commitmentType","id-smime-aa-ets-commitmentType", | ||
1142 | NID_id_smime_aa_ets_commitmentType,11,&(lvalues[1538]),0}, | ||
1143 | {"id-smime-aa-ets-signerLocation","id-smime-aa-ets-signerLocation", | ||
1144 | NID_id_smime_aa_ets_signerLocation,11,&(lvalues[1549]),0}, | ||
1145 | {"id-smime-aa-ets-signerAttr","id-smime-aa-ets-signerAttr", | ||
1146 | NID_id_smime_aa_ets_signerAttr,11,&(lvalues[1560]),0}, | ||
1147 | {"id-smime-aa-ets-otherSigCert","id-smime-aa-ets-otherSigCert", | ||
1148 | NID_id_smime_aa_ets_otherSigCert,11,&(lvalues[1571]),0}, | ||
1149 | {"id-smime-aa-ets-contentTimestamp", | ||
1150 | "id-smime-aa-ets-contentTimestamp", | ||
1151 | NID_id_smime_aa_ets_contentTimestamp,11,&(lvalues[1582]),0}, | ||
1152 | {"id-smime-aa-ets-CertificateRefs","id-smime-aa-ets-CertificateRefs", | ||
1153 | NID_id_smime_aa_ets_CertificateRefs,11,&(lvalues[1593]),0}, | ||
1154 | {"id-smime-aa-ets-RevocationRefs","id-smime-aa-ets-RevocationRefs", | ||
1155 | NID_id_smime_aa_ets_RevocationRefs,11,&(lvalues[1604]),0}, | ||
1156 | {"id-smime-aa-ets-certValues","id-smime-aa-ets-certValues", | ||
1157 | NID_id_smime_aa_ets_certValues,11,&(lvalues[1615]),0}, | ||
1158 | {"id-smime-aa-ets-revocationValues", | ||
1159 | "id-smime-aa-ets-revocationValues", | ||
1160 | NID_id_smime_aa_ets_revocationValues,11,&(lvalues[1626]),0}, | ||
1161 | {"id-smime-aa-ets-escTimeStamp","id-smime-aa-ets-escTimeStamp", | ||
1162 | NID_id_smime_aa_ets_escTimeStamp,11,&(lvalues[1637]),0}, | ||
1163 | {"id-smime-aa-ets-certCRLTimestamp", | ||
1164 | "id-smime-aa-ets-certCRLTimestamp", | ||
1165 | NID_id_smime_aa_ets_certCRLTimestamp,11,&(lvalues[1648]),0}, | ||
1166 | {"id-smime-aa-ets-archiveTimeStamp", | ||
1167 | "id-smime-aa-ets-archiveTimeStamp", | ||
1168 | NID_id_smime_aa_ets_archiveTimeStamp,11,&(lvalues[1659]),0}, | ||
1169 | {"id-smime-aa-signatureType","id-smime-aa-signatureType", | ||
1170 | NID_id_smime_aa_signatureType,11,&(lvalues[1670]),0}, | ||
1171 | {"id-smime-aa-dvcs-dvc","id-smime-aa-dvcs-dvc", | ||
1172 | NID_id_smime_aa_dvcs_dvc,11,&(lvalues[1681]),0}, | ||
1173 | {"id-smime-alg-ESDHwith3DES","id-smime-alg-ESDHwith3DES", | ||
1174 | NID_id_smime_alg_ESDHwith3DES,11,&(lvalues[1692]),0}, | ||
1175 | {"id-smime-alg-ESDHwithRC2","id-smime-alg-ESDHwithRC2", | ||
1176 | NID_id_smime_alg_ESDHwithRC2,11,&(lvalues[1703]),0}, | ||
1177 | {"id-smime-alg-3DESwrap","id-smime-alg-3DESwrap", | ||
1178 | NID_id_smime_alg_3DESwrap,11,&(lvalues[1714]),0}, | ||
1179 | {"id-smime-alg-RC2wrap","id-smime-alg-RC2wrap", | ||
1180 | NID_id_smime_alg_RC2wrap,11,&(lvalues[1725]),0}, | ||
1181 | {"id-smime-alg-ESDH","id-smime-alg-ESDH",NID_id_smime_alg_ESDH,11, | ||
1182 | &(lvalues[1736]),0}, | ||
1183 | {"id-smime-alg-CMS3DESwrap","id-smime-alg-CMS3DESwrap", | ||
1184 | NID_id_smime_alg_CMS3DESwrap,11,&(lvalues[1747]),0}, | ||
1185 | {"id-smime-alg-CMSRC2wrap","id-smime-alg-CMSRC2wrap", | ||
1186 | NID_id_smime_alg_CMSRC2wrap,11,&(lvalues[1758]),0}, | ||
1187 | {"id-smime-cd-ldap","id-smime-cd-ldap",NID_id_smime_cd_ldap,11, | ||
1188 | &(lvalues[1769]),0}, | ||
1189 | {"id-smime-spq-ets-sqt-uri","id-smime-spq-ets-sqt-uri", | ||
1190 | NID_id_smime_spq_ets_sqt_uri,11,&(lvalues[1780]),0}, | ||
1191 | {"id-smime-spq-ets-sqt-unotice","id-smime-spq-ets-sqt-unotice", | ||
1192 | NID_id_smime_spq_ets_sqt_unotice,11,&(lvalues[1791]),0}, | ||
1193 | {"id-smime-cti-ets-proofOfOrigin","id-smime-cti-ets-proofOfOrigin", | ||
1194 | NID_id_smime_cti_ets_proofOfOrigin,11,&(lvalues[1802]),0}, | ||
1195 | {"id-smime-cti-ets-proofOfReceipt","id-smime-cti-ets-proofOfReceipt", | ||
1196 | NID_id_smime_cti_ets_proofOfReceipt,11,&(lvalues[1813]),0}, | ||
1197 | {"id-smime-cti-ets-proofOfDelivery", | ||
1198 | "id-smime-cti-ets-proofOfDelivery", | ||
1199 | NID_id_smime_cti_ets_proofOfDelivery,11,&(lvalues[1824]),0}, | ||
1200 | {"id-smime-cti-ets-proofOfSender","id-smime-cti-ets-proofOfSender", | ||
1201 | NID_id_smime_cti_ets_proofOfSender,11,&(lvalues[1835]),0}, | ||
1202 | {"id-smime-cti-ets-proofOfApproval", | ||
1203 | "id-smime-cti-ets-proofOfApproval", | ||
1204 | NID_id_smime_cti_ets_proofOfApproval,11,&(lvalues[1846]),0}, | ||
1205 | {"id-smime-cti-ets-proofOfCreation", | ||
1206 | "id-smime-cti-ets-proofOfCreation", | ||
1207 | NID_id_smime_cti_ets_proofOfCreation,11,&(lvalues[1857]),0}, | ||
1208 | {"MD4","md4",NID_md4,8,&(lvalues[1868]),0}, | ||
1209 | {"id-pkix-mod","id-pkix-mod",NID_id_pkix_mod,7,&(lvalues[1876]),0}, | ||
1210 | {"id-qt","id-qt",NID_id_qt,7,&(lvalues[1883]),0}, | ||
1211 | {"id-it","id-it",NID_id_it,7,&(lvalues[1890]),0}, | ||
1212 | {"id-pkip","id-pkip",NID_id_pkip,7,&(lvalues[1897]),0}, | ||
1213 | {"id-alg","id-alg",NID_id_alg,7,&(lvalues[1904]),0}, | ||
1214 | {"id-cmc","id-cmc",NID_id_cmc,7,&(lvalues[1911]),0}, | ||
1215 | {"id-on","id-on",NID_id_on,7,&(lvalues[1918]),0}, | ||
1216 | {"id-pda","id-pda",NID_id_pda,7,&(lvalues[1925]),0}, | ||
1217 | {"id-aca","id-aca",NID_id_aca,7,&(lvalues[1932]),0}, | ||
1218 | {"id-qcs","id-qcs",NID_id_qcs,7,&(lvalues[1939]),0}, | ||
1219 | {"id-cct","id-cct",NID_id_cct,7,&(lvalues[1946]),0}, | ||
1220 | {"id-pkix1-explicit-88","id-pkix1-explicit-88", | ||
1221 | NID_id_pkix1_explicit_88,8,&(lvalues[1953]),0}, | ||
1222 | {"id-pkix1-implicit-88","id-pkix1-implicit-88", | ||
1223 | NID_id_pkix1_implicit_88,8,&(lvalues[1961]),0}, | ||
1224 | {"id-pkix1-explicit-93","id-pkix1-explicit-93", | ||
1225 | NID_id_pkix1_explicit_93,8,&(lvalues[1969]),0}, | ||
1226 | {"id-pkix1-implicit-93","id-pkix1-implicit-93", | ||
1227 | NID_id_pkix1_implicit_93,8,&(lvalues[1977]),0}, | ||
1228 | {"id-mod-crmf","id-mod-crmf",NID_id_mod_crmf,8,&(lvalues[1985]),0}, | ||
1229 | {"id-mod-cmc","id-mod-cmc",NID_id_mod_cmc,8,&(lvalues[1993]),0}, | ||
1230 | {"id-mod-kea-profile-88","id-mod-kea-profile-88", | ||
1231 | NID_id_mod_kea_profile_88,8,&(lvalues[2001]),0}, | ||
1232 | {"id-mod-kea-profile-93","id-mod-kea-profile-93", | ||
1233 | NID_id_mod_kea_profile_93,8,&(lvalues[2009]),0}, | ||
1234 | {"id-mod-cmp","id-mod-cmp",NID_id_mod_cmp,8,&(lvalues[2017]),0}, | ||
1235 | {"id-mod-qualified-cert-88","id-mod-qualified-cert-88", | ||
1236 | NID_id_mod_qualified_cert_88,8,&(lvalues[2025]),0}, | ||
1237 | {"id-mod-qualified-cert-93","id-mod-qualified-cert-93", | ||
1238 | NID_id_mod_qualified_cert_93,8,&(lvalues[2033]),0}, | ||
1239 | {"id-mod-attribute-cert","id-mod-attribute-cert", | ||
1240 | NID_id_mod_attribute_cert,8,&(lvalues[2041]),0}, | ||
1241 | {"id-mod-timestamp-protocol","id-mod-timestamp-protocol", | ||
1242 | NID_id_mod_timestamp_protocol,8,&(lvalues[2049]),0}, | ||
1243 | {"id-mod-ocsp","id-mod-ocsp",NID_id_mod_ocsp,8,&(lvalues[2057]),0}, | ||
1244 | {"id-mod-dvcs","id-mod-dvcs",NID_id_mod_dvcs,8,&(lvalues[2065]),0}, | ||
1245 | {"id-mod-cmp2000","id-mod-cmp2000",NID_id_mod_cmp2000,8, | ||
1246 | &(lvalues[2073]),0}, | ||
1247 | {"biometricInfo","Biometric Info",NID_biometricInfo,8,&(lvalues[2081]),0}, | ||
1248 | {"qcStatements","qcStatements",NID_qcStatements,8,&(lvalues[2089]),0}, | ||
1249 | {"ac-auditEntity","ac-auditEntity",NID_ac_auditEntity,8, | ||
1250 | &(lvalues[2097]),0}, | ||
1251 | {"ac-targeting","ac-targeting",NID_ac_targeting,8,&(lvalues[2105]),0}, | ||
1252 | {"aaControls","aaControls",NID_aaControls,8,&(lvalues[2113]),0}, | ||
1253 | {"sbgp-ipAddrBlock","sbgp-ipAddrBlock",NID_sbgp_ipAddrBlock,8, | ||
1254 | &(lvalues[2121]),0}, | ||
1255 | {"sbgp-autonomousSysNum","sbgp-autonomousSysNum", | ||
1256 | NID_sbgp_autonomousSysNum,8,&(lvalues[2129]),0}, | ||
1257 | {"sbgp-routerIdentifier","sbgp-routerIdentifier", | ||
1258 | NID_sbgp_routerIdentifier,8,&(lvalues[2137]),0}, | ||
1259 | {"textNotice","textNotice",NID_textNotice,8,&(lvalues[2145]),0}, | ||
1260 | {"ipsecEndSystem","IPSec End System",NID_ipsecEndSystem,8, | ||
1261 | &(lvalues[2153]),0}, | ||
1262 | {"ipsecTunnel","IPSec Tunnel",NID_ipsecTunnel,8,&(lvalues[2161]),0}, | ||
1263 | {"ipsecUser","IPSec User",NID_ipsecUser,8,&(lvalues[2169]),0}, | ||
1264 | {"DVCS","dvcs",NID_dvcs,8,&(lvalues[2177]),0}, | ||
1265 | {"id-it-caProtEncCert","id-it-caProtEncCert",NID_id_it_caProtEncCert, | ||
1266 | 8,&(lvalues[2185]),0}, | ||
1267 | {"id-it-signKeyPairTypes","id-it-signKeyPairTypes", | ||
1268 | NID_id_it_signKeyPairTypes,8,&(lvalues[2193]),0}, | ||
1269 | {"id-it-encKeyPairTypes","id-it-encKeyPairTypes", | ||
1270 | NID_id_it_encKeyPairTypes,8,&(lvalues[2201]),0}, | ||
1271 | {"id-it-preferredSymmAlg","id-it-preferredSymmAlg", | ||
1272 | NID_id_it_preferredSymmAlg,8,&(lvalues[2209]),0}, | ||
1273 | {"id-it-caKeyUpdateInfo","id-it-caKeyUpdateInfo", | ||
1274 | NID_id_it_caKeyUpdateInfo,8,&(lvalues[2217]),0}, | ||
1275 | {"id-it-currentCRL","id-it-currentCRL",NID_id_it_currentCRL,8, | ||
1276 | &(lvalues[2225]),0}, | ||
1277 | {"id-it-unsupportedOIDs","id-it-unsupportedOIDs", | ||
1278 | NID_id_it_unsupportedOIDs,8,&(lvalues[2233]),0}, | ||
1279 | {"id-it-subscriptionRequest","id-it-subscriptionRequest", | ||
1280 | NID_id_it_subscriptionRequest,8,&(lvalues[2241]),0}, | ||
1281 | {"id-it-subscriptionResponse","id-it-subscriptionResponse", | ||
1282 | NID_id_it_subscriptionResponse,8,&(lvalues[2249]),0}, | ||
1283 | {"id-it-keyPairParamReq","id-it-keyPairParamReq", | ||
1284 | NID_id_it_keyPairParamReq,8,&(lvalues[2257]),0}, | ||
1285 | {"id-it-keyPairParamRep","id-it-keyPairParamRep", | ||
1286 | NID_id_it_keyPairParamRep,8,&(lvalues[2265]),0}, | ||
1287 | {"id-it-revPassphrase","id-it-revPassphrase",NID_id_it_revPassphrase, | ||
1288 | 8,&(lvalues[2273]),0}, | ||
1289 | {"id-it-implicitConfirm","id-it-implicitConfirm", | ||
1290 | NID_id_it_implicitConfirm,8,&(lvalues[2281]),0}, | ||
1291 | {"id-it-confirmWaitTime","id-it-confirmWaitTime", | ||
1292 | NID_id_it_confirmWaitTime,8,&(lvalues[2289]),0}, | ||
1293 | {"id-it-origPKIMessage","id-it-origPKIMessage", | ||
1294 | NID_id_it_origPKIMessage,8,&(lvalues[2297]),0}, | ||
1295 | {"id-regCtrl","id-regCtrl",NID_id_regCtrl,8,&(lvalues[2305]),0}, | ||
1296 | {"id-regInfo","id-regInfo",NID_id_regInfo,8,&(lvalues[2313]),0}, | ||
1297 | {"id-regCtrl-regToken","id-regCtrl-regToken",NID_id_regCtrl_regToken, | ||
1298 | 9,&(lvalues[2321]),0}, | ||
1299 | {"id-regCtrl-authenticator","id-regCtrl-authenticator", | ||
1300 | NID_id_regCtrl_authenticator,9,&(lvalues[2330]),0}, | ||
1301 | {"id-regCtrl-pkiPublicationInfo","id-regCtrl-pkiPublicationInfo", | ||
1302 | NID_id_regCtrl_pkiPublicationInfo,9,&(lvalues[2339]),0}, | ||
1303 | {"id-regCtrl-pkiArchiveOptions","id-regCtrl-pkiArchiveOptions", | ||
1304 | NID_id_regCtrl_pkiArchiveOptions,9,&(lvalues[2348]),0}, | ||
1305 | {"id-regCtrl-oldCertID","id-regCtrl-oldCertID", | ||
1306 | NID_id_regCtrl_oldCertID,9,&(lvalues[2357]),0}, | ||
1307 | {"id-regCtrl-protocolEncrKey","id-regCtrl-protocolEncrKey", | ||
1308 | NID_id_regCtrl_protocolEncrKey,9,&(lvalues[2366]),0}, | ||
1309 | {"id-regInfo-utf8Pairs","id-regInfo-utf8Pairs", | ||
1310 | NID_id_regInfo_utf8Pairs,9,&(lvalues[2375]),0}, | ||
1311 | {"id-regInfo-certReq","id-regInfo-certReq",NID_id_regInfo_certReq,9, | ||
1312 | &(lvalues[2384]),0}, | ||
1313 | {"id-alg-des40","id-alg-des40",NID_id_alg_des40,8,&(lvalues[2393]),0}, | ||
1314 | {"id-alg-noSignature","id-alg-noSignature",NID_id_alg_noSignature,8, | ||
1315 | &(lvalues[2401]),0}, | ||
1316 | {"id-alg-dh-sig-hmac-sha1","id-alg-dh-sig-hmac-sha1", | ||
1317 | NID_id_alg_dh_sig_hmac_sha1,8,&(lvalues[2409]),0}, | ||
1318 | {"id-alg-dh-pop","id-alg-dh-pop",NID_id_alg_dh_pop,8,&(lvalues[2417]),0}, | ||
1319 | {"id-cmc-statusInfo","id-cmc-statusInfo",NID_id_cmc_statusInfo,8, | ||
1320 | &(lvalues[2425]),0}, | ||
1321 | {"id-cmc-identification","id-cmc-identification", | ||
1322 | NID_id_cmc_identification,8,&(lvalues[2433]),0}, | ||
1323 | {"id-cmc-identityProof","id-cmc-identityProof", | ||
1324 | NID_id_cmc_identityProof,8,&(lvalues[2441]),0}, | ||
1325 | {"id-cmc-dataReturn","id-cmc-dataReturn",NID_id_cmc_dataReturn,8, | ||
1326 | &(lvalues[2449]),0}, | ||
1327 | {"id-cmc-transactionId","id-cmc-transactionId", | ||
1328 | NID_id_cmc_transactionId,8,&(lvalues[2457]),0}, | ||
1329 | {"id-cmc-senderNonce","id-cmc-senderNonce",NID_id_cmc_senderNonce,8, | ||
1330 | &(lvalues[2465]),0}, | ||
1331 | {"id-cmc-recipientNonce","id-cmc-recipientNonce", | ||
1332 | NID_id_cmc_recipientNonce,8,&(lvalues[2473]),0}, | ||
1333 | {"id-cmc-addExtensions","id-cmc-addExtensions", | ||
1334 | NID_id_cmc_addExtensions,8,&(lvalues[2481]),0}, | ||
1335 | {"id-cmc-encryptedPOP","id-cmc-encryptedPOP",NID_id_cmc_encryptedPOP, | ||
1336 | 8,&(lvalues[2489]),0}, | ||
1337 | {"id-cmc-decryptedPOP","id-cmc-decryptedPOP",NID_id_cmc_decryptedPOP, | ||
1338 | 8,&(lvalues[2497]),0}, | ||
1339 | {"id-cmc-lraPOPWitness","id-cmc-lraPOPWitness", | ||
1340 | NID_id_cmc_lraPOPWitness,8,&(lvalues[2505]),0}, | ||
1341 | {"id-cmc-getCert","id-cmc-getCert",NID_id_cmc_getCert,8, | ||
1342 | &(lvalues[2513]),0}, | ||
1343 | {"id-cmc-getCRL","id-cmc-getCRL",NID_id_cmc_getCRL,8,&(lvalues[2521]),0}, | ||
1344 | {"id-cmc-revokeRequest","id-cmc-revokeRequest", | ||
1345 | NID_id_cmc_revokeRequest,8,&(lvalues[2529]),0}, | ||
1346 | {"id-cmc-regInfo","id-cmc-regInfo",NID_id_cmc_regInfo,8, | ||
1347 | &(lvalues[2537]),0}, | ||
1348 | {"id-cmc-responseInfo","id-cmc-responseInfo",NID_id_cmc_responseInfo, | ||
1349 | 8,&(lvalues[2545]),0}, | ||
1350 | {"id-cmc-queryPending","id-cmc-queryPending",NID_id_cmc_queryPending, | ||
1351 | 8,&(lvalues[2553]),0}, | ||
1352 | {"id-cmc-popLinkRandom","id-cmc-popLinkRandom", | ||
1353 | NID_id_cmc_popLinkRandom,8,&(lvalues[2561]),0}, | ||
1354 | {"id-cmc-popLinkWitness","id-cmc-popLinkWitness", | ||
1355 | NID_id_cmc_popLinkWitness,8,&(lvalues[2569]),0}, | ||
1356 | {"id-cmc-confirmCertAcceptance","id-cmc-confirmCertAcceptance", | ||
1357 | NID_id_cmc_confirmCertAcceptance,8,&(lvalues[2577]),0}, | ||
1358 | {"id-on-personalData","id-on-personalData",NID_id_on_personalData,8, | ||
1359 | &(lvalues[2585]),0}, | ||
1360 | {"id-pda-dateOfBirth","id-pda-dateOfBirth",NID_id_pda_dateOfBirth,8, | ||
1361 | &(lvalues[2593]),0}, | ||
1362 | {"id-pda-placeOfBirth","id-pda-placeOfBirth",NID_id_pda_placeOfBirth, | ||
1363 | 8,&(lvalues[2601]),0}, | ||
1364 | {NULL,NULL,NID_undef,0,NULL,0}, | ||
1365 | {"id-pda-gender","id-pda-gender",NID_id_pda_gender,8,&(lvalues[2609]),0}, | ||
1366 | {"id-pda-countryOfCitizenship","id-pda-countryOfCitizenship", | ||
1367 | NID_id_pda_countryOfCitizenship,8,&(lvalues[2617]),0}, | ||
1368 | {"id-pda-countryOfResidence","id-pda-countryOfResidence", | ||
1369 | NID_id_pda_countryOfResidence,8,&(lvalues[2625]),0}, | ||
1370 | {"id-aca-authenticationInfo","id-aca-authenticationInfo", | ||
1371 | NID_id_aca_authenticationInfo,8,&(lvalues[2633]),0}, | ||
1372 | {"id-aca-accessIdentity","id-aca-accessIdentity", | ||
1373 | NID_id_aca_accessIdentity,8,&(lvalues[2641]),0}, | ||
1374 | {"id-aca-chargingIdentity","id-aca-chargingIdentity", | ||
1375 | NID_id_aca_chargingIdentity,8,&(lvalues[2649]),0}, | ||
1376 | {"id-aca-group","id-aca-group",NID_id_aca_group,8,&(lvalues[2657]),0}, | ||
1377 | {"id-aca-role","id-aca-role",NID_id_aca_role,8,&(lvalues[2665]),0}, | ||
1378 | {"id-qcs-pkixQCSyntax-v1","id-qcs-pkixQCSyntax-v1", | ||
1379 | NID_id_qcs_pkixQCSyntax_v1,8,&(lvalues[2673]),0}, | ||
1380 | {"id-cct-crs","id-cct-crs",NID_id_cct_crs,8,&(lvalues[2681]),0}, | ||
1381 | {"id-cct-PKIData","id-cct-PKIData",NID_id_cct_PKIData,8, | ||
1382 | &(lvalues[2689]),0}, | ||
1383 | {"id-cct-PKIResponse","id-cct-PKIResponse",NID_id_cct_PKIResponse,8, | ||
1384 | &(lvalues[2697]),0}, | ||
1385 | {"ad_timestamping","AD Time Stamping",NID_ad_timeStamping,8, | ||
1386 | &(lvalues[2705]),0}, | ||
1387 | {"AD_DVCS","ad dvcs",NID_ad_dvcs,8,&(lvalues[2713]),0}, | ||
1388 | {"basicOCSPResponse","Basic OCSP Response",NID_id_pkix_OCSP_basic,9, | ||
1389 | &(lvalues[2721]),0}, | ||
1390 | {"Nonce","OCSP Nonce",NID_id_pkix_OCSP_Nonce,9,&(lvalues[2730]),0}, | ||
1391 | {"CrlID","OCSP CRL ID",NID_id_pkix_OCSP_CrlID,9,&(lvalues[2739]),0}, | ||
1392 | {"acceptableResponses","Acceptable OCSP Responses", | ||
1393 | NID_id_pkix_OCSP_acceptableResponses,9,&(lvalues[2748]),0}, | ||
1394 | {"noCheck","OCSP No Check",NID_id_pkix_OCSP_noCheck,9,&(lvalues[2757]),0}, | ||
1395 | {"archiveCutoff","OCSP Archive Cutoff",NID_id_pkix_OCSP_archiveCutoff, | ||
1396 | 9,&(lvalues[2766]),0}, | ||
1397 | {"serviceLocator","OCSP Service Locator", | ||
1398 | NID_id_pkix_OCSP_serviceLocator,9,&(lvalues[2775]),0}, | ||
1399 | {"extendedStatus","Extended OCSP Status", | ||
1400 | NID_id_pkix_OCSP_extendedStatus,9,&(lvalues[2784]),0}, | ||
1401 | {"valid","valid",NID_id_pkix_OCSP_valid,9,&(lvalues[2793]),0}, | ||
1402 | {"path","path",NID_id_pkix_OCSP_path,9,&(lvalues[2802]),0}, | ||
1403 | {"trustRoot","Trust Root",NID_id_pkix_OCSP_trustRoot,9, | ||
1404 | &(lvalues[2811]),0}, | ||
1405 | {"algorithm","algorithm",NID_algorithm,4,&(lvalues[2820]),0}, | ||
1406 | {"rsaSignature","rsaSignature",NID_rsaSignature,5,&(lvalues[2824]),0}, | ||
1407 | {"X500algorithms","directory services - algorithms", | ||
1408 | NID_X500algorithms,2,&(lvalues[2829]),0}, | ||
1409 | {"ORG","org",NID_org,1,&(lvalues[2831]),0}, | ||
1410 | {"DOD","dod",NID_dod,2,&(lvalues[2832]),0}, | ||
1411 | {"IANA","iana",NID_iana,3,&(lvalues[2834]),0}, | ||
1412 | {"directory","Directory",NID_Directory,4,&(lvalues[2837]),0}, | ||
1413 | {"mgmt","Management",NID_Management,4,&(lvalues[2841]),0}, | ||
1414 | {"experimental","Experimental",NID_Experimental,4,&(lvalues[2845]),0}, | ||
1415 | {"private","Private",NID_Private,4,&(lvalues[2849]),0}, | ||
1416 | {"security","Security",NID_Security,4,&(lvalues[2853]),0}, | ||
1417 | {"snmpv2","SNMPv2",NID_SNMPv2,4,&(lvalues[2857]),0}, | ||
1418 | {"Mail","Mail",NID_Mail,4,&(lvalues[2861]),0}, | ||
1419 | {"enterprises","Enterprises",NID_Enterprises,5,&(lvalues[2865]),0}, | ||
1420 | {"dcobject","dcObject",NID_dcObject,9,&(lvalues[2870]),0}, | ||
1421 | {"DC","domainComponent",NID_domainComponent,10,&(lvalues[2879]),0}, | ||
1422 | {"domain","Domain",NID_Domain,10,&(lvalues[2889]),0}, | ||
1423 | {"NULL","NULL",NID_joint_iso_ccitt,1,&(lvalues[2899]),0}, | ||
1424 | {"selected-attribute-types","Selected Attribute Types", | ||
1425 | NID_selected_attribute_types,3,&(lvalues[2900]),0}, | ||
1426 | {"clearance","clearance",NID_clearance,4,&(lvalues[2903]),0}, | ||
1427 | {"RSA-MD4","md4WithRSAEncryption",NID_md4WithRSAEncryption,9, | ||
1428 | &(lvalues[2907]),0}, | ||
1429 | {"ac-proxying","ac-proxying",NID_ac_proxying,8,&(lvalues[2916]),0}, | ||
1430 | {"subjectInfoAccess","Subject Information Access",NID_sinfo_access,8, | ||
1431 | &(lvalues[2924]),0}, | ||
1432 | {"id-aca-encAttrs","id-aca-encAttrs",NID_id_aca_encAttrs,8, | ||
1433 | &(lvalues[2932]),0}, | ||
1434 | {"role","role",NID_role,3,&(lvalues[2940]),0}, | ||
1435 | {"policyConstraints","X509v3 Policy Constraints", | ||
1436 | NID_policy_constraints,3,&(lvalues[2943]),0}, | ||
1437 | {"targetInformation","X509v3 AC Targeting",NID_target_information,3, | ||
1438 | &(lvalues[2946]),0}, | ||
1439 | {"noRevAvail","X509v3 No Revocation Available",NID_no_rev_avail,3, | ||
1440 | &(lvalues[2949]),0}, | ||
1441 | {"NULL","NULL",NID_ccitt,1,&(lvalues[2952]),0}, | ||
1442 | {"ansi-X9-62","ANSI X9.62",NID_ansi_X9_62,5,&(lvalues[2953]),0}, | ||
1443 | {"prime-field","prime-field",NID_X9_62_prime_field,7,&(lvalues[2958]),0}, | ||
1444 | {"characteristic-two-field","characteristic-two-field", | ||
1445 | NID_X9_62_characteristic_two_field,7,&(lvalues[2965]),0}, | ||
1446 | {"id-ecPublicKey","id-ecPublicKey",NID_X9_62_id_ecPublicKey,7, | ||
1447 | &(lvalues[2972]),0}, | ||
1448 | {"prime192v1","prime192v1",NID_X9_62_prime192v1,8,&(lvalues[2979]),0}, | ||
1449 | {"prime192v2","prime192v2",NID_X9_62_prime192v2,8,&(lvalues[2987]),0}, | ||
1450 | {"prime192v3","prime192v3",NID_X9_62_prime192v3,8,&(lvalues[2995]),0}, | ||
1451 | {"prime239v1","prime239v1",NID_X9_62_prime239v1,8,&(lvalues[3003]),0}, | ||
1452 | {"prime239v2","prime239v2",NID_X9_62_prime239v2,8,&(lvalues[3011]),0}, | ||
1453 | {"prime239v3","prime239v3",NID_X9_62_prime239v3,8,&(lvalues[3019]),0}, | ||
1454 | {"prime256v1","prime256v1",NID_X9_62_prime256v1,8,&(lvalues[3027]),0}, | ||
1455 | {"ecdsa-with-SHA1","ecdsa-with-SHA1",NID_ecdsa_with_SHA1,7, | ||
1456 | &(lvalues[3035]),0}, | ||
1457 | {"CSPName","Microsoft CSP Name",NID_ms_csp_name,9,&(lvalues[3042]),0}, | ||
1458 | {"AES-128-ECB","aes-128-ecb",NID_aes_128_ecb,9,&(lvalues[3051]),0}, | ||
1459 | {"AES-128-CBC","aes-128-cbc",NID_aes_128_cbc,9,&(lvalues[3060]),0}, | ||
1460 | {"AES-128-OFB","aes-128-ofb",NID_aes_128_ofb128,9,&(lvalues[3069]),0}, | ||
1461 | {"AES-128-CFB","aes-128-cfb",NID_aes_128_cfb128,9,&(lvalues[3078]),0}, | ||
1462 | {"AES-192-ECB","aes-192-ecb",NID_aes_192_ecb,9,&(lvalues[3087]),0}, | ||
1463 | {"AES-192-CBC","aes-192-cbc",NID_aes_192_cbc,9,&(lvalues[3096]),0}, | ||
1464 | {"AES-192-OFB","aes-192-ofb",NID_aes_192_ofb128,9,&(lvalues[3105]),0}, | ||
1465 | {"AES-192-CFB","aes-192-cfb",NID_aes_192_cfb128,9,&(lvalues[3114]),0}, | ||
1466 | {"AES-256-ECB","aes-256-ecb",NID_aes_256_ecb,9,&(lvalues[3123]),0}, | ||
1467 | {"AES-256-CBC","aes-256-cbc",NID_aes_256_cbc,9,&(lvalues[3132]),0}, | ||
1468 | {"AES-256-OFB","aes-256-ofb",NID_aes_256_ofb128,9,&(lvalues[3141]),0}, | ||
1469 | {"AES-256-CFB","aes-256-cfb",NID_aes_256_cfb128,9,&(lvalues[3150]),0}, | ||
1470 | {"holdInstructionCode","Hold Instruction Code", | ||
1471 | NID_hold_instruction_code,3,&(lvalues[3159]),0}, | ||
1472 | {"holdInstructionNone","Hold Instruction None", | ||
1473 | NID_hold_instruction_none,7,&(lvalues[3162]),0}, | ||
1474 | {"holdInstructionCallIssuer","Hold Instruction Call Issuer", | ||
1475 | NID_hold_instruction_call_issuer,7,&(lvalues[3169]),0}, | ||
1476 | {"holdInstructionReject","Hold Instruction Reject", | ||
1477 | NID_hold_instruction_reject,7,&(lvalues[3176]),0}, | ||
1478 | {"data","data",NID_data,1,&(lvalues[3183]),0}, | ||
1479 | {"pss","pss",NID_pss,3,&(lvalues[3184]),0}, | ||
1480 | {"ucl","ucl",NID_ucl,7,&(lvalues[3187]),0}, | ||
1481 | {"pilot","pilot",NID_pilot,8,&(lvalues[3194]),0}, | ||
1482 | {"pilotAttributeType","pilotAttributeType",NID_pilotAttributeType,9, | ||
1483 | &(lvalues[3202]),0}, | ||
1484 | {"pilotAttributeSyntax","pilotAttributeSyntax", | ||
1485 | NID_pilotAttributeSyntax,9,&(lvalues[3211]),0}, | ||
1486 | {"pilotObjectClass","pilotObjectClass",NID_pilotObjectClass,9, | ||
1487 | &(lvalues[3220]),0}, | ||
1488 | {"pilotGroups","pilotGroups",NID_pilotGroups,9,&(lvalues[3229]),0}, | ||
1489 | {"iA5StringSyntax","iA5StringSyntax",NID_iA5StringSyntax,10, | ||
1490 | &(lvalues[3238]),0}, | ||
1491 | {"caseIgnoreIA5StringSyntax","caseIgnoreIA5StringSyntax", | ||
1492 | NID_caseIgnoreIA5StringSyntax,10,&(lvalues[3248]),0}, | ||
1493 | {"pilotObject","pilotObject",NID_pilotObject,10,&(lvalues[3258]),0}, | ||
1494 | {"pilotPerson","pilotPerson",NID_pilotPerson,10,&(lvalues[3268]),0}, | ||
1495 | {"account","account",NID_account,10,&(lvalues[3278]),0}, | ||
1496 | {"document","document",NID_document,10,&(lvalues[3288]),0}, | ||
1497 | {"room","room",NID_room,10,&(lvalues[3298]),0}, | ||
1498 | {"documentSeries","documentSeries",NID_documentSeries,10, | ||
1499 | &(lvalues[3308]),0}, | ||
1500 | {"rFC822localPart","rFC822localPart",NID_rFC822localPart,10, | ||
1501 | &(lvalues[3318]),0}, | ||
1502 | {"dNSDomain","dNSDomain",NID_dNSDomain,10,&(lvalues[3328]),0}, | ||
1503 | {"domainRelatedObject","domainRelatedObject",NID_domainRelatedObject, | ||
1504 | 10,&(lvalues[3338]),0}, | ||
1505 | {"friendlyCountry","friendlyCountry",NID_friendlyCountry,10, | ||
1506 | &(lvalues[3348]),0}, | ||
1507 | {"simpleSecurityObject","simpleSecurityObject", | ||
1508 | NID_simpleSecurityObject,10,&(lvalues[3358]),0}, | ||
1509 | {"pilotOrganization","pilotOrganization",NID_pilotOrganization,10, | ||
1510 | &(lvalues[3368]),0}, | ||
1511 | {"pilotDSA","pilotDSA",NID_pilotDSA,10,&(lvalues[3378]),0}, | ||
1512 | {"qualityLabelledData","qualityLabelledData",NID_qualityLabelledData, | ||
1513 | 10,&(lvalues[3388]),0}, | ||
1514 | {"UID","userId",NID_userId,10,&(lvalues[3398]),0}, | ||
1515 | {"textEncodedORAddress","textEncodedORAddress", | ||
1516 | NID_textEncodedORAddress,10,&(lvalues[3408]),0}, | ||
1517 | {"mail","rfc822Mailbox",NID_rfc822Mailbox,10,&(lvalues[3418]),0}, | ||
1518 | {"info","info",NID_info,10,&(lvalues[3428]),0}, | ||
1519 | {"favouriteDrink","favouriteDrink",NID_favouriteDrink,10, | ||
1520 | &(lvalues[3438]),0}, | ||
1521 | {"roomNumber","roomNumber",NID_roomNumber,10,&(lvalues[3448]),0}, | ||
1522 | {"photo","photo",NID_photo,10,&(lvalues[3458]),0}, | ||
1523 | {"userClass","userClass",NID_userClass,10,&(lvalues[3468]),0}, | ||
1524 | {"host","host",NID_host,10,&(lvalues[3478]),0}, | ||
1525 | {"manager","manager",NID_manager,10,&(lvalues[3488]),0}, | ||
1526 | {"documentIdentifier","documentIdentifier",NID_documentIdentifier,10, | ||
1527 | &(lvalues[3498]),0}, | ||
1528 | {"documentTitle","documentTitle",NID_documentTitle,10,&(lvalues[3508]),0}, | ||
1529 | {"documentVersion","documentVersion",NID_documentVersion,10, | ||
1530 | &(lvalues[3518]),0}, | ||
1531 | {"documentAuthor","documentAuthor",NID_documentAuthor,10, | ||
1532 | &(lvalues[3528]),0}, | ||
1533 | {"documentLocation","documentLocation",NID_documentLocation,10, | ||
1534 | &(lvalues[3538]),0}, | ||
1535 | {"homeTelephoneNumber","homeTelephoneNumber",NID_homeTelephoneNumber, | ||
1536 | 10,&(lvalues[3548]),0}, | ||
1537 | {"secretary","secretary",NID_secretary,10,&(lvalues[3558]),0}, | ||
1538 | {"otherMailbox","otherMailbox",NID_otherMailbox,10,&(lvalues[3568]),0}, | ||
1539 | {"lastModifiedTime","lastModifiedTime",NID_lastModifiedTime,10, | ||
1540 | &(lvalues[3578]),0}, | ||
1541 | {"lastModifiedBy","lastModifiedBy",NID_lastModifiedBy,10, | ||
1542 | &(lvalues[3588]),0}, | ||
1543 | {"aRecord","aRecord",NID_aRecord,10,&(lvalues[3598]),0}, | ||
1544 | {"pilotAttributeType27","pilotAttributeType27", | ||
1545 | NID_pilotAttributeType27,10,&(lvalues[3608]),0}, | ||
1546 | {"mXRecord","mXRecord",NID_mXRecord,10,&(lvalues[3618]),0}, | ||
1547 | {"nSRecord","nSRecord",NID_nSRecord,10,&(lvalues[3628]),0}, | ||
1548 | {"sOARecord","sOARecord",NID_sOARecord,10,&(lvalues[3638]),0}, | ||
1549 | {"cNAMERecord","cNAMERecord",NID_cNAMERecord,10,&(lvalues[3648]),0}, | ||
1550 | {"associatedDomain","associatedDomain",NID_associatedDomain,10, | ||
1551 | &(lvalues[3658]),0}, | ||
1552 | {"associatedName","associatedName",NID_associatedName,10, | ||
1553 | &(lvalues[3668]),0}, | ||
1554 | {"homePostalAddress","homePostalAddress",NID_homePostalAddress,10, | ||
1555 | &(lvalues[3678]),0}, | ||
1556 | {"personalTitle","personalTitle",NID_personalTitle,10,&(lvalues[3688]),0}, | ||
1557 | {"mobileTelephoneNumber","mobileTelephoneNumber", | ||
1558 | NID_mobileTelephoneNumber,10,&(lvalues[3698]),0}, | ||
1559 | {"pagerTelephoneNumber","pagerTelephoneNumber", | ||
1560 | NID_pagerTelephoneNumber,10,&(lvalues[3708]),0}, | ||
1561 | {"friendlyCountryName","friendlyCountryName",NID_friendlyCountryName, | ||
1562 | 10,&(lvalues[3718]),0}, | ||
1563 | {"organizationalStatus","organizationalStatus", | ||
1564 | NID_organizationalStatus,10,&(lvalues[3728]),0}, | ||
1565 | {"janetMailbox","janetMailbox",NID_janetMailbox,10,&(lvalues[3738]),0}, | ||
1566 | {"mailPreferenceOption","mailPreferenceOption", | ||
1567 | NID_mailPreferenceOption,10,&(lvalues[3748]),0}, | ||
1568 | {"buildingName","buildingName",NID_buildingName,10,&(lvalues[3758]),0}, | ||
1569 | {"dSAQuality","dSAQuality",NID_dSAQuality,10,&(lvalues[3768]),0}, | ||
1570 | {"singleLevelQuality","singleLevelQuality",NID_singleLevelQuality,10, | ||
1571 | &(lvalues[3778]),0}, | ||
1572 | {"subtreeMinimumQuality","subtreeMinimumQuality", | ||
1573 | NID_subtreeMinimumQuality,10,&(lvalues[3788]),0}, | ||
1574 | {"subtreeMaximumQuality","subtreeMaximumQuality", | ||
1575 | NID_subtreeMaximumQuality,10,&(lvalues[3798]),0}, | ||
1576 | {"personalSignature","personalSignature",NID_personalSignature,10, | ||
1577 | &(lvalues[3808]),0}, | ||
1578 | {"dITRedirect","dITRedirect",NID_dITRedirect,10,&(lvalues[3818]),0}, | ||
1579 | {"audio","audio",NID_audio,10,&(lvalues[3828]),0}, | ||
1580 | {"documentPublisher","documentPublisher",NID_documentPublisher,10, | ||
1581 | &(lvalues[3838]),0}, | ||
1582 | {"x500UniqueIdentifier","x500UniqueIdentifier", | ||
1583 | NID_x500UniqueIdentifier,3,&(lvalues[3848]),0}, | ||
1584 | {"mime-mhs","MIME MHS",NID_mime_mhs,5,&(lvalues[3851]),0}, | ||
1585 | {"mime-mhs-headings","mime-mhs-headings",NID_mime_mhs_headings,6, | ||
1586 | &(lvalues[3856]),0}, | ||
1587 | {"mime-mhs-bodies","mime-mhs-bodies",NID_mime_mhs_bodies,6, | ||
1588 | &(lvalues[3862]),0}, | ||
1589 | {"id-hex-partial-message","id-hex-partial-message", | ||
1590 | NID_id_hex_partial_message,7,&(lvalues[3868]),0}, | ||
1591 | {"id-hex-multipart-message","id-hex-multipart-message", | ||
1592 | NID_id_hex_multipart_message,7,&(lvalues[3875]),0}, | ||
1593 | {"generationQualifier","generationQualifier",NID_generationQualifier, | ||
1594 | 3,&(lvalues[3882]),0}, | ||
1595 | {"pseudonym","pseudonym",NID_pseudonym,3,&(lvalues[3885]),0}, | ||
1596 | {NULL,NULL,NID_undef,0,NULL,0}, | ||
1597 | {"id-set","Secure Electronic Transactions",NID_id_set,2, | ||
1598 | &(lvalues[3888]),0}, | ||
1599 | {"set-ctype","content types",NID_set_ctype,3,&(lvalues[3890]),0}, | ||
1600 | {"set-msgExt","message extensions",NID_set_msgExt,3,&(lvalues[3893]),0}, | ||
1601 | {"set-attr","set-attr",NID_set_attr,3,&(lvalues[3896]),0}, | ||
1602 | {"set-policy","set-policy",NID_set_policy,3,&(lvalues[3899]),0}, | ||
1603 | {"set-certExt","certificate extensions",NID_set_certExt,3, | ||
1604 | &(lvalues[3902]),0}, | ||
1605 | {"set-brand","set-brand",NID_set_brand,3,&(lvalues[3905]),0}, | ||
1606 | {"setct-PANData","setct-PANData",NID_setct_PANData,4,&(lvalues[3908]),0}, | ||
1607 | {"setct-PANToken","setct-PANToken",NID_setct_PANToken,4, | ||
1608 | &(lvalues[3912]),0}, | ||
1609 | {"setct-PANOnly","setct-PANOnly",NID_setct_PANOnly,4,&(lvalues[3916]),0}, | ||
1610 | {"setct-OIData","setct-OIData",NID_setct_OIData,4,&(lvalues[3920]),0}, | ||
1611 | {"setct-PI","setct-PI",NID_setct_PI,4,&(lvalues[3924]),0}, | ||
1612 | {"setct-PIData","setct-PIData",NID_setct_PIData,4,&(lvalues[3928]),0}, | ||
1613 | {"setct-PIDataUnsigned","setct-PIDataUnsigned", | ||
1614 | NID_setct_PIDataUnsigned,4,&(lvalues[3932]),0}, | ||
1615 | {"setct-HODInput","setct-HODInput",NID_setct_HODInput,4, | ||
1616 | &(lvalues[3936]),0}, | ||
1617 | {"setct-AuthResBaggage","setct-AuthResBaggage", | ||
1618 | NID_setct_AuthResBaggage,4,&(lvalues[3940]),0}, | ||
1619 | {"setct-AuthRevReqBaggage","setct-AuthRevReqBaggage", | ||
1620 | NID_setct_AuthRevReqBaggage,4,&(lvalues[3944]),0}, | ||
1621 | {"setct-AuthRevResBaggage","setct-AuthRevResBaggage", | ||
1622 | NID_setct_AuthRevResBaggage,4,&(lvalues[3948]),0}, | ||
1623 | {"setct-CapTokenSeq","setct-CapTokenSeq",NID_setct_CapTokenSeq,4, | ||
1624 | &(lvalues[3952]),0}, | ||
1625 | {"setct-PInitResData","setct-PInitResData",NID_setct_PInitResData,4, | ||
1626 | &(lvalues[3956]),0}, | ||
1627 | {"setct-PI-TBS","setct-PI-TBS",NID_setct_PI_TBS,4,&(lvalues[3960]),0}, | ||
1628 | {"setct-PResData","setct-PResData",NID_setct_PResData,4, | ||
1629 | &(lvalues[3964]),0}, | ||
1630 | {"setct-AuthReqTBS","setct-AuthReqTBS",NID_setct_AuthReqTBS,4, | ||
1631 | &(lvalues[3968]),0}, | ||
1632 | {"setct-AuthResTBS","setct-AuthResTBS",NID_setct_AuthResTBS,4, | ||
1633 | &(lvalues[3972]),0}, | ||
1634 | {"setct-AuthResTBSX","setct-AuthResTBSX",NID_setct_AuthResTBSX,4, | ||
1635 | &(lvalues[3976]),0}, | ||
1636 | {"setct-AuthTokenTBS","setct-AuthTokenTBS",NID_setct_AuthTokenTBS,4, | ||
1637 | &(lvalues[3980]),0}, | ||
1638 | {"setct-CapTokenData","setct-CapTokenData",NID_setct_CapTokenData,4, | ||
1639 | &(lvalues[3984]),0}, | ||
1640 | {"setct-CapTokenTBS","setct-CapTokenTBS",NID_setct_CapTokenTBS,4, | ||
1641 | &(lvalues[3988]),0}, | ||
1642 | {"setct-AcqCardCodeMsg","setct-AcqCardCodeMsg", | ||
1643 | NID_setct_AcqCardCodeMsg,4,&(lvalues[3992]),0}, | ||
1644 | {"setct-AuthRevReqTBS","setct-AuthRevReqTBS",NID_setct_AuthRevReqTBS, | ||
1645 | 4,&(lvalues[3996]),0}, | ||
1646 | {"setct-AuthRevResData","setct-AuthRevResData", | ||
1647 | NID_setct_AuthRevResData,4,&(lvalues[4000]),0}, | ||
1648 | {"setct-AuthRevResTBS","setct-AuthRevResTBS",NID_setct_AuthRevResTBS, | ||
1649 | 4,&(lvalues[4004]),0}, | ||
1650 | {"setct-CapReqTBS","setct-CapReqTBS",NID_setct_CapReqTBS,4, | ||
1651 | &(lvalues[4008]),0}, | ||
1652 | {"setct-CapReqTBSX","setct-CapReqTBSX",NID_setct_CapReqTBSX,4, | ||
1653 | &(lvalues[4012]),0}, | ||
1654 | {"setct-CapResData","setct-CapResData",NID_setct_CapResData,4, | ||
1655 | &(lvalues[4016]),0}, | ||
1656 | {"setct-CapRevReqTBS","setct-CapRevReqTBS",NID_setct_CapRevReqTBS,4, | ||
1657 | &(lvalues[4020]),0}, | ||
1658 | {"setct-CapRevReqTBSX","setct-CapRevReqTBSX",NID_setct_CapRevReqTBSX, | ||
1659 | 4,&(lvalues[4024]),0}, | ||
1660 | {"setct-CapRevResData","setct-CapRevResData",NID_setct_CapRevResData, | ||
1661 | 4,&(lvalues[4028]),0}, | ||
1662 | {"setct-CredReqTBS","setct-CredReqTBS",NID_setct_CredReqTBS,4, | ||
1663 | &(lvalues[4032]),0}, | ||
1664 | {"setct-CredReqTBSX","setct-CredReqTBSX",NID_setct_CredReqTBSX,4, | ||
1665 | &(lvalues[4036]),0}, | ||
1666 | {"setct-CredResData","setct-CredResData",NID_setct_CredResData,4, | ||
1667 | &(lvalues[4040]),0}, | ||
1668 | {"setct-CredRevReqTBS","setct-CredRevReqTBS",NID_setct_CredRevReqTBS, | ||
1669 | 4,&(lvalues[4044]),0}, | ||
1670 | {"setct-CredRevReqTBSX","setct-CredRevReqTBSX", | ||
1671 | NID_setct_CredRevReqTBSX,4,&(lvalues[4048]),0}, | ||
1672 | {"setct-CredRevResData","setct-CredRevResData", | ||
1673 | NID_setct_CredRevResData,4,&(lvalues[4052]),0}, | ||
1674 | {"setct-PCertReqData","setct-PCertReqData",NID_setct_PCertReqData,4, | ||
1675 | &(lvalues[4056]),0}, | ||
1676 | {"setct-PCertResTBS","setct-PCertResTBS",NID_setct_PCertResTBS,4, | ||
1677 | &(lvalues[4060]),0}, | ||
1678 | {"setct-BatchAdminReqData","setct-BatchAdminReqData", | ||
1679 | NID_setct_BatchAdminReqData,4,&(lvalues[4064]),0}, | ||
1680 | {"setct-BatchAdminResData","setct-BatchAdminResData", | ||
1681 | NID_setct_BatchAdminResData,4,&(lvalues[4068]),0}, | ||
1682 | {"setct-CardCInitResTBS","setct-CardCInitResTBS", | ||
1683 | NID_setct_CardCInitResTBS,4,&(lvalues[4072]),0}, | ||
1684 | {"setct-MeAqCInitResTBS","setct-MeAqCInitResTBS", | ||
1685 | NID_setct_MeAqCInitResTBS,4,&(lvalues[4076]),0}, | ||
1686 | {"setct-RegFormResTBS","setct-RegFormResTBS",NID_setct_RegFormResTBS, | ||
1687 | 4,&(lvalues[4080]),0}, | ||
1688 | {"setct-CertReqData","setct-CertReqData",NID_setct_CertReqData,4, | ||
1689 | &(lvalues[4084]),0}, | ||
1690 | {"setct-CertReqTBS","setct-CertReqTBS",NID_setct_CertReqTBS,4, | ||
1691 | &(lvalues[4088]),0}, | ||
1692 | {"setct-CertResData","setct-CertResData",NID_setct_CertResData,4, | ||
1693 | &(lvalues[4092]),0}, | ||
1694 | {"setct-CertInqReqTBS","setct-CertInqReqTBS",NID_setct_CertInqReqTBS, | ||
1695 | 4,&(lvalues[4096]),0}, | ||
1696 | {"setct-ErrorTBS","setct-ErrorTBS",NID_setct_ErrorTBS,4, | ||
1697 | &(lvalues[4100]),0}, | ||
1698 | {"setct-PIDualSignedTBE","setct-PIDualSignedTBE", | ||
1699 | NID_setct_PIDualSignedTBE,4,&(lvalues[4104]),0}, | ||
1700 | {"setct-PIUnsignedTBE","setct-PIUnsignedTBE",NID_setct_PIUnsignedTBE, | ||
1701 | 4,&(lvalues[4108]),0}, | ||
1702 | {"setct-AuthReqTBE","setct-AuthReqTBE",NID_setct_AuthReqTBE,4, | ||
1703 | &(lvalues[4112]),0}, | ||
1704 | {"setct-AuthResTBE","setct-AuthResTBE",NID_setct_AuthResTBE,4, | ||
1705 | &(lvalues[4116]),0}, | ||
1706 | {"setct-AuthResTBEX","setct-AuthResTBEX",NID_setct_AuthResTBEX,4, | ||
1707 | &(lvalues[4120]),0}, | ||
1708 | {"setct-AuthTokenTBE","setct-AuthTokenTBE",NID_setct_AuthTokenTBE,4, | ||
1709 | &(lvalues[4124]),0}, | ||
1710 | {"setct-CapTokenTBE","setct-CapTokenTBE",NID_setct_CapTokenTBE,4, | ||
1711 | &(lvalues[4128]),0}, | ||
1712 | {"setct-CapTokenTBEX","setct-CapTokenTBEX",NID_setct_CapTokenTBEX,4, | ||
1713 | &(lvalues[4132]),0}, | ||
1714 | {"setct-AcqCardCodeMsgTBE","setct-AcqCardCodeMsgTBE", | ||
1715 | NID_setct_AcqCardCodeMsgTBE,4,&(lvalues[4136]),0}, | ||
1716 | {"setct-AuthRevReqTBE","setct-AuthRevReqTBE",NID_setct_AuthRevReqTBE, | ||
1717 | 4,&(lvalues[4140]),0}, | ||
1718 | {"setct-AuthRevResTBE","setct-AuthRevResTBE",NID_setct_AuthRevResTBE, | ||
1719 | 4,&(lvalues[4144]),0}, | ||
1720 | {"setct-AuthRevResTBEB","setct-AuthRevResTBEB", | ||
1721 | NID_setct_AuthRevResTBEB,4,&(lvalues[4148]),0}, | ||
1722 | {"setct-CapReqTBE","setct-CapReqTBE",NID_setct_CapReqTBE,4, | ||
1723 | &(lvalues[4152]),0}, | ||
1724 | {"setct-CapReqTBEX","setct-CapReqTBEX",NID_setct_CapReqTBEX,4, | ||
1725 | &(lvalues[4156]),0}, | ||
1726 | {"setct-CapResTBE","setct-CapResTBE",NID_setct_CapResTBE,4, | ||
1727 | &(lvalues[4160]),0}, | ||
1728 | {"setct-CapRevReqTBE","setct-CapRevReqTBE",NID_setct_CapRevReqTBE,4, | ||
1729 | &(lvalues[4164]),0}, | ||
1730 | {"setct-CapRevReqTBEX","setct-CapRevReqTBEX",NID_setct_CapRevReqTBEX, | ||
1731 | 4,&(lvalues[4168]),0}, | ||
1732 | {"setct-CapRevResTBE","setct-CapRevResTBE",NID_setct_CapRevResTBE,4, | ||
1733 | &(lvalues[4172]),0}, | ||
1734 | {"setct-CredReqTBE","setct-CredReqTBE",NID_setct_CredReqTBE,4, | ||
1735 | &(lvalues[4176]),0}, | ||
1736 | {"setct-CredReqTBEX","setct-CredReqTBEX",NID_setct_CredReqTBEX,4, | ||
1737 | &(lvalues[4180]),0}, | ||
1738 | {"setct-CredResTBE","setct-CredResTBE",NID_setct_CredResTBE,4, | ||
1739 | &(lvalues[4184]),0}, | ||
1740 | {"setct-CredRevReqTBE","setct-CredRevReqTBE",NID_setct_CredRevReqTBE, | ||
1741 | 4,&(lvalues[4188]),0}, | ||
1742 | {"setct-CredRevReqTBEX","setct-CredRevReqTBEX", | ||
1743 | NID_setct_CredRevReqTBEX,4,&(lvalues[4192]),0}, | ||
1744 | {"setct-CredRevResTBE","setct-CredRevResTBE",NID_setct_CredRevResTBE, | ||
1745 | 4,&(lvalues[4196]),0}, | ||
1746 | {"setct-BatchAdminReqTBE","setct-BatchAdminReqTBE", | ||
1747 | NID_setct_BatchAdminReqTBE,4,&(lvalues[4200]),0}, | ||
1748 | {"setct-BatchAdminResTBE","setct-BatchAdminResTBE", | ||
1749 | NID_setct_BatchAdminResTBE,4,&(lvalues[4204]),0}, | ||
1750 | {"setct-RegFormReqTBE","setct-RegFormReqTBE",NID_setct_RegFormReqTBE, | ||
1751 | 4,&(lvalues[4208]),0}, | ||
1752 | {"setct-CertReqTBE","setct-CertReqTBE",NID_setct_CertReqTBE,4, | ||
1753 | &(lvalues[4212]),0}, | ||
1754 | {"setct-CertReqTBEX","setct-CertReqTBEX",NID_setct_CertReqTBEX,4, | ||
1755 | &(lvalues[4216]),0}, | ||
1756 | {"setct-CertResTBE","setct-CertResTBE",NID_setct_CertResTBE,4, | ||
1757 | &(lvalues[4220]),0}, | ||
1758 | {"setct-CRLNotificationTBS","setct-CRLNotificationTBS", | ||
1759 | NID_setct_CRLNotificationTBS,4,&(lvalues[4224]),0}, | ||
1760 | {"setct-CRLNotificationResTBS","setct-CRLNotificationResTBS", | ||
1761 | NID_setct_CRLNotificationResTBS,4,&(lvalues[4228]),0}, | ||
1762 | {"setct-BCIDistributionTBS","setct-BCIDistributionTBS", | ||
1763 | NID_setct_BCIDistributionTBS,4,&(lvalues[4232]),0}, | ||
1764 | {"setext-genCrypt","generic cryptogram",NID_setext_genCrypt,4, | ||
1765 | &(lvalues[4236]),0}, | ||
1766 | {"setext-miAuth","merchant initiated auth",NID_setext_miAuth,4, | ||
1767 | &(lvalues[4240]),0}, | ||
1768 | {"setext-pinSecure","setext-pinSecure",NID_setext_pinSecure,4, | ||
1769 | &(lvalues[4244]),0}, | ||
1770 | {"setext-pinAny","setext-pinAny",NID_setext_pinAny,4,&(lvalues[4248]),0}, | ||
1771 | {"setext-track2","setext-track2",NID_setext_track2,4,&(lvalues[4252]),0}, | ||
1772 | {"setext-cv","additional verification",NID_setext_cv,4, | ||
1773 | &(lvalues[4256]),0}, | ||
1774 | {"set-policy-root","set-policy-root",NID_set_policy_root,4, | ||
1775 | &(lvalues[4260]),0}, | ||
1776 | {"setCext-hashedRoot","setCext-hashedRoot",NID_setCext_hashedRoot,4, | ||
1777 | &(lvalues[4264]),0}, | ||
1778 | {"setCext-certType","setCext-certType",NID_setCext_certType,4, | ||
1779 | &(lvalues[4268]),0}, | ||
1780 | {"setCext-merchData","setCext-merchData",NID_setCext_merchData,4, | ||
1781 | &(lvalues[4272]),0}, | ||
1782 | {"setCext-cCertRequired","setCext-cCertRequired", | ||
1783 | NID_setCext_cCertRequired,4,&(lvalues[4276]),0}, | ||
1784 | {"setCext-tunneling","setCext-tunneling",NID_setCext_tunneling,4, | ||
1785 | &(lvalues[4280]),0}, | ||
1786 | {"setCext-setExt","setCext-setExt",NID_setCext_setExt,4, | ||
1787 | &(lvalues[4284]),0}, | ||
1788 | {"setCext-setQualf","setCext-setQualf",NID_setCext_setQualf,4, | ||
1789 | &(lvalues[4288]),0}, | ||
1790 | {"setCext-PGWYcapabilities","setCext-PGWYcapabilities", | ||
1791 | NID_setCext_PGWYcapabilities,4,&(lvalues[4292]),0}, | ||
1792 | {"setCext-TokenIdentifier","setCext-TokenIdentifier", | ||
1793 | NID_setCext_TokenIdentifier,4,&(lvalues[4296]),0}, | ||
1794 | {"setCext-Track2Data","setCext-Track2Data",NID_setCext_Track2Data,4, | ||
1795 | &(lvalues[4300]),0}, | ||
1796 | {"setCext-TokenType","setCext-TokenType",NID_setCext_TokenType,4, | ||
1797 | &(lvalues[4304]),0}, | ||
1798 | {"setCext-IssuerCapabilities","setCext-IssuerCapabilities", | ||
1799 | NID_setCext_IssuerCapabilities,4,&(lvalues[4308]),0}, | ||
1800 | {"setAttr-Cert","setAttr-Cert",NID_setAttr_Cert,4,&(lvalues[4312]),0}, | ||
1801 | {"setAttr-PGWYcap","payment gateway capabilities",NID_setAttr_PGWYcap, | ||
1802 | 4,&(lvalues[4316]),0}, | ||
1803 | {"setAttr-TokenType","setAttr-TokenType",NID_setAttr_TokenType,4, | ||
1804 | &(lvalues[4320]),0}, | ||
1805 | {"setAttr-IssCap","issuer capabilities",NID_setAttr_IssCap,4, | ||
1806 | &(lvalues[4324]),0}, | ||
1807 | {"set-rootKeyThumb","set-rootKeyThumb",NID_set_rootKeyThumb,5, | ||
1808 | &(lvalues[4328]),0}, | ||
1809 | {"set-addPolicy","set-addPolicy",NID_set_addPolicy,5,&(lvalues[4333]),0}, | ||
1810 | {"setAttr-Token-EMV","setAttr-Token-EMV",NID_setAttr_Token_EMV,5, | ||
1811 | &(lvalues[4338]),0}, | ||
1812 | {"setAttr-Token-B0Prime","setAttr-Token-B0Prime", | ||
1813 | NID_setAttr_Token_B0Prime,5,&(lvalues[4343]),0}, | ||
1814 | {"setAttr-IssCap-CVM","setAttr-IssCap-CVM",NID_setAttr_IssCap_CVM,5, | ||
1815 | &(lvalues[4348]),0}, | ||
1816 | {"setAttr-IssCap-T2","setAttr-IssCap-T2",NID_setAttr_IssCap_T2,5, | ||
1817 | &(lvalues[4353]),0}, | ||
1818 | {"setAttr-IssCap-Sig","setAttr-IssCap-Sig",NID_setAttr_IssCap_Sig,5, | ||
1819 | &(lvalues[4358]),0}, | ||
1820 | {"setAttr-GenCryptgrm","generate cryptogram",NID_setAttr_GenCryptgrm, | ||
1821 | 6,&(lvalues[4363]),0}, | ||
1822 | {"setAttr-T2Enc","encrypted track 2",NID_setAttr_T2Enc,6, | ||
1823 | &(lvalues[4369]),0}, | ||
1824 | {"setAttr-T2cleartxt","cleartext track 2",NID_setAttr_T2cleartxt,6, | ||
1825 | &(lvalues[4375]),0}, | ||
1826 | {"setAttr-TokICCsig","ICC or token signature",NID_setAttr_TokICCsig,6, | ||
1827 | &(lvalues[4381]),0}, | ||
1828 | {"setAttr-SecDevSig","secure device signature",NID_setAttr_SecDevSig, | ||
1829 | 6,&(lvalues[4387]),0}, | ||
1830 | {"set-brand-IATA-ATA","set-brand-IATA-ATA",NID_set_brand_IATA_ATA,4, | ||
1831 | &(lvalues[4393]),0}, | ||
1832 | {"set-brand-Diners","set-brand-Diners",NID_set_brand_Diners,4, | ||
1833 | &(lvalues[4397]),0}, | ||
1834 | {"set-brand-AmericanExpress","set-brand-AmericanExpress", | ||
1835 | NID_set_brand_AmericanExpress,4,&(lvalues[4401]),0}, | ||
1836 | {"set-brand-JCB","set-brand-JCB",NID_set_brand_JCB,4,&(lvalues[4405]),0}, | ||
1837 | {"set-brand-Visa","set-brand-Visa",NID_set_brand_Visa,4, | ||
1838 | &(lvalues[4409]),0}, | ||
1839 | {"set-brand-MasterCard","set-brand-MasterCard", | ||
1840 | NID_set_brand_MasterCard,4,&(lvalues[4413]),0}, | ||
1841 | {"set-brand-Novus","set-brand-Novus",NID_set_brand_Novus,5, | ||
1842 | &(lvalues[4417]),0}, | ||
1843 | {"DES-CDMF","des-cdmf",NID_des_cdmf,8,&(lvalues[4422]),0}, | ||
1844 | {"rsaOAEPEncryptionSET","rsaOAEPEncryptionSET", | ||
1845 | NID_rsaOAEPEncryptionSET,9,&(lvalues[4430]),0}, | ||
1846 | {"ITU-T","itu-t",NID_itu_t,1,&(lvalues[4439]),0}, | ||
1847 | {"JOINT-ISO-ITU-T","joint-iso-itu-t",NID_joint_iso_itu_t,1, | ||
1848 | &(lvalues[4440]),0}, | ||
1849 | {"international-organizations","International Organizations", | ||
1850 | NID_international_organizations,1,&(lvalues[4441]),0}, | ||
1851 | {"msSmartcardLogin","Microsoft Smartcardlogin",NID_ms_smartcard_login, | ||
1852 | 10,&(lvalues[4442]),0}, | ||
1853 | {"msUPN","Microsoft Universal Principal Name",NID_ms_upn,10, | ||
1854 | &(lvalues[4452]),0}, | ||
1855 | {"AES-128-CFB1","aes-128-cfb1",NID_aes_128_cfb1,0,NULL,0}, | ||
1856 | {"AES-192-CFB1","aes-192-cfb1",NID_aes_192_cfb1,0,NULL,0}, | ||
1857 | {"AES-256-CFB1","aes-256-cfb1",NID_aes_256_cfb1,0,NULL,0}, | ||
1858 | {"AES-128-CFB8","aes-128-cfb8",NID_aes_128_cfb8,0,NULL,0}, | ||
1859 | {"AES-192-CFB8","aes-192-cfb8",NID_aes_192_cfb8,0,NULL,0}, | ||
1860 | {"AES-256-CFB8","aes-256-cfb8",NID_aes_256_cfb8,0,NULL,0}, | ||
1861 | {"DES-CFB1","des-cfb1",NID_des_cfb1,0,NULL,0}, | ||
1862 | {"DES-CFB8","des-cfb8",NID_des_cfb8,0,NULL,0}, | ||
1863 | {"DES-EDE3-CFB1","des-ede3-cfb1",NID_des_ede3_cfb1,0,NULL,0}, | ||
1864 | {"DES-EDE3-CFB8","des-ede3-cfb8",NID_des_ede3_cfb8,0,NULL,0}, | ||
1865 | {"streetAddress","streetAddress",NID_streetAddress,3,&(lvalues[4462]),0}, | ||
1866 | {"postalCode","postalCode",NID_postalCode,3,&(lvalues[4465]),0}, | ||
1867 | {"id-ppl","id-ppl",NID_id_ppl,7,&(lvalues[4468]),0}, | ||
1868 | {"proxyCertInfo","Proxy Certificate Information",NID_proxyCertInfo,8, | ||
1869 | &(lvalues[4475]),0}, | ||
1870 | {"id-ppl-anyLanguage","Any language",NID_id_ppl_anyLanguage,8, | ||
1871 | &(lvalues[4483]),0}, | ||
1872 | {"id-ppl-inheritAll","Inherit all",NID_id_ppl_inheritAll,8, | ||
1873 | &(lvalues[4491]),0}, | ||
1874 | {"nameConstraints","X509v3 Name Constraints",NID_name_constraints,3, | ||
1875 | &(lvalues[4499]),0}, | ||
1876 | {"id-ppl-independent","Independent",NID_Independent,8,&(lvalues[4502]),0}, | ||
1877 | {"RSA-SHA256","sha256WithRSAEncryption",NID_sha256WithRSAEncryption,9, | ||
1878 | &(lvalues[4510]),0}, | ||
1879 | {"RSA-SHA384","sha384WithRSAEncryption",NID_sha384WithRSAEncryption,9, | ||
1880 | &(lvalues[4519]),0}, | ||
1881 | {"RSA-SHA512","sha512WithRSAEncryption",NID_sha512WithRSAEncryption,9, | ||
1882 | &(lvalues[4528]),0}, | ||
1883 | {"RSA-SHA224","sha224WithRSAEncryption",NID_sha224WithRSAEncryption,9, | ||
1884 | &(lvalues[4537]),0}, | ||
1885 | {"SHA256","sha256",NID_sha256,9,&(lvalues[4546]),0}, | ||
1886 | {"SHA384","sha384",NID_sha384,9,&(lvalues[4555]),0}, | ||
1887 | {"SHA512","sha512",NID_sha512,9,&(lvalues[4564]),0}, | ||
1888 | {"SHA224","sha224",NID_sha224,9,&(lvalues[4573]),0}, | ||
1889 | {"identified-organization","identified-organization", | ||
1890 | NID_identified_organization,1,&(lvalues[4582]),0}, | ||
1891 | {"certicom-arc","certicom-arc",NID_certicom_arc,3,&(lvalues[4583]),0}, | ||
1892 | {"wap","wap",NID_wap,2,&(lvalues[4586]),0}, | ||
1893 | {"wap-wsg","wap-wsg",NID_wap_wsg,3,&(lvalues[4588]),0}, | ||
1894 | {"id-characteristic-two-basis","id-characteristic-two-basis", | ||
1895 | NID_X9_62_id_characteristic_two_basis,8,&(lvalues[4591]),0}, | ||
1896 | {"onBasis","onBasis",NID_X9_62_onBasis,9,&(lvalues[4599]),0}, | ||
1897 | {"tpBasis","tpBasis",NID_X9_62_tpBasis,9,&(lvalues[4608]),0}, | ||
1898 | {"ppBasis","ppBasis",NID_X9_62_ppBasis,9,&(lvalues[4617]),0}, | ||
1899 | {"c2pnb163v1","c2pnb163v1",NID_X9_62_c2pnb163v1,8,&(lvalues[4626]),0}, | ||
1900 | {"c2pnb163v2","c2pnb163v2",NID_X9_62_c2pnb163v2,8,&(lvalues[4634]),0}, | ||
1901 | {"c2pnb163v3","c2pnb163v3",NID_X9_62_c2pnb163v3,8,&(lvalues[4642]),0}, | ||
1902 | {"c2pnb176v1","c2pnb176v1",NID_X9_62_c2pnb176v1,8,&(lvalues[4650]),0}, | ||
1903 | {"c2tnb191v1","c2tnb191v1",NID_X9_62_c2tnb191v1,8,&(lvalues[4658]),0}, | ||
1904 | {"c2tnb191v2","c2tnb191v2",NID_X9_62_c2tnb191v2,8,&(lvalues[4666]),0}, | ||
1905 | {"c2tnb191v3","c2tnb191v3",NID_X9_62_c2tnb191v3,8,&(lvalues[4674]),0}, | ||
1906 | {"c2onb191v4","c2onb191v4",NID_X9_62_c2onb191v4,8,&(lvalues[4682]),0}, | ||
1907 | {"c2onb191v5","c2onb191v5",NID_X9_62_c2onb191v5,8,&(lvalues[4690]),0}, | ||
1908 | {"c2pnb208w1","c2pnb208w1",NID_X9_62_c2pnb208w1,8,&(lvalues[4698]),0}, | ||
1909 | {"c2tnb239v1","c2tnb239v1",NID_X9_62_c2tnb239v1,8,&(lvalues[4706]),0}, | ||
1910 | {"c2tnb239v2","c2tnb239v2",NID_X9_62_c2tnb239v2,8,&(lvalues[4714]),0}, | ||
1911 | {"c2tnb239v3","c2tnb239v3",NID_X9_62_c2tnb239v3,8,&(lvalues[4722]),0}, | ||
1912 | {"c2onb239v4","c2onb239v4",NID_X9_62_c2onb239v4,8,&(lvalues[4730]),0}, | ||
1913 | {"c2onb239v5","c2onb239v5",NID_X9_62_c2onb239v5,8,&(lvalues[4738]),0}, | ||
1914 | {"c2pnb272w1","c2pnb272w1",NID_X9_62_c2pnb272w1,8,&(lvalues[4746]),0}, | ||
1915 | {"c2pnb304w1","c2pnb304w1",NID_X9_62_c2pnb304w1,8,&(lvalues[4754]),0}, | ||
1916 | {"c2tnb359v1","c2tnb359v1",NID_X9_62_c2tnb359v1,8,&(lvalues[4762]),0}, | ||
1917 | {"c2pnb368w1","c2pnb368w1",NID_X9_62_c2pnb368w1,8,&(lvalues[4770]),0}, | ||
1918 | {"c2tnb431r1","c2tnb431r1",NID_X9_62_c2tnb431r1,8,&(lvalues[4778]),0}, | ||
1919 | {"secp112r1","secp112r1",NID_secp112r1,5,&(lvalues[4786]),0}, | ||
1920 | {"secp112r2","secp112r2",NID_secp112r2,5,&(lvalues[4791]),0}, | ||
1921 | {"secp128r1","secp128r1",NID_secp128r1,5,&(lvalues[4796]),0}, | ||
1922 | {"secp128r2","secp128r2",NID_secp128r2,5,&(lvalues[4801]),0}, | ||
1923 | {"secp160k1","secp160k1",NID_secp160k1,5,&(lvalues[4806]),0}, | ||
1924 | {"secp160r1","secp160r1",NID_secp160r1,5,&(lvalues[4811]),0}, | ||
1925 | {"secp160r2","secp160r2",NID_secp160r2,5,&(lvalues[4816]),0}, | ||
1926 | {"secp192k1","secp192k1",NID_secp192k1,5,&(lvalues[4821]),0}, | ||
1927 | {"secp224k1","secp224k1",NID_secp224k1,5,&(lvalues[4826]),0}, | ||
1928 | {"secp224r1","secp224r1",NID_secp224r1,5,&(lvalues[4831]),0}, | ||
1929 | {"secp256k1","secp256k1",NID_secp256k1,5,&(lvalues[4836]),0}, | ||
1930 | {"secp384r1","secp384r1",NID_secp384r1,5,&(lvalues[4841]),0}, | ||
1931 | {"secp521r1","secp521r1",NID_secp521r1,5,&(lvalues[4846]),0}, | ||
1932 | {"sect113r1","sect113r1",NID_sect113r1,5,&(lvalues[4851]),0}, | ||
1933 | {"sect113r2","sect113r2",NID_sect113r2,5,&(lvalues[4856]),0}, | ||
1934 | {"sect131r1","sect131r1",NID_sect131r1,5,&(lvalues[4861]),0}, | ||
1935 | {"sect131r2","sect131r2",NID_sect131r2,5,&(lvalues[4866]),0}, | ||
1936 | {"sect163k1","sect163k1",NID_sect163k1,5,&(lvalues[4871]),0}, | ||
1937 | {"sect163r1","sect163r1",NID_sect163r1,5,&(lvalues[4876]),0}, | ||
1938 | {"sect163r2","sect163r2",NID_sect163r2,5,&(lvalues[4881]),0}, | ||
1939 | {"sect193r1","sect193r1",NID_sect193r1,5,&(lvalues[4886]),0}, | ||
1940 | {"sect193r2","sect193r2",NID_sect193r2,5,&(lvalues[4891]),0}, | ||
1941 | {"sect233k1","sect233k1",NID_sect233k1,5,&(lvalues[4896]),0}, | ||
1942 | {"sect233r1","sect233r1",NID_sect233r1,5,&(lvalues[4901]),0}, | ||
1943 | {"sect239k1","sect239k1",NID_sect239k1,5,&(lvalues[4906]),0}, | ||
1944 | {"sect283k1","sect283k1",NID_sect283k1,5,&(lvalues[4911]),0}, | ||
1945 | {"sect283r1","sect283r1",NID_sect283r1,5,&(lvalues[4916]),0}, | ||
1946 | {"sect409k1","sect409k1",NID_sect409k1,5,&(lvalues[4921]),0}, | ||
1947 | {"sect409r1","sect409r1",NID_sect409r1,5,&(lvalues[4926]),0}, | ||
1948 | {"sect571k1","sect571k1",NID_sect571k1,5,&(lvalues[4931]),0}, | ||
1949 | {"sect571r1","sect571r1",NID_sect571r1,5,&(lvalues[4936]),0}, | ||
1950 | {"wap-wsg-idm-ecid-wtls1","wap-wsg-idm-ecid-wtls1", | ||
1951 | NID_wap_wsg_idm_ecid_wtls1,5,&(lvalues[4941]),0}, | ||
1952 | {"wap-wsg-idm-ecid-wtls3","wap-wsg-idm-ecid-wtls3", | ||
1953 | NID_wap_wsg_idm_ecid_wtls3,5,&(lvalues[4946]),0}, | ||
1954 | {"wap-wsg-idm-ecid-wtls4","wap-wsg-idm-ecid-wtls4", | ||
1955 | NID_wap_wsg_idm_ecid_wtls4,5,&(lvalues[4951]),0}, | ||
1956 | {"wap-wsg-idm-ecid-wtls5","wap-wsg-idm-ecid-wtls5", | ||
1957 | NID_wap_wsg_idm_ecid_wtls5,5,&(lvalues[4956]),0}, | ||
1958 | {"wap-wsg-idm-ecid-wtls6","wap-wsg-idm-ecid-wtls6", | ||
1959 | NID_wap_wsg_idm_ecid_wtls6,5,&(lvalues[4961]),0}, | ||
1960 | {"wap-wsg-idm-ecid-wtls7","wap-wsg-idm-ecid-wtls7", | ||
1961 | NID_wap_wsg_idm_ecid_wtls7,5,&(lvalues[4966]),0}, | ||
1962 | {"wap-wsg-idm-ecid-wtls8","wap-wsg-idm-ecid-wtls8", | ||
1963 | NID_wap_wsg_idm_ecid_wtls8,5,&(lvalues[4971]),0}, | ||
1964 | {"wap-wsg-idm-ecid-wtls9","wap-wsg-idm-ecid-wtls9", | ||
1965 | NID_wap_wsg_idm_ecid_wtls9,5,&(lvalues[4976]),0}, | ||
1966 | {"wap-wsg-idm-ecid-wtls10","wap-wsg-idm-ecid-wtls10", | ||
1967 | NID_wap_wsg_idm_ecid_wtls10,5,&(lvalues[4981]),0}, | ||
1968 | {"wap-wsg-idm-ecid-wtls11","wap-wsg-idm-ecid-wtls11", | ||
1969 | NID_wap_wsg_idm_ecid_wtls11,5,&(lvalues[4986]),0}, | ||
1970 | {"wap-wsg-idm-ecid-wtls12","wap-wsg-idm-ecid-wtls12", | ||
1971 | NID_wap_wsg_idm_ecid_wtls12,5,&(lvalues[4991]),0}, | ||
1972 | {"anyPolicy","X509v3 Any Policy",NID_any_policy,4,&(lvalues[4996]),0}, | ||
1973 | {"policyMappings","X509v3 Policy Mappings",NID_policy_mappings,3, | ||
1974 | &(lvalues[5000]),0}, | ||
1975 | {"inhibitAnyPolicy","X509v3 Inhibit Any Policy", | ||
1976 | NID_inhibit_any_policy,3,&(lvalues[5003]),0}, | ||
1977 | {"Oakley-EC2N-3","ipsec3",NID_ipsec3,0,NULL,0}, | ||
1978 | {"Oakley-EC2N-4","ipsec4",NID_ipsec4,0,NULL,0}, | ||
1979 | {"CAMELLIA-128-CBC","camellia-128-cbc",NID_camellia_128_cbc,11, | ||
1980 | &(lvalues[5006]),0}, | ||
1981 | {"CAMELLIA-192-CBC","camellia-192-cbc",NID_camellia_192_cbc,11, | ||
1982 | &(lvalues[5017]),0}, | ||
1983 | {"CAMELLIA-256-CBC","camellia-256-cbc",NID_camellia_256_cbc,11, | ||
1984 | &(lvalues[5028]),0}, | ||
1985 | {"CAMELLIA-128-ECB","camellia-128-ecb",NID_camellia_128_ecb,8, | ||
1986 | &(lvalues[5039]),0}, | ||
1987 | {"CAMELLIA-192-ECB","camellia-192-ecb",NID_camellia_192_ecb,8, | ||
1988 | &(lvalues[5047]),0}, | ||
1989 | {"CAMELLIA-256-ECB","camellia-256-ecb",NID_camellia_256_ecb,8, | ||
1990 | &(lvalues[5055]),0}, | ||
1991 | {"CAMELLIA-128-CFB","camellia-128-cfb",NID_camellia_128_cfb128,8, | ||
1992 | &(lvalues[5063]),0}, | ||
1993 | {"CAMELLIA-192-CFB","camellia-192-cfb",NID_camellia_192_cfb128,8, | ||
1994 | &(lvalues[5071]),0}, | ||
1995 | {"CAMELLIA-256-CFB","camellia-256-cfb",NID_camellia_256_cfb128,8, | ||
1996 | &(lvalues[5079]),0}, | ||
1997 | {"CAMELLIA-128-CFB1","camellia-128-cfb1",NID_camellia_128_cfb1,0,NULL,0}, | ||
1998 | {"CAMELLIA-192-CFB1","camellia-192-cfb1",NID_camellia_192_cfb1,0,NULL,0}, | ||
1999 | {"CAMELLIA-256-CFB1","camellia-256-cfb1",NID_camellia_256_cfb1,0,NULL,0}, | ||
2000 | {"CAMELLIA-128-CFB8","camellia-128-cfb8",NID_camellia_128_cfb8,0,NULL,0}, | ||
2001 | {"CAMELLIA-192-CFB8","camellia-192-cfb8",NID_camellia_192_cfb8,0,NULL,0}, | ||
2002 | {"CAMELLIA-256-CFB8","camellia-256-cfb8",NID_camellia_256_cfb8,0,NULL,0}, | ||
2003 | {"CAMELLIA-128-OFB","camellia-128-ofb",NID_camellia_128_ofb128,8, | ||
2004 | &(lvalues[5087]),0}, | ||
2005 | {"CAMELLIA-192-OFB","camellia-192-ofb",NID_camellia_192_ofb128,8, | ||
2006 | &(lvalues[5095]),0}, | ||
2007 | {"CAMELLIA-256-OFB","camellia-256-ofb",NID_camellia_256_ofb128,8, | ||
2008 | &(lvalues[5103]),0}, | ||
2009 | {"subjectDirectoryAttributes","X509v3 Subject Directory Attributes", | ||
2010 | NID_subject_directory_attributes,3,&(lvalues[5111]),0}, | ||
2011 | {"issuingDistributionPoint","X509v3 Issuing Distrubution Point", | ||
2012 | NID_issuing_distribution_point,3,&(lvalues[5114]),0}, | ||
2013 | {"certificateIssuer","X509v3 Certificate Issuer", | ||
2014 | NID_certificate_issuer,3,&(lvalues[5117]),0}, | ||
2015 | {NULL,NULL,NID_undef,0,NULL,0}, | ||
2016 | {"KISA","kisa",NID_kisa,6,&(lvalues[5120]),0}, | ||
2017 | {NULL,NULL,NID_undef,0,NULL,0}, | ||
2018 | {NULL,NULL,NID_undef,0,NULL,0}, | ||
2019 | {"SEED-ECB","seed-ecb",NID_seed_ecb,8,&(lvalues[5126]),0}, | ||
2020 | {"SEED-CBC","seed-cbc",NID_seed_cbc,8,&(lvalues[5134]),0}, | ||
2021 | {"SEED-OFB","seed-ofb",NID_seed_ofb128,8,&(lvalues[5142]),0}, | ||
2022 | {"SEED-CFB","seed-cfb",NID_seed_cfb128,8,&(lvalues[5150]),0}, | ||
2023 | {"HMAC-MD5","hmac-md5",NID_hmac_md5,8,&(lvalues[5158]),0}, | ||
2024 | {"HMAC-SHA1","hmac-sha1",NID_hmac_sha1,8,&(lvalues[5166]),0}, | ||
2025 | {"id-PasswordBasedMAC","password based MAC",NID_id_PasswordBasedMAC,9, | ||
2026 | &(lvalues[5174]),0}, | ||
2027 | {"id-DHBasedMac","Diffie-Hellman based MAC",NID_id_DHBasedMac,9, | ||
2028 | &(lvalues[5183]),0}, | ||
2029 | {"id-it-suppLangTags","id-it-suppLangTags",NID_id_it_suppLangTags,8, | ||
2030 | &(lvalues[5192]),0}, | ||
2031 | {"caRepository","CA Repository",NID_caRepository,8,&(lvalues[5200]),0}, | ||
2032 | {"id-smime-ct-compressedData","id-smime-ct-compressedData", | ||
2033 | NID_id_smime_ct_compressedData,11,&(lvalues[5208]),0}, | ||
2034 | {"id-ct-asciiTextWithCRLF","id-ct-asciiTextWithCRLF", | ||
2035 | NID_id_ct_asciiTextWithCRLF,11,&(lvalues[5219]),0}, | ||
2036 | {"id-aes128-wrap","id-aes128-wrap",NID_id_aes128_wrap,9, | ||
2037 | &(lvalues[5230]),0}, | ||
2038 | {"id-aes192-wrap","id-aes192-wrap",NID_id_aes192_wrap,9, | ||
2039 | &(lvalues[5239]),0}, | ||
2040 | {"id-aes256-wrap","id-aes256-wrap",NID_id_aes256_wrap,9, | ||
2041 | &(lvalues[5248]),0}, | ||
2042 | }; | ||
2043 | |||
2044 | static ASN1_OBJECT *sn_objs[NUM_SN]={ | ||
2045 | &(nid_objs[364]),/* "AD_DVCS" */ | ||
2046 | &(nid_objs[419]),/* "AES-128-CBC" */ | ||
2047 | &(nid_objs[421]),/* "AES-128-CFB" */ | ||
2048 | &(nid_objs[650]),/* "AES-128-CFB1" */ | ||
2049 | &(nid_objs[653]),/* "AES-128-CFB8" */ | ||
2050 | &(nid_objs[418]),/* "AES-128-ECB" */ | ||
2051 | &(nid_objs[420]),/* "AES-128-OFB" */ | ||
2052 | &(nid_objs[423]),/* "AES-192-CBC" */ | ||
2053 | &(nid_objs[425]),/* "AES-192-CFB" */ | ||
2054 | &(nid_objs[651]),/* "AES-192-CFB1" */ | ||
2055 | &(nid_objs[654]),/* "AES-192-CFB8" */ | ||
2056 | &(nid_objs[422]),/* "AES-192-ECB" */ | ||
2057 | &(nid_objs[424]),/* "AES-192-OFB" */ | ||
2058 | &(nid_objs[427]),/* "AES-256-CBC" */ | ||
2059 | &(nid_objs[429]),/* "AES-256-CFB" */ | ||
2060 | &(nid_objs[652]),/* "AES-256-CFB1" */ | ||
2061 | &(nid_objs[655]),/* "AES-256-CFB8" */ | ||
2062 | &(nid_objs[426]),/* "AES-256-ECB" */ | ||
2063 | &(nid_objs[428]),/* "AES-256-OFB" */ | ||
2064 | &(nid_objs[91]),/* "BF-CBC" */ | ||
2065 | &(nid_objs[93]),/* "BF-CFB" */ | ||
2066 | &(nid_objs[92]),/* "BF-ECB" */ | ||
2067 | &(nid_objs[94]),/* "BF-OFB" */ | ||
2068 | &(nid_objs[14]),/* "C" */ | ||
2069 | &(nid_objs[751]),/* "CAMELLIA-128-CBC" */ | ||
2070 | &(nid_objs[757]),/* "CAMELLIA-128-CFB" */ | ||
2071 | &(nid_objs[760]),/* "CAMELLIA-128-CFB1" */ | ||
2072 | &(nid_objs[763]),/* "CAMELLIA-128-CFB8" */ | ||
2073 | &(nid_objs[754]),/* "CAMELLIA-128-ECB" */ | ||
2074 | &(nid_objs[766]),/* "CAMELLIA-128-OFB" */ | ||
2075 | &(nid_objs[752]),/* "CAMELLIA-192-CBC" */ | ||
2076 | &(nid_objs[758]),/* "CAMELLIA-192-CFB" */ | ||
2077 | &(nid_objs[761]),/* "CAMELLIA-192-CFB1" */ | ||
2078 | &(nid_objs[764]),/* "CAMELLIA-192-CFB8" */ | ||
2079 | &(nid_objs[755]),/* "CAMELLIA-192-ECB" */ | ||
2080 | &(nid_objs[767]),/* "CAMELLIA-192-OFB" */ | ||
2081 | &(nid_objs[753]),/* "CAMELLIA-256-CBC" */ | ||
2082 | &(nid_objs[759]),/* "CAMELLIA-256-CFB" */ | ||
2083 | &(nid_objs[762]),/* "CAMELLIA-256-CFB1" */ | ||
2084 | &(nid_objs[765]),/* "CAMELLIA-256-CFB8" */ | ||
2085 | &(nid_objs[756]),/* "CAMELLIA-256-ECB" */ | ||
2086 | &(nid_objs[768]),/* "CAMELLIA-256-OFB" */ | ||
2087 | &(nid_objs[108]),/* "CAST5-CBC" */ | ||
2088 | &(nid_objs[110]),/* "CAST5-CFB" */ | ||
2089 | &(nid_objs[109]),/* "CAST5-ECB" */ | ||
2090 | &(nid_objs[111]),/* "CAST5-OFB" */ | ||
2091 | &(nid_objs[13]),/* "CN" */ | ||
2092 | &(nid_objs[141]),/* "CRLReason" */ | ||
2093 | &(nid_objs[417]),/* "CSPName" */ | ||
2094 | &(nid_objs[367]),/* "CrlID" */ | ||
2095 | &(nid_objs[391]),/* "DC" */ | ||
2096 | &(nid_objs[31]),/* "DES-CBC" */ | ||
2097 | &(nid_objs[643]),/* "DES-CDMF" */ | ||
2098 | &(nid_objs[30]),/* "DES-CFB" */ | ||
2099 | &(nid_objs[656]),/* "DES-CFB1" */ | ||
2100 | &(nid_objs[657]),/* "DES-CFB8" */ | ||
2101 | &(nid_objs[29]),/* "DES-ECB" */ | ||
2102 | &(nid_objs[32]),/* "DES-EDE" */ | ||
2103 | &(nid_objs[43]),/* "DES-EDE-CBC" */ | ||
2104 | &(nid_objs[60]),/* "DES-EDE-CFB" */ | ||
2105 | &(nid_objs[62]),/* "DES-EDE-OFB" */ | ||
2106 | &(nid_objs[33]),/* "DES-EDE3" */ | ||
2107 | &(nid_objs[44]),/* "DES-EDE3-CBC" */ | ||
2108 | &(nid_objs[61]),/* "DES-EDE3-CFB" */ | ||
2109 | &(nid_objs[658]),/* "DES-EDE3-CFB1" */ | ||
2110 | &(nid_objs[659]),/* "DES-EDE3-CFB8" */ | ||
2111 | &(nid_objs[63]),/* "DES-EDE3-OFB" */ | ||
2112 | &(nid_objs[45]),/* "DES-OFB" */ | ||
2113 | &(nid_objs[80]),/* "DESX-CBC" */ | ||
2114 | &(nid_objs[380]),/* "DOD" */ | ||
2115 | &(nid_objs[116]),/* "DSA" */ | ||
2116 | &(nid_objs[66]),/* "DSA-SHA" */ | ||
2117 | &(nid_objs[113]),/* "DSA-SHA1" */ | ||
2118 | &(nid_objs[70]),/* "DSA-SHA1-old" */ | ||
2119 | &(nid_objs[67]),/* "DSA-old" */ | ||
2120 | &(nid_objs[297]),/* "DVCS" */ | ||
2121 | &(nid_objs[99]),/* "GN" */ | ||
2122 | &(nid_objs[780]),/* "HMAC-MD5" */ | ||
2123 | &(nid_objs[781]),/* "HMAC-SHA1" */ | ||
2124 | &(nid_objs[381]),/* "IANA" */ | ||
2125 | &(nid_objs[34]),/* "IDEA-CBC" */ | ||
2126 | &(nid_objs[35]),/* "IDEA-CFB" */ | ||
2127 | &(nid_objs[36]),/* "IDEA-ECB" */ | ||
2128 | &(nid_objs[46]),/* "IDEA-OFB" */ | ||
2129 | &(nid_objs[181]),/* "ISO" */ | ||
2130 | &(nid_objs[183]),/* "ISO-US" */ | ||
2131 | &(nid_objs[645]),/* "ITU-T" */ | ||
2132 | &(nid_objs[646]),/* "JOINT-ISO-ITU-T" */ | ||
2133 | &(nid_objs[773]),/* "KISA" */ | ||
2134 | &(nid_objs[15]),/* "L" */ | ||
2135 | &(nid_objs[ 3]),/* "MD2" */ | ||
2136 | &(nid_objs[257]),/* "MD4" */ | ||
2137 | &(nid_objs[ 4]),/* "MD5" */ | ||
2138 | &(nid_objs[114]),/* "MD5-SHA1" */ | ||
2139 | &(nid_objs[95]),/* "MDC2" */ | ||
2140 | &(nid_objs[388]),/* "Mail" */ | ||
2141 | &(nid_objs[393]),/* "NULL" */ | ||
2142 | &(nid_objs[404]),/* "NULL" */ | ||
2143 | &(nid_objs[57]),/* "Netscape" */ | ||
2144 | &(nid_objs[366]),/* "Nonce" */ | ||
2145 | &(nid_objs[17]),/* "O" */ | ||
2146 | &(nid_objs[178]),/* "OCSP" */ | ||
2147 | &(nid_objs[180]),/* "OCSPSigning" */ | ||
2148 | &(nid_objs[379]),/* "ORG" */ | ||
2149 | &(nid_objs[18]),/* "OU" */ | ||
2150 | &(nid_objs[749]),/* "Oakley-EC2N-3" */ | ||
2151 | &(nid_objs[750]),/* "Oakley-EC2N-4" */ | ||
2152 | &(nid_objs[ 9]),/* "PBE-MD2-DES" */ | ||
2153 | &(nid_objs[168]),/* "PBE-MD2-RC2-64" */ | ||
2154 | &(nid_objs[10]),/* "PBE-MD5-DES" */ | ||
2155 | &(nid_objs[169]),/* "PBE-MD5-RC2-64" */ | ||
2156 | &(nid_objs[147]),/* "PBE-SHA1-2DES" */ | ||
2157 | &(nid_objs[146]),/* "PBE-SHA1-3DES" */ | ||
2158 | &(nid_objs[170]),/* "PBE-SHA1-DES" */ | ||
2159 | &(nid_objs[148]),/* "PBE-SHA1-RC2-128" */ | ||
2160 | &(nid_objs[149]),/* "PBE-SHA1-RC2-40" */ | ||
2161 | &(nid_objs[68]),/* "PBE-SHA1-RC2-64" */ | ||
2162 | &(nid_objs[144]),/* "PBE-SHA1-RC4-128" */ | ||
2163 | &(nid_objs[145]),/* "PBE-SHA1-RC4-40" */ | ||
2164 | &(nid_objs[161]),/* "PBES2" */ | ||
2165 | &(nid_objs[69]),/* "PBKDF2" */ | ||
2166 | &(nid_objs[162]),/* "PBMAC1" */ | ||
2167 | &(nid_objs[127]),/* "PKIX" */ | ||
2168 | &(nid_objs[98]),/* "RC2-40-CBC" */ | ||
2169 | &(nid_objs[166]),/* "RC2-64-CBC" */ | ||
2170 | &(nid_objs[37]),/* "RC2-CBC" */ | ||
2171 | &(nid_objs[39]),/* "RC2-CFB" */ | ||
2172 | &(nid_objs[38]),/* "RC2-ECB" */ | ||
2173 | &(nid_objs[40]),/* "RC2-OFB" */ | ||
2174 | &(nid_objs[ 5]),/* "RC4" */ | ||
2175 | &(nid_objs[97]),/* "RC4-40" */ | ||
2176 | &(nid_objs[120]),/* "RC5-CBC" */ | ||
2177 | &(nid_objs[122]),/* "RC5-CFB" */ | ||
2178 | &(nid_objs[121]),/* "RC5-ECB" */ | ||
2179 | &(nid_objs[123]),/* "RC5-OFB" */ | ||
2180 | &(nid_objs[117]),/* "RIPEMD160" */ | ||
2181 | &(nid_objs[124]),/* "RLE" */ | ||
2182 | &(nid_objs[19]),/* "RSA" */ | ||
2183 | &(nid_objs[ 7]),/* "RSA-MD2" */ | ||
2184 | &(nid_objs[396]),/* "RSA-MD4" */ | ||
2185 | &(nid_objs[ 8]),/* "RSA-MD5" */ | ||
2186 | &(nid_objs[96]),/* "RSA-MDC2" */ | ||
2187 | &(nid_objs[104]),/* "RSA-NP-MD5" */ | ||
2188 | &(nid_objs[119]),/* "RSA-RIPEMD160" */ | ||
2189 | &(nid_objs[42]),/* "RSA-SHA" */ | ||
2190 | &(nid_objs[65]),/* "RSA-SHA1" */ | ||
2191 | &(nid_objs[115]),/* "RSA-SHA1-2" */ | ||
2192 | &(nid_objs[671]),/* "RSA-SHA224" */ | ||
2193 | &(nid_objs[668]),/* "RSA-SHA256" */ | ||
2194 | &(nid_objs[669]),/* "RSA-SHA384" */ | ||
2195 | &(nid_objs[670]),/* "RSA-SHA512" */ | ||
2196 | &(nid_objs[777]),/* "SEED-CBC" */ | ||
2197 | &(nid_objs[779]),/* "SEED-CFB" */ | ||
2198 | &(nid_objs[776]),/* "SEED-ECB" */ | ||
2199 | &(nid_objs[778]),/* "SEED-OFB" */ | ||
2200 | &(nid_objs[41]),/* "SHA" */ | ||
2201 | &(nid_objs[64]),/* "SHA1" */ | ||
2202 | &(nid_objs[675]),/* "SHA224" */ | ||
2203 | &(nid_objs[672]),/* "SHA256" */ | ||
2204 | &(nid_objs[673]),/* "SHA384" */ | ||
2205 | &(nid_objs[674]),/* "SHA512" */ | ||
2206 | &(nid_objs[188]),/* "SMIME" */ | ||
2207 | &(nid_objs[167]),/* "SMIME-CAPS" */ | ||
2208 | &(nid_objs[100]),/* "SN" */ | ||
2209 | &(nid_objs[16]),/* "ST" */ | ||
2210 | &(nid_objs[143]),/* "SXNetID" */ | ||
2211 | &(nid_objs[458]),/* "UID" */ | ||
2212 | &(nid_objs[ 0]),/* "UNDEF" */ | ||
2213 | &(nid_objs[11]),/* "X500" */ | ||
2214 | &(nid_objs[378]),/* "X500algorithms" */ | ||
2215 | &(nid_objs[12]),/* "X509" */ | ||
2216 | &(nid_objs[184]),/* "X9-57" */ | ||
2217 | &(nid_objs[185]),/* "X9cm" */ | ||
2218 | &(nid_objs[125]),/* "ZLIB" */ | ||
2219 | &(nid_objs[478]),/* "aRecord" */ | ||
2220 | &(nid_objs[289]),/* "aaControls" */ | ||
2221 | &(nid_objs[287]),/* "ac-auditEntity" */ | ||
2222 | &(nid_objs[397]),/* "ac-proxying" */ | ||
2223 | &(nid_objs[288]),/* "ac-targeting" */ | ||
2224 | &(nid_objs[368]),/* "acceptableResponses" */ | ||
2225 | &(nid_objs[446]),/* "account" */ | ||
2226 | &(nid_objs[363]),/* "ad_timestamping" */ | ||
2227 | &(nid_objs[376]),/* "algorithm" */ | ||
2228 | &(nid_objs[405]),/* "ansi-X9-62" */ | ||
2229 | &(nid_objs[746]),/* "anyPolicy" */ | ||
2230 | &(nid_objs[370]),/* "archiveCutoff" */ | ||
2231 | &(nid_objs[484]),/* "associatedDomain" */ | ||
2232 | &(nid_objs[485]),/* "associatedName" */ | ||
2233 | &(nid_objs[501]),/* "audio" */ | ||
2234 | &(nid_objs[177]),/* "authorityInfoAccess" */ | ||
2235 | &(nid_objs[90]),/* "authorityKeyIdentifier" */ | ||
2236 | &(nid_objs[87]),/* "basicConstraints" */ | ||
2237 | &(nid_objs[365]),/* "basicOCSPResponse" */ | ||
2238 | &(nid_objs[285]),/* "biometricInfo" */ | ||
2239 | &(nid_objs[494]),/* "buildingName" */ | ||
2240 | &(nid_objs[691]),/* "c2onb191v4" */ | ||
2241 | &(nid_objs[692]),/* "c2onb191v5" */ | ||
2242 | &(nid_objs[697]),/* "c2onb239v4" */ | ||
2243 | &(nid_objs[698]),/* "c2onb239v5" */ | ||
2244 | &(nid_objs[684]),/* "c2pnb163v1" */ | ||
2245 | &(nid_objs[685]),/* "c2pnb163v2" */ | ||
2246 | &(nid_objs[686]),/* "c2pnb163v3" */ | ||
2247 | &(nid_objs[687]),/* "c2pnb176v1" */ | ||
2248 | &(nid_objs[693]),/* "c2pnb208w1" */ | ||
2249 | &(nid_objs[699]),/* "c2pnb272w1" */ | ||
2250 | &(nid_objs[700]),/* "c2pnb304w1" */ | ||
2251 | &(nid_objs[702]),/* "c2pnb368w1" */ | ||
2252 | &(nid_objs[688]),/* "c2tnb191v1" */ | ||
2253 | &(nid_objs[689]),/* "c2tnb191v2" */ | ||
2254 | &(nid_objs[690]),/* "c2tnb191v3" */ | ||
2255 | &(nid_objs[694]),/* "c2tnb239v1" */ | ||
2256 | &(nid_objs[695]),/* "c2tnb239v2" */ | ||
2257 | &(nid_objs[696]),/* "c2tnb239v3" */ | ||
2258 | &(nid_objs[701]),/* "c2tnb359v1" */ | ||
2259 | &(nid_objs[703]),/* "c2tnb431r1" */ | ||
2260 | &(nid_objs[483]),/* "cNAMERecord" */ | ||
2261 | &(nid_objs[179]),/* "caIssuers" */ | ||
2262 | &(nid_objs[785]),/* "caRepository" */ | ||
2263 | &(nid_objs[443]),/* "caseIgnoreIA5StringSyntax" */ | ||
2264 | &(nid_objs[152]),/* "certBag" */ | ||
2265 | &(nid_objs[677]),/* "certicom-arc" */ | ||
2266 | &(nid_objs[771]),/* "certificateIssuer" */ | ||
2267 | &(nid_objs[89]),/* "certificatePolicies" */ | ||
2268 | &(nid_objs[54]),/* "challengePassword" */ | ||
2269 | &(nid_objs[407]),/* "characteristic-two-field" */ | ||
2270 | &(nid_objs[395]),/* "clearance" */ | ||
2271 | &(nid_objs[130]),/* "clientAuth" */ | ||
2272 | &(nid_objs[131]),/* "codeSigning" */ | ||
2273 | &(nid_objs[50]),/* "contentType" */ | ||
2274 | &(nid_objs[53]),/* "countersignature" */ | ||
2275 | &(nid_objs[153]),/* "crlBag" */ | ||
2276 | &(nid_objs[103]),/* "crlDistributionPoints" */ | ||
2277 | &(nid_objs[88]),/* "crlNumber" */ | ||
2278 | &(nid_objs[500]),/* "dITRedirect" */ | ||
2279 | &(nid_objs[451]),/* "dNSDomain" */ | ||
2280 | &(nid_objs[495]),/* "dSAQuality" */ | ||
2281 | &(nid_objs[434]),/* "data" */ | ||
2282 | &(nid_objs[390]),/* "dcobject" */ | ||
2283 | &(nid_objs[140]),/* "deltaCRL" */ | ||
2284 | &(nid_objs[107]),/* "description" */ | ||
2285 | &(nid_objs[28]),/* "dhKeyAgreement" */ | ||
2286 | &(nid_objs[382]),/* "directory" */ | ||
2287 | &(nid_objs[174]),/* "dnQualifier" */ | ||
2288 | &(nid_objs[447]),/* "document" */ | ||
2289 | &(nid_objs[471]),/* "documentAuthor" */ | ||
2290 | &(nid_objs[468]),/* "documentIdentifier" */ | ||
2291 | &(nid_objs[472]),/* "documentLocation" */ | ||
2292 | &(nid_objs[502]),/* "documentPublisher" */ | ||
2293 | &(nid_objs[449]),/* "documentSeries" */ | ||
2294 | &(nid_objs[469]),/* "documentTitle" */ | ||
2295 | &(nid_objs[470]),/* "documentVersion" */ | ||
2296 | &(nid_objs[392]),/* "domain" */ | ||
2297 | &(nid_objs[452]),/* "domainRelatedObject" */ | ||
2298 | &(nid_objs[416]),/* "ecdsa-with-SHA1" */ | ||
2299 | &(nid_objs[48]),/* "emailAddress" */ | ||
2300 | &(nid_objs[132]),/* "emailProtection" */ | ||
2301 | &(nid_objs[389]),/* "enterprises" */ | ||
2302 | &(nid_objs[384]),/* "experimental" */ | ||
2303 | &(nid_objs[172]),/* "extReq" */ | ||
2304 | &(nid_objs[56]),/* "extendedCertificateAttributes" */ | ||
2305 | &(nid_objs[126]),/* "extendedKeyUsage" */ | ||
2306 | &(nid_objs[372]),/* "extendedStatus" */ | ||
2307 | &(nid_objs[462]),/* "favouriteDrink" */ | ||
2308 | &(nid_objs[453]),/* "friendlyCountry" */ | ||
2309 | &(nid_objs[490]),/* "friendlyCountryName" */ | ||
2310 | &(nid_objs[156]),/* "friendlyName" */ | ||
2311 | &(nid_objs[509]),/* "generationQualifier" */ | ||
2312 | &(nid_objs[163]),/* "hmacWithSHA1" */ | ||
2313 | &(nid_objs[432]),/* "holdInstructionCallIssuer" */ | ||
2314 | &(nid_objs[430]),/* "holdInstructionCode" */ | ||
2315 | &(nid_objs[431]),/* "holdInstructionNone" */ | ||
2316 | &(nid_objs[433]),/* "holdInstructionReject" */ | ||
2317 | &(nid_objs[486]),/* "homePostalAddress" */ | ||
2318 | &(nid_objs[473]),/* "homeTelephoneNumber" */ | ||
2319 | &(nid_objs[466]),/* "host" */ | ||
2320 | &(nid_objs[442]),/* "iA5StringSyntax" */ | ||
2321 | &(nid_objs[783]),/* "id-DHBasedMac" */ | ||
2322 | &(nid_objs[782]),/* "id-PasswordBasedMAC" */ | ||
2323 | &(nid_objs[266]),/* "id-aca" */ | ||
2324 | &(nid_objs[355]),/* "id-aca-accessIdentity" */ | ||
2325 | &(nid_objs[354]),/* "id-aca-authenticationInfo" */ | ||
2326 | &(nid_objs[356]),/* "id-aca-chargingIdentity" */ | ||
2327 | &(nid_objs[399]),/* "id-aca-encAttrs" */ | ||
2328 | &(nid_objs[357]),/* "id-aca-group" */ | ||
2329 | &(nid_objs[358]),/* "id-aca-role" */ | ||
2330 | &(nid_objs[176]),/* "id-ad" */ | ||
2331 | &(nid_objs[788]),/* "id-aes128-wrap" */ | ||
2332 | &(nid_objs[789]),/* "id-aes192-wrap" */ | ||
2333 | &(nid_objs[790]),/* "id-aes256-wrap" */ | ||
2334 | &(nid_objs[262]),/* "id-alg" */ | ||
2335 | &(nid_objs[323]),/* "id-alg-des40" */ | ||
2336 | &(nid_objs[326]),/* "id-alg-dh-pop" */ | ||
2337 | &(nid_objs[325]),/* "id-alg-dh-sig-hmac-sha1" */ | ||
2338 | &(nid_objs[324]),/* "id-alg-noSignature" */ | ||
2339 | &(nid_objs[268]),/* "id-cct" */ | ||
2340 | &(nid_objs[361]),/* "id-cct-PKIData" */ | ||
2341 | &(nid_objs[362]),/* "id-cct-PKIResponse" */ | ||
2342 | &(nid_objs[360]),/* "id-cct-crs" */ | ||
2343 | &(nid_objs[81]),/* "id-ce" */ | ||
2344 | &(nid_objs[680]),/* "id-characteristic-two-basis" */ | ||
2345 | &(nid_objs[263]),/* "id-cmc" */ | ||
2346 | &(nid_objs[334]),/* "id-cmc-addExtensions" */ | ||
2347 | &(nid_objs[346]),/* "id-cmc-confirmCertAcceptance" */ | ||
2348 | &(nid_objs[330]),/* "id-cmc-dataReturn" */ | ||
2349 | &(nid_objs[336]),/* "id-cmc-decryptedPOP" */ | ||
2350 | &(nid_objs[335]),/* "id-cmc-encryptedPOP" */ | ||
2351 | &(nid_objs[339]),/* "id-cmc-getCRL" */ | ||
2352 | &(nid_objs[338]),/* "id-cmc-getCert" */ | ||
2353 | &(nid_objs[328]),/* "id-cmc-identification" */ | ||
2354 | &(nid_objs[329]),/* "id-cmc-identityProof" */ | ||
2355 | &(nid_objs[337]),/* "id-cmc-lraPOPWitness" */ | ||
2356 | &(nid_objs[344]),/* "id-cmc-popLinkRandom" */ | ||
2357 | &(nid_objs[345]),/* "id-cmc-popLinkWitness" */ | ||
2358 | &(nid_objs[343]),/* "id-cmc-queryPending" */ | ||
2359 | &(nid_objs[333]),/* "id-cmc-recipientNonce" */ | ||
2360 | &(nid_objs[341]),/* "id-cmc-regInfo" */ | ||
2361 | &(nid_objs[342]),/* "id-cmc-responseInfo" */ | ||
2362 | &(nid_objs[340]),/* "id-cmc-revokeRequest" */ | ||
2363 | &(nid_objs[332]),/* "id-cmc-senderNonce" */ | ||
2364 | &(nid_objs[327]),/* "id-cmc-statusInfo" */ | ||
2365 | &(nid_objs[331]),/* "id-cmc-transactionId" */ | ||
2366 | &(nid_objs[787]),/* "id-ct-asciiTextWithCRLF" */ | ||
2367 | &(nid_objs[408]),/* "id-ecPublicKey" */ | ||
2368 | &(nid_objs[508]),/* "id-hex-multipart-message" */ | ||
2369 | &(nid_objs[507]),/* "id-hex-partial-message" */ | ||
2370 | &(nid_objs[260]),/* "id-it" */ | ||
2371 | &(nid_objs[302]),/* "id-it-caKeyUpdateInfo" */ | ||
2372 | &(nid_objs[298]),/* "id-it-caProtEncCert" */ | ||
2373 | &(nid_objs[311]),/* "id-it-confirmWaitTime" */ | ||
2374 | &(nid_objs[303]),/* "id-it-currentCRL" */ | ||
2375 | &(nid_objs[300]),/* "id-it-encKeyPairTypes" */ | ||
2376 | &(nid_objs[310]),/* "id-it-implicitConfirm" */ | ||
2377 | &(nid_objs[308]),/* "id-it-keyPairParamRep" */ | ||
2378 | &(nid_objs[307]),/* "id-it-keyPairParamReq" */ | ||
2379 | &(nid_objs[312]),/* "id-it-origPKIMessage" */ | ||
2380 | &(nid_objs[301]),/* "id-it-preferredSymmAlg" */ | ||
2381 | &(nid_objs[309]),/* "id-it-revPassphrase" */ | ||
2382 | &(nid_objs[299]),/* "id-it-signKeyPairTypes" */ | ||
2383 | &(nid_objs[305]),/* "id-it-subscriptionRequest" */ | ||
2384 | &(nid_objs[306]),/* "id-it-subscriptionResponse" */ | ||
2385 | &(nid_objs[784]),/* "id-it-suppLangTags" */ | ||
2386 | &(nid_objs[304]),/* "id-it-unsupportedOIDs" */ | ||
2387 | &(nid_objs[128]),/* "id-kp" */ | ||
2388 | &(nid_objs[280]),/* "id-mod-attribute-cert" */ | ||
2389 | &(nid_objs[274]),/* "id-mod-cmc" */ | ||
2390 | &(nid_objs[277]),/* "id-mod-cmp" */ | ||
2391 | &(nid_objs[284]),/* "id-mod-cmp2000" */ | ||
2392 | &(nid_objs[273]),/* "id-mod-crmf" */ | ||
2393 | &(nid_objs[283]),/* "id-mod-dvcs" */ | ||
2394 | &(nid_objs[275]),/* "id-mod-kea-profile-88" */ | ||
2395 | &(nid_objs[276]),/* "id-mod-kea-profile-93" */ | ||
2396 | &(nid_objs[282]),/* "id-mod-ocsp" */ | ||
2397 | &(nid_objs[278]),/* "id-mod-qualified-cert-88" */ | ||
2398 | &(nid_objs[279]),/* "id-mod-qualified-cert-93" */ | ||
2399 | &(nid_objs[281]),/* "id-mod-timestamp-protocol" */ | ||
2400 | &(nid_objs[264]),/* "id-on" */ | ||
2401 | &(nid_objs[347]),/* "id-on-personalData" */ | ||
2402 | &(nid_objs[265]),/* "id-pda" */ | ||
2403 | &(nid_objs[352]),/* "id-pda-countryOfCitizenship" */ | ||
2404 | &(nid_objs[353]),/* "id-pda-countryOfResidence" */ | ||
2405 | &(nid_objs[348]),/* "id-pda-dateOfBirth" */ | ||
2406 | &(nid_objs[351]),/* "id-pda-gender" */ | ||
2407 | &(nid_objs[349]),/* "id-pda-placeOfBirth" */ | ||
2408 | &(nid_objs[175]),/* "id-pe" */ | ||
2409 | &(nid_objs[261]),/* "id-pkip" */ | ||
2410 | &(nid_objs[258]),/* "id-pkix-mod" */ | ||
2411 | &(nid_objs[269]),/* "id-pkix1-explicit-88" */ | ||
2412 | &(nid_objs[271]),/* "id-pkix1-explicit-93" */ | ||
2413 | &(nid_objs[270]),/* "id-pkix1-implicit-88" */ | ||
2414 | &(nid_objs[272]),/* "id-pkix1-implicit-93" */ | ||
2415 | &(nid_objs[662]),/* "id-ppl" */ | ||
2416 | &(nid_objs[664]),/* "id-ppl-anyLanguage" */ | ||
2417 | &(nid_objs[667]),/* "id-ppl-independent" */ | ||
2418 | &(nid_objs[665]),/* "id-ppl-inheritAll" */ | ||
2419 | &(nid_objs[267]),/* "id-qcs" */ | ||
2420 | &(nid_objs[359]),/* "id-qcs-pkixQCSyntax-v1" */ | ||
2421 | &(nid_objs[259]),/* "id-qt" */ | ||
2422 | &(nid_objs[164]),/* "id-qt-cps" */ | ||
2423 | &(nid_objs[165]),/* "id-qt-unotice" */ | ||
2424 | &(nid_objs[313]),/* "id-regCtrl" */ | ||
2425 | &(nid_objs[316]),/* "id-regCtrl-authenticator" */ | ||
2426 | &(nid_objs[319]),/* "id-regCtrl-oldCertID" */ | ||
2427 | &(nid_objs[318]),/* "id-regCtrl-pkiArchiveOptions" */ | ||
2428 | &(nid_objs[317]),/* "id-regCtrl-pkiPublicationInfo" */ | ||
2429 | &(nid_objs[320]),/* "id-regCtrl-protocolEncrKey" */ | ||
2430 | &(nid_objs[315]),/* "id-regCtrl-regToken" */ | ||
2431 | &(nid_objs[314]),/* "id-regInfo" */ | ||
2432 | &(nid_objs[322]),/* "id-regInfo-certReq" */ | ||
2433 | &(nid_objs[321]),/* "id-regInfo-utf8Pairs" */ | ||
2434 | &(nid_objs[512]),/* "id-set" */ | ||
2435 | &(nid_objs[191]),/* "id-smime-aa" */ | ||
2436 | &(nid_objs[215]),/* "id-smime-aa-contentHint" */ | ||
2437 | &(nid_objs[218]),/* "id-smime-aa-contentIdentifier" */ | ||
2438 | &(nid_objs[221]),/* "id-smime-aa-contentReference" */ | ||
2439 | &(nid_objs[240]),/* "id-smime-aa-dvcs-dvc" */ | ||
2440 | &(nid_objs[217]),/* "id-smime-aa-encapContentType" */ | ||
2441 | &(nid_objs[222]),/* "id-smime-aa-encrypKeyPref" */ | ||
2442 | &(nid_objs[220]),/* "id-smime-aa-equivalentLabels" */ | ||
2443 | &(nid_objs[232]),/* "id-smime-aa-ets-CertificateRefs" */ | ||
2444 | &(nid_objs[233]),/* "id-smime-aa-ets-RevocationRefs" */ | ||
2445 | &(nid_objs[238]),/* "id-smime-aa-ets-archiveTimeStamp" */ | ||
2446 | &(nid_objs[237]),/* "id-smime-aa-ets-certCRLTimestamp" */ | ||
2447 | &(nid_objs[234]),/* "id-smime-aa-ets-certValues" */ | ||
2448 | &(nid_objs[227]),/* "id-smime-aa-ets-commitmentType" */ | ||
2449 | &(nid_objs[231]),/* "id-smime-aa-ets-contentTimestamp" */ | ||
2450 | &(nid_objs[236]),/* "id-smime-aa-ets-escTimeStamp" */ | ||
2451 | &(nid_objs[230]),/* "id-smime-aa-ets-otherSigCert" */ | ||
2452 | &(nid_objs[235]),/* "id-smime-aa-ets-revocationValues" */ | ||
2453 | &(nid_objs[226]),/* "id-smime-aa-ets-sigPolicyId" */ | ||
2454 | &(nid_objs[229]),/* "id-smime-aa-ets-signerAttr" */ | ||
2455 | &(nid_objs[228]),/* "id-smime-aa-ets-signerLocation" */ | ||
2456 | &(nid_objs[219]),/* "id-smime-aa-macValue" */ | ||
2457 | &(nid_objs[214]),/* "id-smime-aa-mlExpandHistory" */ | ||
2458 | &(nid_objs[216]),/* "id-smime-aa-msgSigDigest" */ | ||
2459 | &(nid_objs[212]),/* "id-smime-aa-receiptRequest" */ | ||
2460 | &(nid_objs[213]),/* "id-smime-aa-securityLabel" */ | ||
2461 | &(nid_objs[239]),/* "id-smime-aa-signatureType" */ | ||
2462 | &(nid_objs[223]),/* "id-smime-aa-signingCertificate" */ | ||
2463 | &(nid_objs[224]),/* "id-smime-aa-smimeEncryptCerts" */ | ||
2464 | &(nid_objs[225]),/* "id-smime-aa-timeStampToken" */ | ||
2465 | &(nid_objs[192]),/* "id-smime-alg" */ | ||
2466 | &(nid_objs[243]),/* "id-smime-alg-3DESwrap" */ | ||
2467 | &(nid_objs[246]),/* "id-smime-alg-CMS3DESwrap" */ | ||
2468 | &(nid_objs[247]),/* "id-smime-alg-CMSRC2wrap" */ | ||
2469 | &(nid_objs[245]),/* "id-smime-alg-ESDH" */ | ||
2470 | &(nid_objs[241]),/* "id-smime-alg-ESDHwith3DES" */ | ||
2471 | &(nid_objs[242]),/* "id-smime-alg-ESDHwithRC2" */ | ||
2472 | &(nid_objs[244]),/* "id-smime-alg-RC2wrap" */ | ||
2473 | &(nid_objs[193]),/* "id-smime-cd" */ | ||
2474 | &(nid_objs[248]),/* "id-smime-cd-ldap" */ | ||
2475 | &(nid_objs[190]),/* "id-smime-ct" */ | ||
2476 | &(nid_objs[210]),/* "id-smime-ct-DVCSRequestData" */ | ||
2477 | &(nid_objs[211]),/* "id-smime-ct-DVCSResponseData" */ | ||
2478 | &(nid_objs[208]),/* "id-smime-ct-TDTInfo" */ | ||
2479 | &(nid_objs[207]),/* "id-smime-ct-TSTInfo" */ | ||
2480 | &(nid_objs[205]),/* "id-smime-ct-authData" */ | ||
2481 | &(nid_objs[786]),/* "id-smime-ct-compressedData" */ | ||
2482 | &(nid_objs[209]),/* "id-smime-ct-contentInfo" */ | ||
2483 | &(nid_objs[206]),/* "id-smime-ct-publishCert" */ | ||
2484 | &(nid_objs[204]),/* "id-smime-ct-receipt" */ | ||
2485 | &(nid_objs[195]),/* "id-smime-cti" */ | ||
2486 | &(nid_objs[255]),/* "id-smime-cti-ets-proofOfApproval" */ | ||
2487 | &(nid_objs[256]),/* "id-smime-cti-ets-proofOfCreation" */ | ||
2488 | &(nid_objs[253]),/* "id-smime-cti-ets-proofOfDelivery" */ | ||
2489 | &(nid_objs[251]),/* "id-smime-cti-ets-proofOfOrigin" */ | ||
2490 | &(nid_objs[252]),/* "id-smime-cti-ets-proofOfReceipt" */ | ||
2491 | &(nid_objs[254]),/* "id-smime-cti-ets-proofOfSender" */ | ||
2492 | &(nid_objs[189]),/* "id-smime-mod" */ | ||
2493 | &(nid_objs[196]),/* "id-smime-mod-cms" */ | ||
2494 | &(nid_objs[197]),/* "id-smime-mod-ess" */ | ||
2495 | &(nid_objs[202]),/* "id-smime-mod-ets-eSigPolicy-88" */ | ||
2496 | &(nid_objs[203]),/* "id-smime-mod-ets-eSigPolicy-97" */ | ||
2497 | &(nid_objs[200]),/* "id-smime-mod-ets-eSignature-88" */ | ||
2498 | &(nid_objs[201]),/* "id-smime-mod-ets-eSignature-97" */ | ||
2499 | &(nid_objs[199]),/* "id-smime-mod-msg-v3" */ | ||
2500 | &(nid_objs[198]),/* "id-smime-mod-oid" */ | ||
2501 | &(nid_objs[194]),/* "id-smime-spq" */ | ||
2502 | &(nid_objs[250]),/* "id-smime-spq-ets-sqt-unotice" */ | ||
2503 | &(nid_objs[249]),/* "id-smime-spq-ets-sqt-uri" */ | ||
2504 | &(nid_objs[676]),/* "identified-organization" */ | ||
2505 | &(nid_objs[461]),/* "info" */ | ||
2506 | &(nid_objs[748]),/* "inhibitAnyPolicy" */ | ||
2507 | &(nid_objs[101]),/* "initials" */ | ||
2508 | &(nid_objs[647]),/* "international-organizations" */ | ||
2509 | &(nid_objs[142]),/* "invalidityDate" */ | ||
2510 | &(nid_objs[294]),/* "ipsecEndSystem" */ | ||
2511 | &(nid_objs[295]),/* "ipsecTunnel" */ | ||
2512 | &(nid_objs[296]),/* "ipsecUser" */ | ||
2513 | &(nid_objs[86]),/* "issuerAltName" */ | ||
2514 | &(nid_objs[770]),/* "issuingDistributionPoint" */ | ||
2515 | &(nid_objs[492]),/* "janetMailbox" */ | ||
2516 | &(nid_objs[150]),/* "keyBag" */ | ||
2517 | &(nid_objs[83]),/* "keyUsage" */ | ||
2518 | &(nid_objs[477]),/* "lastModifiedBy" */ | ||
2519 | &(nid_objs[476]),/* "lastModifiedTime" */ | ||
2520 | &(nid_objs[157]),/* "localKeyID" */ | ||
2521 | &(nid_objs[480]),/* "mXRecord" */ | ||
2522 | &(nid_objs[460]),/* "mail" */ | ||
2523 | &(nid_objs[493]),/* "mailPreferenceOption" */ | ||
2524 | &(nid_objs[467]),/* "manager" */ | ||
2525 | &(nid_objs[182]),/* "member-body" */ | ||
2526 | &(nid_objs[51]),/* "messageDigest" */ | ||
2527 | &(nid_objs[383]),/* "mgmt" */ | ||
2528 | &(nid_objs[504]),/* "mime-mhs" */ | ||
2529 | &(nid_objs[506]),/* "mime-mhs-bodies" */ | ||
2530 | &(nid_objs[505]),/* "mime-mhs-headings" */ | ||
2531 | &(nid_objs[488]),/* "mobileTelephoneNumber" */ | ||
2532 | &(nid_objs[136]),/* "msCTLSign" */ | ||
2533 | &(nid_objs[135]),/* "msCodeCom" */ | ||
2534 | &(nid_objs[134]),/* "msCodeInd" */ | ||
2535 | &(nid_objs[138]),/* "msEFS" */ | ||
2536 | &(nid_objs[171]),/* "msExtReq" */ | ||
2537 | &(nid_objs[137]),/* "msSGC" */ | ||
2538 | &(nid_objs[648]),/* "msSmartcardLogin" */ | ||
2539 | &(nid_objs[649]),/* "msUPN" */ | ||
2540 | &(nid_objs[481]),/* "nSRecord" */ | ||
2541 | &(nid_objs[173]),/* "name" */ | ||
2542 | &(nid_objs[666]),/* "nameConstraints" */ | ||
2543 | &(nid_objs[369]),/* "noCheck" */ | ||
2544 | &(nid_objs[403]),/* "noRevAvail" */ | ||
2545 | &(nid_objs[72]),/* "nsBaseUrl" */ | ||
2546 | &(nid_objs[76]),/* "nsCaPolicyUrl" */ | ||
2547 | &(nid_objs[74]),/* "nsCaRevocationUrl" */ | ||
2548 | &(nid_objs[58]),/* "nsCertExt" */ | ||
2549 | &(nid_objs[79]),/* "nsCertSequence" */ | ||
2550 | &(nid_objs[71]),/* "nsCertType" */ | ||
2551 | &(nid_objs[78]),/* "nsComment" */ | ||
2552 | &(nid_objs[59]),/* "nsDataType" */ | ||
2553 | &(nid_objs[75]),/* "nsRenewalUrl" */ | ||
2554 | &(nid_objs[73]),/* "nsRevocationUrl" */ | ||
2555 | &(nid_objs[139]),/* "nsSGC" */ | ||
2556 | &(nid_objs[77]),/* "nsSslServerName" */ | ||
2557 | &(nid_objs[681]),/* "onBasis" */ | ||
2558 | &(nid_objs[491]),/* "organizationalStatus" */ | ||
2559 | &(nid_objs[475]),/* "otherMailbox" */ | ||
2560 | &(nid_objs[489]),/* "pagerTelephoneNumber" */ | ||
2561 | &(nid_objs[374]),/* "path" */ | ||
2562 | &(nid_objs[112]),/* "pbeWithMD5AndCast5CBC" */ | ||
2563 | &(nid_objs[499]),/* "personalSignature" */ | ||
2564 | &(nid_objs[487]),/* "personalTitle" */ | ||
2565 | &(nid_objs[464]),/* "photo" */ | ||
2566 | &(nid_objs[437]),/* "pilot" */ | ||
2567 | &(nid_objs[439]),/* "pilotAttributeSyntax" */ | ||
2568 | &(nid_objs[438]),/* "pilotAttributeType" */ | ||
2569 | &(nid_objs[479]),/* "pilotAttributeType27" */ | ||
2570 | &(nid_objs[456]),/* "pilotDSA" */ | ||
2571 | &(nid_objs[441]),/* "pilotGroups" */ | ||
2572 | &(nid_objs[444]),/* "pilotObject" */ | ||
2573 | &(nid_objs[440]),/* "pilotObjectClass" */ | ||
2574 | &(nid_objs[455]),/* "pilotOrganization" */ | ||
2575 | &(nid_objs[445]),/* "pilotPerson" */ | ||
2576 | &(nid_objs[ 2]),/* "pkcs" */ | ||
2577 | &(nid_objs[186]),/* "pkcs1" */ | ||
2578 | &(nid_objs[27]),/* "pkcs3" */ | ||
2579 | &(nid_objs[187]),/* "pkcs5" */ | ||
2580 | &(nid_objs[20]),/* "pkcs7" */ | ||
2581 | &(nid_objs[21]),/* "pkcs7-data" */ | ||
2582 | &(nid_objs[25]),/* "pkcs7-digestData" */ | ||
2583 | &(nid_objs[26]),/* "pkcs7-encryptedData" */ | ||
2584 | &(nid_objs[23]),/* "pkcs7-envelopedData" */ | ||
2585 | &(nid_objs[24]),/* "pkcs7-signedAndEnvelopedData" */ | ||
2586 | &(nid_objs[22]),/* "pkcs7-signedData" */ | ||
2587 | &(nid_objs[151]),/* "pkcs8ShroudedKeyBag" */ | ||
2588 | &(nid_objs[47]),/* "pkcs9" */ | ||
2589 | &(nid_objs[401]),/* "policyConstraints" */ | ||
2590 | &(nid_objs[747]),/* "policyMappings" */ | ||
2591 | &(nid_objs[661]),/* "postalCode" */ | ||
2592 | &(nid_objs[683]),/* "ppBasis" */ | ||
2593 | &(nid_objs[406]),/* "prime-field" */ | ||
2594 | &(nid_objs[409]),/* "prime192v1" */ | ||
2595 | &(nid_objs[410]),/* "prime192v2" */ | ||
2596 | &(nid_objs[411]),/* "prime192v3" */ | ||
2597 | &(nid_objs[412]),/* "prime239v1" */ | ||
2598 | &(nid_objs[413]),/* "prime239v2" */ | ||
2599 | &(nid_objs[414]),/* "prime239v3" */ | ||
2600 | &(nid_objs[415]),/* "prime256v1" */ | ||
2601 | &(nid_objs[385]),/* "private" */ | ||
2602 | &(nid_objs[84]),/* "privateKeyUsagePeriod" */ | ||
2603 | &(nid_objs[663]),/* "proxyCertInfo" */ | ||
2604 | &(nid_objs[510]),/* "pseudonym" */ | ||
2605 | &(nid_objs[435]),/* "pss" */ | ||
2606 | &(nid_objs[286]),/* "qcStatements" */ | ||
2607 | &(nid_objs[457]),/* "qualityLabelledData" */ | ||
2608 | &(nid_objs[450]),/* "rFC822localPart" */ | ||
2609 | &(nid_objs[400]),/* "role" */ | ||
2610 | &(nid_objs[448]),/* "room" */ | ||
2611 | &(nid_objs[463]),/* "roomNumber" */ | ||
2612 | &(nid_objs[ 6]),/* "rsaEncryption" */ | ||
2613 | &(nid_objs[644]),/* "rsaOAEPEncryptionSET" */ | ||
2614 | &(nid_objs[377]),/* "rsaSignature" */ | ||
2615 | &(nid_objs[ 1]),/* "rsadsi" */ | ||
2616 | &(nid_objs[482]),/* "sOARecord" */ | ||
2617 | &(nid_objs[155]),/* "safeContentsBag" */ | ||
2618 | &(nid_objs[291]),/* "sbgp-autonomousSysNum" */ | ||
2619 | &(nid_objs[290]),/* "sbgp-ipAddrBlock" */ | ||
2620 | &(nid_objs[292]),/* "sbgp-routerIdentifier" */ | ||
2621 | &(nid_objs[159]),/* "sdsiCertificate" */ | ||
2622 | &(nid_objs[704]),/* "secp112r1" */ | ||
2623 | &(nid_objs[705]),/* "secp112r2" */ | ||
2624 | &(nid_objs[706]),/* "secp128r1" */ | ||
2625 | &(nid_objs[707]),/* "secp128r2" */ | ||
2626 | &(nid_objs[708]),/* "secp160k1" */ | ||
2627 | &(nid_objs[709]),/* "secp160r1" */ | ||
2628 | &(nid_objs[710]),/* "secp160r2" */ | ||
2629 | &(nid_objs[711]),/* "secp192k1" */ | ||
2630 | &(nid_objs[712]),/* "secp224k1" */ | ||
2631 | &(nid_objs[713]),/* "secp224r1" */ | ||
2632 | &(nid_objs[714]),/* "secp256k1" */ | ||
2633 | &(nid_objs[715]),/* "secp384r1" */ | ||
2634 | &(nid_objs[716]),/* "secp521r1" */ | ||
2635 | &(nid_objs[154]),/* "secretBag" */ | ||
2636 | &(nid_objs[474]),/* "secretary" */ | ||
2637 | &(nid_objs[717]),/* "sect113r1" */ | ||
2638 | &(nid_objs[718]),/* "sect113r2" */ | ||
2639 | &(nid_objs[719]),/* "sect131r1" */ | ||
2640 | &(nid_objs[720]),/* "sect131r2" */ | ||
2641 | &(nid_objs[721]),/* "sect163k1" */ | ||
2642 | &(nid_objs[722]),/* "sect163r1" */ | ||
2643 | &(nid_objs[723]),/* "sect163r2" */ | ||
2644 | &(nid_objs[724]),/* "sect193r1" */ | ||
2645 | &(nid_objs[725]),/* "sect193r2" */ | ||
2646 | &(nid_objs[726]),/* "sect233k1" */ | ||
2647 | &(nid_objs[727]),/* "sect233r1" */ | ||
2648 | &(nid_objs[728]),/* "sect239k1" */ | ||
2649 | &(nid_objs[729]),/* "sect283k1" */ | ||
2650 | &(nid_objs[730]),/* "sect283r1" */ | ||
2651 | &(nid_objs[731]),/* "sect409k1" */ | ||
2652 | &(nid_objs[732]),/* "sect409r1" */ | ||
2653 | &(nid_objs[733]),/* "sect571k1" */ | ||
2654 | &(nid_objs[734]),/* "sect571r1" */ | ||
2655 | &(nid_objs[386]),/* "security" */ | ||
2656 | &(nid_objs[394]),/* "selected-attribute-types" */ | ||
2657 | &(nid_objs[105]),/* "serialNumber" */ | ||
2658 | &(nid_objs[129]),/* "serverAuth" */ | ||
2659 | &(nid_objs[371]),/* "serviceLocator" */ | ||
2660 | &(nid_objs[625]),/* "set-addPolicy" */ | ||
2661 | &(nid_objs[515]),/* "set-attr" */ | ||
2662 | &(nid_objs[518]),/* "set-brand" */ | ||
2663 | &(nid_objs[638]),/* "set-brand-AmericanExpress" */ | ||
2664 | &(nid_objs[637]),/* "set-brand-Diners" */ | ||
2665 | &(nid_objs[636]),/* "set-brand-IATA-ATA" */ | ||
2666 | &(nid_objs[639]),/* "set-brand-JCB" */ | ||
2667 | &(nid_objs[641]),/* "set-brand-MasterCard" */ | ||
2668 | &(nid_objs[642]),/* "set-brand-Novus" */ | ||
2669 | &(nid_objs[640]),/* "set-brand-Visa" */ | ||
2670 | &(nid_objs[517]),/* "set-certExt" */ | ||
2671 | &(nid_objs[513]),/* "set-ctype" */ | ||
2672 | &(nid_objs[514]),/* "set-msgExt" */ | ||
2673 | &(nid_objs[516]),/* "set-policy" */ | ||
2674 | &(nid_objs[607]),/* "set-policy-root" */ | ||
2675 | &(nid_objs[624]),/* "set-rootKeyThumb" */ | ||
2676 | &(nid_objs[620]),/* "setAttr-Cert" */ | ||
2677 | &(nid_objs[631]),/* "setAttr-GenCryptgrm" */ | ||
2678 | &(nid_objs[623]),/* "setAttr-IssCap" */ | ||
2679 | &(nid_objs[628]),/* "setAttr-IssCap-CVM" */ | ||
2680 | &(nid_objs[630]),/* "setAttr-IssCap-Sig" */ | ||
2681 | &(nid_objs[629]),/* "setAttr-IssCap-T2" */ | ||
2682 | &(nid_objs[621]),/* "setAttr-PGWYcap" */ | ||
2683 | &(nid_objs[635]),/* "setAttr-SecDevSig" */ | ||
2684 | &(nid_objs[632]),/* "setAttr-T2Enc" */ | ||
2685 | &(nid_objs[633]),/* "setAttr-T2cleartxt" */ | ||
2686 | &(nid_objs[634]),/* "setAttr-TokICCsig" */ | ||
2687 | &(nid_objs[627]),/* "setAttr-Token-B0Prime" */ | ||
2688 | &(nid_objs[626]),/* "setAttr-Token-EMV" */ | ||
2689 | &(nid_objs[622]),/* "setAttr-TokenType" */ | ||
2690 | &(nid_objs[619]),/* "setCext-IssuerCapabilities" */ | ||
2691 | &(nid_objs[615]),/* "setCext-PGWYcapabilities" */ | ||
2692 | &(nid_objs[616]),/* "setCext-TokenIdentifier" */ | ||
2693 | &(nid_objs[618]),/* "setCext-TokenType" */ | ||
2694 | &(nid_objs[617]),/* "setCext-Track2Data" */ | ||
2695 | &(nid_objs[611]),/* "setCext-cCertRequired" */ | ||
2696 | &(nid_objs[609]),/* "setCext-certType" */ | ||
2697 | &(nid_objs[608]),/* "setCext-hashedRoot" */ | ||
2698 | &(nid_objs[610]),/* "setCext-merchData" */ | ||
2699 | &(nid_objs[613]),/* "setCext-setExt" */ | ||
2700 | &(nid_objs[614]),/* "setCext-setQualf" */ | ||
2701 | &(nid_objs[612]),/* "setCext-tunneling" */ | ||
2702 | &(nid_objs[540]),/* "setct-AcqCardCodeMsg" */ | ||
2703 | &(nid_objs[576]),/* "setct-AcqCardCodeMsgTBE" */ | ||
2704 | &(nid_objs[570]),/* "setct-AuthReqTBE" */ | ||
2705 | &(nid_objs[534]),/* "setct-AuthReqTBS" */ | ||
2706 | &(nid_objs[527]),/* "setct-AuthResBaggage" */ | ||
2707 | &(nid_objs[571]),/* "setct-AuthResTBE" */ | ||
2708 | &(nid_objs[572]),/* "setct-AuthResTBEX" */ | ||
2709 | &(nid_objs[535]),/* "setct-AuthResTBS" */ | ||
2710 | &(nid_objs[536]),/* "setct-AuthResTBSX" */ | ||
2711 | &(nid_objs[528]),/* "setct-AuthRevReqBaggage" */ | ||
2712 | &(nid_objs[577]),/* "setct-AuthRevReqTBE" */ | ||
2713 | &(nid_objs[541]),/* "setct-AuthRevReqTBS" */ | ||
2714 | &(nid_objs[529]),/* "setct-AuthRevResBaggage" */ | ||
2715 | &(nid_objs[542]),/* "setct-AuthRevResData" */ | ||
2716 | &(nid_objs[578]),/* "setct-AuthRevResTBE" */ | ||
2717 | &(nid_objs[579]),/* "setct-AuthRevResTBEB" */ | ||
2718 | &(nid_objs[543]),/* "setct-AuthRevResTBS" */ | ||
2719 | &(nid_objs[573]),/* "setct-AuthTokenTBE" */ | ||
2720 | &(nid_objs[537]),/* "setct-AuthTokenTBS" */ | ||
2721 | &(nid_objs[600]),/* "setct-BCIDistributionTBS" */ | ||
2722 | &(nid_objs[558]),/* "setct-BatchAdminReqData" */ | ||
2723 | &(nid_objs[592]),/* "setct-BatchAdminReqTBE" */ | ||
2724 | &(nid_objs[559]),/* "setct-BatchAdminResData" */ | ||
2725 | &(nid_objs[593]),/* "setct-BatchAdminResTBE" */ | ||
2726 | &(nid_objs[599]),/* "setct-CRLNotificationResTBS" */ | ||
2727 | &(nid_objs[598]),/* "setct-CRLNotificationTBS" */ | ||
2728 | &(nid_objs[580]),/* "setct-CapReqTBE" */ | ||
2729 | &(nid_objs[581]),/* "setct-CapReqTBEX" */ | ||
2730 | &(nid_objs[544]),/* "setct-CapReqTBS" */ | ||
2731 | &(nid_objs[545]),/* "setct-CapReqTBSX" */ | ||
2732 | &(nid_objs[546]),/* "setct-CapResData" */ | ||
2733 | &(nid_objs[582]),/* "setct-CapResTBE" */ | ||
2734 | &(nid_objs[583]),/* "setct-CapRevReqTBE" */ | ||
2735 | &(nid_objs[584]),/* "setct-CapRevReqTBEX" */ | ||
2736 | &(nid_objs[547]),/* "setct-CapRevReqTBS" */ | ||
2737 | &(nid_objs[548]),/* "setct-CapRevReqTBSX" */ | ||
2738 | &(nid_objs[549]),/* "setct-CapRevResData" */ | ||
2739 | &(nid_objs[585]),/* "setct-CapRevResTBE" */ | ||
2740 | &(nid_objs[538]),/* "setct-CapTokenData" */ | ||
2741 | &(nid_objs[530]),/* "setct-CapTokenSeq" */ | ||
2742 | &(nid_objs[574]),/* "setct-CapTokenTBE" */ | ||
2743 | &(nid_objs[575]),/* "setct-CapTokenTBEX" */ | ||
2744 | &(nid_objs[539]),/* "setct-CapTokenTBS" */ | ||
2745 | &(nid_objs[560]),/* "setct-CardCInitResTBS" */ | ||
2746 | &(nid_objs[566]),/* "setct-CertInqReqTBS" */ | ||
2747 | &(nid_objs[563]),/* "setct-CertReqData" */ | ||
2748 | &(nid_objs[595]),/* "setct-CertReqTBE" */ | ||
2749 | &(nid_objs[596]),/* "setct-CertReqTBEX" */ | ||
2750 | &(nid_objs[564]),/* "setct-CertReqTBS" */ | ||
2751 | &(nid_objs[565]),/* "setct-CertResData" */ | ||
2752 | &(nid_objs[597]),/* "setct-CertResTBE" */ | ||
2753 | &(nid_objs[586]),/* "setct-CredReqTBE" */ | ||
2754 | &(nid_objs[587]),/* "setct-CredReqTBEX" */ | ||
2755 | &(nid_objs[550]),/* "setct-CredReqTBS" */ | ||
2756 | &(nid_objs[551]),/* "setct-CredReqTBSX" */ | ||
2757 | &(nid_objs[552]),/* "setct-CredResData" */ | ||
2758 | &(nid_objs[588]),/* "setct-CredResTBE" */ | ||
2759 | &(nid_objs[589]),/* "setct-CredRevReqTBE" */ | ||
2760 | &(nid_objs[590]),/* "setct-CredRevReqTBEX" */ | ||
2761 | &(nid_objs[553]),/* "setct-CredRevReqTBS" */ | ||
2762 | &(nid_objs[554]),/* "setct-CredRevReqTBSX" */ | ||
2763 | &(nid_objs[555]),/* "setct-CredRevResData" */ | ||
2764 | &(nid_objs[591]),/* "setct-CredRevResTBE" */ | ||
2765 | &(nid_objs[567]),/* "setct-ErrorTBS" */ | ||
2766 | &(nid_objs[526]),/* "setct-HODInput" */ | ||
2767 | &(nid_objs[561]),/* "setct-MeAqCInitResTBS" */ | ||
2768 | &(nid_objs[522]),/* "setct-OIData" */ | ||
2769 | &(nid_objs[519]),/* "setct-PANData" */ | ||
2770 | &(nid_objs[521]),/* "setct-PANOnly" */ | ||
2771 | &(nid_objs[520]),/* "setct-PANToken" */ | ||
2772 | &(nid_objs[556]),/* "setct-PCertReqData" */ | ||
2773 | &(nid_objs[557]),/* "setct-PCertResTBS" */ | ||
2774 | &(nid_objs[523]),/* "setct-PI" */ | ||
2775 | &(nid_objs[532]),/* "setct-PI-TBS" */ | ||
2776 | &(nid_objs[524]),/* "setct-PIData" */ | ||
2777 | &(nid_objs[525]),/* "setct-PIDataUnsigned" */ | ||
2778 | &(nid_objs[568]),/* "setct-PIDualSignedTBE" */ | ||
2779 | &(nid_objs[569]),/* "setct-PIUnsignedTBE" */ | ||
2780 | &(nid_objs[531]),/* "setct-PInitResData" */ | ||
2781 | &(nid_objs[533]),/* "setct-PResData" */ | ||
2782 | &(nid_objs[594]),/* "setct-RegFormReqTBE" */ | ||
2783 | &(nid_objs[562]),/* "setct-RegFormResTBS" */ | ||
2784 | &(nid_objs[606]),/* "setext-cv" */ | ||
2785 | &(nid_objs[601]),/* "setext-genCrypt" */ | ||
2786 | &(nid_objs[602]),/* "setext-miAuth" */ | ||
2787 | &(nid_objs[604]),/* "setext-pinAny" */ | ||
2788 | &(nid_objs[603]),/* "setext-pinSecure" */ | ||
2789 | &(nid_objs[605]),/* "setext-track2" */ | ||
2790 | &(nid_objs[52]),/* "signingTime" */ | ||
2791 | &(nid_objs[454]),/* "simpleSecurityObject" */ | ||
2792 | &(nid_objs[496]),/* "singleLevelQuality" */ | ||
2793 | &(nid_objs[387]),/* "snmpv2" */ | ||
2794 | &(nid_objs[660]),/* "streetAddress" */ | ||
2795 | &(nid_objs[85]),/* "subjectAltName" */ | ||
2796 | &(nid_objs[769]),/* "subjectDirectoryAttributes" */ | ||
2797 | &(nid_objs[398]),/* "subjectInfoAccess" */ | ||
2798 | &(nid_objs[82]),/* "subjectKeyIdentifier" */ | ||
2799 | &(nid_objs[498]),/* "subtreeMaximumQuality" */ | ||
2800 | &(nid_objs[497]),/* "subtreeMinimumQuality" */ | ||
2801 | &(nid_objs[402]),/* "targetInformation" */ | ||
2802 | &(nid_objs[459]),/* "textEncodedORAddress" */ | ||
2803 | &(nid_objs[293]),/* "textNotice" */ | ||
2804 | &(nid_objs[133]),/* "timeStamping" */ | ||
2805 | &(nid_objs[106]),/* "title" */ | ||
2806 | &(nid_objs[682]),/* "tpBasis" */ | ||
2807 | &(nid_objs[375]),/* "trustRoot" */ | ||
2808 | &(nid_objs[436]),/* "ucl" */ | ||
2809 | &(nid_objs[55]),/* "unstructuredAddress" */ | ||
2810 | &(nid_objs[49]),/* "unstructuredName" */ | ||
2811 | &(nid_objs[465]),/* "userClass" */ | ||
2812 | &(nid_objs[373]),/* "valid" */ | ||
2813 | &(nid_objs[678]),/* "wap" */ | ||
2814 | &(nid_objs[679]),/* "wap-wsg" */ | ||
2815 | &(nid_objs[735]),/* "wap-wsg-idm-ecid-wtls1" */ | ||
2816 | &(nid_objs[743]),/* "wap-wsg-idm-ecid-wtls10" */ | ||
2817 | &(nid_objs[744]),/* "wap-wsg-idm-ecid-wtls11" */ | ||
2818 | &(nid_objs[745]),/* "wap-wsg-idm-ecid-wtls12" */ | ||
2819 | &(nid_objs[736]),/* "wap-wsg-idm-ecid-wtls3" */ | ||
2820 | &(nid_objs[737]),/* "wap-wsg-idm-ecid-wtls4" */ | ||
2821 | &(nid_objs[738]),/* "wap-wsg-idm-ecid-wtls5" */ | ||
2822 | &(nid_objs[739]),/* "wap-wsg-idm-ecid-wtls6" */ | ||
2823 | &(nid_objs[740]),/* "wap-wsg-idm-ecid-wtls7" */ | ||
2824 | &(nid_objs[741]),/* "wap-wsg-idm-ecid-wtls8" */ | ||
2825 | &(nid_objs[742]),/* "wap-wsg-idm-ecid-wtls9" */ | ||
2826 | &(nid_objs[503]),/* "x500UniqueIdentifier" */ | ||
2827 | &(nid_objs[158]),/* "x509Certificate" */ | ||
2828 | &(nid_objs[160]),/* "x509Crl" */ | ||
2829 | }; | ||
2830 | |||
2831 | static ASN1_OBJECT *ln_objs[NUM_LN]={ | ||
2832 | &(nid_objs[363]),/* "AD Time Stamping" */ | ||
2833 | &(nid_objs[405]),/* "ANSI X9.62" */ | ||
2834 | &(nid_objs[368]),/* "Acceptable OCSP Responses" */ | ||
2835 | &(nid_objs[664]),/* "Any language" */ | ||
2836 | &(nid_objs[177]),/* "Authority Information Access" */ | ||
2837 | &(nid_objs[365]),/* "Basic OCSP Response" */ | ||
2838 | &(nid_objs[285]),/* "Biometric Info" */ | ||
2839 | &(nid_objs[179]),/* "CA Issuers" */ | ||
2840 | &(nid_objs[785]),/* "CA Repository" */ | ||
2841 | &(nid_objs[131]),/* "Code Signing" */ | ||
2842 | &(nid_objs[783]),/* "Diffie-Hellman based MAC" */ | ||
2843 | &(nid_objs[382]),/* "Directory" */ | ||
2844 | &(nid_objs[392]),/* "Domain" */ | ||
2845 | &(nid_objs[132]),/* "E-mail Protection" */ | ||
2846 | &(nid_objs[389]),/* "Enterprises" */ | ||
2847 | &(nid_objs[384]),/* "Experimental" */ | ||
2848 | &(nid_objs[372]),/* "Extended OCSP Status" */ | ||
2849 | &(nid_objs[172]),/* "Extension Request" */ | ||
2850 | &(nid_objs[432]),/* "Hold Instruction Call Issuer" */ | ||
2851 | &(nid_objs[430]),/* "Hold Instruction Code" */ | ||
2852 | &(nid_objs[431]),/* "Hold Instruction None" */ | ||
2853 | &(nid_objs[433]),/* "Hold Instruction Reject" */ | ||
2854 | &(nid_objs[634]),/* "ICC or token signature" */ | ||
2855 | &(nid_objs[294]),/* "IPSec End System" */ | ||
2856 | &(nid_objs[295]),/* "IPSec Tunnel" */ | ||
2857 | &(nid_objs[296]),/* "IPSec User" */ | ||
2858 | &(nid_objs[182]),/* "ISO Member Body" */ | ||
2859 | &(nid_objs[183]),/* "ISO US Member Body" */ | ||
2860 | &(nid_objs[667]),/* "Independent" */ | ||
2861 | &(nid_objs[665]),/* "Inherit all" */ | ||
2862 | &(nid_objs[647]),/* "International Organizations" */ | ||
2863 | &(nid_objs[142]),/* "Invalidity Date" */ | ||
2864 | &(nid_objs[504]),/* "MIME MHS" */ | ||
2865 | &(nid_objs[388]),/* "Mail" */ | ||
2866 | &(nid_objs[383]),/* "Management" */ | ||
2867 | &(nid_objs[417]),/* "Microsoft CSP Name" */ | ||
2868 | &(nid_objs[135]),/* "Microsoft Commercial Code Signing" */ | ||
2869 | &(nid_objs[138]),/* "Microsoft Encrypted File System" */ | ||
2870 | &(nid_objs[171]),/* "Microsoft Extension Request" */ | ||
2871 | &(nid_objs[134]),/* "Microsoft Individual Code Signing" */ | ||
2872 | &(nid_objs[137]),/* "Microsoft Server Gated Crypto" */ | ||
2873 | &(nid_objs[648]),/* "Microsoft Smartcardlogin" */ | ||
2874 | &(nid_objs[136]),/* "Microsoft Trust List Signing" */ | ||
2875 | &(nid_objs[649]),/* "Microsoft Universal Principal Name" */ | ||
2876 | &(nid_objs[393]),/* "NULL" */ | ||
2877 | &(nid_objs[404]),/* "NULL" */ | ||
2878 | &(nid_objs[72]),/* "Netscape Base Url" */ | ||
2879 | &(nid_objs[76]),/* "Netscape CA Policy Url" */ | ||
2880 | &(nid_objs[74]),/* "Netscape CA Revocation Url" */ | ||
2881 | &(nid_objs[71]),/* "Netscape Cert Type" */ | ||
2882 | &(nid_objs[58]),/* "Netscape Certificate Extension" */ | ||
2883 | &(nid_objs[79]),/* "Netscape Certificate Sequence" */ | ||
2884 | &(nid_objs[78]),/* "Netscape Comment" */ | ||
2885 | &(nid_objs[57]),/* "Netscape Communications Corp." */ | ||
2886 | &(nid_objs[59]),/* "Netscape Data Type" */ | ||
2887 | &(nid_objs[75]),/* "Netscape Renewal Url" */ | ||
2888 | &(nid_objs[73]),/* "Netscape Revocation Url" */ | ||
2889 | &(nid_objs[77]),/* "Netscape SSL Server Name" */ | ||
2890 | &(nid_objs[139]),/* "Netscape Server Gated Crypto" */ | ||
2891 | &(nid_objs[178]),/* "OCSP" */ | ||
2892 | &(nid_objs[370]),/* "OCSP Archive Cutoff" */ | ||
2893 | &(nid_objs[367]),/* "OCSP CRL ID" */ | ||
2894 | &(nid_objs[369]),/* "OCSP No Check" */ | ||
2895 | &(nid_objs[366]),/* "OCSP Nonce" */ | ||
2896 | &(nid_objs[371]),/* "OCSP Service Locator" */ | ||
2897 | &(nid_objs[180]),/* "OCSP Signing" */ | ||
2898 | &(nid_objs[161]),/* "PBES2" */ | ||
2899 | &(nid_objs[69]),/* "PBKDF2" */ | ||
2900 | &(nid_objs[162]),/* "PBMAC1" */ | ||
2901 | &(nid_objs[127]),/* "PKIX" */ | ||
2902 | &(nid_objs[164]),/* "Policy Qualifier CPS" */ | ||
2903 | &(nid_objs[165]),/* "Policy Qualifier User Notice" */ | ||
2904 | &(nid_objs[385]),/* "Private" */ | ||
2905 | &(nid_objs[663]),/* "Proxy Certificate Information" */ | ||
2906 | &(nid_objs[ 1]),/* "RSA Data Security, Inc." */ | ||
2907 | &(nid_objs[ 2]),/* "RSA Data Security, Inc. PKCS" */ | ||
2908 | &(nid_objs[188]),/* "S/MIME" */ | ||
2909 | &(nid_objs[167]),/* "S/MIME Capabilities" */ | ||
2910 | &(nid_objs[387]),/* "SNMPv2" */ | ||
2911 | &(nid_objs[512]),/* "Secure Electronic Transactions" */ | ||
2912 | &(nid_objs[386]),/* "Security" */ | ||
2913 | &(nid_objs[394]),/* "Selected Attribute Types" */ | ||
2914 | &(nid_objs[143]),/* "Strong Extranet ID" */ | ||
2915 | &(nid_objs[398]),/* "Subject Information Access" */ | ||
2916 | &(nid_objs[130]),/* "TLS Web Client Authentication" */ | ||
2917 | &(nid_objs[129]),/* "TLS Web Server Authentication" */ | ||
2918 | &(nid_objs[133]),/* "Time Stamping" */ | ||
2919 | &(nid_objs[375]),/* "Trust Root" */ | ||
2920 | &(nid_objs[12]),/* "X509" */ | ||
2921 | &(nid_objs[402]),/* "X509v3 AC Targeting" */ | ||
2922 | &(nid_objs[746]),/* "X509v3 Any Policy" */ | ||
2923 | &(nid_objs[90]),/* "X509v3 Authority Key Identifier" */ | ||
2924 | &(nid_objs[87]),/* "X509v3 Basic Constraints" */ | ||
2925 | &(nid_objs[103]),/* "X509v3 CRL Distribution Points" */ | ||
2926 | &(nid_objs[88]),/* "X509v3 CRL Number" */ | ||
2927 | &(nid_objs[141]),/* "X509v3 CRL Reason Code" */ | ||
2928 | &(nid_objs[771]),/* "X509v3 Certificate Issuer" */ | ||
2929 | &(nid_objs[89]),/* "X509v3 Certificate Policies" */ | ||
2930 | &(nid_objs[140]),/* "X509v3 Delta CRL Indicator" */ | ||
2931 | &(nid_objs[126]),/* "X509v3 Extended Key Usage" */ | ||
2932 | &(nid_objs[748]),/* "X509v3 Inhibit Any Policy" */ | ||
2933 | &(nid_objs[86]),/* "X509v3 Issuer Alternative Name" */ | ||
2934 | &(nid_objs[770]),/* "X509v3 Issuing Distrubution Point" */ | ||
2935 | &(nid_objs[83]),/* "X509v3 Key Usage" */ | ||
2936 | &(nid_objs[666]),/* "X509v3 Name Constraints" */ | ||
2937 | &(nid_objs[403]),/* "X509v3 No Revocation Available" */ | ||
2938 | &(nid_objs[401]),/* "X509v3 Policy Constraints" */ | ||
2939 | &(nid_objs[747]),/* "X509v3 Policy Mappings" */ | ||
2940 | &(nid_objs[84]),/* "X509v3 Private Key Usage Period" */ | ||
2941 | &(nid_objs[85]),/* "X509v3 Subject Alternative Name" */ | ||
2942 | &(nid_objs[769]),/* "X509v3 Subject Directory Attributes" */ | ||
2943 | &(nid_objs[82]),/* "X509v3 Subject Key Identifier" */ | ||
2944 | &(nid_objs[184]),/* "X9.57" */ | ||
2945 | &(nid_objs[185]),/* "X9.57 CM ?" */ | ||
2946 | &(nid_objs[478]),/* "aRecord" */ | ||
2947 | &(nid_objs[289]),/* "aaControls" */ | ||
2948 | &(nid_objs[287]),/* "ac-auditEntity" */ | ||
2949 | &(nid_objs[397]),/* "ac-proxying" */ | ||
2950 | &(nid_objs[288]),/* "ac-targeting" */ | ||
2951 | &(nid_objs[446]),/* "account" */ | ||
2952 | &(nid_objs[364]),/* "ad dvcs" */ | ||
2953 | &(nid_objs[606]),/* "additional verification" */ | ||
2954 | &(nid_objs[419]),/* "aes-128-cbc" */ | ||
2955 | &(nid_objs[421]),/* "aes-128-cfb" */ | ||
2956 | &(nid_objs[650]),/* "aes-128-cfb1" */ | ||
2957 | &(nid_objs[653]),/* "aes-128-cfb8" */ | ||
2958 | &(nid_objs[418]),/* "aes-128-ecb" */ | ||
2959 | &(nid_objs[420]),/* "aes-128-ofb" */ | ||
2960 | &(nid_objs[423]),/* "aes-192-cbc" */ | ||
2961 | &(nid_objs[425]),/* "aes-192-cfb" */ | ||
2962 | &(nid_objs[651]),/* "aes-192-cfb1" */ | ||
2963 | &(nid_objs[654]),/* "aes-192-cfb8" */ | ||
2964 | &(nid_objs[422]),/* "aes-192-ecb" */ | ||
2965 | &(nid_objs[424]),/* "aes-192-ofb" */ | ||
2966 | &(nid_objs[427]),/* "aes-256-cbc" */ | ||
2967 | &(nid_objs[429]),/* "aes-256-cfb" */ | ||
2968 | &(nid_objs[652]),/* "aes-256-cfb1" */ | ||
2969 | &(nid_objs[655]),/* "aes-256-cfb8" */ | ||
2970 | &(nid_objs[426]),/* "aes-256-ecb" */ | ||
2971 | &(nid_objs[428]),/* "aes-256-ofb" */ | ||
2972 | &(nid_objs[376]),/* "algorithm" */ | ||
2973 | &(nid_objs[484]),/* "associatedDomain" */ | ||
2974 | &(nid_objs[485]),/* "associatedName" */ | ||
2975 | &(nid_objs[501]),/* "audio" */ | ||
2976 | &(nid_objs[91]),/* "bf-cbc" */ | ||
2977 | &(nid_objs[93]),/* "bf-cfb" */ | ||
2978 | &(nid_objs[92]),/* "bf-ecb" */ | ||
2979 | &(nid_objs[94]),/* "bf-ofb" */ | ||
2980 | &(nid_objs[494]),/* "buildingName" */ | ||
2981 | &(nid_objs[691]),/* "c2onb191v4" */ | ||
2982 | &(nid_objs[692]),/* "c2onb191v5" */ | ||
2983 | &(nid_objs[697]),/* "c2onb239v4" */ | ||
2984 | &(nid_objs[698]),/* "c2onb239v5" */ | ||
2985 | &(nid_objs[684]),/* "c2pnb163v1" */ | ||
2986 | &(nid_objs[685]),/* "c2pnb163v2" */ | ||
2987 | &(nid_objs[686]),/* "c2pnb163v3" */ | ||
2988 | &(nid_objs[687]),/* "c2pnb176v1" */ | ||
2989 | &(nid_objs[693]),/* "c2pnb208w1" */ | ||
2990 | &(nid_objs[699]),/* "c2pnb272w1" */ | ||
2991 | &(nid_objs[700]),/* "c2pnb304w1" */ | ||
2992 | &(nid_objs[702]),/* "c2pnb368w1" */ | ||
2993 | &(nid_objs[688]),/* "c2tnb191v1" */ | ||
2994 | &(nid_objs[689]),/* "c2tnb191v2" */ | ||
2995 | &(nid_objs[690]),/* "c2tnb191v3" */ | ||
2996 | &(nid_objs[694]),/* "c2tnb239v1" */ | ||
2997 | &(nid_objs[695]),/* "c2tnb239v2" */ | ||
2998 | &(nid_objs[696]),/* "c2tnb239v3" */ | ||
2999 | &(nid_objs[701]),/* "c2tnb359v1" */ | ||
3000 | &(nid_objs[703]),/* "c2tnb431r1" */ | ||
3001 | &(nid_objs[483]),/* "cNAMERecord" */ | ||
3002 | &(nid_objs[751]),/* "camellia-128-cbc" */ | ||
3003 | &(nid_objs[757]),/* "camellia-128-cfb" */ | ||
3004 | &(nid_objs[760]),/* "camellia-128-cfb1" */ | ||
3005 | &(nid_objs[763]),/* "camellia-128-cfb8" */ | ||
3006 | &(nid_objs[754]),/* "camellia-128-ecb" */ | ||
3007 | &(nid_objs[766]),/* "camellia-128-ofb" */ | ||
3008 | &(nid_objs[752]),/* "camellia-192-cbc" */ | ||
3009 | &(nid_objs[758]),/* "camellia-192-cfb" */ | ||
3010 | &(nid_objs[761]),/* "camellia-192-cfb1" */ | ||
3011 | &(nid_objs[764]),/* "camellia-192-cfb8" */ | ||
3012 | &(nid_objs[755]),/* "camellia-192-ecb" */ | ||
3013 | &(nid_objs[767]),/* "camellia-192-ofb" */ | ||
3014 | &(nid_objs[753]),/* "camellia-256-cbc" */ | ||
3015 | &(nid_objs[759]),/* "camellia-256-cfb" */ | ||
3016 | &(nid_objs[762]),/* "camellia-256-cfb1" */ | ||
3017 | &(nid_objs[765]),/* "camellia-256-cfb8" */ | ||
3018 | &(nid_objs[756]),/* "camellia-256-ecb" */ | ||
3019 | &(nid_objs[768]),/* "camellia-256-ofb" */ | ||
3020 | &(nid_objs[443]),/* "caseIgnoreIA5StringSyntax" */ | ||
3021 | &(nid_objs[108]),/* "cast5-cbc" */ | ||
3022 | &(nid_objs[110]),/* "cast5-cfb" */ | ||
3023 | &(nid_objs[109]),/* "cast5-ecb" */ | ||
3024 | &(nid_objs[111]),/* "cast5-ofb" */ | ||
3025 | &(nid_objs[152]),/* "certBag" */ | ||
3026 | &(nid_objs[677]),/* "certicom-arc" */ | ||
3027 | &(nid_objs[517]),/* "certificate extensions" */ | ||
3028 | &(nid_objs[54]),/* "challengePassword" */ | ||
3029 | &(nid_objs[407]),/* "characteristic-two-field" */ | ||
3030 | &(nid_objs[395]),/* "clearance" */ | ||
3031 | &(nid_objs[633]),/* "cleartext track 2" */ | ||
3032 | &(nid_objs[13]),/* "commonName" */ | ||
3033 | &(nid_objs[513]),/* "content types" */ | ||
3034 | &(nid_objs[50]),/* "contentType" */ | ||
3035 | &(nid_objs[53]),/* "countersignature" */ | ||
3036 | &(nid_objs[14]),/* "countryName" */ | ||
3037 | &(nid_objs[153]),/* "crlBag" */ | ||
3038 | &(nid_objs[500]),/* "dITRedirect" */ | ||
3039 | &(nid_objs[451]),/* "dNSDomain" */ | ||
3040 | &(nid_objs[495]),/* "dSAQuality" */ | ||
3041 | &(nid_objs[434]),/* "data" */ | ||
3042 | &(nid_objs[390]),/* "dcObject" */ | ||
3043 | &(nid_objs[31]),/* "des-cbc" */ | ||
3044 | &(nid_objs[643]),/* "des-cdmf" */ | ||
3045 | &(nid_objs[30]),/* "des-cfb" */ | ||
3046 | &(nid_objs[656]),/* "des-cfb1" */ | ||
3047 | &(nid_objs[657]),/* "des-cfb8" */ | ||
3048 | &(nid_objs[29]),/* "des-ecb" */ | ||
3049 | &(nid_objs[32]),/* "des-ede" */ | ||
3050 | &(nid_objs[43]),/* "des-ede-cbc" */ | ||
3051 | &(nid_objs[60]),/* "des-ede-cfb" */ | ||
3052 | &(nid_objs[62]),/* "des-ede-ofb" */ | ||
3053 | &(nid_objs[33]),/* "des-ede3" */ | ||
3054 | &(nid_objs[44]),/* "des-ede3-cbc" */ | ||
3055 | &(nid_objs[61]),/* "des-ede3-cfb" */ | ||
3056 | &(nid_objs[658]),/* "des-ede3-cfb1" */ | ||
3057 | &(nid_objs[659]),/* "des-ede3-cfb8" */ | ||
3058 | &(nid_objs[63]),/* "des-ede3-ofb" */ | ||
3059 | &(nid_objs[45]),/* "des-ofb" */ | ||
3060 | &(nid_objs[107]),/* "description" */ | ||
3061 | &(nid_objs[80]),/* "desx-cbc" */ | ||
3062 | &(nid_objs[28]),/* "dhKeyAgreement" */ | ||
3063 | &(nid_objs[11]),/* "directory services (X.500)" */ | ||
3064 | &(nid_objs[378]),/* "directory services - algorithms" */ | ||
3065 | &(nid_objs[174]),/* "dnQualifier" */ | ||
3066 | &(nid_objs[447]),/* "document" */ | ||
3067 | &(nid_objs[471]),/* "documentAuthor" */ | ||
3068 | &(nid_objs[468]),/* "documentIdentifier" */ | ||
3069 | &(nid_objs[472]),/* "documentLocation" */ | ||
3070 | &(nid_objs[502]),/* "documentPublisher" */ | ||
3071 | &(nid_objs[449]),/* "documentSeries" */ | ||
3072 | &(nid_objs[469]),/* "documentTitle" */ | ||
3073 | &(nid_objs[470]),/* "documentVersion" */ | ||
3074 | &(nid_objs[380]),/* "dod" */ | ||
3075 | &(nid_objs[391]),/* "domainComponent" */ | ||
3076 | &(nid_objs[452]),/* "domainRelatedObject" */ | ||
3077 | &(nid_objs[116]),/* "dsaEncryption" */ | ||
3078 | &(nid_objs[67]),/* "dsaEncryption-old" */ | ||
3079 | &(nid_objs[66]),/* "dsaWithSHA" */ | ||
3080 | &(nid_objs[113]),/* "dsaWithSHA1" */ | ||
3081 | &(nid_objs[70]),/* "dsaWithSHA1-old" */ | ||
3082 | &(nid_objs[297]),/* "dvcs" */ | ||
3083 | &(nid_objs[416]),/* "ecdsa-with-SHA1" */ | ||
3084 | &(nid_objs[48]),/* "emailAddress" */ | ||
3085 | &(nid_objs[632]),/* "encrypted track 2" */ | ||
3086 | &(nid_objs[56]),/* "extendedCertificateAttributes" */ | ||
3087 | &(nid_objs[462]),/* "favouriteDrink" */ | ||
3088 | &(nid_objs[453]),/* "friendlyCountry" */ | ||
3089 | &(nid_objs[490]),/* "friendlyCountryName" */ | ||
3090 | &(nid_objs[156]),/* "friendlyName" */ | ||
3091 | &(nid_objs[631]),/* "generate cryptogram" */ | ||
3092 | &(nid_objs[509]),/* "generationQualifier" */ | ||
3093 | &(nid_objs[601]),/* "generic cryptogram" */ | ||
3094 | &(nid_objs[99]),/* "givenName" */ | ||
3095 | &(nid_objs[780]),/* "hmac-md5" */ | ||
3096 | &(nid_objs[781]),/* "hmac-sha1" */ | ||
3097 | &(nid_objs[163]),/* "hmacWithSHA1" */ | ||
3098 | &(nid_objs[486]),/* "homePostalAddress" */ | ||
3099 | &(nid_objs[473]),/* "homeTelephoneNumber" */ | ||
3100 | &(nid_objs[466]),/* "host" */ | ||
3101 | &(nid_objs[442]),/* "iA5StringSyntax" */ | ||
3102 | &(nid_objs[381]),/* "iana" */ | ||
3103 | &(nid_objs[266]),/* "id-aca" */ | ||
3104 | &(nid_objs[355]),/* "id-aca-accessIdentity" */ | ||
3105 | &(nid_objs[354]),/* "id-aca-authenticationInfo" */ | ||
3106 | &(nid_objs[356]),/* "id-aca-chargingIdentity" */ | ||
3107 | &(nid_objs[399]),/* "id-aca-encAttrs" */ | ||
3108 | &(nid_objs[357]),/* "id-aca-group" */ | ||
3109 | &(nid_objs[358]),/* "id-aca-role" */ | ||
3110 | &(nid_objs[176]),/* "id-ad" */ | ||
3111 | &(nid_objs[788]),/* "id-aes128-wrap" */ | ||
3112 | &(nid_objs[789]),/* "id-aes192-wrap" */ | ||
3113 | &(nid_objs[790]),/* "id-aes256-wrap" */ | ||
3114 | &(nid_objs[262]),/* "id-alg" */ | ||
3115 | &(nid_objs[323]),/* "id-alg-des40" */ | ||
3116 | &(nid_objs[326]),/* "id-alg-dh-pop" */ | ||
3117 | &(nid_objs[325]),/* "id-alg-dh-sig-hmac-sha1" */ | ||
3118 | &(nid_objs[324]),/* "id-alg-noSignature" */ | ||
3119 | &(nid_objs[268]),/* "id-cct" */ | ||
3120 | &(nid_objs[361]),/* "id-cct-PKIData" */ | ||
3121 | &(nid_objs[362]),/* "id-cct-PKIResponse" */ | ||
3122 | &(nid_objs[360]),/* "id-cct-crs" */ | ||
3123 | &(nid_objs[81]),/* "id-ce" */ | ||
3124 | &(nid_objs[680]),/* "id-characteristic-two-basis" */ | ||
3125 | &(nid_objs[263]),/* "id-cmc" */ | ||
3126 | &(nid_objs[334]),/* "id-cmc-addExtensions" */ | ||
3127 | &(nid_objs[346]),/* "id-cmc-confirmCertAcceptance" */ | ||
3128 | &(nid_objs[330]),/* "id-cmc-dataReturn" */ | ||
3129 | &(nid_objs[336]),/* "id-cmc-decryptedPOP" */ | ||
3130 | &(nid_objs[335]),/* "id-cmc-encryptedPOP" */ | ||
3131 | &(nid_objs[339]),/* "id-cmc-getCRL" */ | ||
3132 | &(nid_objs[338]),/* "id-cmc-getCert" */ | ||
3133 | &(nid_objs[328]),/* "id-cmc-identification" */ | ||
3134 | &(nid_objs[329]),/* "id-cmc-identityProof" */ | ||
3135 | &(nid_objs[337]),/* "id-cmc-lraPOPWitness" */ | ||
3136 | &(nid_objs[344]),/* "id-cmc-popLinkRandom" */ | ||
3137 | &(nid_objs[345]),/* "id-cmc-popLinkWitness" */ | ||
3138 | &(nid_objs[343]),/* "id-cmc-queryPending" */ | ||
3139 | &(nid_objs[333]),/* "id-cmc-recipientNonce" */ | ||
3140 | &(nid_objs[341]),/* "id-cmc-regInfo" */ | ||
3141 | &(nid_objs[342]),/* "id-cmc-responseInfo" */ | ||
3142 | &(nid_objs[340]),/* "id-cmc-revokeRequest" */ | ||
3143 | &(nid_objs[332]),/* "id-cmc-senderNonce" */ | ||
3144 | &(nid_objs[327]),/* "id-cmc-statusInfo" */ | ||
3145 | &(nid_objs[331]),/* "id-cmc-transactionId" */ | ||
3146 | &(nid_objs[787]),/* "id-ct-asciiTextWithCRLF" */ | ||
3147 | &(nid_objs[408]),/* "id-ecPublicKey" */ | ||
3148 | &(nid_objs[508]),/* "id-hex-multipart-message" */ | ||
3149 | &(nid_objs[507]),/* "id-hex-partial-message" */ | ||
3150 | &(nid_objs[260]),/* "id-it" */ | ||
3151 | &(nid_objs[302]),/* "id-it-caKeyUpdateInfo" */ | ||
3152 | &(nid_objs[298]),/* "id-it-caProtEncCert" */ | ||
3153 | &(nid_objs[311]),/* "id-it-confirmWaitTime" */ | ||
3154 | &(nid_objs[303]),/* "id-it-currentCRL" */ | ||
3155 | &(nid_objs[300]),/* "id-it-encKeyPairTypes" */ | ||
3156 | &(nid_objs[310]),/* "id-it-implicitConfirm" */ | ||
3157 | &(nid_objs[308]),/* "id-it-keyPairParamRep" */ | ||
3158 | &(nid_objs[307]),/* "id-it-keyPairParamReq" */ | ||
3159 | &(nid_objs[312]),/* "id-it-origPKIMessage" */ | ||
3160 | &(nid_objs[301]),/* "id-it-preferredSymmAlg" */ | ||
3161 | &(nid_objs[309]),/* "id-it-revPassphrase" */ | ||
3162 | &(nid_objs[299]),/* "id-it-signKeyPairTypes" */ | ||
3163 | &(nid_objs[305]),/* "id-it-subscriptionRequest" */ | ||
3164 | &(nid_objs[306]),/* "id-it-subscriptionResponse" */ | ||
3165 | &(nid_objs[784]),/* "id-it-suppLangTags" */ | ||
3166 | &(nid_objs[304]),/* "id-it-unsupportedOIDs" */ | ||
3167 | &(nid_objs[128]),/* "id-kp" */ | ||
3168 | &(nid_objs[280]),/* "id-mod-attribute-cert" */ | ||
3169 | &(nid_objs[274]),/* "id-mod-cmc" */ | ||
3170 | &(nid_objs[277]),/* "id-mod-cmp" */ | ||
3171 | &(nid_objs[284]),/* "id-mod-cmp2000" */ | ||
3172 | &(nid_objs[273]),/* "id-mod-crmf" */ | ||
3173 | &(nid_objs[283]),/* "id-mod-dvcs" */ | ||
3174 | &(nid_objs[275]),/* "id-mod-kea-profile-88" */ | ||
3175 | &(nid_objs[276]),/* "id-mod-kea-profile-93" */ | ||
3176 | &(nid_objs[282]),/* "id-mod-ocsp" */ | ||
3177 | &(nid_objs[278]),/* "id-mod-qualified-cert-88" */ | ||
3178 | &(nid_objs[279]),/* "id-mod-qualified-cert-93" */ | ||
3179 | &(nid_objs[281]),/* "id-mod-timestamp-protocol" */ | ||
3180 | &(nid_objs[264]),/* "id-on" */ | ||
3181 | &(nid_objs[347]),/* "id-on-personalData" */ | ||
3182 | &(nid_objs[265]),/* "id-pda" */ | ||
3183 | &(nid_objs[352]),/* "id-pda-countryOfCitizenship" */ | ||
3184 | &(nid_objs[353]),/* "id-pda-countryOfResidence" */ | ||
3185 | &(nid_objs[348]),/* "id-pda-dateOfBirth" */ | ||
3186 | &(nid_objs[351]),/* "id-pda-gender" */ | ||
3187 | &(nid_objs[349]),/* "id-pda-placeOfBirth" */ | ||
3188 | &(nid_objs[175]),/* "id-pe" */ | ||
3189 | &(nid_objs[261]),/* "id-pkip" */ | ||
3190 | &(nid_objs[258]),/* "id-pkix-mod" */ | ||
3191 | &(nid_objs[269]),/* "id-pkix1-explicit-88" */ | ||
3192 | &(nid_objs[271]),/* "id-pkix1-explicit-93" */ | ||
3193 | &(nid_objs[270]),/* "id-pkix1-implicit-88" */ | ||
3194 | &(nid_objs[272]),/* "id-pkix1-implicit-93" */ | ||
3195 | &(nid_objs[662]),/* "id-ppl" */ | ||
3196 | &(nid_objs[267]),/* "id-qcs" */ | ||
3197 | &(nid_objs[359]),/* "id-qcs-pkixQCSyntax-v1" */ | ||
3198 | &(nid_objs[259]),/* "id-qt" */ | ||
3199 | &(nid_objs[313]),/* "id-regCtrl" */ | ||
3200 | &(nid_objs[316]),/* "id-regCtrl-authenticator" */ | ||
3201 | &(nid_objs[319]),/* "id-regCtrl-oldCertID" */ | ||
3202 | &(nid_objs[318]),/* "id-regCtrl-pkiArchiveOptions" */ | ||
3203 | &(nid_objs[317]),/* "id-regCtrl-pkiPublicationInfo" */ | ||
3204 | &(nid_objs[320]),/* "id-regCtrl-protocolEncrKey" */ | ||
3205 | &(nid_objs[315]),/* "id-regCtrl-regToken" */ | ||
3206 | &(nid_objs[314]),/* "id-regInfo" */ | ||
3207 | &(nid_objs[322]),/* "id-regInfo-certReq" */ | ||
3208 | &(nid_objs[321]),/* "id-regInfo-utf8Pairs" */ | ||
3209 | &(nid_objs[191]),/* "id-smime-aa" */ | ||
3210 | &(nid_objs[215]),/* "id-smime-aa-contentHint" */ | ||
3211 | &(nid_objs[218]),/* "id-smime-aa-contentIdentifier" */ | ||
3212 | &(nid_objs[221]),/* "id-smime-aa-contentReference" */ | ||
3213 | &(nid_objs[240]),/* "id-smime-aa-dvcs-dvc" */ | ||
3214 | &(nid_objs[217]),/* "id-smime-aa-encapContentType" */ | ||
3215 | &(nid_objs[222]),/* "id-smime-aa-encrypKeyPref" */ | ||
3216 | &(nid_objs[220]),/* "id-smime-aa-equivalentLabels" */ | ||
3217 | &(nid_objs[232]),/* "id-smime-aa-ets-CertificateRefs" */ | ||
3218 | &(nid_objs[233]),/* "id-smime-aa-ets-RevocationRefs" */ | ||
3219 | &(nid_objs[238]),/* "id-smime-aa-ets-archiveTimeStamp" */ | ||
3220 | &(nid_objs[237]),/* "id-smime-aa-ets-certCRLTimestamp" */ | ||
3221 | &(nid_objs[234]),/* "id-smime-aa-ets-certValues" */ | ||
3222 | &(nid_objs[227]),/* "id-smime-aa-ets-commitmentType" */ | ||
3223 | &(nid_objs[231]),/* "id-smime-aa-ets-contentTimestamp" */ | ||
3224 | &(nid_objs[236]),/* "id-smime-aa-ets-escTimeStamp" */ | ||
3225 | &(nid_objs[230]),/* "id-smime-aa-ets-otherSigCert" */ | ||
3226 | &(nid_objs[235]),/* "id-smime-aa-ets-revocationValues" */ | ||
3227 | &(nid_objs[226]),/* "id-smime-aa-ets-sigPolicyId" */ | ||
3228 | &(nid_objs[229]),/* "id-smime-aa-ets-signerAttr" */ | ||
3229 | &(nid_objs[228]),/* "id-smime-aa-ets-signerLocation" */ | ||
3230 | &(nid_objs[219]),/* "id-smime-aa-macValue" */ | ||
3231 | &(nid_objs[214]),/* "id-smime-aa-mlExpandHistory" */ | ||
3232 | &(nid_objs[216]),/* "id-smime-aa-msgSigDigest" */ | ||
3233 | &(nid_objs[212]),/* "id-smime-aa-receiptRequest" */ | ||
3234 | &(nid_objs[213]),/* "id-smime-aa-securityLabel" */ | ||
3235 | &(nid_objs[239]),/* "id-smime-aa-signatureType" */ | ||
3236 | &(nid_objs[223]),/* "id-smime-aa-signingCertificate" */ | ||
3237 | &(nid_objs[224]),/* "id-smime-aa-smimeEncryptCerts" */ | ||
3238 | &(nid_objs[225]),/* "id-smime-aa-timeStampToken" */ | ||
3239 | &(nid_objs[192]),/* "id-smime-alg" */ | ||
3240 | &(nid_objs[243]),/* "id-smime-alg-3DESwrap" */ | ||
3241 | &(nid_objs[246]),/* "id-smime-alg-CMS3DESwrap" */ | ||
3242 | &(nid_objs[247]),/* "id-smime-alg-CMSRC2wrap" */ | ||
3243 | &(nid_objs[245]),/* "id-smime-alg-ESDH" */ | ||
3244 | &(nid_objs[241]),/* "id-smime-alg-ESDHwith3DES" */ | ||
3245 | &(nid_objs[242]),/* "id-smime-alg-ESDHwithRC2" */ | ||
3246 | &(nid_objs[244]),/* "id-smime-alg-RC2wrap" */ | ||
3247 | &(nid_objs[193]),/* "id-smime-cd" */ | ||
3248 | &(nid_objs[248]),/* "id-smime-cd-ldap" */ | ||
3249 | &(nid_objs[190]),/* "id-smime-ct" */ | ||
3250 | &(nid_objs[210]),/* "id-smime-ct-DVCSRequestData" */ | ||
3251 | &(nid_objs[211]),/* "id-smime-ct-DVCSResponseData" */ | ||
3252 | &(nid_objs[208]),/* "id-smime-ct-TDTInfo" */ | ||
3253 | &(nid_objs[207]),/* "id-smime-ct-TSTInfo" */ | ||
3254 | &(nid_objs[205]),/* "id-smime-ct-authData" */ | ||
3255 | &(nid_objs[786]),/* "id-smime-ct-compressedData" */ | ||
3256 | &(nid_objs[209]),/* "id-smime-ct-contentInfo" */ | ||
3257 | &(nid_objs[206]),/* "id-smime-ct-publishCert" */ | ||
3258 | &(nid_objs[204]),/* "id-smime-ct-receipt" */ | ||
3259 | &(nid_objs[195]),/* "id-smime-cti" */ | ||
3260 | &(nid_objs[255]),/* "id-smime-cti-ets-proofOfApproval" */ | ||
3261 | &(nid_objs[256]),/* "id-smime-cti-ets-proofOfCreation" */ | ||
3262 | &(nid_objs[253]),/* "id-smime-cti-ets-proofOfDelivery" */ | ||
3263 | &(nid_objs[251]),/* "id-smime-cti-ets-proofOfOrigin" */ | ||
3264 | &(nid_objs[252]),/* "id-smime-cti-ets-proofOfReceipt" */ | ||
3265 | &(nid_objs[254]),/* "id-smime-cti-ets-proofOfSender" */ | ||
3266 | &(nid_objs[189]),/* "id-smime-mod" */ | ||
3267 | &(nid_objs[196]),/* "id-smime-mod-cms" */ | ||
3268 | &(nid_objs[197]),/* "id-smime-mod-ess" */ | ||
3269 | &(nid_objs[202]),/* "id-smime-mod-ets-eSigPolicy-88" */ | ||
3270 | &(nid_objs[203]),/* "id-smime-mod-ets-eSigPolicy-97" */ | ||
3271 | &(nid_objs[200]),/* "id-smime-mod-ets-eSignature-88" */ | ||
3272 | &(nid_objs[201]),/* "id-smime-mod-ets-eSignature-97" */ | ||
3273 | &(nid_objs[199]),/* "id-smime-mod-msg-v3" */ | ||
3274 | &(nid_objs[198]),/* "id-smime-mod-oid" */ | ||
3275 | &(nid_objs[194]),/* "id-smime-spq" */ | ||
3276 | &(nid_objs[250]),/* "id-smime-spq-ets-sqt-unotice" */ | ||
3277 | &(nid_objs[249]),/* "id-smime-spq-ets-sqt-uri" */ | ||
3278 | &(nid_objs[34]),/* "idea-cbc" */ | ||
3279 | &(nid_objs[35]),/* "idea-cfb" */ | ||
3280 | &(nid_objs[36]),/* "idea-ecb" */ | ||
3281 | &(nid_objs[46]),/* "idea-ofb" */ | ||
3282 | &(nid_objs[676]),/* "identified-organization" */ | ||
3283 | &(nid_objs[461]),/* "info" */ | ||
3284 | &(nid_objs[101]),/* "initials" */ | ||
3285 | &(nid_objs[749]),/* "ipsec3" */ | ||
3286 | &(nid_objs[750]),/* "ipsec4" */ | ||
3287 | &(nid_objs[181]),/* "iso" */ | ||
3288 | &(nid_objs[623]),/* "issuer capabilities" */ | ||
3289 | &(nid_objs[645]),/* "itu-t" */ | ||
3290 | &(nid_objs[492]),/* "janetMailbox" */ | ||
3291 | &(nid_objs[646]),/* "joint-iso-itu-t" */ | ||
3292 | &(nid_objs[150]),/* "keyBag" */ | ||
3293 | &(nid_objs[773]),/* "kisa" */ | ||
3294 | &(nid_objs[477]),/* "lastModifiedBy" */ | ||
3295 | &(nid_objs[476]),/* "lastModifiedTime" */ | ||
3296 | &(nid_objs[157]),/* "localKeyID" */ | ||
3297 | &(nid_objs[15]),/* "localityName" */ | ||
3298 | &(nid_objs[480]),/* "mXRecord" */ | ||
3299 | &(nid_objs[493]),/* "mailPreferenceOption" */ | ||
3300 | &(nid_objs[467]),/* "manager" */ | ||
3301 | &(nid_objs[ 3]),/* "md2" */ | ||
3302 | &(nid_objs[ 7]),/* "md2WithRSAEncryption" */ | ||
3303 | &(nid_objs[257]),/* "md4" */ | ||
3304 | &(nid_objs[396]),/* "md4WithRSAEncryption" */ | ||
3305 | &(nid_objs[ 4]),/* "md5" */ | ||
3306 | &(nid_objs[114]),/* "md5-sha1" */ | ||
3307 | &(nid_objs[104]),/* "md5WithRSA" */ | ||
3308 | &(nid_objs[ 8]),/* "md5WithRSAEncryption" */ | ||
3309 | &(nid_objs[95]),/* "mdc2" */ | ||
3310 | &(nid_objs[96]),/* "mdc2WithRSA" */ | ||
3311 | &(nid_objs[602]),/* "merchant initiated auth" */ | ||
3312 | &(nid_objs[514]),/* "message extensions" */ | ||
3313 | &(nid_objs[51]),/* "messageDigest" */ | ||
3314 | &(nid_objs[506]),/* "mime-mhs-bodies" */ | ||
3315 | &(nid_objs[505]),/* "mime-mhs-headings" */ | ||
3316 | &(nid_objs[488]),/* "mobileTelephoneNumber" */ | ||
3317 | &(nid_objs[481]),/* "nSRecord" */ | ||
3318 | &(nid_objs[173]),/* "name" */ | ||
3319 | &(nid_objs[681]),/* "onBasis" */ | ||
3320 | &(nid_objs[379]),/* "org" */ | ||
3321 | &(nid_objs[17]),/* "organizationName" */ | ||
3322 | &(nid_objs[491]),/* "organizationalStatus" */ | ||
3323 | &(nid_objs[18]),/* "organizationalUnitName" */ | ||
3324 | &(nid_objs[475]),/* "otherMailbox" */ | ||
3325 | &(nid_objs[489]),/* "pagerTelephoneNumber" */ | ||
3326 | &(nid_objs[782]),/* "password based MAC" */ | ||
3327 | &(nid_objs[374]),/* "path" */ | ||
3328 | &(nid_objs[621]),/* "payment gateway capabilities" */ | ||
3329 | &(nid_objs[ 9]),/* "pbeWithMD2AndDES-CBC" */ | ||
3330 | &(nid_objs[168]),/* "pbeWithMD2AndRC2-CBC" */ | ||
3331 | &(nid_objs[112]),/* "pbeWithMD5AndCast5CBC" */ | ||
3332 | &(nid_objs[10]),/* "pbeWithMD5AndDES-CBC" */ | ||
3333 | &(nid_objs[169]),/* "pbeWithMD5AndRC2-CBC" */ | ||
3334 | &(nid_objs[148]),/* "pbeWithSHA1And128BitRC2-CBC" */ | ||
3335 | &(nid_objs[144]),/* "pbeWithSHA1And128BitRC4" */ | ||
3336 | &(nid_objs[147]),/* "pbeWithSHA1And2-KeyTripleDES-CBC" */ | ||
3337 | &(nid_objs[146]),/* "pbeWithSHA1And3-KeyTripleDES-CBC" */ | ||
3338 | &(nid_objs[149]),/* "pbeWithSHA1And40BitRC2-CBC" */ | ||
3339 | &(nid_objs[145]),/* "pbeWithSHA1And40BitRC4" */ | ||
3340 | &(nid_objs[170]),/* "pbeWithSHA1AndDES-CBC" */ | ||
3341 | &(nid_objs[68]),/* "pbeWithSHA1AndRC2-CBC" */ | ||
3342 | &(nid_objs[499]),/* "personalSignature" */ | ||
3343 | &(nid_objs[487]),/* "personalTitle" */ | ||
3344 | &(nid_objs[464]),/* "photo" */ | ||
3345 | &(nid_objs[437]),/* "pilot" */ | ||
3346 | &(nid_objs[439]),/* "pilotAttributeSyntax" */ | ||
3347 | &(nid_objs[438]),/* "pilotAttributeType" */ | ||
3348 | &(nid_objs[479]),/* "pilotAttributeType27" */ | ||
3349 | &(nid_objs[456]),/* "pilotDSA" */ | ||
3350 | &(nid_objs[441]),/* "pilotGroups" */ | ||
3351 | &(nid_objs[444]),/* "pilotObject" */ | ||
3352 | &(nid_objs[440]),/* "pilotObjectClass" */ | ||
3353 | &(nid_objs[455]),/* "pilotOrganization" */ | ||
3354 | &(nid_objs[445]),/* "pilotPerson" */ | ||
3355 | &(nid_objs[186]),/* "pkcs1" */ | ||
3356 | &(nid_objs[27]),/* "pkcs3" */ | ||
3357 | &(nid_objs[187]),/* "pkcs5" */ | ||
3358 | &(nid_objs[20]),/* "pkcs7" */ | ||
3359 | &(nid_objs[21]),/* "pkcs7-data" */ | ||
3360 | &(nid_objs[25]),/* "pkcs7-digestData" */ | ||
3361 | &(nid_objs[26]),/* "pkcs7-encryptedData" */ | ||
3362 | &(nid_objs[23]),/* "pkcs7-envelopedData" */ | ||
3363 | &(nid_objs[24]),/* "pkcs7-signedAndEnvelopedData" */ | ||
3364 | &(nid_objs[22]),/* "pkcs7-signedData" */ | ||
3365 | &(nid_objs[151]),/* "pkcs8ShroudedKeyBag" */ | ||
3366 | &(nid_objs[47]),/* "pkcs9" */ | ||
3367 | &(nid_objs[661]),/* "postalCode" */ | ||
3368 | &(nid_objs[683]),/* "ppBasis" */ | ||
3369 | &(nid_objs[406]),/* "prime-field" */ | ||
3370 | &(nid_objs[409]),/* "prime192v1" */ | ||
3371 | &(nid_objs[410]),/* "prime192v2" */ | ||
3372 | &(nid_objs[411]),/* "prime192v3" */ | ||
3373 | &(nid_objs[412]),/* "prime239v1" */ | ||
3374 | &(nid_objs[413]),/* "prime239v2" */ | ||
3375 | &(nid_objs[414]),/* "prime239v3" */ | ||
3376 | &(nid_objs[415]),/* "prime256v1" */ | ||
3377 | &(nid_objs[510]),/* "pseudonym" */ | ||
3378 | &(nid_objs[435]),/* "pss" */ | ||
3379 | &(nid_objs[286]),/* "qcStatements" */ | ||
3380 | &(nid_objs[457]),/* "qualityLabelledData" */ | ||
3381 | &(nid_objs[450]),/* "rFC822localPart" */ | ||
3382 | &(nid_objs[98]),/* "rc2-40-cbc" */ | ||
3383 | &(nid_objs[166]),/* "rc2-64-cbc" */ | ||
3384 | &(nid_objs[37]),/* "rc2-cbc" */ | ||
3385 | &(nid_objs[39]),/* "rc2-cfb" */ | ||
3386 | &(nid_objs[38]),/* "rc2-ecb" */ | ||
3387 | &(nid_objs[40]),/* "rc2-ofb" */ | ||
3388 | &(nid_objs[ 5]),/* "rc4" */ | ||
3389 | &(nid_objs[97]),/* "rc4-40" */ | ||
3390 | &(nid_objs[120]),/* "rc5-cbc" */ | ||
3391 | &(nid_objs[122]),/* "rc5-cfb" */ | ||
3392 | &(nid_objs[121]),/* "rc5-ecb" */ | ||
3393 | &(nid_objs[123]),/* "rc5-ofb" */ | ||
3394 | &(nid_objs[460]),/* "rfc822Mailbox" */ | ||
3395 | &(nid_objs[117]),/* "ripemd160" */ | ||
3396 | &(nid_objs[119]),/* "ripemd160WithRSA" */ | ||
3397 | &(nid_objs[400]),/* "role" */ | ||
3398 | &(nid_objs[448]),/* "room" */ | ||
3399 | &(nid_objs[463]),/* "roomNumber" */ | ||
3400 | &(nid_objs[19]),/* "rsa" */ | ||
3401 | &(nid_objs[ 6]),/* "rsaEncryption" */ | ||
3402 | &(nid_objs[644]),/* "rsaOAEPEncryptionSET" */ | ||
3403 | &(nid_objs[377]),/* "rsaSignature" */ | ||
3404 | &(nid_objs[124]),/* "run length compression" */ | ||
3405 | &(nid_objs[482]),/* "sOARecord" */ | ||
3406 | &(nid_objs[155]),/* "safeContentsBag" */ | ||
3407 | &(nid_objs[291]),/* "sbgp-autonomousSysNum" */ | ||
3408 | &(nid_objs[290]),/* "sbgp-ipAddrBlock" */ | ||
3409 | &(nid_objs[292]),/* "sbgp-routerIdentifier" */ | ||
3410 | &(nid_objs[159]),/* "sdsiCertificate" */ | ||
3411 | &(nid_objs[704]),/* "secp112r1" */ | ||
3412 | &(nid_objs[705]),/* "secp112r2" */ | ||
3413 | &(nid_objs[706]),/* "secp128r1" */ | ||
3414 | &(nid_objs[707]),/* "secp128r2" */ | ||
3415 | &(nid_objs[708]),/* "secp160k1" */ | ||
3416 | &(nid_objs[709]),/* "secp160r1" */ | ||
3417 | &(nid_objs[710]),/* "secp160r2" */ | ||
3418 | &(nid_objs[711]),/* "secp192k1" */ | ||
3419 | &(nid_objs[712]),/* "secp224k1" */ | ||
3420 | &(nid_objs[713]),/* "secp224r1" */ | ||
3421 | &(nid_objs[714]),/* "secp256k1" */ | ||
3422 | &(nid_objs[715]),/* "secp384r1" */ | ||
3423 | &(nid_objs[716]),/* "secp521r1" */ | ||
3424 | &(nid_objs[154]),/* "secretBag" */ | ||
3425 | &(nid_objs[474]),/* "secretary" */ | ||
3426 | &(nid_objs[717]),/* "sect113r1" */ | ||
3427 | &(nid_objs[718]),/* "sect113r2" */ | ||
3428 | &(nid_objs[719]),/* "sect131r1" */ | ||
3429 | &(nid_objs[720]),/* "sect131r2" */ | ||
3430 | &(nid_objs[721]),/* "sect163k1" */ | ||
3431 | &(nid_objs[722]),/* "sect163r1" */ | ||
3432 | &(nid_objs[723]),/* "sect163r2" */ | ||
3433 | &(nid_objs[724]),/* "sect193r1" */ | ||
3434 | &(nid_objs[725]),/* "sect193r2" */ | ||
3435 | &(nid_objs[726]),/* "sect233k1" */ | ||
3436 | &(nid_objs[727]),/* "sect233r1" */ | ||
3437 | &(nid_objs[728]),/* "sect239k1" */ | ||
3438 | &(nid_objs[729]),/* "sect283k1" */ | ||
3439 | &(nid_objs[730]),/* "sect283r1" */ | ||
3440 | &(nid_objs[731]),/* "sect409k1" */ | ||
3441 | &(nid_objs[732]),/* "sect409r1" */ | ||
3442 | &(nid_objs[733]),/* "sect571k1" */ | ||
3443 | &(nid_objs[734]),/* "sect571r1" */ | ||
3444 | &(nid_objs[635]),/* "secure device signature" */ | ||
3445 | &(nid_objs[777]),/* "seed-cbc" */ | ||
3446 | &(nid_objs[779]),/* "seed-cfb" */ | ||
3447 | &(nid_objs[776]),/* "seed-ecb" */ | ||
3448 | &(nid_objs[778]),/* "seed-ofb" */ | ||
3449 | &(nid_objs[105]),/* "serialNumber" */ | ||
3450 | &(nid_objs[625]),/* "set-addPolicy" */ | ||
3451 | &(nid_objs[515]),/* "set-attr" */ | ||
3452 | &(nid_objs[518]),/* "set-brand" */ | ||
3453 | &(nid_objs[638]),/* "set-brand-AmericanExpress" */ | ||
3454 | &(nid_objs[637]),/* "set-brand-Diners" */ | ||
3455 | &(nid_objs[636]),/* "set-brand-IATA-ATA" */ | ||
3456 | &(nid_objs[639]),/* "set-brand-JCB" */ | ||
3457 | &(nid_objs[641]),/* "set-brand-MasterCard" */ | ||
3458 | &(nid_objs[642]),/* "set-brand-Novus" */ | ||
3459 | &(nid_objs[640]),/* "set-brand-Visa" */ | ||
3460 | &(nid_objs[516]),/* "set-policy" */ | ||
3461 | &(nid_objs[607]),/* "set-policy-root" */ | ||
3462 | &(nid_objs[624]),/* "set-rootKeyThumb" */ | ||
3463 | &(nid_objs[620]),/* "setAttr-Cert" */ | ||
3464 | &(nid_objs[628]),/* "setAttr-IssCap-CVM" */ | ||
3465 | &(nid_objs[630]),/* "setAttr-IssCap-Sig" */ | ||
3466 | &(nid_objs[629]),/* "setAttr-IssCap-T2" */ | ||
3467 | &(nid_objs[627]),/* "setAttr-Token-B0Prime" */ | ||
3468 | &(nid_objs[626]),/* "setAttr-Token-EMV" */ | ||
3469 | &(nid_objs[622]),/* "setAttr-TokenType" */ | ||
3470 | &(nid_objs[619]),/* "setCext-IssuerCapabilities" */ | ||
3471 | &(nid_objs[615]),/* "setCext-PGWYcapabilities" */ | ||
3472 | &(nid_objs[616]),/* "setCext-TokenIdentifier" */ | ||
3473 | &(nid_objs[618]),/* "setCext-TokenType" */ | ||
3474 | &(nid_objs[617]),/* "setCext-Track2Data" */ | ||
3475 | &(nid_objs[611]),/* "setCext-cCertRequired" */ | ||
3476 | &(nid_objs[609]),/* "setCext-certType" */ | ||
3477 | &(nid_objs[608]),/* "setCext-hashedRoot" */ | ||
3478 | &(nid_objs[610]),/* "setCext-merchData" */ | ||
3479 | &(nid_objs[613]),/* "setCext-setExt" */ | ||
3480 | &(nid_objs[614]),/* "setCext-setQualf" */ | ||
3481 | &(nid_objs[612]),/* "setCext-tunneling" */ | ||
3482 | &(nid_objs[540]),/* "setct-AcqCardCodeMsg" */ | ||
3483 | &(nid_objs[576]),/* "setct-AcqCardCodeMsgTBE" */ | ||
3484 | &(nid_objs[570]),/* "setct-AuthReqTBE" */ | ||
3485 | &(nid_objs[534]),/* "setct-AuthReqTBS" */ | ||
3486 | &(nid_objs[527]),/* "setct-AuthResBaggage" */ | ||
3487 | &(nid_objs[571]),/* "setct-AuthResTBE" */ | ||
3488 | &(nid_objs[572]),/* "setct-AuthResTBEX" */ | ||
3489 | &(nid_objs[535]),/* "setct-AuthResTBS" */ | ||
3490 | &(nid_objs[536]),/* "setct-AuthResTBSX" */ | ||
3491 | &(nid_objs[528]),/* "setct-AuthRevReqBaggage" */ | ||
3492 | &(nid_objs[577]),/* "setct-AuthRevReqTBE" */ | ||
3493 | &(nid_objs[541]),/* "setct-AuthRevReqTBS" */ | ||
3494 | &(nid_objs[529]),/* "setct-AuthRevResBaggage" */ | ||
3495 | &(nid_objs[542]),/* "setct-AuthRevResData" */ | ||
3496 | &(nid_objs[578]),/* "setct-AuthRevResTBE" */ | ||
3497 | &(nid_objs[579]),/* "setct-AuthRevResTBEB" */ | ||
3498 | &(nid_objs[543]),/* "setct-AuthRevResTBS" */ | ||
3499 | &(nid_objs[573]),/* "setct-AuthTokenTBE" */ | ||
3500 | &(nid_objs[537]),/* "setct-AuthTokenTBS" */ | ||
3501 | &(nid_objs[600]),/* "setct-BCIDistributionTBS" */ | ||
3502 | &(nid_objs[558]),/* "setct-BatchAdminReqData" */ | ||
3503 | &(nid_objs[592]),/* "setct-BatchAdminReqTBE" */ | ||
3504 | &(nid_objs[559]),/* "setct-BatchAdminResData" */ | ||
3505 | &(nid_objs[593]),/* "setct-BatchAdminResTBE" */ | ||
3506 | &(nid_objs[599]),/* "setct-CRLNotificationResTBS" */ | ||
3507 | &(nid_objs[598]),/* "setct-CRLNotificationTBS" */ | ||
3508 | &(nid_objs[580]),/* "setct-CapReqTBE" */ | ||
3509 | &(nid_objs[581]),/* "setct-CapReqTBEX" */ | ||
3510 | &(nid_objs[544]),/* "setct-CapReqTBS" */ | ||
3511 | &(nid_objs[545]),/* "setct-CapReqTBSX" */ | ||
3512 | &(nid_objs[546]),/* "setct-CapResData" */ | ||
3513 | &(nid_objs[582]),/* "setct-CapResTBE" */ | ||
3514 | &(nid_objs[583]),/* "setct-CapRevReqTBE" */ | ||
3515 | &(nid_objs[584]),/* "setct-CapRevReqTBEX" */ | ||
3516 | &(nid_objs[547]),/* "setct-CapRevReqTBS" */ | ||
3517 | &(nid_objs[548]),/* "setct-CapRevReqTBSX" */ | ||
3518 | &(nid_objs[549]),/* "setct-CapRevResData" */ | ||
3519 | &(nid_objs[585]),/* "setct-CapRevResTBE" */ | ||
3520 | &(nid_objs[538]),/* "setct-CapTokenData" */ | ||
3521 | &(nid_objs[530]),/* "setct-CapTokenSeq" */ | ||
3522 | &(nid_objs[574]),/* "setct-CapTokenTBE" */ | ||
3523 | &(nid_objs[575]),/* "setct-CapTokenTBEX" */ | ||
3524 | &(nid_objs[539]),/* "setct-CapTokenTBS" */ | ||
3525 | &(nid_objs[560]),/* "setct-CardCInitResTBS" */ | ||
3526 | &(nid_objs[566]),/* "setct-CertInqReqTBS" */ | ||
3527 | &(nid_objs[563]),/* "setct-CertReqData" */ | ||
3528 | &(nid_objs[595]),/* "setct-CertReqTBE" */ | ||
3529 | &(nid_objs[596]),/* "setct-CertReqTBEX" */ | ||
3530 | &(nid_objs[564]),/* "setct-CertReqTBS" */ | ||
3531 | &(nid_objs[565]),/* "setct-CertResData" */ | ||
3532 | &(nid_objs[597]),/* "setct-CertResTBE" */ | ||
3533 | &(nid_objs[586]),/* "setct-CredReqTBE" */ | ||
3534 | &(nid_objs[587]),/* "setct-CredReqTBEX" */ | ||
3535 | &(nid_objs[550]),/* "setct-CredReqTBS" */ | ||
3536 | &(nid_objs[551]),/* "setct-CredReqTBSX" */ | ||
3537 | &(nid_objs[552]),/* "setct-CredResData" */ | ||
3538 | &(nid_objs[588]),/* "setct-CredResTBE" */ | ||
3539 | &(nid_objs[589]),/* "setct-CredRevReqTBE" */ | ||
3540 | &(nid_objs[590]),/* "setct-CredRevReqTBEX" */ | ||
3541 | &(nid_objs[553]),/* "setct-CredRevReqTBS" */ | ||
3542 | &(nid_objs[554]),/* "setct-CredRevReqTBSX" */ | ||
3543 | &(nid_objs[555]),/* "setct-CredRevResData" */ | ||
3544 | &(nid_objs[591]),/* "setct-CredRevResTBE" */ | ||
3545 | &(nid_objs[567]),/* "setct-ErrorTBS" */ | ||
3546 | &(nid_objs[526]),/* "setct-HODInput" */ | ||
3547 | &(nid_objs[561]),/* "setct-MeAqCInitResTBS" */ | ||
3548 | &(nid_objs[522]),/* "setct-OIData" */ | ||
3549 | &(nid_objs[519]),/* "setct-PANData" */ | ||
3550 | &(nid_objs[521]),/* "setct-PANOnly" */ | ||
3551 | &(nid_objs[520]),/* "setct-PANToken" */ | ||
3552 | &(nid_objs[556]),/* "setct-PCertReqData" */ | ||
3553 | &(nid_objs[557]),/* "setct-PCertResTBS" */ | ||
3554 | &(nid_objs[523]),/* "setct-PI" */ | ||
3555 | &(nid_objs[532]),/* "setct-PI-TBS" */ | ||
3556 | &(nid_objs[524]),/* "setct-PIData" */ | ||
3557 | &(nid_objs[525]),/* "setct-PIDataUnsigned" */ | ||
3558 | &(nid_objs[568]),/* "setct-PIDualSignedTBE" */ | ||
3559 | &(nid_objs[569]),/* "setct-PIUnsignedTBE" */ | ||
3560 | &(nid_objs[531]),/* "setct-PInitResData" */ | ||
3561 | &(nid_objs[533]),/* "setct-PResData" */ | ||
3562 | &(nid_objs[594]),/* "setct-RegFormReqTBE" */ | ||
3563 | &(nid_objs[562]),/* "setct-RegFormResTBS" */ | ||
3564 | &(nid_objs[604]),/* "setext-pinAny" */ | ||
3565 | &(nid_objs[603]),/* "setext-pinSecure" */ | ||
3566 | &(nid_objs[605]),/* "setext-track2" */ | ||
3567 | &(nid_objs[41]),/* "sha" */ | ||
3568 | &(nid_objs[64]),/* "sha1" */ | ||
3569 | &(nid_objs[115]),/* "sha1WithRSA" */ | ||
3570 | &(nid_objs[65]),/* "sha1WithRSAEncryption" */ | ||
3571 | &(nid_objs[675]),/* "sha224" */ | ||
3572 | &(nid_objs[671]),/* "sha224WithRSAEncryption" */ | ||
3573 | &(nid_objs[672]),/* "sha256" */ | ||
3574 | &(nid_objs[668]),/* "sha256WithRSAEncryption" */ | ||
3575 | &(nid_objs[673]),/* "sha384" */ | ||
3576 | &(nid_objs[669]),/* "sha384WithRSAEncryption" */ | ||
3577 | &(nid_objs[674]),/* "sha512" */ | ||
3578 | &(nid_objs[670]),/* "sha512WithRSAEncryption" */ | ||
3579 | &(nid_objs[42]),/* "shaWithRSAEncryption" */ | ||
3580 | &(nid_objs[52]),/* "signingTime" */ | ||
3581 | &(nid_objs[454]),/* "simpleSecurityObject" */ | ||
3582 | &(nid_objs[496]),/* "singleLevelQuality" */ | ||
3583 | &(nid_objs[16]),/* "stateOrProvinceName" */ | ||
3584 | &(nid_objs[660]),/* "streetAddress" */ | ||
3585 | &(nid_objs[498]),/* "subtreeMaximumQuality" */ | ||
3586 | &(nid_objs[497]),/* "subtreeMinimumQuality" */ | ||
3587 | &(nid_objs[100]),/* "surname" */ | ||
3588 | &(nid_objs[459]),/* "textEncodedORAddress" */ | ||
3589 | &(nid_objs[293]),/* "textNotice" */ | ||
3590 | &(nid_objs[106]),/* "title" */ | ||
3591 | &(nid_objs[682]),/* "tpBasis" */ | ||
3592 | &(nid_objs[436]),/* "ucl" */ | ||
3593 | &(nid_objs[ 0]),/* "undefined" */ | ||
3594 | &(nid_objs[55]),/* "unstructuredAddress" */ | ||
3595 | &(nid_objs[49]),/* "unstructuredName" */ | ||
3596 | &(nid_objs[465]),/* "userClass" */ | ||
3597 | &(nid_objs[458]),/* "userId" */ | ||
3598 | &(nid_objs[373]),/* "valid" */ | ||
3599 | &(nid_objs[678]),/* "wap" */ | ||
3600 | &(nid_objs[679]),/* "wap-wsg" */ | ||
3601 | &(nid_objs[735]),/* "wap-wsg-idm-ecid-wtls1" */ | ||
3602 | &(nid_objs[743]),/* "wap-wsg-idm-ecid-wtls10" */ | ||
3603 | &(nid_objs[744]),/* "wap-wsg-idm-ecid-wtls11" */ | ||
3604 | &(nid_objs[745]),/* "wap-wsg-idm-ecid-wtls12" */ | ||
3605 | &(nid_objs[736]),/* "wap-wsg-idm-ecid-wtls3" */ | ||
3606 | &(nid_objs[737]),/* "wap-wsg-idm-ecid-wtls4" */ | ||
3607 | &(nid_objs[738]),/* "wap-wsg-idm-ecid-wtls5" */ | ||
3608 | &(nid_objs[739]),/* "wap-wsg-idm-ecid-wtls6" */ | ||
3609 | &(nid_objs[740]),/* "wap-wsg-idm-ecid-wtls7" */ | ||
3610 | &(nid_objs[741]),/* "wap-wsg-idm-ecid-wtls8" */ | ||
3611 | &(nid_objs[742]),/* "wap-wsg-idm-ecid-wtls9" */ | ||
3612 | &(nid_objs[503]),/* "x500UniqueIdentifier" */ | ||
3613 | &(nid_objs[158]),/* "x509Certificate" */ | ||
3614 | &(nid_objs[160]),/* "x509Crl" */ | ||
3615 | &(nid_objs[125]),/* "zlib compression" */ | ||
3616 | }; | ||
3617 | |||
3618 | static ASN1_OBJECT *obj_objs[NUM_OBJ]={ | ||
3619 | &(nid_objs[ 0]),/* OBJ_undef 0 */ | ||
3620 | &(nid_objs[393]),/* OBJ_joint_iso_ccitt OBJ_joint_iso_itu_t */ | ||
3621 | &(nid_objs[404]),/* OBJ_ccitt OBJ_itu_t */ | ||
3622 | &(nid_objs[645]),/* OBJ_itu_t 0 */ | ||
3623 | &(nid_objs[434]),/* OBJ_data 0 9 */ | ||
3624 | &(nid_objs[181]),/* OBJ_iso 1 */ | ||
3625 | &(nid_objs[182]),/* OBJ_member_body 1 2 */ | ||
3626 | &(nid_objs[379]),/* OBJ_org 1 3 */ | ||
3627 | &(nid_objs[676]),/* OBJ_identified_organization 1 3 */ | ||
3628 | &(nid_objs[646]),/* OBJ_joint_iso_itu_t 2 */ | ||
3629 | &(nid_objs[11]),/* OBJ_X500 2 5 */ | ||
3630 | &(nid_objs[647]),/* OBJ_international_organizations 2 23 */ | ||
3631 | &(nid_objs[380]),/* OBJ_dod 1 3 6 */ | ||
3632 | &(nid_objs[12]),/* OBJ_X509 2 5 4 */ | ||
3633 | &(nid_objs[378]),/* OBJ_X500algorithms 2 5 8 */ | ||
3634 | &(nid_objs[81]),/* OBJ_id_ce 2 5 29 */ | ||
3635 | &(nid_objs[512]),/* OBJ_id_set 2 23 42 */ | ||
3636 | &(nid_objs[678]),/* OBJ_wap 2 23 43 */ | ||
3637 | &(nid_objs[435]),/* OBJ_pss 0 9 2342 */ | ||
3638 | &(nid_objs[183]),/* OBJ_ISO_US 1 2 840 */ | ||
3639 | &(nid_objs[381]),/* OBJ_iana 1 3 6 1 */ | ||
3640 | &(nid_objs[677]),/* OBJ_certicom_arc 1 3 132 */ | ||
3641 | &(nid_objs[394]),/* OBJ_selected_attribute_types 2 5 1 5 */ | ||
3642 | &(nid_objs[13]),/* OBJ_commonName 2 5 4 3 */ | ||
3643 | &(nid_objs[100]),/* OBJ_surname 2 5 4 4 */ | ||
3644 | &(nid_objs[105]),/* OBJ_serialNumber 2 5 4 5 */ | ||
3645 | &(nid_objs[14]),/* OBJ_countryName 2 5 4 6 */ | ||
3646 | &(nid_objs[15]),/* OBJ_localityName 2 5 4 7 */ | ||
3647 | &(nid_objs[16]),/* OBJ_stateOrProvinceName 2 5 4 8 */ | ||
3648 | &(nid_objs[660]),/* OBJ_streetAddress 2 5 4 9 */ | ||
3649 | &(nid_objs[17]),/* OBJ_organizationName 2 5 4 10 */ | ||
3650 | &(nid_objs[18]),/* OBJ_organizationalUnitName 2 5 4 11 */ | ||
3651 | &(nid_objs[106]),/* OBJ_title 2 5 4 12 */ | ||
3652 | &(nid_objs[107]),/* OBJ_description 2 5 4 13 */ | ||
3653 | &(nid_objs[661]),/* OBJ_postalCode 2 5 4 17 */ | ||
3654 | &(nid_objs[173]),/* OBJ_name 2 5 4 41 */ | ||
3655 | &(nid_objs[99]),/* OBJ_givenName 2 5 4 42 */ | ||
3656 | &(nid_objs[101]),/* OBJ_initials 2 5 4 43 */ | ||
3657 | &(nid_objs[509]),/* OBJ_generationQualifier 2 5 4 44 */ | ||
3658 | &(nid_objs[503]),/* OBJ_x500UniqueIdentifier 2 5 4 45 */ | ||
3659 | &(nid_objs[174]),/* OBJ_dnQualifier 2 5 4 46 */ | ||
3660 | &(nid_objs[510]),/* OBJ_pseudonym 2 5 4 65 */ | ||
3661 | &(nid_objs[400]),/* OBJ_role 2 5 4 72 */ | ||
3662 | &(nid_objs[769]),/* OBJ_subject_directory_attributes 2 5 29 9 */ | ||
3663 | &(nid_objs[82]),/* OBJ_subject_key_identifier 2 5 29 14 */ | ||
3664 | &(nid_objs[83]),/* OBJ_key_usage 2 5 29 15 */ | ||
3665 | &(nid_objs[84]),/* OBJ_private_key_usage_period 2 5 29 16 */ | ||
3666 | &(nid_objs[85]),/* OBJ_subject_alt_name 2 5 29 17 */ | ||
3667 | &(nid_objs[86]),/* OBJ_issuer_alt_name 2 5 29 18 */ | ||
3668 | &(nid_objs[87]),/* OBJ_basic_constraints 2 5 29 19 */ | ||
3669 | &(nid_objs[88]),/* OBJ_crl_number 2 5 29 20 */ | ||
3670 | &(nid_objs[141]),/* OBJ_crl_reason 2 5 29 21 */ | ||
3671 | &(nid_objs[430]),/* OBJ_hold_instruction_code 2 5 29 23 */ | ||
3672 | &(nid_objs[142]),/* OBJ_invalidity_date 2 5 29 24 */ | ||
3673 | &(nid_objs[140]),/* OBJ_delta_crl 2 5 29 27 */ | ||
3674 | &(nid_objs[770]),/* OBJ_issuing_distribution_point 2 5 29 28 */ | ||
3675 | &(nid_objs[771]),/* OBJ_certificate_issuer 2 5 29 29 */ | ||
3676 | &(nid_objs[666]),/* OBJ_name_constraints 2 5 29 30 */ | ||
3677 | &(nid_objs[103]),/* OBJ_crl_distribution_points 2 5 29 31 */ | ||
3678 | &(nid_objs[89]),/* OBJ_certificate_policies 2 5 29 32 */ | ||
3679 | &(nid_objs[747]),/* OBJ_policy_mappings 2 5 29 33 */ | ||
3680 | &(nid_objs[90]),/* OBJ_authority_key_identifier 2 5 29 35 */ | ||
3681 | &(nid_objs[401]),/* OBJ_policy_constraints 2 5 29 36 */ | ||
3682 | &(nid_objs[126]),/* OBJ_ext_key_usage 2 5 29 37 */ | ||
3683 | &(nid_objs[748]),/* OBJ_inhibit_any_policy 2 5 29 54 */ | ||
3684 | &(nid_objs[402]),/* OBJ_target_information 2 5 29 55 */ | ||
3685 | &(nid_objs[403]),/* OBJ_no_rev_avail 2 5 29 56 */ | ||
3686 | &(nid_objs[513]),/* OBJ_set_ctype 2 23 42 0 */ | ||
3687 | &(nid_objs[514]),/* OBJ_set_msgExt 2 23 42 1 */ | ||
3688 | &(nid_objs[515]),/* OBJ_set_attr 2 23 42 3 */ | ||
3689 | &(nid_objs[516]),/* OBJ_set_policy 2 23 42 5 */ | ||
3690 | &(nid_objs[517]),/* OBJ_set_certExt 2 23 42 7 */ | ||
3691 | &(nid_objs[518]),/* OBJ_set_brand 2 23 42 8 */ | ||
3692 | &(nid_objs[679]),/* OBJ_wap_wsg 2 23 43 13 */ | ||
3693 | &(nid_objs[382]),/* OBJ_Directory 1 3 6 1 1 */ | ||
3694 | &(nid_objs[383]),/* OBJ_Management 1 3 6 1 2 */ | ||
3695 | &(nid_objs[384]),/* OBJ_Experimental 1 3 6 1 3 */ | ||
3696 | &(nid_objs[385]),/* OBJ_Private 1 3 6 1 4 */ | ||
3697 | &(nid_objs[386]),/* OBJ_Security 1 3 6 1 5 */ | ||
3698 | &(nid_objs[387]),/* OBJ_SNMPv2 1 3 6 1 6 */ | ||
3699 | &(nid_objs[388]),/* OBJ_Mail 1 3 6 1 7 */ | ||
3700 | &(nid_objs[376]),/* OBJ_algorithm 1 3 14 3 2 */ | ||
3701 | &(nid_objs[395]),/* OBJ_clearance 2 5 1 5 55 */ | ||
3702 | &(nid_objs[19]),/* OBJ_rsa 2 5 8 1 1 */ | ||
3703 | &(nid_objs[96]),/* OBJ_mdc2WithRSA 2 5 8 3 100 */ | ||
3704 | &(nid_objs[95]),/* OBJ_mdc2 2 5 8 3 101 */ | ||
3705 | &(nid_objs[746]),/* OBJ_any_policy 2 5 29 32 0 */ | ||
3706 | &(nid_objs[519]),/* OBJ_setct_PANData 2 23 42 0 0 */ | ||
3707 | &(nid_objs[520]),/* OBJ_setct_PANToken 2 23 42 0 1 */ | ||
3708 | &(nid_objs[521]),/* OBJ_setct_PANOnly 2 23 42 0 2 */ | ||
3709 | &(nid_objs[522]),/* OBJ_setct_OIData 2 23 42 0 3 */ | ||
3710 | &(nid_objs[523]),/* OBJ_setct_PI 2 23 42 0 4 */ | ||
3711 | &(nid_objs[524]),/* OBJ_setct_PIData 2 23 42 0 5 */ | ||
3712 | &(nid_objs[525]),/* OBJ_setct_PIDataUnsigned 2 23 42 0 6 */ | ||
3713 | &(nid_objs[526]),/* OBJ_setct_HODInput 2 23 42 0 7 */ | ||
3714 | &(nid_objs[527]),/* OBJ_setct_AuthResBaggage 2 23 42 0 8 */ | ||
3715 | &(nid_objs[528]),/* OBJ_setct_AuthRevReqBaggage 2 23 42 0 9 */ | ||
3716 | &(nid_objs[529]),/* OBJ_setct_AuthRevResBaggage 2 23 42 0 10 */ | ||
3717 | &(nid_objs[530]),/* OBJ_setct_CapTokenSeq 2 23 42 0 11 */ | ||
3718 | &(nid_objs[531]),/* OBJ_setct_PInitResData 2 23 42 0 12 */ | ||
3719 | &(nid_objs[532]),/* OBJ_setct_PI_TBS 2 23 42 0 13 */ | ||
3720 | &(nid_objs[533]),/* OBJ_setct_PResData 2 23 42 0 14 */ | ||
3721 | &(nid_objs[534]),/* OBJ_setct_AuthReqTBS 2 23 42 0 16 */ | ||
3722 | &(nid_objs[535]),/* OBJ_setct_AuthResTBS 2 23 42 0 17 */ | ||
3723 | &(nid_objs[536]),/* OBJ_setct_AuthResTBSX 2 23 42 0 18 */ | ||
3724 | &(nid_objs[537]),/* OBJ_setct_AuthTokenTBS 2 23 42 0 19 */ | ||
3725 | &(nid_objs[538]),/* OBJ_setct_CapTokenData 2 23 42 0 20 */ | ||
3726 | &(nid_objs[539]),/* OBJ_setct_CapTokenTBS 2 23 42 0 21 */ | ||
3727 | &(nid_objs[540]),/* OBJ_setct_AcqCardCodeMsg 2 23 42 0 22 */ | ||
3728 | &(nid_objs[541]),/* OBJ_setct_AuthRevReqTBS 2 23 42 0 23 */ | ||
3729 | &(nid_objs[542]),/* OBJ_setct_AuthRevResData 2 23 42 0 24 */ | ||
3730 | &(nid_objs[543]),/* OBJ_setct_AuthRevResTBS 2 23 42 0 25 */ | ||
3731 | &(nid_objs[544]),/* OBJ_setct_CapReqTBS 2 23 42 0 26 */ | ||
3732 | &(nid_objs[545]),/* OBJ_setct_CapReqTBSX 2 23 42 0 27 */ | ||
3733 | &(nid_objs[546]),/* OBJ_setct_CapResData 2 23 42 0 28 */ | ||
3734 | &(nid_objs[547]),/* OBJ_setct_CapRevReqTBS 2 23 42 0 29 */ | ||
3735 | &(nid_objs[548]),/* OBJ_setct_CapRevReqTBSX 2 23 42 0 30 */ | ||
3736 | &(nid_objs[549]),/* OBJ_setct_CapRevResData 2 23 42 0 31 */ | ||
3737 | &(nid_objs[550]),/* OBJ_setct_CredReqTBS 2 23 42 0 32 */ | ||
3738 | &(nid_objs[551]),/* OBJ_setct_CredReqTBSX 2 23 42 0 33 */ | ||
3739 | &(nid_objs[552]),/* OBJ_setct_CredResData 2 23 42 0 34 */ | ||
3740 | &(nid_objs[553]),/* OBJ_setct_CredRevReqTBS 2 23 42 0 35 */ | ||
3741 | &(nid_objs[554]),/* OBJ_setct_CredRevReqTBSX 2 23 42 0 36 */ | ||
3742 | &(nid_objs[555]),/* OBJ_setct_CredRevResData 2 23 42 0 37 */ | ||
3743 | &(nid_objs[556]),/* OBJ_setct_PCertReqData 2 23 42 0 38 */ | ||
3744 | &(nid_objs[557]),/* OBJ_setct_PCertResTBS 2 23 42 0 39 */ | ||
3745 | &(nid_objs[558]),/* OBJ_setct_BatchAdminReqData 2 23 42 0 40 */ | ||
3746 | &(nid_objs[559]),/* OBJ_setct_BatchAdminResData 2 23 42 0 41 */ | ||
3747 | &(nid_objs[560]),/* OBJ_setct_CardCInitResTBS 2 23 42 0 42 */ | ||
3748 | &(nid_objs[561]),/* OBJ_setct_MeAqCInitResTBS 2 23 42 0 43 */ | ||
3749 | &(nid_objs[562]),/* OBJ_setct_RegFormResTBS 2 23 42 0 44 */ | ||
3750 | &(nid_objs[563]),/* OBJ_setct_CertReqData 2 23 42 0 45 */ | ||
3751 | &(nid_objs[564]),/* OBJ_setct_CertReqTBS 2 23 42 0 46 */ | ||
3752 | &(nid_objs[565]),/* OBJ_setct_CertResData 2 23 42 0 47 */ | ||
3753 | &(nid_objs[566]),/* OBJ_setct_CertInqReqTBS 2 23 42 0 48 */ | ||
3754 | &(nid_objs[567]),/* OBJ_setct_ErrorTBS 2 23 42 0 49 */ | ||
3755 | &(nid_objs[568]),/* OBJ_setct_PIDualSignedTBE 2 23 42 0 50 */ | ||
3756 | &(nid_objs[569]),/* OBJ_setct_PIUnsignedTBE 2 23 42 0 51 */ | ||
3757 | &(nid_objs[570]),/* OBJ_setct_AuthReqTBE 2 23 42 0 52 */ | ||
3758 | &(nid_objs[571]),/* OBJ_setct_AuthResTBE 2 23 42 0 53 */ | ||
3759 | &(nid_objs[572]),/* OBJ_setct_AuthResTBEX 2 23 42 0 54 */ | ||
3760 | &(nid_objs[573]),/* OBJ_setct_AuthTokenTBE 2 23 42 0 55 */ | ||
3761 | &(nid_objs[574]),/* OBJ_setct_CapTokenTBE 2 23 42 0 56 */ | ||
3762 | &(nid_objs[575]),/* OBJ_setct_CapTokenTBEX 2 23 42 0 57 */ | ||
3763 | &(nid_objs[576]),/* OBJ_setct_AcqCardCodeMsgTBE 2 23 42 0 58 */ | ||
3764 | &(nid_objs[577]),/* OBJ_setct_AuthRevReqTBE 2 23 42 0 59 */ | ||
3765 | &(nid_objs[578]),/* OBJ_setct_AuthRevResTBE 2 23 42 0 60 */ | ||
3766 | &(nid_objs[579]),/* OBJ_setct_AuthRevResTBEB 2 23 42 0 61 */ | ||
3767 | &(nid_objs[580]),/* OBJ_setct_CapReqTBE 2 23 42 0 62 */ | ||
3768 | &(nid_objs[581]),/* OBJ_setct_CapReqTBEX 2 23 42 0 63 */ | ||
3769 | &(nid_objs[582]),/* OBJ_setct_CapResTBE 2 23 42 0 64 */ | ||
3770 | &(nid_objs[583]),/* OBJ_setct_CapRevReqTBE 2 23 42 0 65 */ | ||
3771 | &(nid_objs[584]),/* OBJ_setct_CapRevReqTBEX 2 23 42 0 66 */ | ||
3772 | &(nid_objs[585]),/* OBJ_setct_CapRevResTBE 2 23 42 0 67 */ | ||
3773 | &(nid_objs[586]),/* OBJ_setct_CredReqTBE 2 23 42 0 68 */ | ||
3774 | &(nid_objs[587]),/* OBJ_setct_CredReqTBEX 2 23 42 0 69 */ | ||
3775 | &(nid_objs[588]),/* OBJ_setct_CredResTBE 2 23 42 0 70 */ | ||
3776 | &(nid_objs[589]),/* OBJ_setct_CredRevReqTBE 2 23 42 0 71 */ | ||
3777 | &(nid_objs[590]),/* OBJ_setct_CredRevReqTBEX 2 23 42 0 72 */ | ||
3778 | &(nid_objs[591]),/* OBJ_setct_CredRevResTBE 2 23 42 0 73 */ | ||
3779 | &(nid_objs[592]),/* OBJ_setct_BatchAdminReqTBE 2 23 42 0 74 */ | ||
3780 | &(nid_objs[593]),/* OBJ_setct_BatchAdminResTBE 2 23 42 0 75 */ | ||
3781 | &(nid_objs[594]),/* OBJ_setct_RegFormReqTBE 2 23 42 0 76 */ | ||
3782 | &(nid_objs[595]),/* OBJ_setct_CertReqTBE 2 23 42 0 77 */ | ||
3783 | &(nid_objs[596]),/* OBJ_setct_CertReqTBEX 2 23 42 0 78 */ | ||
3784 | &(nid_objs[597]),/* OBJ_setct_CertResTBE 2 23 42 0 79 */ | ||
3785 | &(nid_objs[598]),/* OBJ_setct_CRLNotificationTBS 2 23 42 0 80 */ | ||
3786 | &(nid_objs[599]),/* OBJ_setct_CRLNotificationResTBS 2 23 42 0 81 */ | ||
3787 | &(nid_objs[600]),/* OBJ_setct_BCIDistributionTBS 2 23 42 0 82 */ | ||
3788 | &(nid_objs[601]),/* OBJ_setext_genCrypt 2 23 42 1 1 */ | ||
3789 | &(nid_objs[602]),/* OBJ_setext_miAuth 2 23 42 1 3 */ | ||
3790 | &(nid_objs[603]),/* OBJ_setext_pinSecure 2 23 42 1 4 */ | ||
3791 | &(nid_objs[604]),/* OBJ_setext_pinAny 2 23 42 1 5 */ | ||
3792 | &(nid_objs[605]),/* OBJ_setext_track2 2 23 42 1 7 */ | ||
3793 | &(nid_objs[606]),/* OBJ_setext_cv 2 23 42 1 8 */ | ||
3794 | &(nid_objs[620]),/* OBJ_setAttr_Cert 2 23 42 3 0 */ | ||
3795 | &(nid_objs[621]),/* OBJ_setAttr_PGWYcap 2 23 42 3 1 */ | ||
3796 | &(nid_objs[622]),/* OBJ_setAttr_TokenType 2 23 42 3 2 */ | ||
3797 | &(nid_objs[623]),/* OBJ_setAttr_IssCap 2 23 42 3 3 */ | ||
3798 | &(nid_objs[607]),/* OBJ_set_policy_root 2 23 42 5 0 */ | ||
3799 | &(nid_objs[608]),/* OBJ_setCext_hashedRoot 2 23 42 7 0 */ | ||
3800 | &(nid_objs[609]),/* OBJ_setCext_certType 2 23 42 7 1 */ | ||
3801 | &(nid_objs[610]),/* OBJ_setCext_merchData 2 23 42 7 2 */ | ||
3802 | &(nid_objs[611]),/* OBJ_setCext_cCertRequired 2 23 42 7 3 */ | ||
3803 | &(nid_objs[612]),/* OBJ_setCext_tunneling 2 23 42 7 4 */ | ||
3804 | &(nid_objs[613]),/* OBJ_setCext_setExt 2 23 42 7 5 */ | ||
3805 | &(nid_objs[614]),/* OBJ_setCext_setQualf 2 23 42 7 6 */ | ||
3806 | &(nid_objs[615]),/* OBJ_setCext_PGWYcapabilities 2 23 42 7 7 */ | ||
3807 | &(nid_objs[616]),/* OBJ_setCext_TokenIdentifier 2 23 42 7 8 */ | ||
3808 | &(nid_objs[617]),/* OBJ_setCext_Track2Data 2 23 42 7 9 */ | ||
3809 | &(nid_objs[618]),/* OBJ_setCext_TokenType 2 23 42 7 10 */ | ||
3810 | &(nid_objs[619]),/* OBJ_setCext_IssuerCapabilities 2 23 42 7 11 */ | ||
3811 | &(nid_objs[636]),/* OBJ_set_brand_IATA_ATA 2 23 42 8 1 */ | ||
3812 | &(nid_objs[640]),/* OBJ_set_brand_Visa 2 23 42 8 4 */ | ||
3813 | &(nid_objs[641]),/* OBJ_set_brand_MasterCard 2 23 42 8 5 */ | ||
3814 | &(nid_objs[637]),/* OBJ_set_brand_Diners 2 23 42 8 30 */ | ||
3815 | &(nid_objs[638]),/* OBJ_set_brand_AmericanExpress 2 23 42 8 34 */ | ||
3816 | &(nid_objs[639]),/* OBJ_set_brand_JCB 2 23 42 8 35 */ | ||
3817 | &(nid_objs[184]),/* OBJ_X9_57 1 2 840 10040 */ | ||
3818 | &(nid_objs[405]),/* OBJ_ansi_X9_62 1 2 840 10045 */ | ||
3819 | &(nid_objs[389]),/* OBJ_Enterprises 1 3 6 1 4 1 */ | ||
3820 | &(nid_objs[504]),/* OBJ_mime_mhs 1 3 6 1 7 1 */ | ||
3821 | &(nid_objs[104]),/* OBJ_md5WithRSA 1 3 14 3 2 3 */ | ||
3822 | &(nid_objs[29]),/* OBJ_des_ecb 1 3 14 3 2 6 */ | ||
3823 | &(nid_objs[31]),/* OBJ_des_cbc 1 3 14 3 2 7 */ | ||
3824 | &(nid_objs[45]),/* OBJ_des_ofb64 1 3 14 3 2 8 */ | ||
3825 | &(nid_objs[30]),/* OBJ_des_cfb64 1 3 14 3 2 9 */ | ||
3826 | &(nid_objs[377]),/* OBJ_rsaSignature 1 3 14 3 2 11 */ | ||
3827 | &(nid_objs[67]),/* OBJ_dsa_2 1 3 14 3 2 12 */ | ||
3828 | &(nid_objs[66]),/* OBJ_dsaWithSHA 1 3 14 3 2 13 */ | ||
3829 | &(nid_objs[42]),/* OBJ_shaWithRSAEncryption 1 3 14 3 2 15 */ | ||
3830 | &(nid_objs[32]),/* OBJ_des_ede_ecb 1 3 14 3 2 17 */ | ||
3831 | &(nid_objs[41]),/* OBJ_sha 1 3 14 3 2 18 */ | ||
3832 | &(nid_objs[64]),/* OBJ_sha1 1 3 14 3 2 26 */ | ||
3833 | &(nid_objs[70]),/* OBJ_dsaWithSHA1_2 1 3 14 3 2 27 */ | ||
3834 | &(nid_objs[115]),/* OBJ_sha1WithRSA 1 3 14 3 2 29 */ | ||
3835 | &(nid_objs[117]),/* OBJ_ripemd160 1 3 36 3 2 1 */ | ||
3836 | &(nid_objs[143]),/* OBJ_sxnet 1 3 101 1 4 1 */ | ||
3837 | &(nid_objs[721]),/* OBJ_sect163k1 1 3 132 0 1 */ | ||
3838 | &(nid_objs[722]),/* OBJ_sect163r1 1 3 132 0 2 */ | ||
3839 | &(nid_objs[728]),/* OBJ_sect239k1 1 3 132 0 3 */ | ||
3840 | &(nid_objs[717]),/* OBJ_sect113r1 1 3 132 0 4 */ | ||
3841 | &(nid_objs[718]),/* OBJ_sect113r2 1 3 132 0 5 */ | ||
3842 | &(nid_objs[704]),/* OBJ_secp112r1 1 3 132 0 6 */ | ||
3843 | &(nid_objs[705]),/* OBJ_secp112r2 1 3 132 0 7 */ | ||
3844 | &(nid_objs[709]),/* OBJ_secp160r1 1 3 132 0 8 */ | ||
3845 | &(nid_objs[708]),/* OBJ_secp160k1 1 3 132 0 9 */ | ||
3846 | &(nid_objs[714]),/* OBJ_secp256k1 1 3 132 0 10 */ | ||
3847 | &(nid_objs[723]),/* OBJ_sect163r2 1 3 132 0 15 */ | ||
3848 | &(nid_objs[729]),/* OBJ_sect283k1 1 3 132 0 16 */ | ||
3849 | &(nid_objs[730]),/* OBJ_sect283r1 1 3 132 0 17 */ | ||
3850 | &(nid_objs[719]),/* OBJ_sect131r1 1 3 132 0 22 */ | ||
3851 | &(nid_objs[720]),/* OBJ_sect131r2 1 3 132 0 23 */ | ||
3852 | &(nid_objs[724]),/* OBJ_sect193r1 1 3 132 0 24 */ | ||
3853 | &(nid_objs[725]),/* OBJ_sect193r2 1 3 132 0 25 */ | ||
3854 | &(nid_objs[726]),/* OBJ_sect233k1 1 3 132 0 26 */ | ||
3855 | &(nid_objs[727]),/* OBJ_sect233r1 1 3 132 0 27 */ | ||
3856 | &(nid_objs[706]),/* OBJ_secp128r1 1 3 132 0 28 */ | ||
3857 | &(nid_objs[707]),/* OBJ_secp128r2 1 3 132 0 29 */ | ||
3858 | &(nid_objs[710]),/* OBJ_secp160r2 1 3 132 0 30 */ | ||
3859 | &(nid_objs[711]),/* OBJ_secp192k1 1 3 132 0 31 */ | ||
3860 | &(nid_objs[712]),/* OBJ_secp224k1 1 3 132 0 32 */ | ||
3861 | &(nid_objs[713]),/* OBJ_secp224r1 1 3 132 0 33 */ | ||
3862 | &(nid_objs[715]),/* OBJ_secp384r1 1 3 132 0 34 */ | ||
3863 | &(nid_objs[716]),/* OBJ_secp521r1 1 3 132 0 35 */ | ||
3864 | &(nid_objs[731]),/* OBJ_sect409k1 1 3 132 0 36 */ | ||
3865 | &(nid_objs[732]),/* OBJ_sect409r1 1 3 132 0 37 */ | ||
3866 | &(nid_objs[733]),/* OBJ_sect571k1 1 3 132 0 38 */ | ||
3867 | &(nid_objs[734]),/* OBJ_sect571r1 1 3 132 0 39 */ | ||
3868 | &(nid_objs[624]),/* OBJ_set_rootKeyThumb 2 23 42 3 0 0 */ | ||
3869 | &(nid_objs[625]),/* OBJ_set_addPolicy 2 23 42 3 0 1 */ | ||
3870 | &(nid_objs[626]),/* OBJ_setAttr_Token_EMV 2 23 42 3 2 1 */ | ||
3871 | &(nid_objs[627]),/* OBJ_setAttr_Token_B0Prime 2 23 42 3 2 2 */ | ||
3872 | &(nid_objs[628]),/* OBJ_setAttr_IssCap_CVM 2 23 42 3 3 3 */ | ||
3873 | &(nid_objs[629]),/* OBJ_setAttr_IssCap_T2 2 23 42 3 3 4 */ | ||
3874 | &(nid_objs[630]),/* OBJ_setAttr_IssCap_Sig 2 23 42 3 3 5 */ | ||
3875 | &(nid_objs[642]),/* OBJ_set_brand_Novus 2 23 42 8 6011 */ | ||
3876 | &(nid_objs[735]),/* OBJ_wap_wsg_idm_ecid_wtls1 2 23 43 13 4 1 */ | ||
3877 | &(nid_objs[736]),/* OBJ_wap_wsg_idm_ecid_wtls3 2 23 43 13 4 3 */ | ||
3878 | &(nid_objs[737]),/* OBJ_wap_wsg_idm_ecid_wtls4 2 23 43 13 4 4 */ | ||
3879 | &(nid_objs[738]),/* OBJ_wap_wsg_idm_ecid_wtls5 2 23 43 13 4 5 */ | ||
3880 | &(nid_objs[739]),/* OBJ_wap_wsg_idm_ecid_wtls6 2 23 43 13 4 6 */ | ||
3881 | &(nid_objs[740]),/* OBJ_wap_wsg_idm_ecid_wtls7 2 23 43 13 4 7 */ | ||
3882 | &(nid_objs[741]),/* OBJ_wap_wsg_idm_ecid_wtls8 2 23 43 13 4 8 */ | ||
3883 | &(nid_objs[742]),/* OBJ_wap_wsg_idm_ecid_wtls9 2 23 43 13 4 9 */ | ||
3884 | &(nid_objs[743]),/* OBJ_wap_wsg_idm_ecid_wtls10 2 23 43 13 4 10 */ | ||
3885 | &(nid_objs[744]),/* OBJ_wap_wsg_idm_ecid_wtls11 2 23 43 13 4 11 */ | ||
3886 | &(nid_objs[745]),/* OBJ_wap_wsg_idm_ecid_wtls12 2 23 43 13 4 12 */ | ||
3887 | &(nid_objs[124]),/* OBJ_rle_compression 1 1 1 1 666 1 */ | ||
3888 | &(nid_objs[773]),/* OBJ_kisa 1 2 410 200004 */ | ||
3889 | &(nid_objs[ 1]),/* OBJ_rsadsi 1 2 840 113549 */ | ||
3890 | &(nid_objs[185]),/* OBJ_X9cm 1 2 840 10040 4 */ | ||
3891 | &(nid_objs[127]),/* OBJ_id_pkix 1 3 6 1 5 5 7 */ | ||
3892 | &(nid_objs[505]),/* OBJ_mime_mhs_headings 1 3 6 1 7 1 1 */ | ||
3893 | &(nid_objs[506]),/* OBJ_mime_mhs_bodies 1 3 6 1 7 1 2 */ | ||
3894 | &(nid_objs[119]),/* OBJ_ripemd160WithRSA 1 3 36 3 3 1 2 */ | ||
3895 | &(nid_objs[631]),/* OBJ_setAttr_GenCryptgrm 2 23 42 3 3 3 1 */ | ||
3896 | &(nid_objs[632]),/* OBJ_setAttr_T2Enc 2 23 42 3 3 4 1 */ | ||
3897 | &(nid_objs[633]),/* OBJ_setAttr_T2cleartxt 2 23 42 3 3 4 2 */ | ||
3898 | &(nid_objs[634]),/* OBJ_setAttr_TokICCsig 2 23 42 3 3 5 1 */ | ||
3899 | &(nid_objs[635]),/* OBJ_setAttr_SecDevSig 2 23 42 3 3 5 2 */ | ||
3900 | &(nid_objs[436]),/* OBJ_ucl 0 9 2342 19200300 */ | ||
3901 | &(nid_objs[ 2]),/* OBJ_pkcs 1 2 840 113549 1 */ | ||
3902 | &(nid_objs[431]),/* OBJ_hold_instruction_none 1 2 840 10040 2 1 */ | ||
3903 | &(nid_objs[432]),/* OBJ_hold_instruction_call_issuer 1 2 840 10040 2 2 */ | ||
3904 | &(nid_objs[433]),/* OBJ_hold_instruction_reject 1 2 840 10040 2 3 */ | ||
3905 | &(nid_objs[116]),/* OBJ_dsa 1 2 840 10040 4 1 */ | ||
3906 | &(nid_objs[113]),/* OBJ_dsaWithSHA1 1 2 840 10040 4 3 */ | ||
3907 | &(nid_objs[406]),/* OBJ_X9_62_prime_field 1 2 840 10045 1 1 */ | ||
3908 | &(nid_objs[407]),/* OBJ_X9_62_characteristic_two_field 1 2 840 10045 1 2 */ | ||
3909 | &(nid_objs[408]),/* OBJ_X9_62_id_ecPublicKey 1 2 840 10045 2 1 */ | ||
3910 | &(nid_objs[416]),/* OBJ_ecdsa_with_SHA1 1 2 840 10045 4 1 */ | ||
3911 | &(nid_objs[258]),/* OBJ_id_pkix_mod 1 3 6 1 5 5 7 0 */ | ||
3912 | &(nid_objs[175]),/* OBJ_id_pe 1 3 6 1 5 5 7 1 */ | ||
3913 | &(nid_objs[259]),/* OBJ_id_qt 1 3 6 1 5 5 7 2 */ | ||
3914 | &(nid_objs[128]),/* OBJ_id_kp 1 3 6 1 5 5 7 3 */ | ||
3915 | &(nid_objs[260]),/* OBJ_id_it 1 3 6 1 5 5 7 4 */ | ||
3916 | &(nid_objs[261]),/* OBJ_id_pkip 1 3 6 1 5 5 7 5 */ | ||
3917 | &(nid_objs[262]),/* OBJ_id_alg 1 3 6 1 5 5 7 6 */ | ||
3918 | &(nid_objs[263]),/* OBJ_id_cmc 1 3 6 1 5 5 7 7 */ | ||
3919 | &(nid_objs[264]),/* OBJ_id_on 1 3 6 1 5 5 7 8 */ | ||
3920 | &(nid_objs[265]),/* OBJ_id_pda 1 3 6 1 5 5 7 9 */ | ||
3921 | &(nid_objs[266]),/* OBJ_id_aca 1 3 6 1 5 5 7 10 */ | ||
3922 | &(nid_objs[267]),/* OBJ_id_qcs 1 3 6 1 5 5 7 11 */ | ||
3923 | &(nid_objs[268]),/* OBJ_id_cct 1 3 6 1 5 5 7 12 */ | ||
3924 | &(nid_objs[662]),/* OBJ_id_ppl 1 3 6 1 5 5 7 21 */ | ||
3925 | &(nid_objs[176]),/* OBJ_id_ad 1 3 6 1 5 5 7 48 */ | ||
3926 | &(nid_objs[507]),/* OBJ_id_hex_partial_message 1 3 6 1 7 1 1 1 */ | ||
3927 | &(nid_objs[508]),/* OBJ_id_hex_multipart_message 1 3 6 1 7 1 1 2 */ | ||
3928 | &(nid_objs[57]),/* OBJ_netscape 2 16 840 1 113730 */ | ||
3929 | &(nid_objs[754]),/* OBJ_camellia_128_ecb 0 3 4401 5 3 1 9 1 */ | ||
3930 | &(nid_objs[766]),/* OBJ_camellia_128_ofb128 0 3 4401 5 3 1 9 3 */ | ||
3931 | &(nid_objs[757]),/* OBJ_camellia_128_cfb128 0 3 4401 5 3 1 9 4 */ | ||
3932 | &(nid_objs[755]),/* OBJ_camellia_192_ecb 0 3 4401 5 3 1 9 21 */ | ||
3933 | &(nid_objs[767]),/* OBJ_camellia_192_ofb128 0 3 4401 5 3 1 9 23 */ | ||
3934 | &(nid_objs[758]),/* OBJ_camellia_192_cfb128 0 3 4401 5 3 1 9 24 */ | ||
3935 | &(nid_objs[756]),/* OBJ_camellia_256_ecb 0 3 4401 5 3 1 9 41 */ | ||
3936 | &(nid_objs[768]),/* OBJ_camellia_256_ofb128 0 3 4401 5 3 1 9 43 */ | ||
3937 | &(nid_objs[759]),/* OBJ_camellia_256_cfb128 0 3 4401 5 3 1 9 44 */ | ||
3938 | &(nid_objs[437]),/* OBJ_pilot 0 9 2342 19200300 100 */ | ||
3939 | &(nid_objs[776]),/* OBJ_seed_ecb 1 2 410 200004 1 3 */ | ||
3940 | &(nid_objs[777]),/* OBJ_seed_cbc 1 2 410 200004 1 4 */ | ||
3941 | &(nid_objs[779]),/* OBJ_seed_cfb128 1 2 410 200004 1 5 */ | ||
3942 | &(nid_objs[778]),/* OBJ_seed_ofb128 1 2 410 200004 1 6 */ | ||
3943 | &(nid_objs[186]),/* OBJ_pkcs1 1 2 840 113549 1 1 */ | ||
3944 | &(nid_objs[27]),/* OBJ_pkcs3 1 2 840 113549 1 3 */ | ||
3945 | &(nid_objs[187]),/* OBJ_pkcs5 1 2 840 113549 1 5 */ | ||
3946 | &(nid_objs[20]),/* OBJ_pkcs7 1 2 840 113549 1 7 */ | ||
3947 | &(nid_objs[47]),/* OBJ_pkcs9 1 2 840 113549 1 9 */ | ||
3948 | &(nid_objs[ 3]),/* OBJ_md2 1 2 840 113549 2 2 */ | ||
3949 | &(nid_objs[257]),/* OBJ_md4 1 2 840 113549 2 4 */ | ||
3950 | &(nid_objs[ 4]),/* OBJ_md5 1 2 840 113549 2 5 */ | ||
3951 | &(nid_objs[163]),/* OBJ_hmacWithSHA1 1 2 840 113549 2 7 */ | ||
3952 | &(nid_objs[37]),/* OBJ_rc2_cbc 1 2 840 113549 3 2 */ | ||
3953 | &(nid_objs[ 5]),/* OBJ_rc4 1 2 840 113549 3 4 */ | ||
3954 | &(nid_objs[44]),/* OBJ_des_ede3_cbc 1 2 840 113549 3 7 */ | ||
3955 | &(nid_objs[120]),/* OBJ_rc5_cbc 1 2 840 113549 3 8 */ | ||
3956 | &(nid_objs[643]),/* OBJ_des_cdmf 1 2 840 113549 3 10 */ | ||
3957 | &(nid_objs[680]),/* OBJ_X9_62_id_characteristic_two_basis 1 2 840 10045 1 2 3 */ | ||
3958 | &(nid_objs[684]),/* OBJ_X9_62_c2pnb163v1 1 2 840 10045 3 0 1 */ | ||
3959 | &(nid_objs[685]),/* OBJ_X9_62_c2pnb163v2 1 2 840 10045 3 0 2 */ | ||
3960 | &(nid_objs[686]),/* OBJ_X9_62_c2pnb163v3 1 2 840 10045 3 0 3 */ | ||
3961 | &(nid_objs[687]),/* OBJ_X9_62_c2pnb176v1 1 2 840 10045 3 0 4 */ | ||
3962 | &(nid_objs[688]),/* OBJ_X9_62_c2tnb191v1 1 2 840 10045 3 0 5 */ | ||
3963 | &(nid_objs[689]),/* OBJ_X9_62_c2tnb191v2 1 2 840 10045 3 0 6 */ | ||
3964 | &(nid_objs[690]),/* OBJ_X9_62_c2tnb191v3 1 2 840 10045 3 0 7 */ | ||
3965 | &(nid_objs[691]),/* OBJ_X9_62_c2onb191v4 1 2 840 10045 3 0 8 */ | ||
3966 | &(nid_objs[692]),/* OBJ_X9_62_c2onb191v5 1 2 840 10045 3 0 9 */ | ||
3967 | &(nid_objs[693]),/* OBJ_X9_62_c2pnb208w1 1 2 840 10045 3 0 10 */ | ||
3968 | &(nid_objs[694]),/* OBJ_X9_62_c2tnb239v1 1 2 840 10045 3 0 11 */ | ||
3969 | &(nid_objs[695]),/* OBJ_X9_62_c2tnb239v2 1 2 840 10045 3 0 12 */ | ||
3970 | &(nid_objs[696]),/* OBJ_X9_62_c2tnb239v3 1 2 840 10045 3 0 13 */ | ||
3971 | &(nid_objs[697]),/* OBJ_X9_62_c2onb239v4 1 2 840 10045 3 0 14 */ | ||
3972 | &(nid_objs[698]),/* OBJ_X9_62_c2onb239v5 1 2 840 10045 3 0 15 */ | ||
3973 | &(nid_objs[699]),/* OBJ_X9_62_c2pnb272w1 1 2 840 10045 3 0 16 */ | ||
3974 | &(nid_objs[700]),/* OBJ_X9_62_c2pnb304w1 1 2 840 10045 3 0 17 */ | ||
3975 | &(nid_objs[701]),/* OBJ_X9_62_c2tnb359v1 1 2 840 10045 3 0 18 */ | ||
3976 | &(nid_objs[702]),/* OBJ_X9_62_c2pnb368w1 1 2 840 10045 3 0 19 */ | ||
3977 | &(nid_objs[703]),/* OBJ_X9_62_c2tnb431r1 1 2 840 10045 3 0 20 */ | ||
3978 | &(nid_objs[409]),/* OBJ_X9_62_prime192v1 1 2 840 10045 3 1 1 */ | ||
3979 | &(nid_objs[410]),/* OBJ_X9_62_prime192v2 1 2 840 10045 3 1 2 */ | ||
3980 | &(nid_objs[411]),/* OBJ_X9_62_prime192v3 1 2 840 10045 3 1 3 */ | ||
3981 | &(nid_objs[412]),/* OBJ_X9_62_prime239v1 1 2 840 10045 3 1 4 */ | ||
3982 | &(nid_objs[413]),/* OBJ_X9_62_prime239v2 1 2 840 10045 3 1 5 */ | ||
3983 | &(nid_objs[414]),/* OBJ_X9_62_prime239v3 1 2 840 10045 3 1 6 */ | ||
3984 | &(nid_objs[415]),/* OBJ_X9_62_prime256v1 1 2 840 10045 3 1 7 */ | ||
3985 | &(nid_objs[269]),/* OBJ_id_pkix1_explicit_88 1 3 6 1 5 5 7 0 1 */ | ||
3986 | &(nid_objs[270]),/* OBJ_id_pkix1_implicit_88 1 3 6 1 5 5 7 0 2 */ | ||
3987 | &(nid_objs[271]),/* OBJ_id_pkix1_explicit_93 1 3 6 1 5 5 7 0 3 */ | ||
3988 | &(nid_objs[272]),/* OBJ_id_pkix1_implicit_93 1 3 6 1 5 5 7 0 4 */ | ||
3989 | &(nid_objs[273]),/* OBJ_id_mod_crmf 1 3 6 1 5 5 7 0 5 */ | ||
3990 | &(nid_objs[274]),/* OBJ_id_mod_cmc 1 3 6 1 5 5 7 0 6 */ | ||
3991 | &(nid_objs[275]),/* OBJ_id_mod_kea_profile_88 1 3 6 1 5 5 7 0 7 */ | ||
3992 | &(nid_objs[276]),/* OBJ_id_mod_kea_profile_93 1 3 6 1 5 5 7 0 8 */ | ||
3993 | &(nid_objs[277]),/* OBJ_id_mod_cmp 1 3 6 1 5 5 7 0 9 */ | ||
3994 | &(nid_objs[278]),/* OBJ_id_mod_qualified_cert_88 1 3 6 1 5 5 7 0 10 */ | ||
3995 | &(nid_objs[279]),/* OBJ_id_mod_qualified_cert_93 1 3 6 1 5 5 7 0 11 */ | ||
3996 | &(nid_objs[280]),/* OBJ_id_mod_attribute_cert 1 3 6 1 5 5 7 0 12 */ | ||
3997 | &(nid_objs[281]),/* OBJ_id_mod_timestamp_protocol 1 3 6 1 5 5 7 0 13 */ | ||
3998 | &(nid_objs[282]),/* OBJ_id_mod_ocsp 1 3 6 1 5 5 7 0 14 */ | ||
3999 | &(nid_objs[283]),/* OBJ_id_mod_dvcs 1 3 6 1 5 5 7 0 15 */ | ||
4000 | &(nid_objs[284]),/* OBJ_id_mod_cmp2000 1 3 6 1 5 5 7 0 16 */ | ||
4001 | &(nid_objs[177]),/* OBJ_info_access 1 3 6 1 5 5 7 1 1 */ | ||
4002 | &(nid_objs[285]),/* OBJ_biometricInfo 1 3 6 1 5 5 7 1 2 */ | ||
4003 | &(nid_objs[286]),/* OBJ_qcStatements 1 3 6 1 5 5 7 1 3 */ | ||
4004 | &(nid_objs[287]),/* OBJ_ac_auditEntity 1 3 6 1 5 5 7 1 4 */ | ||
4005 | &(nid_objs[288]),/* OBJ_ac_targeting 1 3 6 1 5 5 7 1 5 */ | ||
4006 | &(nid_objs[289]),/* OBJ_aaControls 1 3 6 1 5 5 7 1 6 */ | ||
4007 | &(nid_objs[290]),/* OBJ_sbgp_ipAddrBlock 1 3 6 1 5 5 7 1 7 */ | ||
4008 | &(nid_objs[291]),/* OBJ_sbgp_autonomousSysNum 1 3 6 1 5 5 7 1 8 */ | ||
4009 | &(nid_objs[292]),/* OBJ_sbgp_routerIdentifier 1 3 6 1 5 5 7 1 9 */ | ||
4010 | &(nid_objs[397]),/* OBJ_ac_proxying 1 3 6 1 5 5 7 1 10 */ | ||
4011 | &(nid_objs[398]),/* OBJ_sinfo_access 1 3 6 1 5 5 7 1 11 */ | ||
4012 | &(nid_objs[663]),/* OBJ_proxyCertInfo 1 3 6 1 5 5 7 1 14 */ | ||
4013 | &(nid_objs[164]),/* OBJ_id_qt_cps 1 3 6 1 5 5 7 2 1 */ | ||
4014 | &(nid_objs[165]),/* OBJ_id_qt_unotice 1 3 6 1 5 5 7 2 2 */ | ||
4015 | &(nid_objs[293]),/* OBJ_textNotice 1 3 6 1 5 5 7 2 3 */ | ||
4016 | &(nid_objs[129]),/* OBJ_server_auth 1 3 6 1 5 5 7 3 1 */ | ||
4017 | &(nid_objs[130]),/* OBJ_client_auth 1 3 6 1 5 5 7 3 2 */ | ||
4018 | &(nid_objs[131]),/* OBJ_code_sign 1 3 6 1 5 5 7 3 3 */ | ||
4019 | &(nid_objs[132]),/* OBJ_email_protect 1 3 6 1 5 5 7 3 4 */ | ||
4020 | &(nid_objs[294]),/* OBJ_ipsecEndSystem 1 3 6 1 5 5 7 3 5 */ | ||
4021 | &(nid_objs[295]),/* OBJ_ipsecTunnel 1 3 6 1 5 5 7 3 6 */ | ||
4022 | &(nid_objs[296]),/* OBJ_ipsecUser 1 3 6 1 5 5 7 3 7 */ | ||
4023 | &(nid_objs[133]),/* OBJ_time_stamp 1 3 6 1 5 5 7 3 8 */ | ||
4024 | &(nid_objs[180]),/* OBJ_OCSP_sign 1 3 6 1 5 5 7 3 9 */ | ||
4025 | &(nid_objs[297]),/* OBJ_dvcs 1 3 6 1 5 5 7 3 10 */ | ||
4026 | &(nid_objs[298]),/* OBJ_id_it_caProtEncCert 1 3 6 1 5 5 7 4 1 */ | ||
4027 | &(nid_objs[299]),/* OBJ_id_it_signKeyPairTypes 1 3 6 1 5 5 7 4 2 */ | ||
4028 | &(nid_objs[300]),/* OBJ_id_it_encKeyPairTypes 1 3 6 1 5 5 7 4 3 */ | ||
4029 | &(nid_objs[301]),/* OBJ_id_it_preferredSymmAlg 1 3 6 1 5 5 7 4 4 */ | ||
4030 | &(nid_objs[302]),/* OBJ_id_it_caKeyUpdateInfo 1 3 6 1 5 5 7 4 5 */ | ||
4031 | &(nid_objs[303]),/* OBJ_id_it_currentCRL 1 3 6 1 5 5 7 4 6 */ | ||
4032 | &(nid_objs[304]),/* OBJ_id_it_unsupportedOIDs 1 3 6 1 5 5 7 4 7 */ | ||
4033 | &(nid_objs[305]),/* OBJ_id_it_subscriptionRequest 1 3 6 1 5 5 7 4 8 */ | ||
4034 | &(nid_objs[306]),/* OBJ_id_it_subscriptionResponse 1 3 6 1 5 5 7 4 9 */ | ||
4035 | &(nid_objs[307]),/* OBJ_id_it_keyPairParamReq 1 3 6 1 5 5 7 4 10 */ | ||
4036 | &(nid_objs[308]),/* OBJ_id_it_keyPairParamRep 1 3 6 1 5 5 7 4 11 */ | ||
4037 | &(nid_objs[309]),/* OBJ_id_it_revPassphrase 1 3 6 1 5 5 7 4 12 */ | ||
4038 | &(nid_objs[310]),/* OBJ_id_it_implicitConfirm 1 3 6 1 5 5 7 4 13 */ | ||
4039 | &(nid_objs[311]),/* OBJ_id_it_confirmWaitTime 1 3 6 1 5 5 7 4 14 */ | ||
4040 | &(nid_objs[312]),/* OBJ_id_it_origPKIMessage 1 3 6 1 5 5 7 4 15 */ | ||
4041 | &(nid_objs[784]),/* OBJ_id_it_suppLangTags 1 3 6 1 5 5 7 4 16 */ | ||
4042 | &(nid_objs[313]),/* OBJ_id_regCtrl 1 3 6 1 5 5 7 5 1 */ | ||
4043 | &(nid_objs[314]),/* OBJ_id_regInfo 1 3 6 1 5 5 7 5 2 */ | ||
4044 | &(nid_objs[323]),/* OBJ_id_alg_des40 1 3 6 1 5 5 7 6 1 */ | ||
4045 | &(nid_objs[324]),/* OBJ_id_alg_noSignature 1 3 6 1 5 5 7 6 2 */ | ||
4046 | &(nid_objs[325]),/* OBJ_id_alg_dh_sig_hmac_sha1 1 3 6 1 5 5 7 6 3 */ | ||
4047 | &(nid_objs[326]),/* OBJ_id_alg_dh_pop 1 3 6 1 5 5 7 6 4 */ | ||
4048 | &(nid_objs[327]),/* OBJ_id_cmc_statusInfo 1 3 6 1 5 5 7 7 1 */ | ||
4049 | &(nid_objs[328]),/* OBJ_id_cmc_identification 1 3 6 1 5 5 7 7 2 */ | ||
4050 | &(nid_objs[329]),/* OBJ_id_cmc_identityProof 1 3 6 1 5 5 7 7 3 */ | ||
4051 | &(nid_objs[330]),/* OBJ_id_cmc_dataReturn 1 3 6 1 5 5 7 7 4 */ | ||
4052 | &(nid_objs[331]),/* OBJ_id_cmc_transactionId 1 3 6 1 5 5 7 7 5 */ | ||
4053 | &(nid_objs[332]),/* OBJ_id_cmc_senderNonce 1 3 6 1 5 5 7 7 6 */ | ||
4054 | &(nid_objs[333]),/* OBJ_id_cmc_recipientNonce 1 3 6 1 5 5 7 7 7 */ | ||
4055 | &(nid_objs[334]),/* OBJ_id_cmc_addExtensions 1 3 6 1 5 5 7 7 8 */ | ||
4056 | &(nid_objs[335]),/* OBJ_id_cmc_encryptedPOP 1 3 6 1 5 5 7 7 9 */ | ||
4057 | &(nid_objs[336]),/* OBJ_id_cmc_decryptedPOP 1 3 6 1 5 5 7 7 10 */ | ||
4058 | &(nid_objs[337]),/* OBJ_id_cmc_lraPOPWitness 1 3 6 1 5 5 7 7 11 */ | ||
4059 | &(nid_objs[338]),/* OBJ_id_cmc_getCert 1 3 6 1 5 5 7 7 15 */ | ||
4060 | &(nid_objs[339]),/* OBJ_id_cmc_getCRL 1 3 6 1 5 5 7 7 16 */ | ||
4061 | &(nid_objs[340]),/* OBJ_id_cmc_revokeRequest 1 3 6 1 5 5 7 7 17 */ | ||
4062 | &(nid_objs[341]),/* OBJ_id_cmc_regInfo 1 3 6 1 5 5 7 7 18 */ | ||
4063 | &(nid_objs[342]),/* OBJ_id_cmc_responseInfo 1 3 6 1 5 5 7 7 19 */ | ||
4064 | &(nid_objs[343]),/* OBJ_id_cmc_queryPending 1 3 6 1 5 5 7 7 21 */ | ||
4065 | &(nid_objs[344]),/* OBJ_id_cmc_popLinkRandom 1 3 6 1 5 5 7 7 22 */ | ||
4066 | &(nid_objs[345]),/* OBJ_id_cmc_popLinkWitness 1 3 6 1 5 5 7 7 23 */ | ||
4067 | &(nid_objs[346]),/* OBJ_id_cmc_confirmCertAcceptance 1 3 6 1 5 5 7 7 24 */ | ||
4068 | &(nid_objs[347]),/* OBJ_id_on_personalData 1 3 6 1 5 5 7 8 1 */ | ||
4069 | &(nid_objs[348]),/* OBJ_id_pda_dateOfBirth 1 3 6 1 5 5 7 9 1 */ | ||
4070 | &(nid_objs[349]),/* OBJ_id_pda_placeOfBirth 1 3 6 1 5 5 7 9 2 */ | ||
4071 | &(nid_objs[351]),/* OBJ_id_pda_gender 1 3 6 1 5 5 7 9 3 */ | ||
4072 | &(nid_objs[352]),/* OBJ_id_pda_countryOfCitizenship 1 3 6 1 5 5 7 9 4 */ | ||
4073 | &(nid_objs[353]),/* OBJ_id_pda_countryOfResidence 1 3 6 1 5 5 7 9 5 */ | ||
4074 | &(nid_objs[354]),/* OBJ_id_aca_authenticationInfo 1 3 6 1 5 5 7 10 1 */ | ||
4075 | &(nid_objs[355]),/* OBJ_id_aca_accessIdentity 1 3 6 1 5 5 7 10 2 */ | ||
4076 | &(nid_objs[356]),/* OBJ_id_aca_chargingIdentity 1 3 6 1 5 5 7 10 3 */ | ||
4077 | &(nid_objs[357]),/* OBJ_id_aca_group 1 3 6 1 5 5 7 10 4 */ | ||
4078 | &(nid_objs[358]),/* OBJ_id_aca_role 1 3 6 1 5 5 7 10 5 */ | ||
4079 | &(nid_objs[399]),/* OBJ_id_aca_encAttrs 1 3 6 1 5 5 7 10 6 */ | ||
4080 | &(nid_objs[359]),/* OBJ_id_qcs_pkixQCSyntax_v1 1 3 6 1 5 5 7 11 1 */ | ||
4081 | &(nid_objs[360]),/* OBJ_id_cct_crs 1 3 6 1 5 5 7 12 1 */ | ||
4082 | &(nid_objs[361]),/* OBJ_id_cct_PKIData 1 3 6 1 5 5 7 12 2 */ | ||
4083 | &(nid_objs[362]),/* OBJ_id_cct_PKIResponse 1 3 6 1 5 5 7 12 3 */ | ||
4084 | &(nid_objs[664]),/* OBJ_id_ppl_anyLanguage 1 3 6 1 5 5 7 21 0 */ | ||
4085 | &(nid_objs[665]),/* OBJ_id_ppl_inheritAll 1 3 6 1 5 5 7 21 1 */ | ||
4086 | &(nid_objs[667]),/* OBJ_Independent 1 3 6 1 5 5 7 21 2 */ | ||
4087 | &(nid_objs[178]),/* OBJ_ad_OCSP 1 3 6 1 5 5 7 48 1 */ | ||
4088 | &(nid_objs[179]),/* OBJ_ad_ca_issuers 1 3 6 1 5 5 7 48 2 */ | ||
4089 | &(nid_objs[363]),/* OBJ_ad_timeStamping 1 3 6 1 5 5 7 48 3 */ | ||
4090 | &(nid_objs[364]),/* OBJ_ad_dvcs 1 3 6 1 5 5 7 48 4 */ | ||
4091 | &(nid_objs[785]),/* OBJ_caRepository 1 3 6 1 5 5 7 48 5 */ | ||
4092 | &(nid_objs[780]),/* OBJ_hmac_md5 1 3 6 1 5 5 8 1 1 */ | ||
4093 | &(nid_objs[781]),/* OBJ_hmac_sha1 1 3 6 1 5 5 8 1 2 */ | ||
4094 | &(nid_objs[58]),/* OBJ_netscape_cert_extension 2 16 840 1 113730 1 */ | ||
4095 | &(nid_objs[59]),/* OBJ_netscape_data_type 2 16 840 1 113730 2 */ | ||
4096 | &(nid_objs[438]),/* OBJ_pilotAttributeType 0 9 2342 19200300 100 1 */ | ||
4097 | &(nid_objs[439]),/* OBJ_pilotAttributeSyntax 0 9 2342 19200300 100 3 */ | ||
4098 | &(nid_objs[440]),/* OBJ_pilotObjectClass 0 9 2342 19200300 100 4 */ | ||
4099 | &(nid_objs[441]),/* OBJ_pilotGroups 0 9 2342 19200300 100 10 */ | ||
4100 | &(nid_objs[108]),/* OBJ_cast5_cbc 1 2 840 113533 7 66 10 */ | ||
4101 | &(nid_objs[112]),/* OBJ_pbeWithMD5AndCast5_CBC 1 2 840 113533 7 66 12 */ | ||
4102 | &(nid_objs[782]),/* OBJ_id_PasswordBasedMAC 1 2 840 113533 7 66 13 */ | ||
4103 | &(nid_objs[783]),/* OBJ_id_DHBasedMac 1 2 840 113533 7 66 30 */ | ||
4104 | &(nid_objs[ 6]),/* OBJ_rsaEncryption 1 2 840 113549 1 1 1 */ | ||
4105 | &(nid_objs[ 7]),/* OBJ_md2WithRSAEncryption 1 2 840 113549 1 1 2 */ | ||
4106 | &(nid_objs[396]),/* OBJ_md4WithRSAEncryption 1 2 840 113549 1 1 3 */ | ||
4107 | &(nid_objs[ 8]),/* OBJ_md5WithRSAEncryption 1 2 840 113549 1 1 4 */ | ||
4108 | &(nid_objs[65]),/* OBJ_sha1WithRSAEncryption 1 2 840 113549 1 1 5 */ | ||
4109 | &(nid_objs[644]),/* OBJ_rsaOAEPEncryptionSET 1 2 840 113549 1 1 6 */ | ||
4110 | &(nid_objs[668]),/* OBJ_sha256WithRSAEncryption 1 2 840 113549 1 1 11 */ | ||
4111 | &(nid_objs[669]),/* OBJ_sha384WithRSAEncryption 1 2 840 113549 1 1 12 */ | ||
4112 | &(nid_objs[670]),/* OBJ_sha512WithRSAEncryption 1 2 840 113549 1 1 13 */ | ||
4113 | &(nid_objs[671]),/* OBJ_sha224WithRSAEncryption 1 2 840 113549 1 1 14 */ | ||
4114 | &(nid_objs[28]),/* OBJ_dhKeyAgreement 1 2 840 113549 1 3 1 */ | ||
4115 | &(nid_objs[ 9]),/* OBJ_pbeWithMD2AndDES_CBC 1 2 840 113549 1 5 1 */ | ||
4116 | &(nid_objs[10]),/* OBJ_pbeWithMD5AndDES_CBC 1 2 840 113549 1 5 3 */ | ||
4117 | &(nid_objs[168]),/* OBJ_pbeWithMD2AndRC2_CBC 1 2 840 113549 1 5 4 */ | ||
4118 | &(nid_objs[169]),/* OBJ_pbeWithMD5AndRC2_CBC 1 2 840 113549 1 5 6 */ | ||
4119 | &(nid_objs[170]),/* OBJ_pbeWithSHA1AndDES_CBC 1 2 840 113549 1 5 10 */ | ||
4120 | &(nid_objs[68]),/* OBJ_pbeWithSHA1AndRC2_CBC 1 2 840 113549 1 5 11 */ | ||
4121 | &(nid_objs[69]),/* OBJ_id_pbkdf2 1 2 840 113549 1 5 12 */ | ||
4122 | &(nid_objs[161]),/* OBJ_pbes2 1 2 840 113549 1 5 13 */ | ||
4123 | &(nid_objs[162]),/* OBJ_pbmac1 1 2 840 113549 1 5 14 */ | ||
4124 | &(nid_objs[21]),/* OBJ_pkcs7_data 1 2 840 113549 1 7 1 */ | ||
4125 | &(nid_objs[22]),/* OBJ_pkcs7_signed 1 2 840 113549 1 7 2 */ | ||
4126 | &(nid_objs[23]),/* OBJ_pkcs7_enveloped 1 2 840 113549 1 7 3 */ | ||
4127 | &(nid_objs[24]),/* OBJ_pkcs7_signedAndEnveloped 1 2 840 113549 1 7 4 */ | ||
4128 | &(nid_objs[25]),/* OBJ_pkcs7_digest 1 2 840 113549 1 7 5 */ | ||
4129 | &(nid_objs[26]),/* OBJ_pkcs7_encrypted 1 2 840 113549 1 7 6 */ | ||
4130 | &(nid_objs[48]),/* OBJ_pkcs9_emailAddress 1 2 840 113549 1 9 1 */ | ||
4131 | &(nid_objs[49]),/* OBJ_pkcs9_unstructuredName 1 2 840 113549 1 9 2 */ | ||
4132 | &(nid_objs[50]),/* OBJ_pkcs9_contentType 1 2 840 113549 1 9 3 */ | ||
4133 | &(nid_objs[51]),/* OBJ_pkcs9_messageDigest 1 2 840 113549 1 9 4 */ | ||
4134 | &(nid_objs[52]),/* OBJ_pkcs9_signingTime 1 2 840 113549 1 9 5 */ | ||
4135 | &(nid_objs[53]),/* OBJ_pkcs9_countersignature 1 2 840 113549 1 9 6 */ | ||
4136 | &(nid_objs[54]),/* OBJ_pkcs9_challengePassword 1 2 840 113549 1 9 7 */ | ||
4137 | &(nid_objs[55]),/* OBJ_pkcs9_unstructuredAddress 1 2 840 113549 1 9 8 */ | ||
4138 | &(nid_objs[56]),/* OBJ_pkcs9_extCertAttributes 1 2 840 113549 1 9 9 */ | ||
4139 | &(nid_objs[172]),/* OBJ_ext_req 1 2 840 113549 1 9 14 */ | ||
4140 | &(nid_objs[167]),/* OBJ_SMIMECapabilities 1 2 840 113549 1 9 15 */ | ||
4141 | &(nid_objs[188]),/* OBJ_SMIME 1 2 840 113549 1 9 16 */ | ||
4142 | &(nid_objs[156]),/* OBJ_friendlyName 1 2 840 113549 1 9 20 */ | ||
4143 | &(nid_objs[157]),/* OBJ_localKeyID 1 2 840 113549 1 9 21 */ | ||
4144 | &(nid_objs[681]),/* OBJ_X9_62_onBasis 1 2 840 10045 1 2 3 1 */ | ||
4145 | &(nid_objs[682]),/* OBJ_X9_62_tpBasis 1 2 840 10045 1 2 3 2 */ | ||
4146 | &(nid_objs[683]),/* OBJ_X9_62_ppBasis 1 2 840 10045 1 2 3 3 */ | ||
4147 | &(nid_objs[417]),/* OBJ_ms_csp_name 1 3 6 1 4 1 311 17 1 */ | ||
4148 | &(nid_objs[390]),/* OBJ_dcObject 1 3 6 1 4 1 1466 344 */ | ||
4149 | &(nid_objs[91]),/* OBJ_bf_cbc 1 3 6 1 4 1 3029 1 2 */ | ||
4150 | &(nid_objs[315]),/* OBJ_id_regCtrl_regToken 1 3 6 1 5 5 7 5 1 1 */ | ||
4151 | &(nid_objs[316]),/* OBJ_id_regCtrl_authenticator 1 3 6 1 5 5 7 5 1 2 */ | ||
4152 | &(nid_objs[317]),/* OBJ_id_regCtrl_pkiPublicationInfo 1 3 6 1 5 5 7 5 1 3 */ | ||
4153 | &(nid_objs[318]),/* OBJ_id_regCtrl_pkiArchiveOptions 1 3 6 1 5 5 7 5 1 4 */ | ||
4154 | &(nid_objs[319]),/* OBJ_id_regCtrl_oldCertID 1 3 6 1 5 5 7 5 1 5 */ | ||
4155 | &(nid_objs[320]),/* OBJ_id_regCtrl_protocolEncrKey 1 3 6 1 5 5 7 5 1 6 */ | ||
4156 | &(nid_objs[321]),/* OBJ_id_regInfo_utf8Pairs 1 3 6 1 5 5 7 5 2 1 */ | ||
4157 | &(nid_objs[322]),/* OBJ_id_regInfo_certReq 1 3 6 1 5 5 7 5 2 2 */ | ||
4158 | &(nid_objs[365]),/* OBJ_id_pkix_OCSP_basic 1 3 6 1 5 5 7 48 1 1 */ | ||
4159 | &(nid_objs[366]),/* OBJ_id_pkix_OCSP_Nonce 1 3 6 1 5 5 7 48 1 2 */ | ||
4160 | &(nid_objs[367]),/* OBJ_id_pkix_OCSP_CrlID 1 3 6 1 5 5 7 48 1 3 */ | ||
4161 | &(nid_objs[368]),/* OBJ_id_pkix_OCSP_acceptableResponses 1 3 6 1 5 5 7 48 1 4 */ | ||
4162 | &(nid_objs[369]),/* OBJ_id_pkix_OCSP_noCheck 1 3 6 1 5 5 7 48 1 5 */ | ||
4163 | &(nid_objs[370]),/* OBJ_id_pkix_OCSP_archiveCutoff 1 3 6 1 5 5 7 48 1 6 */ | ||
4164 | &(nid_objs[371]),/* OBJ_id_pkix_OCSP_serviceLocator 1 3 6 1 5 5 7 48 1 7 */ | ||
4165 | &(nid_objs[372]),/* OBJ_id_pkix_OCSP_extendedStatus 1 3 6 1 5 5 7 48 1 8 */ | ||
4166 | &(nid_objs[373]),/* OBJ_id_pkix_OCSP_valid 1 3 6 1 5 5 7 48 1 9 */ | ||
4167 | &(nid_objs[374]),/* OBJ_id_pkix_OCSP_path 1 3 6 1 5 5 7 48 1 10 */ | ||
4168 | &(nid_objs[375]),/* OBJ_id_pkix_OCSP_trustRoot 1 3 6 1 5 5 7 48 1 11 */ | ||
4169 | &(nid_objs[418]),/* OBJ_aes_128_ecb 2 16 840 1 101 3 4 1 1 */ | ||
4170 | &(nid_objs[419]),/* OBJ_aes_128_cbc 2 16 840 1 101 3 4 1 2 */ | ||
4171 | &(nid_objs[420]),/* OBJ_aes_128_ofb128 2 16 840 1 101 3 4 1 3 */ | ||
4172 | &(nid_objs[421]),/* OBJ_aes_128_cfb128 2 16 840 1 101 3 4 1 4 */ | ||
4173 | &(nid_objs[788]),/* OBJ_id_aes128_wrap 2 16 840 1 101 3 4 1 5 */ | ||
4174 | &(nid_objs[422]),/* OBJ_aes_192_ecb 2 16 840 1 101 3 4 1 21 */ | ||
4175 | &(nid_objs[423]),/* OBJ_aes_192_cbc 2 16 840 1 101 3 4 1 22 */ | ||
4176 | &(nid_objs[424]),/* OBJ_aes_192_ofb128 2 16 840 1 101 3 4 1 23 */ | ||
4177 | &(nid_objs[425]),/* OBJ_aes_192_cfb128 2 16 840 1 101 3 4 1 24 */ | ||
4178 | &(nid_objs[789]),/* OBJ_id_aes192_wrap 2 16 840 1 101 3 4 1 25 */ | ||
4179 | &(nid_objs[426]),/* OBJ_aes_256_ecb 2 16 840 1 101 3 4 1 41 */ | ||
4180 | &(nid_objs[427]),/* OBJ_aes_256_cbc 2 16 840 1 101 3 4 1 42 */ | ||
4181 | &(nid_objs[428]),/* OBJ_aes_256_ofb128 2 16 840 1 101 3 4 1 43 */ | ||
4182 | &(nid_objs[429]),/* OBJ_aes_256_cfb128 2 16 840 1 101 3 4 1 44 */ | ||
4183 | &(nid_objs[790]),/* OBJ_id_aes256_wrap 2 16 840 1 101 3 4 1 45 */ | ||
4184 | &(nid_objs[672]),/* OBJ_sha256 2 16 840 1 101 3 4 2 1 */ | ||
4185 | &(nid_objs[673]),/* OBJ_sha384 2 16 840 1 101 3 4 2 2 */ | ||
4186 | &(nid_objs[674]),/* OBJ_sha512 2 16 840 1 101 3 4 2 3 */ | ||
4187 | &(nid_objs[675]),/* OBJ_sha224 2 16 840 1 101 3 4 2 4 */ | ||
4188 | &(nid_objs[71]),/* OBJ_netscape_cert_type 2 16 840 1 113730 1 1 */ | ||
4189 | &(nid_objs[72]),/* OBJ_netscape_base_url 2 16 840 1 113730 1 2 */ | ||
4190 | &(nid_objs[73]),/* OBJ_netscape_revocation_url 2 16 840 1 113730 1 3 */ | ||
4191 | &(nid_objs[74]),/* OBJ_netscape_ca_revocation_url 2 16 840 1 113730 1 4 */ | ||
4192 | &(nid_objs[75]),/* OBJ_netscape_renewal_url 2 16 840 1 113730 1 7 */ | ||
4193 | &(nid_objs[76]),/* OBJ_netscape_ca_policy_url 2 16 840 1 113730 1 8 */ | ||
4194 | &(nid_objs[77]),/* OBJ_netscape_ssl_server_name 2 16 840 1 113730 1 12 */ | ||
4195 | &(nid_objs[78]),/* OBJ_netscape_comment 2 16 840 1 113730 1 13 */ | ||
4196 | &(nid_objs[79]),/* OBJ_netscape_cert_sequence 2 16 840 1 113730 2 5 */ | ||
4197 | &(nid_objs[139]),/* OBJ_ns_sgc 2 16 840 1 113730 4 1 */ | ||
4198 | &(nid_objs[458]),/* OBJ_userId 0 9 2342 19200300 100 1 1 */ | ||
4199 | &(nid_objs[459]),/* OBJ_textEncodedORAddress 0 9 2342 19200300 100 1 2 */ | ||
4200 | &(nid_objs[460]),/* OBJ_rfc822Mailbox 0 9 2342 19200300 100 1 3 */ | ||
4201 | &(nid_objs[461]),/* OBJ_info 0 9 2342 19200300 100 1 4 */ | ||
4202 | &(nid_objs[462]),/* OBJ_favouriteDrink 0 9 2342 19200300 100 1 5 */ | ||
4203 | &(nid_objs[463]),/* OBJ_roomNumber 0 9 2342 19200300 100 1 6 */ | ||
4204 | &(nid_objs[464]),/* OBJ_photo 0 9 2342 19200300 100 1 7 */ | ||
4205 | &(nid_objs[465]),/* OBJ_userClass 0 9 2342 19200300 100 1 8 */ | ||
4206 | &(nid_objs[466]),/* OBJ_host 0 9 2342 19200300 100 1 9 */ | ||
4207 | &(nid_objs[467]),/* OBJ_manager 0 9 2342 19200300 100 1 10 */ | ||
4208 | &(nid_objs[468]),/* OBJ_documentIdentifier 0 9 2342 19200300 100 1 11 */ | ||
4209 | &(nid_objs[469]),/* OBJ_documentTitle 0 9 2342 19200300 100 1 12 */ | ||
4210 | &(nid_objs[470]),/* OBJ_documentVersion 0 9 2342 19200300 100 1 13 */ | ||
4211 | &(nid_objs[471]),/* OBJ_documentAuthor 0 9 2342 19200300 100 1 14 */ | ||
4212 | &(nid_objs[472]),/* OBJ_documentLocation 0 9 2342 19200300 100 1 15 */ | ||
4213 | &(nid_objs[473]),/* OBJ_homeTelephoneNumber 0 9 2342 19200300 100 1 20 */ | ||
4214 | &(nid_objs[474]),/* OBJ_secretary 0 9 2342 19200300 100 1 21 */ | ||
4215 | &(nid_objs[475]),/* OBJ_otherMailbox 0 9 2342 19200300 100 1 22 */ | ||
4216 | &(nid_objs[476]),/* OBJ_lastModifiedTime 0 9 2342 19200300 100 1 23 */ | ||
4217 | &(nid_objs[477]),/* OBJ_lastModifiedBy 0 9 2342 19200300 100 1 24 */ | ||
4218 | &(nid_objs[391]),/* OBJ_domainComponent 0 9 2342 19200300 100 1 25 */ | ||
4219 | &(nid_objs[478]),/* OBJ_aRecord 0 9 2342 19200300 100 1 26 */ | ||
4220 | &(nid_objs[479]),/* OBJ_pilotAttributeType27 0 9 2342 19200300 100 1 27 */ | ||
4221 | &(nid_objs[480]),/* OBJ_mXRecord 0 9 2342 19200300 100 1 28 */ | ||
4222 | &(nid_objs[481]),/* OBJ_nSRecord 0 9 2342 19200300 100 1 29 */ | ||
4223 | &(nid_objs[482]),/* OBJ_sOARecord 0 9 2342 19200300 100 1 30 */ | ||
4224 | &(nid_objs[483]),/* OBJ_cNAMERecord 0 9 2342 19200300 100 1 31 */ | ||
4225 | &(nid_objs[484]),/* OBJ_associatedDomain 0 9 2342 19200300 100 1 37 */ | ||
4226 | &(nid_objs[485]),/* OBJ_associatedName 0 9 2342 19200300 100 1 38 */ | ||
4227 | &(nid_objs[486]),/* OBJ_homePostalAddress 0 9 2342 19200300 100 1 39 */ | ||
4228 | &(nid_objs[487]),/* OBJ_personalTitle 0 9 2342 19200300 100 1 40 */ | ||
4229 | &(nid_objs[488]),/* OBJ_mobileTelephoneNumber 0 9 2342 19200300 100 1 41 */ | ||
4230 | &(nid_objs[489]),/* OBJ_pagerTelephoneNumber 0 9 2342 19200300 100 1 42 */ | ||
4231 | &(nid_objs[490]),/* OBJ_friendlyCountryName 0 9 2342 19200300 100 1 43 */ | ||
4232 | &(nid_objs[491]),/* OBJ_organizationalStatus 0 9 2342 19200300 100 1 45 */ | ||
4233 | &(nid_objs[492]),/* OBJ_janetMailbox 0 9 2342 19200300 100 1 46 */ | ||
4234 | &(nid_objs[493]),/* OBJ_mailPreferenceOption 0 9 2342 19200300 100 1 47 */ | ||
4235 | &(nid_objs[494]),/* OBJ_buildingName 0 9 2342 19200300 100 1 48 */ | ||
4236 | &(nid_objs[495]),/* OBJ_dSAQuality 0 9 2342 19200300 100 1 49 */ | ||
4237 | &(nid_objs[496]),/* OBJ_singleLevelQuality 0 9 2342 19200300 100 1 50 */ | ||
4238 | &(nid_objs[497]),/* OBJ_subtreeMinimumQuality 0 9 2342 19200300 100 1 51 */ | ||
4239 | &(nid_objs[498]),/* OBJ_subtreeMaximumQuality 0 9 2342 19200300 100 1 52 */ | ||
4240 | &(nid_objs[499]),/* OBJ_personalSignature 0 9 2342 19200300 100 1 53 */ | ||
4241 | &(nid_objs[500]),/* OBJ_dITRedirect 0 9 2342 19200300 100 1 54 */ | ||
4242 | &(nid_objs[501]),/* OBJ_audio 0 9 2342 19200300 100 1 55 */ | ||
4243 | &(nid_objs[502]),/* OBJ_documentPublisher 0 9 2342 19200300 100 1 56 */ | ||
4244 | &(nid_objs[442]),/* OBJ_iA5StringSyntax 0 9 2342 19200300 100 3 4 */ | ||
4245 | &(nid_objs[443]),/* OBJ_caseIgnoreIA5StringSyntax 0 9 2342 19200300 100 3 5 */ | ||
4246 | &(nid_objs[444]),/* OBJ_pilotObject 0 9 2342 19200300 100 4 3 */ | ||
4247 | &(nid_objs[445]),/* OBJ_pilotPerson 0 9 2342 19200300 100 4 4 */ | ||
4248 | &(nid_objs[446]),/* OBJ_account 0 9 2342 19200300 100 4 5 */ | ||
4249 | &(nid_objs[447]),/* OBJ_document 0 9 2342 19200300 100 4 6 */ | ||
4250 | &(nid_objs[448]),/* OBJ_room 0 9 2342 19200300 100 4 7 */ | ||
4251 | &(nid_objs[449]),/* OBJ_documentSeries 0 9 2342 19200300 100 4 9 */ | ||
4252 | &(nid_objs[392]),/* OBJ_Domain 0 9 2342 19200300 100 4 13 */ | ||
4253 | &(nid_objs[450]),/* OBJ_rFC822localPart 0 9 2342 19200300 100 4 14 */ | ||
4254 | &(nid_objs[451]),/* OBJ_dNSDomain 0 9 2342 19200300 100 4 15 */ | ||
4255 | &(nid_objs[452]),/* OBJ_domainRelatedObject 0 9 2342 19200300 100 4 17 */ | ||
4256 | &(nid_objs[453]),/* OBJ_friendlyCountry 0 9 2342 19200300 100 4 18 */ | ||
4257 | &(nid_objs[454]),/* OBJ_simpleSecurityObject 0 9 2342 19200300 100 4 19 */ | ||
4258 | &(nid_objs[455]),/* OBJ_pilotOrganization 0 9 2342 19200300 100 4 20 */ | ||
4259 | &(nid_objs[456]),/* OBJ_pilotDSA 0 9 2342 19200300 100 4 21 */ | ||
4260 | &(nid_objs[457]),/* OBJ_qualityLabelledData 0 9 2342 19200300 100 4 22 */ | ||
4261 | &(nid_objs[189]),/* OBJ_id_smime_mod 1 2 840 113549 1 9 16 0 */ | ||
4262 | &(nid_objs[190]),/* OBJ_id_smime_ct 1 2 840 113549 1 9 16 1 */ | ||
4263 | &(nid_objs[191]),/* OBJ_id_smime_aa 1 2 840 113549 1 9 16 2 */ | ||
4264 | &(nid_objs[192]),/* OBJ_id_smime_alg 1 2 840 113549 1 9 16 3 */ | ||
4265 | &(nid_objs[193]),/* OBJ_id_smime_cd 1 2 840 113549 1 9 16 4 */ | ||
4266 | &(nid_objs[194]),/* OBJ_id_smime_spq 1 2 840 113549 1 9 16 5 */ | ||
4267 | &(nid_objs[195]),/* OBJ_id_smime_cti 1 2 840 113549 1 9 16 6 */ | ||
4268 | &(nid_objs[158]),/* OBJ_x509Certificate 1 2 840 113549 1 9 22 1 */ | ||
4269 | &(nid_objs[159]),/* OBJ_sdsiCertificate 1 2 840 113549 1 9 22 2 */ | ||
4270 | &(nid_objs[160]),/* OBJ_x509Crl 1 2 840 113549 1 9 23 1 */ | ||
4271 | &(nid_objs[144]),/* OBJ_pbe_WithSHA1And128BitRC4 1 2 840 113549 1 12 1 1 */ | ||
4272 | &(nid_objs[145]),/* OBJ_pbe_WithSHA1And40BitRC4 1 2 840 113549 1 12 1 2 */ | ||
4273 | &(nid_objs[146]),/* OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC 1 2 840 113549 1 12 1 3 */ | ||
4274 | &(nid_objs[147]),/* OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC 1 2 840 113549 1 12 1 4 */ | ||
4275 | &(nid_objs[148]),/* OBJ_pbe_WithSHA1And128BitRC2_CBC 1 2 840 113549 1 12 1 5 */ | ||
4276 | &(nid_objs[149]),/* OBJ_pbe_WithSHA1And40BitRC2_CBC 1 2 840 113549 1 12 1 6 */ | ||
4277 | &(nid_objs[171]),/* OBJ_ms_ext_req 1 3 6 1 4 1 311 2 1 14 */ | ||
4278 | &(nid_objs[134]),/* OBJ_ms_code_ind 1 3 6 1 4 1 311 2 1 21 */ | ||
4279 | &(nid_objs[135]),/* OBJ_ms_code_com 1 3 6 1 4 1 311 2 1 22 */ | ||
4280 | &(nid_objs[136]),/* OBJ_ms_ctl_sign 1 3 6 1 4 1 311 10 3 1 */ | ||
4281 | &(nid_objs[137]),/* OBJ_ms_sgc 1 3 6 1 4 1 311 10 3 3 */ | ||
4282 | &(nid_objs[138]),/* OBJ_ms_efs 1 3 6 1 4 1 311 10 3 4 */ | ||
4283 | &(nid_objs[648]),/* OBJ_ms_smartcard_login 1 3 6 1 4 1 311 20 2 2 */ | ||
4284 | &(nid_objs[649]),/* OBJ_ms_upn 1 3 6 1 4 1 311 20 2 3 */ | ||
4285 | &(nid_objs[751]),/* OBJ_camellia_128_cbc 1 2 392 200011 61 1 1 1 2 */ | ||
4286 | &(nid_objs[752]),/* OBJ_camellia_192_cbc 1 2 392 200011 61 1 1 1 3 */ | ||
4287 | &(nid_objs[753]),/* OBJ_camellia_256_cbc 1 2 392 200011 61 1 1 1 4 */ | ||
4288 | &(nid_objs[196]),/* OBJ_id_smime_mod_cms 1 2 840 113549 1 9 16 0 1 */ | ||
4289 | &(nid_objs[197]),/* OBJ_id_smime_mod_ess 1 2 840 113549 1 9 16 0 2 */ | ||
4290 | &(nid_objs[198]),/* OBJ_id_smime_mod_oid 1 2 840 113549 1 9 16 0 3 */ | ||
4291 | &(nid_objs[199]),/* OBJ_id_smime_mod_msg_v3 1 2 840 113549 1 9 16 0 4 */ | ||
4292 | &(nid_objs[200]),/* OBJ_id_smime_mod_ets_eSignature_88 1 2 840 113549 1 9 16 0 5 */ | ||
4293 | &(nid_objs[201]),/* OBJ_id_smime_mod_ets_eSignature_97 1 2 840 113549 1 9 16 0 6 */ | ||
4294 | &(nid_objs[202]),/* OBJ_id_smime_mod_ets_eSigPolicy_88 1 2 840 113549 1 9 16 0 7 */ | ||
4295 | &(nid_objs[203]),/* OBJ_id_smime_mod_ets_eSigPolicy_97 1 2 840 113549 1 9 16 0 8 */ | ||
4296 | &(nid_objs[204]),/* OBJ_id_smime_ct_receipt 1 2 840 113549 1 9 16 1 1 */ | ||
4297 | &(nid_objs[205]),/* OBJ_id_smime_ct_authData 1 2 840 113549 1 9 16 1 2 */ | ||
4298 | &(nid_objs[206]),/* OBJ_id_smime_ct_publishCert 1 2 840 113549 1 9 16 1 3 */ | ||
4299 | &(nid_objs[207]),/* OBJ_id_smime_ct_TSTInfo 1 2 840 113549 1 9 16 1 4 */ | ||
4300 | &(nid_objs[208]),/* OBJ_id_smime_ct_TDTInfo 1 2 840 113549 1 9 16 1 5 */ | ||
4301 | &(nid_objs[209]),/* OBJ_id_smime_ct_contentInfo 1 2 840 113549 1 9 16 1 6 */ | ||
4302 | &(nid_objs[210]),/* OBJ_id_smime_ct_DVCSRequestData 1 2 840 113549 1 9 16 1 7 */ | ||
4303 | &(nid_objs[211]),/* OBJ_id_smime_ct_DVCSResponseData 1 2 840 113549 1 9 16 1 8 */ | ||
4304 | &(nid_objs[786]),/* OBJ_id_smime_ct_compressedData 1 2 840 113549 1 9 16 1 9 */ | ||
4305 | &(nid_objs[787]),/* OBJ_id_ct_asciiTextWithCRLF 1 2 840 113549 1 9 16 1 27 */ | ||
4306 | &(nid_objs[212]),/* OBJ_id_smime_aa_receiptRequest 1 2 840 113549 1 9 16 2 1 */ | ||
4307 | &(nid_objs[213]),/* OBJ_id_smime_aa_securityLabel 1 2 840 113549 1 9 16 2 2 */ | ||
4308 | &(nid_objs[214]),/* OBJ_id_smime_aa_mlExpandHistory 1 2 840 113549 1 9 16 2 3 */ | ||
4309 | &(nid_objs[215]),/* OBJ_id_smime_aa_contentHint 1 2 840 113549 1 9 16 2 4 */ | ||
4310 | &(nid_objs[216]),/* OBJ_id_smime_aa_msgSigDigest 1 2 840 113549 1 9 16 2 5 */ | ||
4311 | &(nid_objs[217]),/* OBJ_id_smime_aa_encapContentType 1 2 840 113549 1 9 16 2 6 */ | ||
4312 | &(nid_objs[218]),/* OBJ_id_smime_aa_contentIdentifier 1 2 840 113549 1 9 16 2 7 */ | ||
4313 | &(nid_objs[219]),/* OBJ_id_smime_aa_macValue 1 2 840 113549 1 9 16 2 8 */ | ||
4314 | &(nid_objs[220]),/* OBJ_id_smime_aa_equivalentLabels 1 2 840 113549 1 9 16 2 9 */ | ||
4315 | &(nid_objs[221]),/* OBJ_id_smime_aa_contentReference 1 2 840 113549 1 9 16 2 10 */ | ||
4316 | &(nid_objs[222]),/* OBJ_id_smime_aa_encrypKeyPref 1 2 840 113549 1 9 16 2 11 */ | ||
4317 | &(nid_objs[223]),/* OBJ_id_smime_aa_signingCertificate 1 2 840 113549 1 9 16 2 12 */ | ||
4318 | &(nid_objs[224]),/* OBJ_id_smime_aa_smimeEncryptCerts 1 2 840 113549 1 9 16 2 13 */ | ||
4319 | &(nid_objs[225]),/* OBJ_id_smime_aa_timeStampToken 1 2 840 113549 1 9 16 2 14 */ | ||
4320 | &(nid_objs[226]),/* OBJ_id_smime_aa_ets_sigPolicyId 1 2 840 113549 1 9 16 2 15 */ | ||
4321 | &(nid_objs[227]),/* OBJ_id_smime_aa_ets_commitmentType 1 2 840 113549 1 9 16 2 16 */ | ||
4322 | &(nid_objs[228]),/* OBJ_id_smime_aa_ets_signerLocation 1 2 840 113549 1 9 16 2 17 */ | ||
4323 | &(nid_objs[229]),/* OBJ_id_smime_aa_ets_signerAttr 1 2 840 113549 1 9 16 2 18 */ | ||
4324 | &(nid_objs[230]),/* OBJ_id_smime_aa_ets_otherSigCert 1 2 840 113549 1 9 16 2 19 */ | ||
4325 | &(nid_objs[231]),/* OBJ_id_smime_aa_ets_contentTimestamp 1 2 840 113549 1 9 16 2 20 */ | ||
4326 | &(nid_objs[232]),/* OBJ_id_smime_aa_ets_CertificateRefs 1 2 840 113549 1 9 16 2 21 */ | ||
4327 | &(nid_objs[233]),/* OBJ_id_smime_aa_ets_RevocationRefs 1 2 840 113549 1 9 16 2 22 */ | ||
4328 | &(nid_objs[234]),/* OBJ_id_smime_aa_ets_certValues 1 2 840 113549 1 9 16 2 23 */ | ||
4329 | &(nid_objs[235]),/* OBJ_id_smime_aa_ets_revocationValues 1 2 840 113549 1 9 16 2 24 */ | ||
4330 | &(nid_objs[236]),/* OBJ_id_smime_aa_ets_escTimeStamp 1 2 840 113549 1 9 16 2 25 */ | ||
4331 | &(nid_objs[237]),/* OBJ_id_smime_aa_ets_certCRLTimestamp 1 2 840 113549 1 9 16 2 26 */ | ||
4332 | &(nid_objs[238]),/* OBJ_id_smime_aa_ets_archiveTimeStamp 1 2 840 113549 1 9 16 2 27 */ | ||
4333 | &(nid_objs[239]),/* OBJ_id_smime_aa_signatureType 1 2 840 113549 1 9 16 2 28 */ | ||
4334 | &(nid_objs[240]),/* OBJ_id_smime_aa_dvcs_dvc 1 2 840 113549 1 9 16 2 29 */ | ||
4335 | &(nid_objs[241]),/* OBJ_id_smime_alg_ESDHwith3DES 1 2 840 113549 1 9 16 3 1 */ | ||
4336 | &(nid_objs[242]),/* OBJ_id_smime_alg_ESDHwithRC2 1 2 840 113549 1 9 16 3 2 */ | ||
4337 | &(nid_objs[243]),/* OBJ_id_smime_alg_3DESwrap 1 2 840 113549 1 9 16 3 3 */ | ||
4338 | &(nid_objs[244]),/* OBJ_id_smime_alg_RC2wrap 1 2 840 113549 1 9 16 3 4 */ | ||
4339 | &(nid_objs[245]),/* OBJ_id_smime_alg_ESDH 1 2 840 113549 1 9 16 3 5 */ | ||
4340 | &(nid_objs[246]),/* OBJ_id_smime_alg_CMS3DESwrap 1 2 840 113549 1 9 16 3 6 */ | ||
4341 | &(nid_objs[247]),/* OBJ_id_smime_alg_CMSRC2wrap 1 2 840 113549 1 9 16 3 7 */ | ||
4342 | &(nid_objs[125]),/* OBJ_zlib_compression 1 2 840 113549 1 9 16 3 8 */ | ||
4343 | &(nid_objs[248]),/* OBJ_id_smime_cd_ldap 1 2 840 113549 1 9 16 4 1 */ | ||
4344 | &(nid_objs[249]),/* OBJ_id_smime_spq_ets_sqt_uri 1 2 840 113549 1 9 16 5 1 */ | ||
4345 | &(nid_objs[250]),/* OBJ_id_smime_spq_ets_sqt_unotice 1 2 840 113549 1 9 16 5 2 */ | ||
4346 | &(nid_objs[251]),/* OBJ_id_smime_cti_ets_proofOfOrigin 1 2 840 113549 1 9 16 6 1 */ | ||
4347 | &(nid_objs[252]),/* OBJ_id_smime_cti_ets_proofOfReceipt 1 2 840 113549 1 9 16 6 2 */ | ||
4348 | &(nid_objs[253]),/* OBJ_id_smime_cti_ets_proofOfDelivery 1 2 840 113549 1 9 16 6 3 */ | ||
4349 | &(nid_objs[254]),/* OBJ_id_smime_cti_ets_proofOfSender 1 2 840 113549 1 9 16 6 4 */ | ||
4350 | &(nid_objs[255]),/* OBJ_id_smime_cti_ets_proofOfApproval 1 2 840 113549 1 9 16 6 5 */ | ||
4351 | &(nid_objs[256]),/* OBJ_id_smime_cti_ets_proofOfCreation 1 2 840 113549 1 9 16 6 6 */ | ||
4352 | &(nid_objs[150]),/* OBJ_keyBag 1 2 840 113549 1 12 10 1 1 */ | ||
4353 | &(nid_objs[151]),/* OBJ_pkcs8ShroudedKeyBag 1 2 840 113549 1 12 10 1 2 */ | ||
4354 | &(nid_objs[152]),/* OBJ_certBag 1 2 840 113549 1 12 10 1 3 */ | ||
4355 | &(nid_objs[153]),/* OBJ_crlBag 1 2 840 113549 1 12 10 1 4 */ | ||
4356 | &(nid_objs[154]),/* OBJ_secretBag 1 2 840 113549 1 12 10 1 5 */ | ||
4357 | &(nid_objs[155]),/* OBJ_safeContentsBag 1 2 840 113549 1 12 10 1 6 */ | ||
4358 | &(nid_objs[34]),/* OBJ_idea_cbc 1 3 6 1 4 1 188 7 1 1 2 */ | ||
4359 | }; | ||
4360 | |||
diff --git a/src/lib/libcrypto/objects/obj_dat.pl b/src/lib/libcrypto/objects/obj_dat.pl new file mode 100644 index 0000000000..d0371661f9 --- /dev/null +++ b/src/lib/libcrypto/objects/obj_dat.pl | |||
@@ -0,0 +1,307 @@ | |||
1 | #!/usr/local/bin/perl | ||
2 | |||
3 | # fixes bug in floating point emulation on sparc64 when | ||
4 | # this script produces off-by-one output on sparc64 | ||
5 | use integer; | ||
6 | |||
7 | sub obj_cmp | ||
8 | { | ||
9 | local(@a,@b,$_,$r); | ||
10 | |||
11 | $A=$obj_len{$obj{$nid{$a}}}; | ||
12 | $B=$obj_len{$obj{$nid{$b}}}; | ||
13 | |||
14 | $r=($A-$B); | ||
15 | return($r) if $r != 0; | ||
16 | |||
17 | $A=$obj_der{$obj{$nid{$a}}}; | ||
18 | $B=$obj_der{$obj{$nid{$b}}}; | ||
19 | |||
20 | return($A cmp $B); | ||
21 | } | ||
22 | |||
23 | sub expand_obj | ||
24 | { | ||
25 | local(*v)=@_; | ||
26 | local($k,$d); | ||
27 | local($i); | ||
28 | |||
29 | do { | ||
30 | $i=0; | ||
31 | foreach $k (keys %v) | ||
32 | { | ||
33 | if (($v{$k} =~ s/(OBJ_[^,]+),/$v{$1},/)) | ||
34 | { $i++; } | ||
35 | } | ||
36 | } while($i); | ||
37 | foreach $k (keys %v) | ||
38 | { | ||
39 | @a=split(/,/,$v{$k}); | ||
40 | $objn{$k}=$#a+1; | ||
41 | } | ||
42 | return(%objn); | ||
43 | } | ||
44 | |||
45 | open (IN,"$ARGV[0]") || die "Can't open input file $ARGV[0]"; | ||
46 | open (OUT,">$ARGV[1]") || die "Can't open output file $ARGV[1]"; | ||
47 | |||
48 | while (<IN>) | ||
49 | { | ||
50 | next unless /^\#define\s+(\S+)\s+(.*)$/; | ||
51 | $v=$1; | ||
52 | $d=$2; | ||
53 | $d =~ s/^\"//; | ||
54 | $d =~ s/\"$//; | ||
55 | if ($v =~ /^SN_(.*)$/) | ||
56 | { | ||
57 | if(defined $snames{$d}) | ||
58 | { | ||
59 | print "WARNING: Duplicate short name \"$d\"\n"; | ||
60 | } | ||
61 | else | ||
62 | { $snames{$d} = "X"; } | ||
63 | $sn{$1}=$d; | ||
64 | } | ||
65 | elsif ($v =~ /^LN_(.*)$/) | ||
66 | { | ||
67 | if(defined $lnames{$d}) | ||
68 | { | ||
69 | print "WARNING: Duplicate long name \"$d\"\n"; | ||
70 | } | ||
71 | else | ||
72 | { $lnames{$d} = "X"; } | ||
73 | $ln{$1}=$d; | ||
74 | } | ||
75 | elsif ($v =~ /^NID_(.*)$/) | ||
76 | { $nid{$d}=$1; } | ||
77 | elsif ($v =~ /^OBJ_(.*)$/) | ||
78 | { | ||
79 | $obj{$1}=$v; | ||
80 | $objd{$v}=$d; | ||
81 | } | ||
82 | } | ||
83 | close IN; | ||
84 | |||
85 | %ob=&expand_obj(*objd); | ||
86 | |||
87 | @a=sort { $a <=> $b } keys %nid; | ||
88 | $n=$a[$#a]+1; | ||
89 | |||
90 | @lvalues=(); | ||
91 | $lvalues=0; | ||
92 | |||
93 | for ($i=0; $i<$n; $i++) | ||
94 | { | ||
95 | if (!defined($nid{$i})) | ||
96 | { | ||
97 | push(@out,"{NULL,NULL,NID_undef,0,NULL},\n"); | ||
98 | } | ||
99 | else | ||
100 | { | ||
101 | $sn=defined($sn{$nid{$i}})?"$sn{$nid{$i}}":"NULL"; | ||
102 | $ln=defined($ln{$nid{$i}})?"$ln{$nid{$i}}":"NULL"; | ||
103 | |||
104 | if ($sn eq "NULL") { | ||
105 | $sn=$ln; | ||
106 | $sn{$nid{$i}} = $ln; | ||
107 | } | ||
108 | |||
109 | if ($ln eq "NULL") { | ||
110 | $ln=$sn; | ||
111 | $ln{$nid{$i}} = $sn; | ||
112 | } | ||
113 | |||
114 | $out ="{"; | ||
115 | $out.="\"$sn\""; | ||
116 | $out.=","."\"$ln\""; | ||
117 | $out.=",NID_$nid{$i},"; | ||
118 | if (defined($obj{$nid{$i}})) | ||
119 | { | ||
120 | $v=$objd{$obj{$nid{$i}}}; | ||
121 | $v =~ s/L//g; | ||
122 | $v =~ s/,/ /g; | ||
123 | $r=&der_it($v); | ||
124 | $z=""; | ||
125 | $length=0; | ||
126 | foreach (unpack("C*",$r)) | ||
127 | { | ||
128 | $z.=sprintf("0x%02X,",$_); | ||
129 | $length++; | ||
130 | } | ||
131 | $obj_der{$obj{$nid{$i}}}=$z; | ||
132 | $obj_len{$obj{$nid{$i}}}=$length; | ||
133 | |||
134 | push(@lvalues,sprintf("%-45s/* [%3d] %s */\n", | ||
135 | $z,$lvalues,$obj{$nid{$i}})); | ||
136 | $out.="$length,&(lvalues[$lvalues]),0"; | ||
137 | $lvalues+=$length; | ||
138 | } | ||
139 | else | ||
140 | { | ||
141 | $out.="0,NULL"; | ||
142 | } | ||
143 | $out.="},\n"; | ||
144 | push(@out,$out); | ||
145 | } | ||
146 | } | ||
147 | |||
148 | @a=grep(defined($sn{$nid{$_}}),0 .. $n); | ||
149 | foreach (sort { $sn{$nid{$a}} cmp $sn{$nid{$b}} } @a) | ||
150 | { | ||
151 | push(@sn,sprintf("&(nid_objs[%2d]),/* \"$sn{$nid{$_}}\" */\n",$_)); | ||
152 | } | ||
153 | |||
154 | @a=grep(defined($ln{$nid{$_}}),0 .. $n); | ||
155 | foreach (sort { $ln{$nid{$a}} cmp $ln{$nid{$b}} } @a) | ||
156 | { | ||
157 | push(@ln,sprintf("&(nid_objs[%2d]),/* \"$ln{$nid{$_}}\" */\n",$_)); | ||
158 | } | ||
159 | |||
160 | @a=grep(defined($obj{$nid{$_}}),0 .. $n); | ||
161 | foreach (sort obj_cmp @a) | ||
162 | { | ||
163 | $m=$obj{$nid{$_}}; | ||
164 | $v=$objd{$m}; | ||
165 | $v =~ s/L//g; | ||
166 | $v =~ s/,/ /g; | ||
167 | push(@ob,sprintf("&(nid_objs[%2d]),/* %-32s %s */\n",$_,$m,$v)); | ||
168 | } | ||
169 | |||
170 | print OUT <<'EOF'; | ||
171 | /* crypto/objects/obj_dat.h */ | ||
172 | |||
173 | /* THIS FILE IS GENERATED FROM objects.h by obj_dat.pl via the | ||
174 | * following command: | ||
175 | * perl obj_dat.pl obj_mac.h obj_dat.h | ||
176 | */ | ||
177 | |||
178 | /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) | ||
179 | * All rights reserved. | ||
180 | * | ||
181 | * This package is an SSL implementation written | ||
182 | * by Eric Young (eay@cryptsoft.com). | ||
183 | * The implementation was written so as to conform with Netscapes SSL. | ||
184 | * | ||
185 | * This library is free for commercial and non-commercial use as long as | ||
186 | * the following conditions are aheared to. The following conditions | ||
187 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
188 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
189 | * included with this distribution is covered by the same copyright terms | ||
190 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
191 | * | ||
192 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
193 | * the code are not to be removed. | ||
194 | * If this package is used in a product, Eric Young should be given attribution | ||
195 | * as the author of the parts of the library used. | ||
196 | * This can be in the form of a textual message at program startup or | ||
197 | * in documentation (online or textual) provided with the package. | ||
198 | * | ||
199 | * Redistribution and use in source and binary forms, with or without | ||
200 | * modification, are permitted provided that the following conditions | ||
201 | * are met: | ||
202 | * 1. Redistributions of source code must retain the copyright | ||
203 | * notice, this list of conditions and the following disclaimer. | ||
204 | * 2. Redistributions in binary form must reproduce the above copyright | ||
205 | * notice, this list of conditions and the following disclaimer in the | ||
206 | * documentation and/or other materials provided with the distribution. | ||
207 | * 3. All advertising materials mentioning features or use of this software | ||
208 | * must display the following acknowledgement: | ||
209 | * "This product includes cryptographic software written by | ||
210 | * Eric Young (eay@cryptsoft.com)" | ||
211 | * The word 'cryptographic' can be left out if the rouines from the library | ||
212 | * being used are not cryptographic related :-). | ||
213 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
214 | * the apps directory (application code) you must include an acknowledgement: | ||
215 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
216 | * | ||
217 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
218 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
219 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
220 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
221 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
222 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
223 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
224 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
225 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
226 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
227 | * SUCH DAMAGE. | ||
228 | * | ||
229 | * The licence and distribution terms for any publically available version or | ||
230 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
231 | * copied and put under another distribution licence | ||
232 | * [including the GNU Public Licence.] | ||
233 | */ | ||
234 | |||
235 | EOF | ||
236 | |||
237 | printf OUT "#define NUM_NID %d\n",$n; | ||
238 | printf OUT "#define NUM_SN %d\n",$#sn+1; | ||
239 | printf OUT "#define NUM_LN %d\n",$#ln+1; | ||
240 | printf OUT "#define NUM_OBJ %d\n\n",$#ob+1; | ||
241 | |||
242 | printf OUT "static unsigned char lvalues[%d]={\n",$lvalues+1; | ||
243 | print OUT @lvalues; | ||
244 | print OUT "};\n\n"; | ||
245 | |||
246 | printf OUT "static ASN1_OBJECT nid_objs[NUM_NID]={\n"; | ||
247 | foreach (@out) | ||
248 | { | ||
249 | if (length($_) > 75) | ||
250 | { | ||
251 | $out=""; | ||
252 | foreach (split(/,/)) | ||
253 | { | ||
254 | $t=$out.$_.","; | ||
255 | if (length($t) > 70) | ||
256 | { | ||
257 | print OUT "$out\n"; | ||
258 | $t="\t$_,"; | ||
259 | } | ||
260 | $out=$t; | ||
261 | } | ||
262 | chop $out; | ||
263 | print OUT "$out"; | ||
264 | } | ||
265 | else | ||
266 | { print OUT $_; } | ||
267 | } | ||
268 | print OUT "};\n\n"; | ||
269 | |||
270 | printf OUT "static ASN1_OBJECT *sn_objs[NUM_SN]={\n"; | ||
271 | print OUT @sn; | ||
272 | print OUT "};\n\n"; | ||
273 | |||
274 | printf OUT "static ASN1_OBJECT *ln_objs[NUM_LN]={\n"; | ||
275 | print OUT @ln; | ||
276 | print OUT "};\n\n"; | ||
277 | |||
278 | printf OUT "static ASN1_OBJECT *obj_objs[NUM_OBJ]={\n"; | ||
279 | print OUT @ob; | ||
280 | print OUT "};\n\n"; | ||
281 | |||
282 | close OUT; | ||
283 | |||
284 | sub der_it | ||
285 | { | ||
286 | local($v)=@_; | ||
287 | local(@a,$i,$ret,@r); | ||
288 | |||
289 | @a=split(/\s+/,$v); | ||
290 | $ret.=pack("C*",$a[0]*40+$a[1]); | ||
291 | shift @a; | ||
292 | shift @a; | ||
293 | foreach (@a) | ||
294 | { | ||
295 | @r=(); | ||
296 | $t=0; | ||
297 | while ($_ >= 128) | ||
298 | { | ||
299 | $x=$_%128; | ||
300 | $_/=128; | ||
301 | push(@r,((($t++)?0x80:0)|$x)); | ||
302 | } | ||
303 | push(@r,((($t++)?0x80:0)|$_)); | ||
304 | $ret.=pack("C*",reverse(@r)); | ||
305 | } | ||
306 | return($ret); | ||
307 | } | ||
diff --git a/src/lib/libcrypto/objects/obj_err.c b/src/lib/libcrypto/objects/obj_err.c new file mode 100644 index 0000000000..0682979b38 --- /dev/null +++ b/src/lib/libcrypto/objects/obj_err.c | |||
@@ -0,0 +1,105 @@ | |||
1 | /* crypto/objects/obj_err.c */ | ||
2 | /* ==================================================================== | ||
3 | * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions | ||
7 | * are met: | ||
8 | * | ||
9 | * 1. Redistributions of source code must retain the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer. | ||
11 | * | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in | ||
14 | * the documentation and/or other materials provided with the | ||
15 | * distribution. | ||
16 | * | ||
17 | * 3. All advertising materials mentioning features or use of this | ||
18 | * software must display the following acknowledgment: | ||
19 | * "This product includes software developed by the OpenSSL Project | ||
20 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
21 | * | ||
22 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
23 | * endorse or promote products derived from this software without | ||
24 | * prior written permission. For written permission, please contact | ||
25 | * openssl-core@OpenSSL.org. | ||
26 | * | ||
27 | * 5. Products derived from this software may not be called "OpenSSL" | ||
28 | * nor may "OpenSSL" appear in their names without prior written | ||
29 | * permission of the OpenSSL Project. | ||
30 | * | ||
31 | * 6. Redistributions of any form whatsoever must retain the following | ||
32 | * acknowledgment: | ||
33 | * "This product includes software developed by the OpenSSL Project | ||
34 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
35 | * | ||
36 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
37 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
38 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
39 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
40 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
41 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
42 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
43 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
44 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
45 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
46 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
47 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
48 | * ==================================================================== | ||
49 | * | ||
50 | * This product includes cryptographic software written by Eric Young | ||
51 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
52 | * Hudson (tjh@cryptsoft.com). | ||
53 | * | ||
54 | */ | ||
55 | |||
56 | /* NOTE: this file was auto generated by the mkerr.pl script: any changes | ||
57 | * made to it will be overwritten when the script next updates this file, | ||
58 | * only reason strings will be preserved. | ||
59 | */ | ||
60 | |||
61 | #include <stdio.h> | ||
62 | #include <openssl/err.h> | ||
63 | #include <openssl/objects.h> | ||
64 | |||
65 | /* BEGIN ERROR CODES */ | ||
66 | #ifndef OPENSSL_NO_ERR | ||
67 | |||
68 | #define ERR_FUNC(func) ERR_PACK(ERR_LIB_OBJ,func,0) | ||
69 | #define ERR_REASON(reason) ERR_PACK(ERR_LIB_OBJ,0,reason) | ||
70 | |||
71 | static ERR_STRING_DATA OBJ_str_functs[]= | ||
72 | { | ||
73 | {ERR_FUNC(OBJ_F_OBJ_ADD_OBJECT), "OBJ_add_object"}, | ||
74 | {ERR_FUNC(OBJ_F_OBJ_CREATE), "OBJ_create"}, | ||
75 | {ERR_FUNC(OBJ_F_OBJ_DUP), "OBJ_dup"}, | ||
76 | {ERR_FUNC(OBJ_F_OBJ_NAME_NEW_INDEX), "OBJ_NAME_new_index"}, | ||
77 | {ERR_FUNC(OBJ_F_OBJ_NID2LN), "OBJ_nid2ln"}, | ||
78 | {ERR_FUNC(OBJ_F_OBJ_NID2OBJ), "OBJ_nid2obj"}, | ||
79 | {ERR_FUNC(OBJ_F_OBJ_NID2SN), "OBJ_nid2sn"}, | ||
80 | {0,NULL} | ||
81 | }; | ||
82 | |||
83 | static ERR_STRING_DATA OBJ_str_reasons[]= | ||
84 | { | ||
85 | {ERR_REASON(OBJ_R_MALLOC_FAILURE) ,"malloc failure"}, | ||
86 | {ERR_REASON(OBJ_R_UNKNOWN_NID) ,"unknown nid"}, | ||
87 | {0,NULL} | ||
88 | }; | ||
89 | |||
90 | #endif | ||
91 | |||
92 | void ERR_load_OBJ_strings(void) | ||
93 | { | ||
94 | static int init=1; | ||
95 | |||
96 | if (init) | ||
97 | { | ||
98 | init=0; | ||
99 | #ifndef OPENSSL_NO_ERR | ||
100 | ERR_load_strings(0,OBJ_str_functs); | ||
101 | ERR_load_strings(0,OBJ_str_reasons); | ||
102 | #endif | ||
103 | |||
104 | } | ||
105 | } | ||
diff --git a/src/lib/libcrypto/objects/obj_lib.c b/src/lib/libcrypto/objects/obj_lib.c new file mode 100644 index 0000000000..b0b0f2ff24 --- /dev/null +++ b/src/lib/libcrypto/objects/obj_lib.c | |||
@@ -0,0 +1,127 @@ | |||
1 | /* crypto/objects/obj_lib.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/lhash.h> | ||
62 | #include <openssl/objects.h> | ||
63 | #include <openssl/buffer.h> | ||
64 | |||
65 | ASN1_OBJECT *OBJ_dup(const ASN1_OBJECT *o) | ||
66 | { | ||
67 | ASN1_OBJECT *r; | ||
68 | int i; | ||
69 | char *ln=NULL; | ||
70 | |||
71 | if (o == NULL) return(NULL); | ||
72 | if (!(o->flags & ASN1_OBJECT_FLAG_DYNAMIC)) | ||
73 | return((ASN1_OBJECT *)o); /* XXX: ugh! Why? What kind of | ||
74 | duplication is this??? */ | ||
75 | |||
76 | r=ASN1_OBJECT_new(); | ||
77 | if (r == NULL) | ||
78 | { | ||
79 | OBJerr(OBJ_F_OBJ_DUP,ERR_R_ASN1_LIB); | ||
80 | return(NULL); | ||
81 | } | ||
82 | r->data=OPENSSL_malloc(o->length); | ||
83 | if (r->data == NULL) | ||
84 | goto err; | ||
85 | memcpy(r->data,o->data,o->length); | ||
86 | r->length=o->length; | ||
87 | r->nid=o->nid; | ||
88 | r->ln=r->sn=NULL; | ||
89 | if (o->ln != NULL) | ||
90 | { | ||
91 | i=strlen(o->ln)+1; | ||
92 | r->ln=ln=OPENSSL_malloc(i); | ||
93 | if (r->ln == NULL) goto err; | ||
94 | memcpy(ln,o->ln,i); | ||
95 | } | ||
96 | |||
97 | if (o->sn != NULL) | ||
98 | { | ||
99 | char *s; | ||
100 | |||
101 | i=strlen(o->sn)+1; | ||
102 | r->sn=s=OPENSSL_malloc(i); | ||
103 | if (r->sn == NULL) goto err; | ||
104 | memcpy(s,o->sn,i); | ||
105 | } | ||
106 | r->flags=o->flags|(ASN1_OBJECT_FLAG_DYNAMIC| | ||
107 | ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|ASN1_OBJECT_FLAG_DYNAMIC_DATA); | ||
108 | return(r); | ||
109 | err: | ||
110 | OBJerr(OBJ_F_OBJ_DUP,ERR_R_MALLOC_FAILURE); | ||
111 | if (r != NULL) | ||
112 | { | ||
113 | if (ln != NULL) OPENSSL_free(ln); | ||
114 | if (r->data != NULL) OPENSSL_free(r->data); | ||
115 | OPENSSL_free(r); | ||
116 | } | ||
117 | return(NULL); | ||
118 | } | ||
119 | |||
120 | int OBJ_cmp(const ASN1_OBJECT *a, const ASN1_OBJECT *b) | ||
121 | { | ||
122 | int ret; | ||
123 | |||
124 | ret=(a->length-b->length); | ||
125 | if (ret) return(ret); | ||
126 | return(memcmp(a->data,b->data,a->length)); | ||
127 | } | ||
diff --git a/src/lib/libcrypto/objects/obj_mac.h b/src/lib/libcrypto/objects/obj_mac.h deleted file mode 100644 index 76d5ec9c0b..0000000000 --- a/src/lib/libcrypto/objects/obj_mac.h +++ /dev/null | |||
@@ -1,3482 +0,0 @@ | |||
1 | /* crypto/objects/obj_mac.h */ | ||
2 | |||
3 | /* THIS FILE IS GENERATED FROM objects.txt by objects.pl via the | ||
4 | * following command: | ||
5 | * perl objects.pl objects.txt obj_mac.num obj_mac.h | ||
6 | */ | ||
7 | |||
8 | /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) | ||
9 | * All rights reserved. | ||
10 | * | ||
11 | * This package is an SSL implementation written | ||
12 | * by Eric Young (eay@cryptsoft.com). | ||
13 | * The implementation was written so as to conform with Netscapes SSL. | ||
14 | * | ||
15 | * This library is free for commercial and non-commercial use as long as | ||
16 | * the following conditions are aheared to. The following conditions | ||
17 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
18 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
19 | * included with this distribution is covered by the same copyright terms | ||
20 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
21 | * | ||
22 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
23 | * the code are not to be removed. | ||
24 | * If this package is used in a product, Eric Young should be given attribution | ||
25 | * as the author of the parts of the library used. | ||
26 | * This can be in the form of a textual message at program startup or | ||
27 | * in documentation (online or textual) provided with the package. | ||
28 | * | ||
29 | * Redistribution and use in source and binary forms, with or without | ||
30 | * modification, are permitted provided that the following conditions | ||
31 | * are met: | ||
32 | * 1. Redistributions of source code must retain the copyright | ||
33 | * notice, this list of conditions and the following disclaimer. | ||
34 | * 2. Redistributions in binary form must reproduce the above copyright | ||
35 | * notice, this list of conditions and the following disclaimer in the | ||
36 | * documentation and/or other materials provided with the distribution. | ||
37 | * 3. All advertising materials mentioning features or use of this software | ||
38 | * must display the following acknowledgement: | ||
39 | * "This product includes cryptographic software written by | ||
40 | * Eric Young (eay@cryptsoft.com)" | ||
41 | * The word 'cryptographic' can be left out if the rouines from the library | ||
42 | * being used are not cryptographic related :-). | ||
43 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
44 | * the apps directory (application code) you must include an acknowledgement: | ||
45 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
46 | * | ||
47 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
48 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
49 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
50 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
51 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
52 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
53 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
54 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
55 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
56 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
57 | * SUCH DAMAGE. | ||
58 | * | ||
59 | * The licence and distribution terms for any publically available version or | ||
60 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
61 | * copied and put under another distribution licence | ||
62 | * [including the GNU Public Licence.] | ||
63 | */ | ||
64 | |||
65 | #define SN_undef "UNDEF" | ||
66 | #define LN_undef "undefined" | ||
67 | #define NID_undef 0 | ||
68 | #define OBJ_undef 0L | ||
69 | |||
70 | #define SN_itu_t "ITU-T" | ||
71 | #define LN_itu_t "itu-t" | ||
72 | #define NID_itu_t 645 | ||
73 | #define OBJ_itu_t 0L | ||
74 | |||
75 | #define NID_ccitt 404 | ||
76 | #define OBJ_ccitt OBJ_itu_t | ||
77 | |||
78 | #define SN_iso "ISO" | ||
79 | #define LN_iso "iso" | ||
80 | #define NID_iso 181 | ||
81 | #define OBJ_iso 1L | ||
82 | |||
83 | #define SN_joint_iso_itu_t "JOINT-ISO-ITU-T" | ||
84 | #define LN_joint_iso_itu_t "joint-iso-itu-t" | ||
85 | #define NID_joint_iso_itu_t 646 | ||
86 | #define OBJ_joint_iso_itu_t 2L | ||
87 | |||
88 | #define NID_joint_iso_ccitt 393 | ||
89 | #define OBJ_joint_iso_ccitt OBJ_joint_iso_itu_t | ||
90 | |||
91 | #define SN_member_body "member-body" | ||
92 | #define LN_member_body "ISO Member Body" | ||
93 | #define NID_member_body 182 | ||
94 | #define OBJ_member_body OBJ_iso,2L | ||
95 | |||
96 | #define SN_identified_organization "identified-organization" | ||
97 | #define NID_identified_organization 676 | ||
98 | #define OBJ_identified_organization OBJ_iso,3L | ||
99 | |||
100 | #define SN_hmac_md5 "HMAC-MD5" | ||
101 | #define LN_hmac_md5 "hmac-md5" | ||
102 | #define NID_hmac_md5 780 | ||
103 | #define OBJ_hmac_md5 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,1L | ||
104 | |||
105 | #define SN_hmac_sha1 "HMAC-SHA1" | ||
106 | #define LN_hmac_sha1 "hmac-sha1" | ||
107 | #define NID_hmac_sha1 781 | ||
108 | #define OBJ_hmac_sha1 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,2L | ||
109 | |||
110 | #define SN_certicom_arc "certicom-arc" | ||
111 | #define NID_certicom_arc 677 | ||
112 | #define OBJ_certicom_arc OBJ_identified_organization,132L | ||
113 | |||
114 | #define SN_international_organizations "international-organizations" | ||
115 | #define LN_international_organizations "International Organizations" | ||
116 | #define NID_international_organizations 647 | ||
117 | #define OBJ_international_organizations OBJ_joint_iso_itu_t,23L | ||
118 | |||
119 | #define SN_wap "wap" | ||
120 | #define NID_wap 678 | ||
121 | #define OBJ_wap OBJ_international_organizations,43L | ||
122 | |||
123 | #define SN_wap_wsg "wap-wsg" | ||
124 | #define NID_wap_wsg 679 | ||
125 | #define OBJ_wap_wsg OBJ_wap,13L | ||
126 | |||
127 | #define SN_selected_attribute_types "selected-attribute-types" | ||
128 | #define LN_selected_attribute_types "Selected Attribute Types" | ||
129 | #define NID_selected_attribute_types 394 | ||
130 | #define OBJ_selected_attribute_types OBJ_joint_iso_itu_t,5L,1L,5L | ||
131 | |||
132 | #define SN_clearance "clearance" | ||
133 | #define NID_clearance 395 | ||
134 | #define OBJ_clearance OBJ_selected_attribute_types,55L | ||
135 | |||
136 | #define SN_ISO_US "ISO-US" | ||
137 | #define LN_ISO_US "ISO US Member Body" | ||
138 | #define NID_ISO_US 183 | ||
139 | #define OBJ_ISO_US OBJ_member_body,840L | ||
140 | |||
141 | #define SN_X9_57 "X9-57" | ||
142 | #define LN_X9_57 "X9.57" | ||
143 | #define NID_X9_57 184 | ||
144 | #define OBJ_X9_57 OBJ_ISO_US,10040L | ||
145 | |||
146 | #define SN_X9cm "X9cm" | ||
147 | #define LN_X9cm "X9.57 CM ?" | ||
148 | #define NID_X9cm 185 | ||
149 | #define OBJ_X9cm OBJ_X9_57,4L | ||
150 | |||
151 | #define SN_dsa "DSA" | ||
152 | #define LN_dsa "dsaEncryption" | ||
153 | #define NID_dsa 116 | ||
154 | #define OBJ_dsa OBJ_X9cm,1L | ||
155 | |||
156 | #define SN_dsaWithSHA1 "DSA-SHA1" | ||
157 | #define LN_dsaWithSHA1 "dsaWithSHA1" | ||
158 | #define NID_dsaWithSHA1 113 | ||
159 | #define OBJ_dsaWithSHA1 OBJ_X9cm,3L | ||
160 | |||
161 | #define SN_ansi_X9_62 "ansi-X9-62" | ||
162 | #define LN_ansi_X9_62 "ANSI X9.62" | ||
163 | #define NID_ansi_X9_62 405 | ||
164 | #define OBJ_ansi_X9_62 OBJ_ISO_US,10045L | ||
165 | |||
166 | #define OBJ_X9_62_id_fieldType OBJ_ansi_X9_62,1L | ||
167 | |||
168 | #define SN_X9_62_prime_field "prime-field" | ||
169 | #define NID_X9_62_prime_field 406 | ||
170 | #define OBJ_X9_62_prime_field OBJ_X9_62_id_fieldType,1L | ||
171 | |||
172 | #define SN_X9_62_characteristic_two_field "characteristic-two-field" | ||
173 | #define NID_X9_62_characteristic_two_field 407 | ||
174 | #define OBJ_X9_62_characteristic_two_field OBJ_X9_62_id_fieldType,2L | ||
175 | |||
176 | #define SN_X9_62_id_characteristic_two_basis "id-characteristic-two-basis" | ||
177 | #define NID_X9_62_id_characteristic_two_basis 680 | ||
178 | #define OBJ_X9_62_id_characteristic_two_basis OBJ_X9_62_characteristic_two_field,3L | ||
179 | |||
180 | #define SN_X9_62_onBasis "onBasis" | ||
181 | #define NID_X9_62_onBasis 681 | ||
182 | #define OBJ_X9_62_onBasis OBJ_X9_62_id_characteristic_two_basis,1L | ||
183 | |||
184 | #define SN_X9_62_tpBasis "tpBasis" | ||
185 | #define NID_X9_62_tpBasis 682 | ||
186 | #define OBJ_X9_62_tpBasis OBJ_X9_62_id_characteristic_two_basis,2L | ||
187 | |||
188 | #define SN_X9_62_ppBasis "ppBasis" | ||
189 | #define NID_X9_62_ppBasis 683 | ||
190 | #define OBJ_X9_62_ppBasis OBJ_X9_62_id_characteristic_two_basis,3L | ||
191 | |||
192 | #define OBJ_X9_62_id_publicKeyType OBJ_ansi_X9_62,2L | ||
193 | |||
194 | #define SN_X9_62_id_ecPublicKey "id-ecPublicKey" | ||
195 | #define NID_X9_62_id_ecPublicKey 408 | ||
196 | #define OBJ_X9_62_id_ecPublicKey OBJ_X9_62_id_publicKeyType,1L | ||
197 | |||
198 | #define OBJ_X9_62_ellipticCurve OBJ_ansi_X9_62,3L | ||
199 | |||
200 | #define OBJ_X9_62_c_TwoCurve OBJ_X9_62_ellipticCurve,0L | ||
201 | |||
202 | #define SN_X9_62_c2pnb163v1 "c2pnb163v1" | ||
203 | #define NID_X9_62_c2pnb163v1 684 | ||
204 | #define OBJ_X9_62_c2pnb163v1 OBJ_X9_62_c_TwoCurve,1L | ||
205 | |||
206 | #define SN_X9_62_c2pnb163v2 "c2pnb163v2" | ||
207 | #define NID_X9_62_c2pnb163v2 685 | ||
208 | #define OBJ_X9_62_c2pnb163v2 OBJ_X9_62_c_TwoCurve,2L | ||
209 | |||
210 | #define SN_X9_62_c2pnb163v3 "c2pnb163v3" | ||
211 | #define NID_X9_62_c2pnb163v3 686 | ||
212 | #define OBJ_X9_62_c2pnb163v3 OBJ_X9_62_c_TwoCurve,3L | ||
213 | |||
214 | #define SN_X9_62_c2pnb176v1 "c2pnb176v1" | ||
215 | #define NID_X9_62_c2pnb176v1 687 | ||
216 | #define OBJ_X9_62_c2pnb176v1 OBJ_X9_62_c_TwoCurve,4L | ||
217 | |||
218 | #define SN_X9_62_c2tnb191v1 "c2tnb191v1" | ||
219 | #define NID_X9_62_c2tnb191v1 688 | ||
220 | #define OBJ_X9_62_c2tnb191v1 OBJ_X9_62_c_TwoCurve,5L | ||
221 | |||
222 | #define SN_X9_62_c2tnb191v2 "c2tnb191v2" | ||
223 | #define NID_X9_62_c2tnb191v2 689 | ||
224 | #define OBJ_X9_62_c2tnb191v2 OBJ_X9_62_c_TwoCurve,6L | ||
225 | |||
226 | #define SN_X9_62_c2tnb191v3 "c2tnb191v3" | ||
227 | #define NID_X9_62_c2tnb191v3 690 | ||
228 | #define OBJ_X9_62_c2tnb191v3 OBJ_X9_62_c_TwoCurve,7L | ||
229 | |||
230 | #define SN_X9_62_c2onb191v4 "c2onb191v4" | ||
231 | #define NID_X9_62_c2onb191v4 691 | ||
232 | #define OBJ_X9_62_c2onb191v4 OBJ_X9_62_c_TwoCurve,8L | ||
233 | |||
234 | #define SN_X9_62_c2onb191v5 "c2onb191v5" | ||
235 | #define NID_X9_62_c2onb191v5 692 | ||
236 | #define OBJ_X9_62_c2onb191v5 OBJ_X9_62_c_TwoCurve,9L | ||
237 | |||
238 | #define SN_X9_62_c2pnb208w1 "c2pnb208w1" | ||
239 | #define NID_X9_62_c2pnb208w1 693 | ||
240 | #define OBJ_X9_62_c2pnb208w1 OBJ_X9_62_c_TwoCurve,10L | ||
241 | |||
242 | #define SN_X9_62_c2tnb239v1 "c2tnb239v1" | ||
243 | #define NID_X9_62_c2tnb239v1 694 | ||
244 | #define OBJ_X9_62_c2tnb239v1 OBJ_X9_62_c_TwoCurve,11L | ||
245 | |||
246 | #define SN_X9_62_c2tnb239v2 "c2tnb239v2" | ||
247 | #define NID_X9_62_c2tnb239v2 695 | ||
248 | #define OBJ_X9_62_c2tnb239v2 OBJ_X9_62_c_TwoCurve,12L | ||
249 | |||
250 | #define SN_X9_62_c2tnb239v3 "c2tnb239v3" | ||
251 | #define NID_X9_62_c2tnb239v3 696 | ||
252 | #define OBJ_X9_62_c2tnb239v3 OBJ_X9_62_c_TwoCurve,13L | ||
253 | |||
254 | #define SN_X9_62_c2onb239v4 "c2onb239v4" | ||
255 | #define NID_X9_62_c2onb239v4 697 | ||
256 | #define OBJ_X9_62_c2onb239v4 OBJ_X9_62_c_TwoCurve,14L | ||
257 | |||
258 | #define SN_X9_62_c2onb239v5 "c2onb239v5" | ||
259 | #define NID_X9_62_c2onb239v5 698 | ||
260 | #define OBJ_X9_62_c2onb239v5 OBJ_X9_62_c_TwoCurve,15L | ||
261 | |||
262 | #define SN_X9_62_c2pnb272w1 "c2pnb272w1" | ||
263 | #define NID_X9_62_c2pnb272w1 699 | ||
264 | #define OBJ_X9_62_c2pnb272w1 OBJ_X9_62_c_TwoCurve,16L | ||
265 | |||
266 | #define SN_X9_62_c2pnb304w1 "c2pnb304w1" | ||
267 | #define NID_X9_62_c2pnb304w1 700 | ||
268 | #define OBJ_X9_62_c2pnb304w1 OBJ_X9_62_c_TwoCurve,17L | ||
269 | |||
270 | #define SN_X9_62_c2tnb359v1 "c2tnb359v1" | ||
271 | #define NID_X9_62_c2tnb359v1 701 | ||
272 | #define OBJ_X9_62_c2tnb359v1 OBJ_X9_62_c_TwoCurve,18L | ||
273 | |||
274 | #define SN_X9_62_c2pnb368w1 "c2pnb368w1" | ||
275 | #define NID_X9_62_c2pnb368w1 702 | ||
276 | #define OBJ_X9_62_c2pnb368w1 OBJ_X9_62_c_TwoCurve,19L | ||
277 | |||
278 | #define SN_X9_62_c2tnb431r1 "c2tnb431r1" | ||
279 | #define NID_X9_62_c2tnb431r1 703 | ||
280 | #define OBJ_X9_62_c2tnb431r1 OBJ_X9_62_c_TwoCurve,20L | ||
281 | |||
282 | #define OBJ_X9_62_primeCurve OBJ_X9_62_ellipticCurve,1L | ||
283 | |||
284 | #define SN_X9_62_prime192v1 "prime192v1" | ||
285 | #define NID_X9_62_prime192v1 409 | ||
286 | #define OBJ_X9_62_prime192v1 OBJ_X9_62_primeCurve,1L | ||
287 | |||
288 | #define SN_X9_62_prime192v2 "prime192v2" | ||
289 | #define NID_X9_62_prime192v2 410 | ||
290 | #define OBJ_X9_62_prime192v2 OBJ_X9_62_primeCurve,2L | ||
291 | |||
292 | #define SN_X9_62_prime192v3 "prime192v3" | ||
293 | #define NID_X9_62_prime192v3 411 | ||
294 | #define OBJ_X9_62_prime192v3 OBJ_X9_62_primeCurve,3L | ||
295 | |||
296 | #define SN_X9_62_prime239v1 "prime239v1" | ||
297 | #define NID_X9_62_prime239v1 412 | ||
298 | #define OBJ_X9_62_prime239v1 OBJ_X9_62_primeCurve,4L | ||
299 | |||
300 | #define SN_X9_62_prime239v2 "prime239v2" | ||
301 | #define NID_X9_62_prime239v2 413 | ||
302 | #define OBJ_X9_62_prime239v2 OBJ_X9_62_primeCurve,5L | ||
303 | |||
304 | #define SN_X9_62_prime239v3 "prime239v3" | ||
305 | #define NID_X9_62_prime239v3 414 | ||
306 | #define OBJ_X9_62_prime239v3 OBJ_X9_62_primeCurve,6L | ||
307 | |||
308 | #define SN_X9_62_prime256v1 "prime256v1" | ||
309 | #define NID_X9_62_prime256v1 415 | ||
310 | #define OBJ_X9_62_prime256v1 OBJ_X9_62_primeCurve,7L | ||
311 | |||
312 | #define OBJ_X9_62_id_ecSigType OBJ_ansi_X9_62,4L | ||
313 | |||
314 | #define SN_ecdsa_with_SHA1 "ecdsa-with-SHA1" | ||
315 | #define NID_ecdsa_with_SHA1 416 | ||
316 | #define OBJ_ecdsa_with_SHA1 OBJ_X9_62_id_ecSigType,1L | ||
317 | |||
318 | #define OBJ_secg_ellipticCurve OBJ_certicom_arc,0L | ||
319 | |||
320 | #define SN_secp112r1 "secp112r1" | ||
321 | #define NID_secp112r1 704 | ||
322 | #define OBJ_secp112r1 OBJ_secg_ellipticCurve,6L | ||
323 | |||
324 | #define SN_secp112r2 "secp112r2" | ||
325 | #define NID_secp112r2 705 | ||
326 | #define OBJ_secp112r2 OBJ_secg_ellipticCurve,7L | ||
327 | |||
328 | #define SN_secp128r1 "secp128r1" | ||
329 | #define NID_secp128r1 706 | ||
330 | #define OBJ_secp128r1 OBJ_secg_ellipticCurve,28L | ||
331 | |||
332 | #define SN_secp128r2 "secp128r2" | ||
333 | #define NID_secp128r2 707 | ||
334 | #define OBJ_secp128r2 OBJ_secg_ellipticCurve,29L | ||
335 | |||
336 | #define SN_secp160k1 "secp160k1" | ||
337 | #define NID_secp160k1 708 | ||
338 | #define OBJ_secp160k1 OBJ_secg_ellipticCurve,9L | ||
339 | |||
340 | #define SN_secp160r1 "secp160r1" | ||
341 | #define NID_secp160r1 709 | ||
342 | #define OBJ_secp160r1 OBJ_secg_ellipticCurve,8L | ||
343 | |||
344 | #define SN_secp160r2 "secp160r2" | ||
345 | #define NID_secp160r2 710 | ||
346 | #define OBJ_secp160r2 OBJ_secg_ellipticCurve,30L | ||
347 | |||
348 | #define SN_secp192k1 "secp192k1" | ||
349 | #define NID_secp192k1 711 | ||
350 | #define OBJ_secp192k1 OBJ_secg_ellipticCurve,31L | ||
351 | |||
352 | #define SN_secp224k1 "secp224k1" | ||
353 | #define NID_secp224k1 712 | ||
354 | #define OBJ_secp224k1 OBJ_secg_ellipticCurve,32L | ||
355 | |||
356 | #define SN_secp224r1 "secp224r1" | ||
357 | #define NID_secp224r1 713 | ||
358 | #define OBJ_secp224r1 OBJ_secg_ellipticCurve,33L | ||
359 | |||
360 | #define SN_secp256k1 "secp256k1" | ||
361 | #define NID_secp256k1 714 | ||
362 | #define OBJ_secp256k1 OBJ_secg_ellipticCurve,10L | ||
363 | |||
364 | #define SN_secp384r1 "secp384r1" | ||
365 | #define NID_secp384r1 715 | ||
366 | #define OBJ_secp384r1 OBJ_secg_ellipticCurve,34L | ||
367 | |||
368 | #define SN_secp521r1 "secp521r1" | ||
369 | #define NID_secp521r1 716 | ||
370 | #define OBJ_secp521r1 OBJ_secg_ellipticCurve,35L | ||
371 | |||
372 | #define SN_sect113r1 "sect113r1" | ||
373 | #define NID_sect113r1 717 | ||
374 | #define OBJ_sect113r1 OBJ_secg_ellipticCurve,4L | ||
375 | |||
376 | #define SN_sect113r2 "sect113r2" | ||
377 | #define NID_sect113r2 718 | ||
378 | #define OBJ_sect113r2 OBJ_secg_ellipticCurve,5L | ||
379 | |||
380 | #define SN_sect131r1 "sect131r1" | ||
381 | #define NID_sect131r1 719 | ||
382 | #define OBJ_sect131r1 OBJ_secg_ellipticCurve,22L | ||
383 | |||
384 | #define SN_sect131r2 "sect131r2" | ||
385 | #define NID_sect131r2 720 | ||
386 | #define OBJ_sect131r2 OBJ_secg_ellipticCurve,23L | ||
387 | |||
388 | #define SN_sect163k1 "sect163k1" | ||
389 | #define NID_sect163k1 721 | ||
390 | #define OBJ_sect163k1 OBJ_secg_ellipticCurve,1L | ||
391 | |||
392 | #define SN_sect163r1 "sect163r1" | ||
393 | #define NID_sect163r1 722 | ||
394 | #define OBJ_sect163r1 OBJ_secg_ellipticCurve,2L | ||
395 | |||
396 | #define SN_sect163r2 "sect163r2" | ||
397 | #define NID_sect163r2 723 | ||
398 | #define OBJ_sect163r2 OBJ_secg_ellipticCurve,15L | ||
399 | |||
400 | #define SN_sect193r1 "sect193r1" | ||
401 | #define NID_sect193r1 724 | ||
402 | #define OBJ_sect193r1 OBJ_secg_ellipticCurve,24L | ||
403 | |||
404 | #define SN_sect193r2 "sect193r2" | ||
405 | #define NID_sect193r2 725 | ||
406 | #define OBJ_sect193r2 OBJ_secg_ellipticCurve,25L | ||
407 | |||
408 | #define SN_sect233k1 "sect233k1" | ||
409 | #define NID_sect233k1 726 | ||
410 | #define OBJ_sect233k1 OBJ_secg_ellipticCurve,26L | ||
411 | |||
412 | #define SN_sect233r1 "sect233r1" | ||
413 | #define NID_sect233r1 727 | ||
414 | #define OBJ_sect233r1 OBJ_secg_ellipticCurve,27L | ||
415 | |||
416 | #define SN_sect239k1 "sect239k1" | ||
417 | #define NID_sect239k1 728 | ||
418 | #define OBJ_sect239k1 OBJ_secg_ellipticCurve,3L | ||
419 | |||
420 | #define SN_sect283k1 "sect283k1" | ||
421 | #define NID_sect283k1 729 | ||
422 | #define OBJ_sect283k1 OBJ_secg_ellipticCurve,16L | ||
423 | |||
424 | #define SN_sect283r1 "sect283r1" | ||
425 | #define NID_sect283r1 730 | ||
426 | #define OBJ_sect283r1 OBJ_secg_ellipticCurve,17L | ||
427 | |||
428 | #define SN_sect409k1 "sect409k1" | ||
429 | #define NID_sect409k1 731 | ||
430 | #define OBJ_sect409k1 OBJ_secg_ellipticCurve,36L | ||
431 | |||
432 | #define SN_sect409r1 "sect409r1" | ||
433 | #define NID_sect409r1 732 | ||
434 | #define OBJ_sect409r1 OBJ_secg_ellipticCurve,37L | ||
435 | |||
436 | #define SN_sect571k1 "sect571k1" | ||
437 | #define NID_sect571k1 733 | ||
438 | #define OBJ_sect571k1 OBJ_secg_ellipticCurve,38L | ||
439 | |||
440 | #define SN_sect571r1 "sect571r1" | ||
441 | #define NID_sect571r1 734 | ||
442 | #define OBJ_sect571r1 OBJ_secg_ellipticCurve,39L | ||
443 | |||
444 | #define OBJ_wap_wsg_idm_ecid OBJ_wap_wsg,4L | ||
445 | |||
446 | #define SN_wap_wsg_idm_ecid_wtls1 "wap-wsg-idm-ecid-wtls1" | ||
447 | #define NID_wap_wsg_idm_ecid_wtls1 735 | ||
448 | #define OBJ_wap_wsg_idm_ecid_wtls1 OBJ_wap_wsg_idm_ecid,1L | ||
449 | |||
450 | #define SN_wap_wsg_idm_ecid_wtls3 "wap-wsg-idm-ecid-wtls3" | ||
451 | #define NID_wap_wsg_idm_ecid_wtls3 736 | ||
452 | #define OBJ_wap_wsg_idm_ecid_wtls3 OBJ_wap_wsg_idm_ecid,3L | ||
453 | |||
454 | #define SN_wap_wsg_idm_ecid_wtls4 "wap-wsg-idm-ecid-wtls4" | ||
455 | #define NID_wap_wsg_idm_ecid_wtls4 737 | ||
456 | #define OBJ_wap_wsg_idm_ecid_wtls4 OBJ_wap_wsg_idm_ecid,4L | ||
457 | |||
458 | #define SN_wap_wsg_idm_ecid_wtls5 "wap-wsg-idm-ecid-wtls5" | ||
459 | #define NID_wap_wsg_idm_ecid_wtls5 738 | ||
460 | #define OBJ_wap_wsg_idm_ecid_wtls5 OBJ_wap_wsg_idm_ecid,5L | ||
461 | |||
462 | #define SN_wap_wsg_idm_ecid_wtls6 "wap-wsg-idm-ecid-wtls6" | ||
463 | #define NID_wap_wsg_idm_ecid_wtls6 739 | ||
464 | #define OBJ_wap_wsg_idm_ecid_wtls6 OBJ_wap_wsg_idm_ecid,6L | ||
465 | |||
466 | #define SN_wap_wsg_idm_ecid_wtls7 "wap-wsg-idm-ecid-wtls7" | ||
467 | #define NID_wap_wsg_idm_ecid_wtls7 740 | ||
468 | #define OBJ_wap_wsg_idm_ecid_wtls7 OBJ_wap_wsg_idm_ecid,7L | ||
469 | |||
470 | #define SN_wap_wsg_idm_ecid_wtls8 "wap-wsg-idm-ecid-wtls8" | ||
471 | #define NID_wap_wsg_idm_ecid_wtls8 741 | ||
472 | #define OBJ_wap_wsg_idm_ecid_wtls8 OBJ_wap_wsg_idm_ecid,8L | ||
473 | |||
474 | #define SN_wap_wsg_idm_ecid_wtls9 "wap-wsg-idm-ecid-wtls9" | ||
475 | #define NID_wap_wsg_idm_ecid_wtls9 742 | ||
476 | #define OBJ_wap_wsg_idm_ecid_wtls9 OBJ_wap_wsg_idm_ecid,9L | ||
477 | |||
478 | #define SN_wap_wsg_idm_ecid_wtls10 "wap-wsg-idm-ecid-wtls10" | ||
479 | #define NID_wap_wsg_idm_ecid_wtls10 743 | ||
480 | #define OBJ_wap_wsg_idm_ecid_wtls10 OBJ_wap_wsg_idm_ecid,10L | ||
481 | |||
482 | #define SN_wap_wsg_idm_ecid_wtls11 "wap-wsg-idm-ecid-wtls11" | ||
483 | #define NID_wap_wsg_idm_ecid_wtls11 744 | ||
484 | #define OBJ_wap_wsg_idm_ecid_wtls11 OBJ_wap_wsg_idm_ecid,11L | ||
485 | |||
486 | #define SN_wap_wsg_idm_ecid_wtls12 "wap-wsg-idm-ecid-wtls12" | ||
487 | #define NID_wap_wsg_idm_ecid_wtls12 745 | ||
488 | #define OBJ_wap_wsg_idm_ecid_wtls12 OBJ_wap_wsg_idm_ecid,12L | ||
489 | |||
490 | #define SN_cast5_cbc "CAST5-CBC" | ||
491 | #define LN_cast5_cbc "cast5-cbc" | ||
492 | #define NID_cast5_cbc 108 | ||
493 | #define OBJ_cast5_cbc OBJ_ISO_US,113533L,7L,66L,10L | ||
494 | |||
495 | #define SN_cast5_ecb "CAST5-ECB" | ||
496 | #define LN_cast5_ecb "cast5-ecb" | ||
497 | #define NID_cast5_ecb 109 | ||
498 | |||
499 | #define SN_cast5_cfb64 "CAST5-CFB" | ||
500 | #define LN_cast5_cfb64 "cast5-cfb" | ||
501 | #define NID_cast5_cfb64 110 | ||
502 | |||
503 | #define SN_cast5_ofb64 "CAST5-OFB" | ||
504 | #define LN_cast5_ofb64 "cast5-ofb" | ||
505 | #define NID_cast5_ofb64 111 | ||
506 | |||
507 | #define LN_pbeWithMD5AndCast5_CBC "pbeWithMD5AndCast5CBC" | ||
508 | #define NID_pbeWithMD5AndCast5_CBC 112 | ||
509 | #define OBJ_pbeWithMD5AndCast5_CBC OBJ_ISO_US,113533L,7L,66L,12L | ||
510 | |||
511 | #define SN_id_PasswordBasedMAC "id-PasswordBasedMAC" | ||
512 | #define LN_id_PasswordBasedMAC "password based MAC" | ||
513 | #define NID_id_PasswordBasedMAC 782 | ||
514 | #define OBJ_id_PasswordBasedMAC OBJ_ISO_US,113533L,7L,66L,13L | ||
515 | |||
516 | #define SN_id_DHBasedMac "id-DHBasedMac" | ||
517 | #define LN_id_DHBasedMac "Diffie-Hellman based MAC" | ||
518 | #define NID_id_DHBasedMac 783 | ||
519 | #define OBJ_id_DHBasedMac OBJ_ISO_US,113533L,7L,66L,30L | ||
520 | |||
521 | #define SN_rsadsi "rsadsi" | ||
522 | #define LN_rsadsi "RSA Data Security, Inc." | ||
523 | #define NID_rsadsi 1 | ||
524 | #define OBJ_rsadsi OBJ_ISO_US,113549L | ||
525 | |||
526 | #define SN_pkcs "pkcs" | ||
527 | #define LN_pkcs "RSA Data Security, Inc. PKCS" | ||
528 | #define NID_pkcs 2 | ||
529 | #define OBJ_pkcs OBJ_rsadsi,1L | ||
530 | |||
531 | #define SN_pkcs1 "pkcs1" | ||
532 | #define NID_pkcs1 186 | ||
533 | #define OBJ_pkcs1 OBJ_pkcs,1L | ||
534 | |||
535 | #define LN_rsaEncryption "rsaEncryption" | ||
536 | #define NID_rsaEncryption 6 | ||
537 | #define OBJ_rsaEncryption OBJ_pkcs1,1L | ||
538 | |||
539 | #define SN_md2WithRSAEncryption "RSA-MD2" | ||
540 | #define LN_md2WithRSAEncryption "md2WithRSAEncryption" | ||
541 | #define NID_md2WithRSAEncryption 7 | ||
542 | #define OBJ_md2WithRSAEncryption OBJ_pkcs1,2L | ||
543 | |||
544 | #define SN_md4WithRSAEncryption "RSA-MD4" | ||
545 | #define LN_md4WithRSAEncryption "md4WithRSAEncryption" | ||
546 | #define NID_md4WithRSAEncryption 396 | ||
547 | #define OBJ_md4WithRSAEncryption OBJ_pkcs1,3L | ||
548 | |||
549 | #define SN_md5WithRSAEncryption "RSA-MD5" | ||
550 | #define LN_md5WithRSAEncryption "md5WithRSAEncryption" | ||
551 | #define NID_md5WithRSAEncryption 8 | ||
552 | #define OBJ_md5WithRSAEncryption OBJ_pkcs1,4L | ||
553 | |||
554 | #define SN_sha1WithRSAEncryption "RSA-SHA1" | ||
555 | #define LN_sha1WithRSAEncryption "sha1WithRSAEncryption" | ||
556 | #define NID_sha1WithRSAEncryption 65 | ||
557 | #define OBJ_sha1WithRSAEncryption OBJ_pkcs1,5L | ||
558 | |||
559 | #define SN_sha256WithRSAEncryption "RSA-SHA256" | ||
560 | #define LN_sha256WithRSAEncryption "sha256WithRSAEncryption" | ||
561 | #define NID_sha256WithRSAEncryption 668 | ||
562 | #define OBJ_sha256WithRSAEncryption OBJ_pkcs1,11L | ||
563 | |||
564 | #define SN_sha384WithRSAEncryption "RSA-SHA384" | ||
565 | #define LN_sha384WithRSAEncryption "sha384WithRSAEncryption" | ||
566 | #define NID_sha384WithRSAEncryption 669 | ||
567 | #define OBJ_sha384WithRSAEncryption OBJ_pkcs1,12L | ||
568 | |||
569 | #define SN_sha512WithRSAEncryption "RSA-SHA512" | ||
570 | #define LN_sha512WithRSAEncryption "sha512WithRSAEncryption" | ||
571 | #define NID_sha512WithRSAEncryption 670 | ||
572 | #define OBJ_sha512WithRSAEncryption OBJ_pkcs1,13L | ||
573 | |||
574 | #define SN_sha224WithRSAEncryption "RSA-SHA224" | ||
575 | #define LN_sha224WithRSAEncryption "sha224WithRSAEncryption" | ||
576 | #define NID_sha224WithRSAEncryption 671 | ||
577 | #define OBJ_sha224WithRSAEncryption OBJ_pkcs1,14L | ||
578 | |||
579 | #define SN_pkcs3 "pkcs3" | ||
580 | #define NID_pkcs3 27 | ||
581 | #define OBJ_pkcs3 OBJ_pkcs,3L | ||
582 | |||
583 | #define LN_dhKeyAgreement "dhKeyAgreement" | ||
584 | #define NID_dhKeyAgreement 28 | ||
585 | #define OBJ_dhKeyAgreement OBJ_pkcs3,1L | ||
586 | |||
587 | #define SN_pkcs5 "pkcs5" | ||
588 | #define NID_pkcs5 187 | ||
589 | #define OBJ_pkcs5 OBJ_pkcs,5L | ||
590 | |||
591 | #define SN_pbeWithMD2AndDES_CBC "PBE-MD2-DES" | ||
592 | #define LN_pbeWithMD2AndDES_CBC "pbeWithMD2AndDES-CBC" | ||
593 | #define NID_pbeWithMD2AndDES_CBC 9 | ||
594 | #define OBJ_pbeWithMD2AndDES_CBC OBJ_pkcs5,1L | ||
595 | |||
596 | #define SN_pbeWithMD5AndDES_CBC "PBE-MD5-DES" | ||
597 | #define LN_pbeWithMD5AndDES_CBC "pbeWithMD5AndDES-CBC" | ||
598 | #define NID_pbeWithMD5AndDES_CBC 10 | ||
599 | #define OBJ_pbeWithMD5AndDES_CBC OBJ_pkcs5,3L | ||
600 | |||
601 | #define SN_pbeWithMD2AndRC2_CBC "PBE-MD2-RC2-64" | ||
602 | #define LN_pbeWithMD2AndRC2_CBC "pbeWithMD2AndRC2-CBC" | ||
603 | #define NID_pbeWithMD2AndRC2_CBC 168 | ||
604 | #define OBJ_pbeWithMD2AndRC2_CBC OBJ_pkcs5,4L | ||
605 | |||
606 | #define SN_pbeWithMD5AndRC2_CBC "PBE-MD5-RC2-64" | ||
607 | #define LN_pbeWithMD5AndRC2_CBC "pbeWithMD5AndRC2-CBC" | ||
608 | #define NID_pbeWithMD5AndRC2_CBC 169 | ||
609 | #define OBJ_pbeWithMD5AndRC2_CBC OBJ_pkcs5,6L | ||
610 | |||
611 | #define SN_pbeWithSHA1AndDES_CBC "PBE-SHA1-DES" | ||
612 | #define LN_pbeWithSHA1AndDES_CBC "pbeWithSHA1AndDES-CBC" | ||
613 | #define NID_pbeWithSHA1AndDES_CBC 170 | ||
614 | #define OBJ_pbeWithSHA1AndDES_CBC OBJ_pkcs5,10L | ||
615 | |||
616 | #define SN_pbeWithSHA1AndRC2_CBC "PBE-SHA1-RC2-64" | ||
617 | #define LN_pbeWithSHA1AndRC2_CBC "pbeWithSHA1AndRC2-CBC" | ||
618 | #define NID_pbeWithSHA1AndRC2_CBC 68 | ||
619 | #define OBJ_pbeWithSHA1AndRC2_CBC OBJ_pkcs5,11L | ||
620 | |||
621 | #define LN_id_pbkdf2 "PBKDF2" | ||
622 | #define NID_id_pbkdf2 69 | ||
623 | #define OBJ_id_pbkdf2 OBJ_pkcs5,12L | ||
624 | |||
625 | #define LN_pbes2 "PBES2" | ||
626 | #define NID_pbes2 161 | ||
627 | #define OBJ_pbes2 OBJ_pkcs5,13L | ||
628 | |||
629 | #define LN_pbmac1 "PBMAC1" | ||
630 | #define NID_pbmac1 162 | ||
631 | #define OBJ_pbmac1 OBJ_pkcs5,14L | ||
632 | |||
633 | #define SN_pkcs7 "pkcs7" | ||
634 | #define NID_pkcs7 20 | ||
635 | #define OBJ_pkcs7 OBJ_pkcs,7L | ||
636 | |||
637 | #define LN_pkcs7_data "pkcs7-data" | ||
638 | #define NID_pkcs7_data 21 | ||
639 | #define OBJ_pkcs7_data OBJ_pkcs7,1L | ||
640 | |||
641 | #define LN_pkcs7_signed "pkcs7-signedData" | ||
642 | #define NID_pkcs7_signed 22 | ||
643 | #define OBJ_pkcs7_signed OBJ_pkcs7,2L | ||
644 | |||
645 | #define LN_pkcs7_enveloped "pkcs7-envelopedData" | ||
646 | #define NID_pkcs7_enveloped 23 | ||
647 | #define OBJ_pkcs7_enveloped OBJ_pkcs7,3L | ||
648 | |||
649 | #define LN_pkcs7_signedAndEnveloped "pkcs7-signedAndEnvelopedData" | ||
650 | #define NID_pkcs7_signedAndEnveloped 24 | ||
651 | #define OBJ_pkcs7_signedAndEnveloped OBJ_pkcs7,4L | ||
652 | |||
653 | #define LN_pkcs7_digest "pkcs7-digestData" | ||
654 | #define NID_pkcs7_digest 25 | ||
655 | #define OBJ_pkcs7_digest OBJ_pkcs7,5L | ||
656 | |||
657 | #define LN_pkcs7_encrypted "pkcs7-encryptedData" | ||
658 | #define NID_pkcs7_encrypted 26 | ||
659 | #define OBJ_pkcs7_encrypted OBJ_pkcs7,6L | ||
660 | |||
661 | #define SN_pkcs9 "pkcs9" | ||
662 | #define NID_pkcs9 47 | ||
663 | #define OBJ_pkcs9 OBJ_pkcs,9L | ||
664 | |||
665 | #define LN_pkcs9_emailAddress "emailAddress" | ||
666 | #define NID_pkcs9_emailAddress 48 | ||
667 | #define OBJ_pkcs9_emailAddress OBJ_pkcs9,1L | ||
668 | |||
669 | #define LN_pkcs9_unstructuredName "unstructuredName" | ||
670 | #define NID_pkcs9_unstructuredName 49 | ||
671 | #define OBJ_pkcs9_unstructuredName OBJ_pkcs9,2L | ||
672 | |||
673 | #define LN_pkcs9_contentType "contentType" | ||
674 | #define NID_pkcs9_contentType 50 | ||
675 | #define OBJ_pkcs9_contentType OBJ_pkcs9,3L | ||
676 | |||
677 | #define LN_pkcs9_messageDigest "messageDigest" | ||
678 | #define NID_pkcs9_messageDigest 51 | ||
679 | #define OBJ_pkcs9_messageDigest OBJ_pkcs9,4L | ||
680 | |||
681 | #define LN_pkcs9_signingTime "signingTime" | ||
682 | #define NID_pkcs9_signingTime 52 | ||
683 | #define OBJ_pkcs9_signingTime OBJ_pkcs9,5L | ||
684 | |||
685 | #define LN_pkcs9_countersignature "countersignature" | ||
686 | #define NID_pkcs9_countersignature 53 | ||
687 | #define OBJ_pkcs9_countersignature OBJ_pkcs9,6L | ||
688 | |||
689 | #define LN_pkcs9_challengePassword "challengePassword" | ||
690 | #define NID_pkcs9_challengePassword 54 | ||
691 | #define OBJ_pkcs9_challengePassword OBJ_pkcs9,7L | ||
692 | |||
693 | #define LN_pkcs9_unstructuredAddress "unstructuredAddress" | ||
694 | #define NID_pkcs9_unstructuredAddress 55 | ||
695 | #define OBJ_pkcs9_unstructuredAddress OBJ_pkcs9,8L | ||
696 | |||
697 | #define LN_pkcs9_extCertAttributes "extendedCertificateAttributes" | ||
698 | #define NID_pkcs9_extCertAttributes 56 | ||
699 | #define OBJ_pkcs9_extCertAttributes OBJ_pkcs9,9L | ||
700 | |||
701 | #define SN_ext_req "extReq" | ||
702 | #define LN_ext_req "Extension Request" | ||
703 | #define NID_ext_req 172 | ||
704 | #define OBJ_ext_req OBJ_pkcs9,14L | ||
705 | |||
706 | #define SN_SMIMECapabilities "SMIME-CAPS" | ||
707 | #define LN_SMIMECapabilities "S/MIME Capabilities" | ||
708 | #define NID_SMIMECapabilities 167 | ||
709 | #define OBJ_SMIMECapabilities OBJ_pkcs9,15L | ||
710 | |||
711 | #define SN_SMIME "SMIME" | ||
712 | #define LN_SMIME "S/MIME" | ||
713 | #define NID_SMIME 188 | ||
714 | #define OBJ_SMIME OBJ_pkcs9,16L | ||
715 | |||
716 | #define SN_id_smime_mod "id-smime-mod" | ||
717 | #define NID_id_smime_mod 189 | ||
718 | #define OBJ_id_smime_mod OBJ_SMIME,0L | ||
719 | |||
720 | #define SN_id_smime_ct "id-smime-ct" | ||
721 | #define NID_id_smime_ct 190 | ||
722 | #define OBJ_id_smime_ct OBJ_SMIME,1L | ||
723 | |||
724 | #define SN_id_smime_aa "id-smime-aa" | ||
725 | #define NID_id_smime_aa 191 | ||
726 | #define OBJ_id_smime_aa OBJ_SMIME,2L | ||
727 | |||
728 | #define SN_id_smime_alg "id-smime-alg" | ||
729 | #define NID_id_smime_alg 192 | ||
730 | #define OBJ_id_smime_alg OBJ_SMIME,3L | ||
731 | |||
732 | #define SN_id_smime_cd "id-smime-cd" | ||
733 | #define NID_id_smime_cd 193 | ||
734 | #define OBJ_id_smime_cd OBJ_SMIME,4L | ||
735 | |||
736 | #define SN_id_smime_spq "id-smime-spq" | ||
737 | #define NID_id_smime_spq 194 | ||
738 | #define OBJ_id_smime_spq OBJ_SMIME,5L | ||
739 | |||
740 | #define SN_id_smime_cti "id-smime-cti" | ||
741 | #define NID_id_smime_cti 195 | ||
742 | #define OBJ_id_smime_cti OBJ_SMIME,6L | ||
743 | |||
744 | #define SN_id_smime_mod_cms "id-smime-mod-cms" | ||
745 | #define NID_id_smime_mod_cms 196 | ||
746 | #define OBJ_id_smime_mod_cms OBJ_id_smime_mod,1L | ||
747 | |||
748 | #define SN_id_smime_mod_ess "id-smime-mod-ess" | ||
749 | #define NID_id_smime_mod_ess 197 | ||
750 | #define OBJ_id_smime_mod_ess OBJ_id_smime_mod,2L | ||
751 | |||
752 | #define SN_id_smime_mod_oid "id-smime-mod-oid" | ||
753 | #define NID_id_smime_mod_oid 198 | ||
754 | #define OBJ_id_smime_mod_oid OBJ_id_smime_mod,3L | ||
755 | |||
756 | #define SN_id_smime_mod_msg_v3 "id-smime-mod-msg-v3" | ||
757 | #define NID_id_smime_mod_msg_v3 199 | ||
758 | #define OBJ_id_smime_mod_msg_v3 OBJ_id_smime_mod,4L | ||
759 | |||
760 | #define SN_id_smime_mod_ets_eSignature_88 "id-smime-mod-ets-eSignature-88" | ||
761 | #define NID_id_smime_mod_ets_eSignature_88 200 | ||
762 | #define OBJ_id_smime_mod_ets_eSignature_88 OBJ_id_smime_mod,5L | ||
763 | |||
764 | #define SN_id_smime_mod_ets_eSignature_97 "id-smime-mod-ets-eSignature-97" | ||
765 | #define NID_id_smime_mod_ets_eSignature_97 201 | ||
766 | #define OBJ_id_smime_mod_ets_eSignature_97 OBJ_id_smime_mod,6L | ||
767 | |||
768 | #define SN_id_smime_mod_ets_eSigPolicy_88 "id-smime-mod-ets-eSigPolicy-88" | ||
769 | #define NID_id_smime_mod_ets_eSigPolicy_88 202 | ||
770 | #define OBJ_id_smime_mod_ets_eSigPolicy_88 OBJ_id_smime_mod,7L | ||
771 | |||
772 | #define SN_id_smime_mod_ets_eSigPolicy_97 "id-smime-mod-ets-eSigPolicy-97" | ||
773 | #define NID_id_smime_mod_ets_eSigPolicy_97 203 | ||
774 | #define OBJ_id_smime_mod_ets_eSigPolicy_97 OBJ_id_smime_mod,8L | ||
775 | |||
776 | #define SN_id_smime_ct_receipt "id-smime-ct-receipt" | ||
777 | #define NID_id_smime_ct_receipt 204 | ||
778 | #define OBJ_id_smime_ct_receipt OBJ_id_smime_ct,1L | ||
779 | |||
780 | #define SN_id_smime_ct_authData "id-smime-ct-authData" | ||
781 | #define NID_id_smime_ct_authData 205 | ||
782 | #define OBJ_id_smime_ct_authData OBJ_id_smime_ct,2L | ||
783 | |||
784 | #define SN_id_smime_ct_publishCert "id-smime-ct-publishCert" | ||
785 | #define NID_id_smime_ct_publishCert 206 | ||
786 | #define OBJ_id_smime_ct_publishCert OBJ_id_smime_ct,3L | ||
787 | |||
788 | #define SN_id_smime_ct_TSTInfo "id-smime-ct-TSTInfo" | ||
789 | #define NID_id_smime_ct_TSTInfo 207 | ||
790 | #define OBJ_id_smime_ct_TSTInfo OBJ_id_smime_ct,4L | ||
791 | |||
792 | #define SN_id_smime_ct_TDTInfo "id-smime-ct-TDTInfo" | ||
793 | #define NID_id_smime_ct_TDTInfo 208 | ||
794 | #define OBJ_id_smime_ct_TDTInfo OBJ_id_smime_ct,5L | ||
795 | |||
796 | #define SN_id_smime_ct_contentInfo "id-smime-ct-contentInfo" | ||
797 | #define NID_id_smime_ct_contentInfo 209 | ||
798 | #define OBJ_id_smime_ct_contentInfo OBJ_id_smime_ct,6L | ||
799 | |||
800 | #define SN_id_smime_ct_DVCSRequestData "id-smime-ct-DVCSRequestData" | ||
801 | #define NID_id_smime_ct_DVCSRequestData 210 | ||
802 | #define OBJ_id_smime_ct_DVCSRequestData OBJ_id_smime_ct,7L | ||
803 | |||
804 | #define SN_id_smime_ct_DVCSResponseData "id-smime-ct-DVCSResponseData" | ||
805 | #define NID_id_smime_ct_DVCSResponseData 211 | ||
806 | #define OBJ_id_smime_ct_DVCSResponseData OBJ_id_smime_ct,8L | ||
807 | |||
808 | #define SN_id_smime_ct_compressedData "id-smime-ct-compressedData" | ||
809 | #define NID_id_smime_ct_compressedData 786 | ||
810 | #define OBJ_id_smime_ct_compressedData OBJ_id_smime_ct,9L | ||
811 | |||
812 | #define SN_id_ct_asciiTextWithCRLF "id-ct-asciiTextWithCRLF" | ||
813 | #define NID_id_ct_asciiTextWithCRLF 787 | ||
814 | #define OBJ_id_ct_asciiTextWithCRLF OBJ_id_smime_ct,27L | ||
815 | |||
816 | #define SN_id_smime_aa_receiptRequest "id-smime-aa-receiptRequest" | ||
817 | #define NID_id_smime_aa_receiptRequest 212 | ||
818 | #define OBJ_id_smime_aa_receiptRequest OBJ_id_smime_aa,1L | ||
819 | |||
820 | #define SN_id_smime_aa_securityLabel "id-smime-aa-securityLabel" | ||
821 | #define NID_id_smime_aa_securityLabel 213 | ||
822 | #define OBJ_id_smime_aa_securityLabel OBJ_id_smime_aa,2L | ||
823 | |||
824 | #define SN_id_smime_aa_mlExpandHistory "id-smime-aa-mlExpandHistory" | ||
825 | #define NID_id_smime_aa_mlExpandHistory 214 | ||
826 | #define OBJ_id_smime_aa_mlExpandHistory OBJ_id_smime_aa,3L | ||
827 | |||
828 | #define SN_id_smime_aa_contentHint "id-smime-aa-contentHint" | ||
829 | #define NID_id_smime_aa_contentHint 215 | ||
830 | #define OBJ_id_smime_aa_contentHint OBJ_id_smime_aa,4L | ||
831 | |||
832 | #define SN_id_smime_aa_msgSigDigest "id-smime-aa-msgSigDigest" | ||
833 | #define NID_id_smime_aa_msgSigDigest 216 | ||
834 | #define OBJ_id_smime_aa_msgSigDigest OBJ_id_smime_aa,5L | ||
835 | |||
836 | #define SN_id_smime_aa_encapContentType "id-smime-aa-encapContentType" | ||
837 | #define NID_id_smime_aa_encapContentType 217 | ||
838 | #define OBJ_id_smime_aa_encapContentType OBJ_id_smime_aa,6L | ||
839 | |||
840 | #define SN_id_smime_aa_contentIdentifier "id-smime-aa-contentIdentifier" | ||
841 | #define NID_id_smime_aa_contentIdentifier 218 | ||
842 | #define OBJ_id_smime_aa_contentIdentifier OBJ_id_smime_aa,7L | ||
843 | |||
844 | #define SN_id_smime_aa_macValue "id-smime-aa-macValue" | ||
845 | #define NID_id_smime_aa_macValue 219 | ||
846 | #define OBJ_id_smime_aa_macValue OBJ_id_smime_aa,8L | ||
847 | |||
848 | #define SN_id_smime_aa_equivalentLabels "id-smime-aa-equivalentLabels" | ||
849 | #define NID_id_smime_aa_equivalentLabels 220 | ||
850 | #define OBJ_id_smime_aa_equivalentLabels OBJ_id_smime_aa,9L | ||
851 | |||
852 | #define SN_id_smime_aa_contentReference "id-smime-aa-contentReference" | ||
853 | #define NID_id_smime_aa_contentReference 221 | ||
854 | #define OBJ_id_smime_aa_contentReference OBJ_id_smime_aa,10L | ||
855 | |||
856 | #define SN_id_smime_aa_encrypKeyPref "id-smime-aa-encrypKeyPref" | ||
857 | #define NID_id_smime_aa_encrypKeyPref 222 | ||
858 | #define OBJ_id_smime_aa_encrypKeyPref OBJ_id_smime_aa,11L | ||
859 | |||
860 | #define SN_id_smime_aa_signingCertificate "id-smime-aa-signingCertificate" | ||
861 | #define NID_id_smime_aa_signingCertificate 223 | ||
862 | #define OBJ_id_smime_aa_signingCertificate OBJ_id_smime_aa,12L | ||
863 | |||
864 | #define SN_id_smime_aa_smimeEncryptCerts "id-smime-aa-smimeEncryptCerts" | ||
865 | #define NID_id_smime_aa_smimeEncryptCerts 224 | ||
866 | #define OBJ_id_smime_aa_smimeEncryptCerts OBJ_id_smime_aa,13L | ||
867 | |||
868 | #define SN_id_smime_aa_timeStampToken "id-smime-aa-timeStampToken" | ||
869 | #define NID_id_smime_aa_timeStampToken 225 | ||
870 | #define OBJ_id_smime_aa_timeStampToken OBJ_id_smime_aa,14L | ||
871 | |||
872 | #define SN_id_smime_aa_ets_sigPolicyId "id-smime-aa-ets-sigPolicyId" | ||
873 | #define NID_id_smime_aa_ets_sigPolicyId 226 | ||
874 | #define OBJ_id_smime_aa_ets_sigPolicyId OBJ_id_smime_aa,15L | ||
875 | |||
876 | #define SN_id_smime_aa_ets_commitmentType "id-smime-aa-ets-commitmentType" | ||
877 | #define NID_id_smime_aa_ets_commitmentType 227 | ||
878 | #define OBJ_id_smime_aa_ets_commitmentType OBJ_id_smime_aa,16L | ||
879 | |||
880 | #define SN_id_smime_aa_ets_signerLocation "id-smime-aa-ets-signerLocation" | ||
881 | #define NID_id_smime_aa_ets_signerLocation 228 | ||
882 | #define OBJ_id_smime_aa_ets_signerLocation OBJ_id_smime_aa,17L | ||
883 | |||
884 | #define SN_id_smime_aa_ets_signerAttr "id-smime-aa-ets-signerAttr" | ||
885 | #define NID_id_smime_aa_ets_signerAttr 229 | ||
886 | #define OBJ_id_smime_aa_ets_signerAttr OBJ_id_smime_aa,18L | ||
887 | |||
888 | #define SN_id_smime_aa_ets_otherSigCert "id-smime-aa-ets-otherSigCert" | ||
889 | #define NID_id_smime_aa_ets_otherSigCert 230 | ||
890 | #define OBJ_id_smime_aa_ets_otherSigCert OBJ_id_smime_aa,19L | ||
891 | |||
892 | #define SN_id_smime_aa_ets_contentTimestamp "id-smime-aa-ets-contentTimestamp" | ||
893 | #define NID_id_smime_aa_ets_contentTimestamp 231 | ||
894 | #define OBJ_id_smime_aa_ets_contentTimestamp OBJ_id_smime_aa,20L | ||
895 | |||
896 | #define SN_id_smime_aa_ets_CertificateRefs "id-smime-aa-ets-CertificateRefs" | ||
897 | #define NID_id_smime_aa_ets_CertificateRefs 232 | ||
898 | #define OBJ_id_smime_aa_ets_CertificateRefs OBJ_id_smime_aa,21L | ||
899 | |||
900 | #define SN_id_smime_aa_ets_RevocationRefs "id-smime-aa-ets-RevocationRefs" | ||
901 | #define NID_id_smime_aa_ets_RevocationRefs 233 | ||
902 | #define OBJ_id_smime_aa_ets_RevocationRefs OBJ_id_smime_aa,22L | ||
903 | |||
904 | #define SN_id_smime_aa_ets_certValues "id-smime-aa-ets-certValues" | ||
905 | #define NID_id_smime_aa_ets_certValues 234 | ||
906 | #define OBJ_id_smime_aa_ets_certValues OBJ_id_smime_aa,23L | ||
907 | |||
908 | #define SN_id_smime_aa_ets_revocationValues "id-smime-aa-ets-revocationValues" | ||
909 | #define NID_id_smime_aa_ets_revocationValues 235 | ||
910 | #define OBJ_id_smime_aa_ets_revocationValues OBJ_id_smime_aa,24L | ||
911 | |||
912 | #define SN_id_smime_aa_ets_escTimeStamp "id-smime-aa-ets-escTimeStamp" | ||
913 | #define NID_id_smime_aa_ets_escTimeStamp 236 | ||
914 | #define OBJ_id_smime_aa_ets_escTimeStamp OBJ_id_smime_aa,25L | ||
915 | |||
916 | #define SN_id_smime_aa_ets_certCRLTimestamp "id-smime-aa-ets-certCRLTimestamp" | ||
917 | #define NID_id_smime_aa_ets_certCRLTimestamp 237 | ||
918 | #define OBJ_id_smime_aa_ets_certCRLTimestamp OBJ_id_smime_aa,26L | ||
919 | |||
920 | #define SN_id_smime_aa_ets_archiveTimeStamp "id-smime-aa-ets-archiveTimeStamp" | ||
921 | #define NID_id_smime_aa_ets_archiveTimeStamp 238 | ||
922 | #define OBJ_id_smime_aa_ets_archiveTimeStamp OBJ_id_smime_aa,27L | ||
923 | |||
924 | #define SN_id_smime_aa_signatureType "id-smime-aa-signatureType" | ||
925 | #define NID_id_smime_aa_signatureType 239 | ||
926 | #define OBJ_id_smime_aa_signatureType OBJ_id_smime_aa,28L | ||
927 | |||
928 | #define SN_id_smime_aa_dvcs_dvc "id-smime-aa-dvcs-dvc" | ||
929 | #define NID_id_smime_aa_dvcs_dvc 240 | ||
930 | #define OBJ_id_smime_aa_dvcs_dvc OBJ_id_smime_aa,29L | ||
931 | |||
932 | #define SN_id_smime_alg_ESDHwith3DES "id-smime-alg-ESDHwith3DES" | ||
933 | #define NID_id_smime_alg_ESDHwith3DES 241 | ||
934 | #define OBJ_id_smime_alg_ESDHwith3DES OBJ_id_smime_alg,1L | ||
935 | |||
936 | #define SN_id_smime_alg_ESDHwithRC2 "id-smime-alg-ESDHwithRC2" | ||
937 | #define NID_id_smime_alg_ESDHwithRC2 242 | ||
938 | #define OBJ_id_smime_alg_ESDHwithRC2 OBJ_id_smime_alg,2L | ||
939 | |||
940 | #define SN_id_smime_alg_3DESwrap "id-smime-alg-3DESwrap" | ||
941 | #define NID_id_smime_alg_3DESwrap 243 | ||
942 | #define OBJ_id_smime_alg_3DESwrap OBJ_id_smime_alg,3L | ||
943 | |||
944 | #define SN_id_smime_alg_RC2wrap "id-smime-alg-RC2wrap" | ||
945 | #define NID_id_smime_alg_RC2wrap 244 | ||
946 | #define OBJ_id_smime_alg_RC2wrap OBJ_id_smime_alg,4L | ||
947 | |||
948 | #define SN_id_smime_alg_ESDH "id-smime-alg-ESDH" | ||
949 | #define NID_id_smime_alg_ESDH 245 | ||
950 | #define OBJ_id_smime_alg_ESDH OBJ_id_smime_alg,5L | ||
951 | |||
952 | #define SN_id_smime_alg_CMS3DESwrap "id-smime-alg-CMS3DESwrap" | ||
953 | #define NID_id_smime_alg_CMS3DESwrap 246 | ||
954 | #define OBJ_id_smime_alg_CMS3DESwrap OBJ_id_smime_alg,6L | ||
955 | |||
956 | #define SN_id_smime_alg_CMSRC2wrap "id-smime-alg-CMSRC2wrap" | ||
957 | #define NID_id_smime_alg_CMSRC2wrap 247 | ||
958 | #define OBJ_id_smime_alg_CMSRC2wrap OBJ_id_smime_alg,7L | ||
959 | |||
960 | #define SN_id_smime_cd_ldap "id-smime-cd-ldap" | ||
961 | #define NID_id_smime_cd_ldap 248 | ||
962 | #define OBJ_id_smime_cd_ldap OBJ_id_smime_cd,1L | ||
963 | |||
964 | #define SN_id_smime_spq_ets_sqt_uri "id-smime-spq-ets-sqt-uri" | ||
965 | #define NID_id_smime_spq_ets_sqt_uri 249 | ||
966 | #define OBJ_id_smime_spq_ets_sqt_uri OBJ_id_smime_spq,1L | ||
967 | |||
968 | #define SN_id_smime_spq_ets_sqt_unotice "id-smime-spq-ets-sqt-unotice" | ||
969 | #define NID_id_smime_spq_ets_sqt_unotice 250 | ||
970 | #define OBJ_id_smime_spq_ets_sqt_unotice OBJ_id_smime_spq,2L | ||
971 | |||
972 | #define SN_id_smime_cti_ets_proofOfOrigin "id-smime-cti-ets-proofOfOrigin" | ||
973 | #define NID_id_smime_cti_ets_proofOfOrigin 251 | ||
974 | #define OBJ_id_smime_cti_ets_proofOfOrigin OBJ_id_smime_cti,1L | ||
975 | |||
976 | #define SN_id_smime_cti_ets_proofOfReceipt "id-smime-cti-ets-proofOfReceipt" | ||
977 | #define NID_id_smime_cti_ets_proofOfReceipt 252 | ||
978 | #define OBJ_id_smime_cti_ets_proofOfReceipt OBJ_id_smime_cti,2L | ||
979 | |||
980 | #define SN_id_smime_cti_ets_proofOfDelivery "id-smime-cti-ets-proofOfDelivery" | ||
981 | #define NID_id_smime_cti_ets_proofOfDelivery 253 | ||
982 | #define OBJ_id_smime_cti_ets_proofOfDelivery OBJ_id_smime_cti,3L | ||
983 | |||
984 | #define SN_id_smime_cti_ets_proofOfSender "id-smime-cti-ets-proofOfSender" | ||
985 | #define NID_id_smime_cti_ets_proofOfSender 254 | ||
986 | #define OBJ_id_smime_cti_ets_proofOfSender OBJ_id_smime_cti,4L | ||
987 | |||
988 | #define SN_id_smime_cti_ets_proofOfApproval "id-smime-cti-ets-proofOfApproval" | ||
989 | #define NID_id_smime_cti_ets_proofOfApproval 255 | ||
990 | #define OBJ_id_smime_cti_ets_proofOfApproval OBJ_id_smime_cti,5L | ||
991 | |||
992 | #define SN_id_smime_cti_ets_proofOfCreation "id-smime-cti-ets-proofOfCreation" | ||
993 | #define NID_id_smime_cti_ets_proofOfCreation 256 | ||
994 | #define OBJ_id_smime_cti_ets_proofOfCreation OBJ_id_smime_cti,6L | ||
995 | |||
996 | #define LN_friendlyName "friendlyName" | ||
997 | #define NID_friendlyName 156 | ||
998 | #define OBJ_friendlyName OBJ_pkcs9,20L | ||
999 | |||
1000 | #define LN_localKeyID "localKeyID" | ||
1001 | #define NID_localKeyID 157 | ||
1002 | #define OBJ_localKeyID OBJ_pkcs9,21L | ||
1003 | |||
1004 | #define SN_ms_csp_name "CSPName" | ||
1005 | #define LN_ms_csp_name "Microsoft CSP Name" | ||
1006 | #define NID_ms_csp_name 417 | ||
1007 | #define OBJ_ms_csp_name 1L,3L,6L,1L,4L,1L,311L,17L,1L | ||
1008 | |||
1009 | #define OBJ_certTypes OBJ_pkcs9,22L | ||
1010 | |||
1011 | #define LN_x509Certificate "x509Certificate" | ||
1012 | #define NID_x509Certificate 158 | ||
1013 | #define OBJ_x509Certificate OBJ_certTypes,1L | ||
1014 | |||
1015 | #define LN_sdsiCertificate "sdsiCertificate" | ||
1016 | #define NID_sdsiCertificate 159 | ||
1017 | #define OBJ_sdsiCertificate OBJ_certTypes,2L | ||
1018 | |||
1019 | #define OBJ_crlTypes OBJ_pkcs9,23L | ||
1020 | |||
1021 | #define LN_x509Crl "x509Crl" | ||
1022 | #define NID_x509Crl 160 | ||
1023 | #define OBJ_x509Crl OBJ_crlTypes,1L | ||
1024 | |||
1025 | #define OBJ_pkcs12 OBJ_pkcs,12L | ||
1026 | |||
1027 | #define OBJ_pkcs12_pbeids OBJ_pkcs12,1L | ||
1028 | |||
1029 | #define SN_pbe_WithSHA1And128BitRC4 "PBE-SHA1-RC4-128" | ||
1030 | #define LN_pbe_WithSHA1And128BitRC4 "pbeWithSHA1And128BitRC4" | ||
1031 | #define NID_pbe_WithSHA1And128BitRC4 144 | ||
1032 | #define OBJ_pbe_WithSHA1And128BitRC4 OBJ_pkcs12_pbeids,1L | ||
1033 | |||
1034 | #define SN_pbe_WithSHA1And40BitRC4 "PBE-SHA1-RC4-40" | ||
1035 | #define LN_pbe_WithSHA1And40BitRC4 "pbeWithSHA1And40BitRC4" | ||
1036 | #define NID_pbe_WithSHA1And40BitRC4 145 | ||
1037 | #define OBJ_pbe_WithSHA1And40BitRC4 OBJ_pkcs12_pbeids,2L | ||
1038 | |||
1039 | #define SN_pbe_WithSHA1And3_Key_TripleDES_CBC "PBE-SHA1-3DES" | ||
1040 | #define LN_pbe_WithSHA1And3_Key_TripleDES_CBC "pbeWithSHA1And3-KeyTripleDES-CBC" | ||
1041 | #define NID_pbe_WithSHA1And3_Key_TripleDES_CBC 146 | ||
1042 | #define OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC OBJ_pkcs12_pbeids,3L | ||
1043 | |||
1044 | #define SN_pbe_WithSHA1And2_Key_TripleDES_CBC "PBE-SHA1-2DES" | ||
1045 | #define LN_pbe_WithSHA1And2_Key_TripleDES_CBC "pbeWithSHA1And2-KeyTripleDES-CBC" | ||
1046 | #define NID_pbe_WithSHA1And2_Key_TripleDES_CBC 147 | ||
1047 | #define OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC OBJ_pkcs12_pbeids,4L | ||
1048 | |||
1049 | #define SN_pbe_WithSHA1And128BitRC2_CBC "PBE-SHA1-RC2-128" | ||
1050 | #define LN_pbe_WithSHA1And128BitRC2_CBC "pbeWithSHA1And128BitRC2-CBC" | ||
1051 | #define NID_pbe_WithSHA1And128BitRC2_CBC 148 | ||
1052 | #define OBJ_pbe_WithSHA1And128BitRC2_CBC OBJ_pkcs12_pbeids,5L | ||
1053 | |||
1054 | #define SN_pbe_WithSHA1And40BitRC2_CBC "PBE-SHA1-RC2-40" | ||
1055 | #define LN_pbe_WithSHA1And40BitRC2_CBC "pbeWithSHA1And40BitRC2-CBC" | ||
1056 | #define NID_pbe_WithSHA1And40BitRC2_CBC 149 | ||
1057 | #define OBJ_pbe_WithSHA1And40BitRC2_CBC OBJ_pkcs12_pbeids,6L | ||
1058 | |||
1059 | #define OBJ_pkcs12_Version1 OBJ_pkcs12,10L | ||
1060 | |||
1061 | #define OBJ_pkcs12_BagIds OBJ_pkcs12_Version1,1L | ||
1062 | |||
1063 | #define LN_keyBag "keyBag" | ||
1064 | #define NID_keyBag 150 | ||
1065 | #define OBJ_keyBag OBJ_pkcs12_BagIds,1L | ||
1066 | |||
1067 | #define LN_pkcs8ShroudedKeyBag "pkcs8ShroudedKeyBag" | ||
1068 | #define NID_pkcs8ShroudedKeyBag 151 | ||
1069 | #define OBJ_pkcs8ShroudedKeyBag OBJ_pkcs12_BagIds,2L | ||
1070 | |||
1071 | #define LN_certBag "certBag" | ||
1072 | #define NID_certBag 152 | ||
1073 | #define OBJ_certBag OBJ_pkcs12_BagIds,3L | ||
1074 | |||
1075 | #define LN_crlBag "crlBag" | ||
1076 | #define NID_crlBag 153 | ||
1077 | #define OBJ_crlBag OBJ_pkcs12_BagIds,4L | ||
1078 | |||
1079 | #define LN_secretBag "secretBag" | ||
1080 | #define NID_secretBag 154 | ||
1081 | #define OBJ_secretBag OBJ_pkcs12_BagIds,5L | ||
1082 | |||
1083 | #define LN_safeContentsBag "safeContentsBag" | ||
1084 | #define NID_safeContentsBag 155 | ||
1085 | #define OBJ_safeContentsBag OBJ_pkcs12_BagIds,6L | ||
1086 | |||
1087 | #define SN_md2 "MD2" | ||
1088 | #define LN_md2 "md2" | ||
1089 | #define NID_md2 3 | ||
1090 | #define OBJ_md2 OBJ_rsadsi,2L,2L | ||
1091 | |||
1092 | #define SN_md4 "MD4" | ||
1093 | #define LN_md4 "md4" | ||
1094 | #define NID_md4 257 | ||
1095 | #define OBJ_md4 OBJ_rsadsi,2L,4L | ||
1096 | |||
1097 | #define SN_md5 "MD5" | ||
1098 | #define LN_md5 "md5" | ||
1099 | #define NID_md5 4 | ||
1100 | #define OBJ_md5 OBJ_rsadsi,2L,5L | ||
1101 | |||
1102 | #define SN_md5_sha1 "MD5-SHA1" | ||
1103 | #define LN_md5_sha1 "md5-sha1" | ||
1104 | #define NID_md5_sha1 114 | ||
1105 | |||
1106 | #define LN_hmacWithSHA1 "hmacWithSHA1" | ||
1107 | #define NID_hmacWithSHA1 163 | ||
1108 | #define OBJ_hmacWithSHA1 OBJ_rsadsi,2L,7L | ||
1109 | |||
1110 | #define SN_rc2_cbc "RC2-CBC" | ||
1111 | #define LN_rc2_cbc "rc2-cbc" | ||
1112 | #define NID_rc2_cbc 37 | ||
1113 | #define OBJ_rc2_cbc OBJ_rsadsi,3L,2L | ||
1114 | |||
1115 | #define SN_rc2_ecb "RC2-ECB" | ||
1116 | #define LN_rc2_ecb "rc2-ecb" | ||
1117 | #define NID_rc2_ecb 38 | ||
1118 | |||
1119 | #define SN_rc2_cfb64 "RC2-CFB" | ||
1120 | #define LN_rc2_cfb64 "rc2-cfb" | ||
1121 | #define NID_rc2_cfb64 39 | ||
1122 | |||
1123 | #define SN_rc2_ofb64 "RC2-OFB" | ||
1124 | #define LN_rc2_ofb64 "rc2-ofb" | ||
1125 | #define NID_rc2_ofb64 40 | ||
1126 | |||
1127 | #define SN_rc2_40_cbc "RC2-40-CBC" | ||
1128 | #define LN_rc2_40_cbc "rc2-40-cbc" | ||
1129 | #define NID_rc2_40_cbc 98 | ||
1130 | |||
1131 | #define SN_rc2_64_cbc "RC2-64-CBC" | ||
1132 | #define LN_rc2_64_cbc "rc2-64-cbc" | ||
1133 | #define NID_rc2_64_cbc 166 | ||
1134 | |||
1135 | #define SN_rc4 "RC4" | ||
1136 | #define LN_rc4 "rc4" | ||
1137 | #define NID_rc4 5 | ||
1138 | #define OBJ_rc4 OBJ_rsadsi,3L,4L | ||
1139 | |||
1140 | #define SN_rc4_40 "RC4-40" | ||
1141 | #define LN_rc4_40 "rc4-40" | ||
1142 | #define NID_rc4_40 97 | ||
1143 | |||
1144 | #define SN_des_ede3_cbc "DES-EDE3-CBC" | ||
1145 | #define LN_des_ede3_cbc "des-ede3-cbc" | ||
1146 | #define NID_des_ede3_cbc 44 | ||
1147 | #define OBJ_des_ede3_cbc OBJ_rsadsi,3L,7L | ||
1148 | |||
1149 | #define SN_rc5_cbc "RC5-CBC" | ||
1150 | #define LN_rc5_cbc "rc5-cbc" | ||
1151 | #define NID_rc5_cbc 120 | ||
1152 | #define OBJ_rc5_cbc OBJ_rsadsi,3L,8L | ||
1153 | |||
1154 | #define SN_rc5_ecb "RC5-ECB" | ||
1155 | #define LN_rc5_ecb "rc5-ecb" | ||
1156 | #define NID_rc5_ecb 121 | ||
1157 | |||
1158 | #define SN_rc5_cfb64 "RC5-CFB" | ||
1159 | #define LN_rc5_cfb64 "rc5-cfb" | ||
1160 | #define NID_rc5_cfb64 122 | ||
1161 | |||
1162 | #define SN_rc5_ofb64 "RC5-OFB" | ||
1163 | #define LN_rc5_ofb64 "rc5-ofb" | ||
1164 | #define NID_rc5_ofb64 123 | ||
1165 | |||
1166 | #define SN_ms_ext_req "msExtReq" | ||
1167 | #define LN_ms_ext_req "Microsoft Extension Request" | ||
1168 | #define NID_ms_ext_req 171 | ||
1169 | #define OBJ_ms_ext_req 1L,3L,6L,1L,4L,1L,311L,2L,1L,14L | ||
1170 | |||
1171 | #define SN_ms_code_ind "msCodeInd" | ||
1172 | #define LN_ms_code_ind "Microsoft Individual Code Signing" | ||
1173 | #define NID_ms_code_ind 134 | ||
1174 | #define OBJ_ms_code_ind 1L,3L,6L,1L,4L,1L,311L,2L,1L,21L | ||
1175 | |||
1176 | #define SN_ms_code_com "msCodeCom" | ||
1177 | #define LN_ms_code_com "Microsoft Commercial Code Signing" | ||
1178 | #define NID_ms_code_com 135 | ||
1179 | #define OBJ_ms_code_com 1L,3L,6L,1L,4L,1L,311L,2L,1L,22L | ||
1180 | |||
1181 | #define SN_ms_ctl_sign "msCTLSign" | ||
1182 | #define LN_ms_ctl_sign "Microsoft Trust List Signing" | ||
1183 | #define NID_ms_ctl_sign 136 | ||
1184 | #define OBJ_ms_ctl_sign 1L,3L,6L,1L,4L,1L,311L,10L,3L,1L | ||
1185 | |||
1186 | #define SN_ms_sgc "msSGC" | ||
1187 | #define LN_ms_sgc "Microsoft Server Gated Crypto" | ||
1188 | #define NID_ms_sgc 137 | ||
1189 | #define OBJ_ms_sgc 1L,3L,6L,1L,4L,1L,311L,10L,3L,3L | ||
1190 | |||
1191 | #define SN_ms_efs "msEFS" | ||
1192 | #define LN_ms_efs "Microsoft Encrypted File System" | ||
1193 | #define NID_ms_efs 138 | ||
1194 | #define OBJ_ms_efs 1L,3L,6L,1L,4L,1L,311L,10L,3L,4L | ||
1195 | |||
1196 | #define SN_ms_smartcard_login "msSmartcardLogin" | ||
1197 | #define LN_ms_smartcard_login "Microsoft Smartcardlogin" | ||
1198 | #define NID_ms_smartcard_login 648 | ||
1199 | #define OBJ_ms_smartcard_login 1L,3L,6L,1L,4L,1L,311L,20L,2L,2L | ||
1200 | |||
1201 | #define SN_ms_upn "msUPN" | ||
1202 | #define LN_ms_upn "Microsoft Universal Principal Name" | ||
1203 | #define NID_ms_upn 649 | ||
1204 | #define OBJ_ms_upn 1L,3L,6L,1L,4L,1L,311L,20L,2L,3L | ||
1205 | |||
1206 | #define SN_idea_cbc "IDEA-CBC" | ||
1207 | #define LN_idea_cbc "idea-cbc" | ||
1208 | #define NID_idea_cbc 34 | ||
1209 | #define OBJ_idea_cbc 1L,3L,6L,1L,4L,1L,188L,7L,1L,1L,2L | ||
1210 | |||
1211 | #define SN_idea_ecb "IDEA-ECB" | ||
1212 | #define LN_idea_ecb "idea-ecb" | ||
1213 | #define NID_idea_ecb 36 | ||
1214 | |||
1215 | #define SN_idea_cfb64 "IDEA-CFB" | ||
1216 | #define LN_idea_cfb64 "idea-cfb" | ||
1217 | #define NID_idea_cfb64 35 | ||
1218 | |||
1219 | #define SN_idea_ofb64 "IDEA-OFB" | ||
1220 | #define LN_idea_ofb64 "idea-ofb" | ||
1221 | #define NID_idea_ofb64 46 | ||
1222 | |||
1223 | #define SN_bf_cbc "BF-CBC" | ||
1224 | #define LN_bf_cbc "bf-cbc" | ||
1225 | #define NID_bf_cbc 91 | ||
1226 | #define OBJ_bf_cbc 1L,3L,6L,1L,4L,1L,3029L,1L,2L | ||
1227 | |||
1228 | #define SN_bf_ecb "BF-ECB" | ||
1229 | #define LN_bf_ecb "bf-ecb" | ||
1230 | #define NID_bf_ecb 92 | ||
1231 | |||
1232 | #define SN_bf_cfb64 "BF-CFB" | ||
1233 | #define LN_bf_cfb64 "bf-cfb" | ||
1234 | #define NID_bf_cfb64 93 | ||
1235 | |||
1236 | #define SN_bf_ofb64 "BF-OFB" | ||
1237 | #define LN_bf_ofb64 "bf-ofb" | ||
1238 | #define NID_bf_ofb64 94 | ||
1239 | |||
1240 | #define SN_id_pkix "PKIX" | ||
1241 | #define NID_id_pkix 127 | ||
1242 | #define OBJ_id_pkix 1L,3L,6L,1L,5L,5L,7L | ||
1243 | |||
1244 | #define SN_id_pkix_mod "id-pkix-mod" | ||
1245 | #define NID_id_pkix_mod 258 | ||
1246 | #define OBJ_id_pkix_mod OBJ_id_pkix,0L | ||
1247 | |||
1248 | #define SN_id_pe "id-pe" | ||
1249 | #define NID_id_pe 175 | ||
1250 | #define OBJ_id_pe OBJ_id_pkix,1L | ||
1251 | |||
1252 | #define SN_id_qt "id-qt" | ||
1253 | #define NID_id_qt 259 | ||
1254 | #define OBJ_id_qt OBJ_id_pkix,2L | ||
1255 | |||
1256 | #define SN_id_kp "id-kp" | ||
1257 | #define NID_id_kp 128 | ||
1258 | #define OBJ_id_kp OBJ_id_pkix,3L | ||
1259 | |||
1260 | #define SN_id_it "id-it" | ||
1261 | #define NID_id_it 260 | ||
1262 | #define OBJ_id_it OBJ_id_pkix,4L | ||
1263 | |||
1264 | #define SN_id_pkip "id-pkip" | ||
1265 | #define NID_id_pkip 261 | ||
1266 | #define OBJ_id_pkip OBJ_id_pkix,5L | ||
1267 | |||
1268 | #define SN_id_alg "id-alg" | ||
1269 | #define NID_id_alg 262 | ||
1270 | #define OBJ_id_alg OBJ_id_pkix,6L | ||
1271 | |||
1272 | #define SN_id_cmc "id-cmc" | ||
1273 | #define NID_id_cmc 263 | ||
1274 | #define OBJ_id_cmc OBJ_id_pkix,7L | ||
1275 | |||
1276 | #define SN_id_on "id-on" | ||
1277 | #define NID_id_on 264 | ||
1278 | #define OBJ_id_on OBJ_id_pkix,8L | ||
1279 | |||
1280 | #define SN_id_pda "id-pda" | ||
1281 | #define NID_id_pda 265 | ||
1282 | #define OBJ_id_pda OBJ_id_pkix,9L | ||
1283 | |||
1284 | #define SN_id_aca "id-aca" | ||
1285 | #define NID_id_aca 266 | ||
1286 | #define OBJ_id_aca OBJ_id_pkix,10L | ||
1287 | |||
1288 | #define SN_id_qcs "id-qcs" | ||
1289 | #define NID_id_qcs 267 | ||
1290 | #define OBJ_id_qcs OBJ_id_pkix,11L | ||
1291 | |||
1292 | #define SN_id_cct "id-cct" | ||
1293 | #define NID_id_cct 268 | ||
1294 | #define OBJ_id_cct OBJ_id_pkix,12L | ||
1295 | |||
1296 | #define SN_id_ppl "id-ppl" | ||
1297 | #define NID_id_ppl 662 | ||
1298 | #define OBJ_id_ppl OBJ_id_pkix,21L | ||
1299 | |||
1300 | #define SN_id_ad "id-ad" | ||
1301 | #define NID_id_ad 176 | ||
1302 | #define OBJ_id_ad OBJ_id_pkix,48L | ||
1303 | |||
1304 | #define SN_id_pkix1_explicit_88 "id-pkix1-explicit-88" | ||
1305 | #define NID_id_pkix1_explicit_88 269 | ||
1306 | #define OBJ_id_pkix1_explicit_88 OBJ_id_pkix_mod,1L | ||
1307 | |||
1308 | #define SN_id_pkix1_implicit_88 "id-pkix1-implicit-88" | ||
1309 | #define NID_id_pkix1_implicit_88 270 | ||
1310 | #define OBJ_id_pkix1_implicit_88 OBJ_id_pkix_mod,2L | ||
1311 | |||
1312 | #define SN_id_pkix1_explicit_93 "id-pkix1-explicit-93" | ||
1313 | #define NID_id_pkix1_explicit_93 271 | ||
1314 | #define OBJ_id_pkix1_explicit_93 OBJ_id_pkix_mod,3L | ||
1315 | |||
1316 | #define SN_id_pkix1_implicit_93 "id-pkix1-implicit-93" | ||
1317 | #define NID_id_pkix1_implicit_93 272 | ||
1318 | #define OBJ_id_pkix1_implicit_93 OBJ_id_pkix_mod,4L | ||
1319 | |||
1320 | #define SN_id_mod_crmf "id-mod-crmf" | ||
1321 | #define NID_id_mod_crmf 273 | ||
1322 | #define OBJ_id_mod_crmf OBJ_id_pkix_mod,5L | ||
1323 | |||
1324 | #define SN_id_mod_cmc "id-mod-cmc" | ||
1325 | #define NID_id_mod_cmc 274 | ||
1326 | #define OBJ_id_mod_cmc OBJ_id_pkix_mod,6L | ||
1327 | |||
1328 | #define SN_id_mod_kea_profile_88 "id-mod-kea-profile-88" | ||
1329 | #define NID_id_mod_kea_profile_88 275 | ||
1330 | #define OBJ_id_mod_kea_profile_88 OBJ_id_pkix_mod,7L | ||
1331 | |||
1332 | #define SN_id_mod_kea_profile_93 "id-mod-kea-profile-93" | ||
1333 | #define NID_id_mod_kea_profile_93 276 | ||
1334 | #define OBJ_id_mod_kea_profile_93 OBJ_id_pkix_mod,8L | ||
1335 | |||
1336 | #define SN_id_mod_cmp "id-mod-cmp" | ||
1337 | #define NID_id_mod_cmp 277 | ||
1338 | #define OBJ_id_mod_cmp OBJ_id_pkix_mod,9L | ||
1339 | |||
1340 | #define SN_id_mod_qualified_cert_88 "id-mod-qualified-cert-88" | ||
1341 | #define NID_id_mod_qualified_cert_88 278 | ||
1342 | #define OBJ_id_mod_qualified_cert_88 OBJ_id_pkix_mod,10L | ||
1343 | |||
1344 | #define SN_id_mod_qualified_cert_93 "id-mod-qualified-cert-93" | ||
1345 | #define NID_id_mod_qualified_cert_93 279 | ||
1346 | #define OBJ_id_mod_qualified_cert_93 OBJ_id_pkix_mod,11L | ||
1347 | |||
1348 | #define SN_id_mod_attribute_cert "id-mod-attribute-cert" | ||
1349 | #define NID_id_mod_attribute_cert 280 | ||
1350 | #define OBJ_id_mod_attribute_cert OBJ_id_pkix_mod,12L | ||
1351 | |||
1352 | #define SN_id_mod_timestamp_protocol "id-mod-timestamp-protocol" | ||
1353 | #define NID_id_mod_timestamp_protocol 281 | ||
1354 | #define OBJ_id_mod_timestamp_protocol OBJ_id_pkix_mod,13L | ||
1355 | |||
1356 | #define SN_id_mod_ocsp "id-mod-ocsp" | ||
1357 | #define NID_id_mod_ocsp 282 | ||
1358 | #define OBJ_id_mod_ocsp OBJ_id_pkix_mod,14L | ||
1359 | |||
1360 | #define SN_id_mod_dvcs "id-mod-dvcs" | ||
1361 | #define NID_id_mod_dvcs 283 | ||
1362 | #define OBJ_id_mod_dvcs OBJ_id_pkix_mod,15L | ||
1363 | |||
1364 | #define SN_id_mod_cmp2000 "id-mod-cmp2000" | ||
1365 | #define NID_id_mod_cmp2000 284 | ||
1366 | #define OBJ_id_mod_cmp2000 OBJ_id_pkix_mod,16L | ||
1367 | |||
1368 | #define SN_info_access "authorityInfoAccess" | ||
1369 | #define LN_info_access "Authority Information Access" | ||
1370 | #define NID_info_access 177 | ||
1371 | #define OBJ_info_access OBJ_id_pe,1L | ||
1372 | |||
1373 | #define SN_biometricInfo "biometricInfo" | ||
1374 | #define LN_biometricInfo "Biometric Info" | ||
1375 | #define NID_biometricInfo 285 | ||
1376 | #define OBJ_biometricInfo OBJ_id_pe,2L | ||
1377 | |||
1378 | #define SN_qcStatements "qcStatements" | ||
1379 | #define NID_qcStatements 286 | ||
1380 | #define OBJ_qcStatements OBJ_id_pe,3L | ||
1381 | |||
1382 | #define SN_ac_auditEntity "ac-auditEntity" | ||
1383 | #define NID_ac_auditEntity 287 | ||
1384 | #define OBJ_ac_auditEntity OBJ_id_pe,4L | ||
1385 | |||
1386 | #define SN_ac_targeting "ac-targeting" | ||
1387 | #define NID_ac_targeting 288 | ||
1388 | #define OBJ_ac_targeting OBJ_id_pe,5L | ||
1389 | |||
1390 | #define SN_aaControls "aaControls" | ||
1391 | #define NID_aaControls 289 | ||
1392 | #define OBJ_aaControls OBJ_id_pe,6L | ||
1393 | |||
1394 | #define SN_sbgp_ipAddrBlock "sbgp-ipAddrBlock" | ||
1395 | #define NID_sbgp_ipAddrBlock 290 | ||
1396 | #define OBJ_sbgp_ipAddrBlock OBJ_id_pe,7L | ||
1397 | |||
1398 | #define SN_sbgp_autonomousSysNum "sbgp-autonomousSysNum" | ||
1399 | #define NID_sbgp_autonomousSysNum 291 | ||
1400 | #define OBJ_sbgp_autonomousSysNum OBJ_id_pe,8L | ||
1401 | |||
1402 | #define SN_sbgp_routerIdentifier "sbgp-routerIdentifier" | ||
1403 | #define NID_sbgp_routerIdentifier 292 | ||
1404 | #define OBJ_sbgp_routerIdentifier OBJ_id_pe,9L | ||
1405 | |||
1406 | #define SN_ac_proxying "ac-proxying" | ||
1407 | #define NID_ac_proxying 397 | ||
1408 | #define OBJ_ac_proxying OBJ_id_pe,10L | ||
1409 | |||
1410 | #define SN_sinfo_access "subjectInfoAccess" | ||
1411 | #define LN_sinfo_access "Subject Information Access" | ||
1412 | #define NID_sinfo_access 398 | ||
1413 | #define OBJ_sinfo_access OBJ_id_pe,11L | ||
1414 | |||
1415 | #define SN_proxyCertInfo "proxyCertInfo" | ||
1416 | #define LN_proxyCertInfo "Proxy Certificate Information" | ||
1417 | #define NID_proxyCertInfo 663 | ||
1418 | #define OBJ_proxyCertInfo OBJ_id_pe,14L | ||
1419 | |||
1420 | #define SN_id_qt_cps "id-qt-cps" | ||
1421 | #define LN_id_qt_cps "Policy Qualifier CPS" | ||
1422 | #define NID_id_qt_cps 164 | ||
1423 | #define OBJ_id_qt_cps OBJ_id_qt,1L | ||
1424 | |||
1425 | #define SN_id_qt_unotice "id-qt-unotice" | ||
1426 | #define LN_id_qt_unotice "Policy Qualifier User Notice" | ||
1427 | #define NID_id_qt_unotice 165 | ||
1428 | #define OBJ_id_qt_unotice OBJ_id_qt,2L | ||
1429 | |||
1430 | #define SN_textNotice "textNotice" | ||
1431 | #define NID_textNotice 293 | ||
1432 | #define OBJ_textNotice OBJ_id_qt,3L | ||
1433 | |||
1434 | #define SN_server_auth "serverAuth" | ||
1435 | #define LN_server_auth "TLS Web Server Authentication" | ||
1436 | #define NID_server_auth 129 | ||
1437 | #define OBJ_server_auth OBJ_id_kp,1L | ||
1438 | |||
1439 | #define SN_client_auth "clientAuth" | ||
1440 | #define LN_client_auth "TLS Web Client Authentication" | ||
1441 | #define NID_client_auth 130 | ||
1442 | #define OBJ_client_auth OBJ_id_kp,2L | ||
1443 | |||
1444 | #define SN_code_sign "codeSigning" | ||
1445 | #define LN_code_sign "Code Signing" | ||
1446 | #define NID_code_sign 131 | ||
1447 | #define OBJ_code_sign OBJ_id_kp,3L | ||
1448 | |||
1449 | #define SN_email_protect "emailProtection" | ||
1450 | #define LN_email_protect "E-mail Protection" | ||
1451 | #define NID_email_protect 132 | ||
1452 | #define OBJ_email_protect OBJ_id_kp,4L | ||
1453 | |||
1454 | #define SN_ipsecEndSystem "ipsecEndSystem" | ||
1455 | #define LN_ipsecEndSystem "IPSec End System" | ||
1456 | #define NID_ipsecEndSystem 294 | ||
1457 | #define OBJ_ipsecEndSystem OBJ_id_kp,5L | ||
1458 | |||
1459 | #define SN_ipsecTunnel "ipsecTunnel" | ||
1460 | #define LN_ipsecTunnel "IPSec Tunnel" | ||
1461 | #define NID_ipsecTunnel 295 | ||
1462 | #define OBJ_ipsecTunnel OBJ_id_kp,6L | ||
1463 | |||
1464 | #define SN_ipsecUser "ipsecUser" | ||
1465 | #define LN_ipsecUser "IPSec User" | ||
1466 | #define NID_ipsecUser 296 | ||
1467 | #define OBJ_ipsecUser OBJ_id_kp,7L | ||
1468 | |||
1469 | #define SN_time_stamp "timeStamping" | ||
1470 | #define LN_time_stamp "Time Stamping" | ||
1471 | #define NID_time_stamp 133 | ||
1472 | #define OBJ_time_stamp OBJ_id_kp,8L | ||
1473 | |||
1474 | #define SN_OCSP_sign "OCSPSigning" | ||
1475 | #define LN_OCSP_sign "OCSP Signing" | ||
1476 | #define NID_OCSP_sign 180 | ||
1477 | #define OBJ_OCSP_sign OBJ_id_kp,9L | ||
1478 | |||
1479 | #define SN_dvcs "DVCS" | ||
1480 | #define LN_dvcs "dvcs" | ||
1481 | #define NID_dvcs 297 | ||
1482 | #define OBJ_dvcs OBJ_id_kp,10L | ||
1483 | |||
1484 | #define SN_id_it_caProtEncCert "id-it-caProtEncCert" | ||
1485 | #define NID_id_it_caProtEncCert 298 | ||
1486 | #define OBJ_id_it_caProtEncCert OBJ_id_it,1L | ||
1487 | |||
1488 | #define SN_id_it_signKeyPairTypes "id-it-signKeyPairTypes" | ||
1489 | #define NID_id_it_signKeyPairTypes 299 | ||
1490 | #define OBJ_id_it_signKeyPairTypes OBJ_id_it,2L | ||
1491 | |||
1492 | #define SN_id_it_encKeyPairTypes "id-it-encKeyPairTypes" | ||
1493 | #define NID_id_it_encKeyPairTypes 300 | ||
1494 | #define OBJ_id_it_encKeyPairTypes OBJ_id_it,3L | ||
1495 | |||
1496 | #define SN_id_it_preferredSymmAlg "id-it-preferredSymmAlg" | ||
1497 | #define NID_id_it_preferredSymmAlg 301 | ||
1498 | #define OBJ_id_it_preferredSymmAlg OBJ_id_it,4L | ||
1499 | |||
1500 | #define SN_id_it_caKeyUpdateInfo "id-it-caKeyUpdateInfo" | ||
1501 | #define NID_id_it_caKeyUpdateInfo 302 | ||
1502 | #define OBJ_id_it_caKeyUpdateInfo OBJ_id_it,5L | ||
1503 | |||
1504 | #define SN_id_it_currentCRL "id-it-currentCRL" | ||
1505 | #define NID_id_it_currentCRL 303 | ||
1506 | #define OBJ_id_it_currentCRL OBJ_id_it,6L | ||
1507 | |||
1508 | #define SN_id_it_unsupportedOIDs "id-it-unsupportedOIDs" | ||
1509 | #define NID_id_it_unsupportedOIDs 304 | ||
1510 | #define OBJ_id_it_unsupportedOIDs OBJ_id_it,7L | ||
1511 | |||
1512 | #define SN_id_it_subscriptionRequest "id-it-subscriptionRequest" | ||
1513 | #define NID_id_it_subscriptionRequest 305 | ||
1514 | #define OBJ_id_it_subscriptionRequest OBJ_id_it,8L | ||
1515 | |||
1516 | #define SN_id_it_subscriptionResponse "id-it-subscriptionResponse" | ||
1517 | #define NID_id_it_subscriptionResponse 306 | ||
1518 | #define OBJ_id_it_subscriptionResponse OBJ_id_it,9L | ||
1519 | |||
1520 | #define SN_id_it_keyPairParamReq "id-it-keyPairParamReq" | ||
1521 | #define NID_id_it_keyPairParamReq 307 | ||
1522 | #define OBJ_id_it_keyPairParamReq OBJ_id_it,10L | ||
1523 | |||
1524 | #define SN_id_it_keyPairParamRep "id-it-keyPairParamRep" | ||
1525 | #define NID_id_it_keyPairParamRep 308 | ||
1526 | #define OBJ_id_it_keyPairParamRep OBJ_id_it,11L | ||
1527 | |||
1528 | #define SN_id_it_revPassphrase "id-it-revPassphrase" | ||
1529 | #define NID_id_it_revPassphrase 309 | ||
1530 | #define OBJ_id_it_revPassphrase OBJ_id_it,12L | ||
1531 | |||
1532 | #define SN_id_it_implicitConfirm "id-it-implicitConfirm" | ||
1533 | #define NID_id_it_implicitConfirm 310 | ||
1534 | #define OBJ_id_it_implicitConfirm OBJ_id_it,13L | ||
1535 | |||
1536 | #define SN_id_it_confirmWaitTime "id-it-confirmWaitTime" | ||
1537 | #define NID_id_it_confirmWaitTime 311 | ||
1538 | #define OBJ_id_it_confirmWaitTime OBJ_id_it,14L | ||
1539 | |||
1540 | #define SN_id_it_origPKIMessage "id-it-origPKIMessage" | ||
1541 | #define NID_id_it_origPKIMessage 312 | ||
1542 | #define OBJ_id_it_origPKIMessage OBJ_id_it,15L | ||
1543 | |||
1544 | #define SN_id_it_suppLangTags "id-it-suppLangTags" | ||
1545 | #define NID_id_it_suppLangTags 784 | ||
1546 | #define OBJ_id_it_suppLangTags OBJ_id_it,16L | ||
1547 | |||
1548 | #define SN_id_regCtrl "id-regCtrl" | ||
1549 | #define NID_id_regCtrl 313 | ||
1550 | #define OBJ_id_regCtrl OBJ_id_pkip,1L | ||
1551 | |||
1552 | #define SN_id_regInfo "id-regInfo" | ||
1553 | #define NID_id_regInfo 314 | ||
1554 | #define OBJ_id_regInfo OBJ_id_pkip,2L | ||
1555 | |||
1556 | #define SN_id_regCtrl_regToken "id-regCtrl-regToken" | ||
1557 | #define NID_id_regCtrl_regToken 315 | ||
1558 | #define OBJ_id_regCtrl_regToken OBJ_id_regCtrl,1L | ||
1559 | |||
1560 | #define SN_id_regCtrl_authenticator "id-regCtrl-authenticator" | ||
1561 | #define NID_id_regCtrl_authenticator 316 | ||
1562 | #define OBJ_id_regCtrl_authenticator OBJ_id_regCtrl,2L | ||
1563 | |||
1564 | #define SN_id_regCtrl_pkiPublicationInfo "id-regCtrl-pkiPublicationInfo" | ||
1565 | #define NID_id_regCtrl_pkiPublicationInfo 317 | ||
1566 | #define OBJ_id_regCtrl_pkiPublicationInfo OBJ_id_regCtrl,3L | ||
1567 | |||
1568 | #define SN_id_regCtrl_pkiArchiveOptions "id-regCtrl-pkiArchiveOptions" | ||
1569 | #define NID_id_regCtrl_pkiArchiveOptions 318 | ||
1570 | #define OBJ_id_regCtrl_pkiArchiveOptions OBJ_id_regCtrl,4L | ||
1571 | |||
1572 | #define SN_id_regCtrl_oldCertID "id-regCtrl-oldCertID" | ||
1573 | #define NID_id_regCtrl_oldCertID 319 | ||
1574 | #define OBJ_id_regCtrl_oldCertID OBJ_id_regCtrl,5L | ||
1575 | |||
1576 | #define SN_id_regCtrl_protocolEncrKey "id-regCtrl-protocolEncrKey" | ||
1577 | #define NID_id_regCtrl_protocolEncrKey 320 | ||
1578 | #define OBJ_id_regCtrl_protocolEncrKey OBJ_id_regCtrl,6L | ||
1579 | |||
1580 | #define SN_id_regInfo_utf8Pairs "id-regInfo-utf8Pairs" | ||
1581 | #define NID_id_regInfo_utf8Pairs 321 | ||
1582 | #define OBJ_id_regInfo_utf8Pairs OBJ_id_regInfo,1L | ||
1583 | |||
1584 | #define SN_id_regInfo_certReq "id-regInfo-certReq" | ||
1585 | #define NID_id_regInfo_certReq 322 | ||
1586 | #define OBJ_id_regInfo_certReq OBJ_id_regInfo,2L | ||
1587 | |||
1588 | #define SN_id_alg_des40 "id-alg-des40" | ||
1589 | #define NID_id_alg_des40 323 | ||
1590 | #define OBJ_id_alg_des40 OBJ_id_alg,1L | ||
1591 | |||
1592 | #define SN_id_alg_noSignature "id-alg-noSignature" | ||
1593 | #define NID_id_alg_noSignature 324 | ||
1594 | #define OBJ_id_alg_noSignature OBJ_id_alg,2L | ||
1595 | |||
1596 | #define SN_id_alg_dh_sig_hmac_sha1 "id-alg-dh-sig-hmac-sha1" | ||
1597 | #define NID_id_alg_dh_sig_hmac_sha1 325 | ||
1598 | #define OBJ_id_alg_dh_sig_hmac_sha1 OBJ_id_alg,3L | ||
1599 | |||
1600 | #define SN_id_alg_dh_pop "id-alg-dh-pop" | ||
1601 | #define NID_id_alg_dh_pop 326 | ||
1602 | #define OBJ_id_alg_dh_pop OBJ_id_alg,4L | ||
1603 | |||
1604 | #define SN_id_cmc_statusInfo "id-cmc-statusInfo" | ||
1605 | #define NID_id_cmc_statusInfo 327 | ||
1606 | #define OBJ_id_cmc_statusInfo OBJ_id_cmc,1L | ||
1607 | |||
1608 | #define SN_id_cmc_identification "id-cmc-identification" | ||
1609 | #define NID_id_cmc_identification 328 | ||
1610 | #define OBJ_id_cmc_identification OBJ_id_cmc,2L | ||
1611 | |||
1612 | #define SN_id_cmc_identityProof "id-cmc-identityProof" | ||
1613 | #define NID_id_cmc_identityProof 329 | ||
1614 | #define OBJ_id_cmc_identityProof OBJ_id_cmc,3L | ||
1615 | |||
1616 | #define SN_id_cmc_dataReturn "id-cmc-dataReturn" | ||
1617 | #define NID_id_cmc_dataReturn 330 | ||
1618 | #define OBJ_id_cmc_dataReturn OBJ_id_cmc,4L | ||
1619 | |||
1620 | #define SN_id_cmc_transactionId "id-cmc-transactionId" | ||
1621 | #define NID_id_cmc_transactionId 331 | ||
1622 | #define OBJ_id_cmc_transactionId OBJ_id_cmc,5L | ||
1623 | |||
1624 | #define SN_id_cmc_senderNonce "id-cmc-senderNonce" | ||
1625 | #define NID_id_cmc_senderNonce 332 | ||
1626 | #define OBJ_id_cmc_senderNonce OBJ_id_cmc,6L | ||
1627 | |||
1628 | #define SN_id_cmc_recipientNonce "id-cmc-recipientNonce" | ||
1629 | #define NID_id_cmc_recipientNonce 333 | ||
1630 | #define OBJ_id_cmc_recipientNonce OBJ_id_cmc,7L | ||
1631 | |||
1632 | #define SN_id_cmc_addExtensions "id-cmc-addExtensions" | ||
1633 | #define NID_id_cmc_addExtensions 334 | ||
1634 | #define OBJ_id_cmc_addExtensions OBJ_id_cmc,8L | ||
1635 | |||
1636 | #define SN_id_cmc_encryptedPOP "id-cmc-encryptedPOP" | ||
1637 | #define NID_id_cmc_encryptedPOP 335 | ||
1638 | #define OBJ_id_cmc_encryptedPOP OBJ_id_cmc,9L | ||
1639 | |||
1640 | #define SN_id_cmc_decryptedPOP "id-cmc-decryptedPOP" | ||
1641 | #define NID_id_cmc_decryptedPOP 336 | ||
1642 | #define OBJ_id_cmc_decryptedPOP OBJ_id_cmc,10L | ||
1643 | |||
1644 | #define SN_id_cmc_lraPOPWitness "id-cmc-lraPOPWitness" | ||
1645 | #define NID_id_cmc_lraPOPWitness 337 | ||
1646 | #define OBJ_id_cmc_lraPOPWitness OBJ_id_cmc,11L | ||
1647 | |||
1648 | #define SN_id_cmc_getCert "id-cmc-getCert" | ||
1649 | #define NID_id_cmc_getCert 338 | ||
1650 | #define OBJ_id_cmc_getCert OBJ_id_cmc,15L | ||
1651 | |||
1652 | #define SN_id_cmc_getCRL "id-cmc-getCRL" | ||
1653 | #define NID_id_cmc_getCRL 339 | ||
1654 | #define OBJ_id_cmc_getCRL OBJ_id_cmc,16L | ||
1655 | |||
1656 | #define SN_id_cmc_revokeRequest "id-cmc-revokeRequest" | ||
1657 | #define NID_id_cmc_revokeRequest 340 | ||
1658 | #define OBJ_id_cmc_revokeRequest OBJ_id_cmc,17L | ||
1659 | |||
1660 | #define SN_id_cmc_regInfo "id-cmc-regInfo" | ||
1661 | #define NID_id_cmc_regInfo 341 | ||
1662 | #define OBJ_id_cmc_regInfo OBJ_id_cmc,18L | ||
1663 | |||
1664 | #define SN_id_cmc_responseInfo "id-cmc-responseInfo" | ||
1665 | #define NID_id_cmc_responseInfo 342 | ||
1666 | #define OBJ_id_cmc_responseInfo OBJ_id_cmc,19L | ||
1667 | |||
1668 | #define SN_id_cmc_queryPending "id-cmc-queryPending" | ||
1669 | #define NID_id_cmc_queryPending 343 | ||
1670 | #define OBJ_id_cmc_queryPending OBJ_id_cmc,21L | ||
1671 | |||
1672 | #define SN_id_cmc_popLinkRandom "id-cmc-popLinkRandom" | ||
1673 | #define NID_id_cmc_popLinkRandom 344 | ||
1674 | #define OBJ_id_cmc_popLinkRandom OBJ_id_cmc,22L | ||
1675 | |||
1676 | #define SN_id_cmc_popLinkWitness "id-cmc-popLinkWitness" | ||
1677 | #define NID_id_cmc_popLinkWitness 345 | ||
1678 | #define OBJ_id_cmc_popLinkWitness OBJ_id_cmc,23L | ||
1679 | |||
1680 | #define SN_id_cmc_confirmCertAcceptance "id-cmc-confirmCertAcceptance" | ||
1681 | #define NID_id_cmc_confirmCertAcceptance 346 | ||
1682 | #define OBJ_id_cmc_confirmCertAcceptance OBJ_id_cmc,24L | ||
1683 | |||
1684 | #define SN_id_on_personalData "id-on-personalData" | ||
1685 | #define NID_id_on_personalData 347 | ||
1686 | #define OBJ_id_on_personalData OBJ_id_on,1L | ||
1687 | |||
1688 | #define SN_id_pda_dateOfBirth "id-pda-dateOfBirth" | ||
1689 | #define NID_id_pda_dateOfBirth 348 | ||
1690 | #define OBJ_id_pda_dateOfBirth OBJ_id_pda,1L | ||
1691 | |||
1692 | #define SN_id_pda_placeOfBirth "id-pda-placeOfBirth" | ||
1693 | #define NID_id_pda_placeOfBirth 349 | ||
1694 | #define OBJ_id_pda_placeOfBirth OBJ_id_pda,2L | ||
1695 | |||
1696 | #define SN_id_pda_gender "id-pda-gender" | ||
1697 | #define NID_id_pda_gender 351 | ||
1698 | #define OBJ_id_pda_gender OBJ_id_pda,3L | ||
1699 | |||
1700 | #define SN_id_pda_countryOfCitizenship "id-pda-countryOfCitizenship" | ||
1701 | #define NID_id_pda_countryOfCitizenship 352 | ||
1702 | #define OBJ_id_pda_countryOfCitizenship OBJ_id_pda,4L | ||
1703 | |||
1704 | #define SN_id_pda_countryOfResidence "id-pda-countryOfResidence" | ||
1705 | #define NID_id_pda_countryOfResidence 353 | ||
1706 | #define OBJ_id_pda_countryOfResidence OBJ_id_pda,5L | ||
1707 | |||
1708 | #define SN_id_aca_authenticationInfo "id-aca-authenticationInfo" | ||
1709 | #define NID_id_aca_authenticationInfo 354 | ||
1710 | #define OBJ_id_aca_authenticationInfo OBJ_id_aca,1L | ||
1711 | |||
1712 | #define SN_id_aca_accessIdentity "id-aca-accessIdentity" | ||
1713 | #define NID_id_aca_accessIdentity 355 | ||
1714 | #define OBJ_id_aca_accessIdentity OBJ_id_aca,2L | ||
1715 | |||
1716 | #define SN_id_aca_chargingIdentity "id-aca-chargingIdentity" | ||
1717 | #define NID_id_aca_chargingIdentity 356 | ||
1718 | #define OBJ_id_aca_chargingIdentity OBJ_id_aca,3L | ||
1719 | |||
1720 | #define SN_id_aca_group "id-aca-group" | ||
1721 | #define NID_id_aca_group 357 | ||
1722 | #define OBJ_id_aca_group OBJ_id_aca,4L | ||
1723 | |||
1724 | #define SN_id_aca_role "id-aca-role" | ||
1725 | #define NID_id_aca_role 358 | ||
1726 | #define OBJ_id_aca_role OBJ_id_aca,5L | ||
1727 | |||
1728 | #define SN_id_aca_encAttrs "id-aca-encAttrs" | ||
1729 | #define NID_id_aca_encAttrs 399 | ||
1730 | #define OBJ_id_aca_encAttrs OBJ_id_aca,6L | ||
1731 | |||
1732 | #define SN_id_qcs_pkixQCSyntax_v1 "id-qcs-pkixQCSyntax-v1" | ||
1733 | #define NID_id_qcs_pkixQCSyntax_v1 359 | ||
1734 | #define OBJ_id_qcs_pkixQCSyntax_v1 OBJ_id_qcs,1L | ||
1735 | |||
1736 | #define SN_id_cct_crs "id-cct-crs" | ||
1737 | #define NID_id_cct_crs 360 | ||
1738 | #define OBJ_id_cct_crs OBJ_id_cct,1L | ||
1739 | |||
1740 | #define SN_id_cct_PKIData "id-cct-PKIData" | ||
1741 | #define NID_id_cct_PKIData 361 | ||
1742 | #define OBJ_id_cct_PKIData OBJ_id_cct,2L | ||
1743 | |||
1744 | #define SN_id_cct_PKIResponse "id-cct-PKIResponse" | ||
1745 | #define NID_id_cct_PKIResponse 362 | ||
1746 | #define OBJ_id_cct_PKIResponse OBJ_id_cct,3L | ||
1747 | |||
1748 | #define SN_id_ppl_anyLanguage "id-ppl-anyLanguage" | ||
1749 | #define LN_id_ppl_anyLanguage "Any language" | ||
1750 | #define NID_id_ppl_anyLanguage 664 | ||
1751 | #define OBJ_id_ppl_anyLanguage OBJ_id_ppl,0L | ||
1752 | |||
1753 | #define SN_id_ppl_inheritAll "id-ppl-inheritAll" | ||
1754 | #define LN_id_ppl_inheritAll "Inherit all" | ||
1755 | #define NID_id_ppl_inheritAll 665 | ||
1756 | #define OBJ_id_ppl_inheritAll OBJ_id_ppl,1L | ||
1757 | |||
1758 | #define SN_Independent "id-ppl-independent" | ||
1759 | #define LN_Independent "Independent" | ||
1760 | #define NID_Independent 667 | ||
1761 | #define OBJ_Independent OBJ_id_ppl,2L | ||
1762 | |||
1763 | #define SN_ad_OCSP "OCSP" | ||
1764 | #define LN_ad_OCSP "OCSP" | ||
1765 | #define NID_ad_OCSP 178 | ||
1766 | #define OBJ_ad_OCSP OBJ_id_ad,1L | ||
1767 | |||
1768 | #define SN_ad_ca_issuers "caIssuers" | ||
1769 | #define LN_ad_ca_issuers "CA Issuers" | ||
1770 | #define NID_ad_ca_issuers 179 | ||
1771 | #define OBJ_ad_ca_issuers OBJ_id_ad,2L | ||
1772 | |||
1773 | #define SN_ad_timeStamping "ad_timestamping" | ||
1774 | #define LN_ad_timeStamping "AD Time Stamping" | ||
1775 | #define NID_ad_timeStamping 363 | ||
1776 | #define OBJ_ad_timeStamping OBJ_id_ad,3L | ||
1777 | |||
1778 | #define SN_ad_dvcs "AD_DVCS" | ||
1779 | #define LN_ad_dvcs "ad dvcs" | ||
1780 | #define NID_ad_dvcs 364 | ||
1781 | #define OBJ_ad_dvcs OBJ_id_ad,4L | ||
1782 | |||
1783 | #define SN_caRepository "caRepository" | ||
1784 | #define LN_caRepository "CA Repository" | ||
1785 | #define NID_caRepository 785 | ||
1786 | #define OBJ_caRepository OBJ_id_ad,5L | ||
1787 | |||
1788 | #define OBJ_id_pkix_OCSP OBJ_ad_OCSP | ||
1789 | |||
1790 | #define SN_id_pkix_OCSP_basic "basicOCSPResponse" | ||
1791 | #define LN_id_pkix_OCSP_basic "Basic OCSP Response" | ||
1792 | #define NID_id_pkix_OCSP_basic 365 | ||
1793 | #define OBJ_id_pkix_OCSP_basic OBJ_id_pkix_OCSP,1L | ||
1794 | |||
1795 | #define SN_id_pkix_OCSP_Nonce "Nonce" | ||
1796 | #define LN_id_pkix_OCSP_Nonce "OCSP Nonce" | ||
1797 | #define NID_id_pkix_OCSP_Nonce 366 | ||
1798 | #define OBJ_id_pkix_OCSP_Nonce OBJ_id_pkix_OCSP,2L | ||
1799 | |||
1800 | #define SN_id_pkix_OCSP_CrlID "CrlID" | ||
1801 | #define LN_id_pkix_OCSP_CrlID "OCSP CRL ID" | ||
1802 | #define NID_id_pkix_OCSP_CrlID 367 | ||
1803 | #define OBJ_id_pkix_OCSP_CrlID OBJ_id_pkix_OCSP,3L | ||
1804 | |||
1805 | #define SN_id_pkix_OCSP_acceptableResponses "acceptableResponses" | ||
1806 | #define LN_id_pkix_OCSP_acceptableResponses "Acceptable OCSP Responses" | ||
1807 | #define NID_id_pkix_OCSP_acceptableResponses 368 | ||
1808 | #define OBJ_id_pkix_OCSP_acceptableResponses OBJ_id_pkix_OCSP,4L | ||
1809 | |||
1810 | #define SN_id_pkix_OCSP_noCheck "noCheck" | ||
1811 | #define LN_id_pkix_OCSP_noCheck "OCSP No Check" | ||
1812 | #define NID_id_pkix_OCSP_noCheck 369 | ||
1813 | #define OBJ_id_pkix_OCSP_noCheck OBJ_id_pkix_OCSP,5L | ||
1814 | |||
1815 | #define SN_id_pkix_OCSP_archiveCutoff "archiveCutoff" | ||
1816 | #define LN_id_pkix_OCSP_archiveCutoff "OCSP Archive Cutoff" | ||
1817 | #define NID_id_pkix_OCSP_archiveCutoff 370 | ||
1818 | #define OBJ_id_pkix_OCSP_archiveCutoff OBJ_id_pkix_OCSP,6L | ||
1819 | |||
1820 | #define SN_id_pkix_OCSP_serviceLocator "serviceLocator" | ||
1821 | #define LN_id_pkix_OCSP_serviceLocator "OCSP Service Locator" | ||
1822 | #define NID_id_pkix_OCSP_serviceLocator 371 | ||
1823 | #define OBJ_id_pkix_OCSP_serviceLocator OBJ_id_pkix_OCSP,7L | ||
1824 | |||
1825 | #define SN_id_pkix_OCSP_extendedStatus "extendedStatus" | ||
1826 | #define LN_id_pkix_OCSP_extendedStatus "Extended OCSP Status" | ||
1827 | #define NID_id_pkix_OCSP_extendedStatus 372 | ||
1828 | #define OBJ_id_pkix_OCSP_extendedStatus OBJ_id_pkix_OCSP,8L | ||
1829 | |||
1830 | #define SN_id_pkix_OCSP_valid "valid" | ||
1831 | #define NID_id_pkix_OCSP_valid 373 | ||
1832 | #define OBJ_id_pkix_OCSP_valid OBJ_id_pkix_OCSP,9L | ||
1833 | |||
1834 | #define SN_id_pkix_OCSP_path "path" | ||
1835 | #define NID_id_pkix_OCSP_path 374 | ||
1836 | #define OBJ_id_pkix_OCSP_path OBJ_id_pkix_OCSP,10L | ||
1837 | |||
1838 | #define SN_id_pkix_OCSP_trustRoot "trustRoot" | ||
1839 | #define LN_id_pkix_OCSP_trustRoot "Trust Root" | ||
1840 | #define NID_id_pkix_OCSP_trustRoot 375 | ||
1841 | #define OBJ_id_pkix_OCSP_trustRoot OBJ_id_pkix_OCSP,11L | ||
1842 | |||
1843 | #define SN_algorithm "algorithm" | ||
1844 | #define LN_algorithm "algorithm" | ||
1845 | #define NID_algorithm 376 | ||
1846 | #define OBJ_algorithm 1L,3L,14L,3L,2L | ||
1847 | |||
1848 | #define SN_md5WithRSA "RSA-NP-MD5" | ||
1849 | #define LN_md5WithRSA "md5WithRSA" | ||
1850 | #define NID_md5WithRSA 104 | ||
1851 | #define OBJ_md5WithRSA OBJ_algorithm,3L | ||
1852 | |||
1853 | #define SN_des_ecb "DES-ECB" | ||
1854 | #define LN_des_ecb "des-ecb" | ||
1855 | #define NID_des_ecb 29 | ||
1856 | #define OBJ_des_ecb OBJ_algorithm,6L | ||
1857 | |||
1858 | #define SN_des_cbc "DES-CBC" | ||
1859 | #define LN_des_cbc "des-cbc" | ||
1860 | #define NID_des_cbc 31 | ||
1861 | #define OBJ_des_cbc OBJ_algorithm,7L | ||
1862 | |||
1863 | #define SN_des_ofb64 "DES-OFB" | ||
1864 | #define LN_des_ofb64 "des-ofb" | ||
1865 | #define NID_des_ofb64 45 | ||
1866 | #define OBJ_des_ofb64 OBJ_algorithm,8L | ||
1867 | |||
1868 | #define SN_des_cfb64 "DES-CFB" | ||
1869 | #define LN_des_cfb64 "des-cfb" | ||
1870 | #define NID_des_cfb64 30 | ||
1871 | #define OBJ_des_cfb64 OBJ_algorithm,9L | ||
1872 | |||
1873 | #define SN_rsaSignature "rsaSignature" | ||
1874 | #define NID_rsaSignature 377 | ||
1875 | #define OBJ_rsaSignature OBJ_algorithm,11L | ||
1876 | |||
1877 | #define SN_dsa_2 "DSA-old" | ||
1878 | #define LN_dsa_2 "dsaEncryption-old" | ||
1879 | #define NID_dsa_2 67 | ||
1880 | #define OBJ_dsa_2 OBJ_algorithm,12L | ||
1881 | |||
1882 | #define SN_dsaWithSHA "DSA-SHA" | ||
1883 | #define LN_dsaWithSHA "dsaWithSHA" | ||
1884 | #define NID_dsaWithSHA 66 | ||
1885 | #define OBJ_dsaWithSHA OBJ_algorithm,13L | ||
1886 | |||
1887 | #define SN_shaWithRSAEncryption "RSA-SHA" | ||
1888 | #define LN_shaWithRSAEncryption "shaWithRSAEncryption" | ||
1889 | #define NID_shaWithRSAEncryption 42 | ||
1890 | #define OBJ_shaWithRSAEncryption OBJ_algorithm,15L | ||
1891 | |||
1892 | #define SN_des_ede_ecb "DES-EDE" | ||
1893 | #define LN_des_ede_ecb "des-ede" | ||
1894 | #define NID_des_ede_ecb 32 | ||
1895 | #define OBJ_des_ede_ecb OBJ_algorithm,17L | ||
1896 | |||
1897 | #define SN_des_ede3_ecb "DES-EDE3" | ||
1898 | #define LN_des_ede3_ecb "des-ede3" | ||
1899 | #define NID_des_ede3_ecb 33 | ||
1900 | |||
1901 | #define SN_des_ede_cbc "DES-EDE-CBC" | ||
1902 | #define LN_des_ede_cbc "des-ede-cbc" | ||
1903 | #define NID_des_ede_cbc 43 | ||
1904 | |||
1905 | #define SN_des_ede_cfb64 "DES-EDE-CFB" | ||
1906 | #define LN_des_ede_cfb64 "des-ede-cfb" | ||
1907 | #define NID_des_ede_cfb64 60 | ||
1908 | |||
1909 | #define SN_des_ede3_cfb64 "DES-EDE3-CFB" | ||
1910 | #define LN_des_ede3_cfb64 "des-ede3-cfb" | ||
1911 | #define NID_des_ede3_cfb64 61 | ||
1912 | |||
1913 | #define SN_des_ede_ofb64 "DES-EDE-OFB" | ||
1914 | #define LN_des_ede_ofb64 "des-ede-ofb" | ||
1915 | #define NID_des_ede_ofb64 62 | ||
1916 | |||
1917 | #define SN_des_ede3_ofb64 "DES-EDE3-OFB" | ||
1918 | #define LN_des_ede3_ofb64 "des-ede3-ofb" | ||
1919 | #define NID_des_ede3_ofb64 63 | ||
1920 | |||
1921 | #define SN_desx_cbc "DESX-CBC" | ||
1922 | #define LN_desx_cbc "desx-cbc" | ||
1923 | #define NID_desx_cbc 80 | ||
1924 | |||
1925 | #define SN_sha "SHA" | ||
1926 | #define LN_sha "sha" | ||
1927 | #define NID_sha 41 | ||
1928 | #define OBJ_sha OBJ_algorithm,18L | ||
1929 | |||
1930 | #define SN_sha1 "SHA1" | ||
1931 | #define LN_sha1 "sha1" | ||
1932 | #define NID_sha1 64 | ||
1933 | #define OBJ_sha1 OBJ_algorithm,26L | ||
1934 | |||
1935 | #define SN_dsaWithSHA1_2 "DSA-SHA1-old" | ||
1936 | #define LN_dsaWithSHA1_2 "dsaWithSHA1-old" | ||
1937 | #define NID_dsaWithSHA1_2 70 | ||
1938 | #define OBJ_dsaWithSHA1_2 OBJ_algorithm,27L | ||
1939 | |||
1940 | #define SN_sha1WithRSA "RSA-SHA1-2" | ||
1941 | #define LN_sha1WithRSA "sha1WithRSA" | ||
1942 | #define NID_sha1WithRSA 115 | ||
1943 | #define OBJ_sha1WithRSA OBJ_algorithm,29L | ||
1944 | |||
1945 | #define SN_ripemd160 "RIPEMD160" | ||
1946 | #define LN_ripemd160 "ripemd160" | ||
1947 | #define NID_ripemd160 117 | ||
1948 | #define OBJ_ripemd160 1L,3L,36L,3L,2L,1L | ||
1949 | |||
1950 | #define SN_ripemd160WithRSA "RSA-RIPEMD160" | ||
1951 | #define LN_ripemd160WithRSA "ripemd160WithRSA" | ||
1952 | #define NID_ripemd160WithRSA 119 | ||
1953 | #define OBJ_ripemd160WithRSA 1L,3L,36L,3L,3L,1L,2L | ||
1954 | |||
1955 | #define SN_sxnet "SXNetID" | ||
1956 | #define LN_sxnet "Strong Extranet ID" | ||
1957 | #define NID_sxnet 143 | ||
1958 | #define OBJ_sxnet 1L,3L,101L,1L,4L,1L | ||
1959 | |||
1960 | #define SN_X500 "X500" | ||
1961 | #define LN_X500 "directory services (X.500)" | ||
1962 | #define NID_X500 11 | ||
1963 | #define OBJ_X500 2L,5L | ||
1964 | |||
1965 | #define SN_X509 "X509" | ||
1966 | #define NID_X509 12 | ||
1967 | #define OBJ_X509 OBJ_X500,4L | ||
1968 | |||
1969 | #define SN_commonName "CN" | ||
1970 | #define LN_commonName "commonName" | ||
1971 | #define NID_commonName 13 | ||
1972 | #define OBJ_commonName OBJ_X509,3L | ||
1973 | |||
1974 | #define SN_surname "SN" | ||
1975 | #define LN_surname "surname" | ||
1976 | #define NID_surname 100 | ||
1977 | #define OBJ_surname OBJ_X509,4L | ||
1978 | |||
1979 | #define LN_serialNumber "serialNumber" | ||
1980 | #define NID_serialNumber 105 | ||
1981 | #define OBJ_serialNumber OBJ_X509,5L | ||
1982 | |||
1983 | #define SN_countryName "C" | ||
1984 | #define LN_countryName "countryName" | ||
1985 | #define NID_countryName 14 | ||
1986 | #define OBJ_countryName OBJ_X509,6L | ||
1987 | |||
1988 | #define SN_localityName "L" | ||
1989 | #define LN_localityName "localityName" | ||
1990 | #define NID_localityName 15 | ||
1991 | #define OBJ_localityName OBJ_X509,7L | ||
1992 | |||
1993 | #define SN_stateOrProvinceName "ST" | ||
1994 | #define LN_stateOrProvinceName "stateOrProvinceName" | ||
1995 | #define NID_stateOrProvinceName 16 | ||
1996 | #define OBJ_stateOrProvinceName OBJ_X509,8L | ||
1997 | |||
1998 | #define LN_streetAddress "streetAddress" | ||
1999 | #define NID_streetAddress 660 | ||
2000 | #define OBJ_streetAddress OBJ_X509,9L | ||
2001 | |||
2002 | #define SN_organizationName "O" | ||
2003 | #define LN_organizationName "organizationName" | ||
2004 | #define NID_organizationName 17 | ||
2005 | #define OBJ_organizationName OBJ_X509,10L | ||
2006 | |||
2007 | #define SN_organizationalUnitName "OU" | ||
2008 | #define LN_organizationalUnitName "organizationalUnitName" | ||
2009 | #define NID_organizationalUnitName 18 | ||
2010 | #define OBJ_organizationalUnitName OBJ_X509,11L | ||
2011 | |||
2012 | #define LN_title "title" | ||
2013 | #define NID_title 106 | ||
2014 | #define OBJ_title OBJ_X509,12L | ||
2015 | |||
2016 | #define LN_description "description" | ||
2017 | #define NID_description 107 | ||
2018 | #define OBJ_description OBJ_X509,13L | ||
2019 | |||
2020 | #define LN_postalCode "postalCode" | ||
2021 | #define NID_postalCode 661 | ||
2022 | #define OBJ_postalCode OBJ_X509,17L | ||
2023 | |||
2024 | #define SN_name "name" | ||
2025 | #define LN_name "name" | ||
2026 | #define NID_name 173 | ||
2027 | #define OBJ_name OBJ_X509,41L | ||
2028 | |||
2029 | #define SN_givenName "GN" | ||
2030 | #define LN_givenName "givenName" | ||
2031 | #define NID_givenName 99 | ||
2032 | #define OBJ_givenName OBJ_X509,42L | ||
2033 | |||
2034 | #define LN_initials "initials" | ||
2035 | #define NID_initials 101 | ||
2036 | #define OBJ_initials OBJ_X509,43L | ||
2037 | |||
2038 | #define LN_generationQualifier "generationQualifier" | ||
2039 | #define NID_generationQualifier 509 | ||
2040 | #define OBJ_generationQualifier OBJ_X509,44L | ||
2041 | |||
2042 | #define LN_x500UniqueIdentifier "x500UniqueIdentifier" | ||
2043 | #define NID_x500UniqueIdentifier 503 | ||
2044 | #define OBJ_x500UniqueIdentifier OBJ_X509,45L | ||
2045 | |||
2046 | #define SN_dnQualifier "dnQualifier" | ||
2047 | #define LN_dnQualifier "dnQualifier" | ||
2048 | #define NID_dnQualifier 174 | ||
2049 | #define OBJ_dnQualifier OBJ_X509,46L | ||
2050 | |||
2051 | #define LN_pseudonym "pseudonym" | ||
2052 | #define NID_pseudonym 510 | ||
2053 | #define OBJ_pseudonym OBJ_X509,65L | ||
2054 | |||
2055 | #define SN_role "role" | ||
2056 | #define LN_role "role" | ||
2057 | #define NID_role 400 | ||
2058 | #define OBJ_role OBJ_X509,72L | ||
2059 | |||
2060 | #define SN_X500algorithms "X500algorithms" | ||
2061 | #define LN_X500algorithms "directory services - algorithms" | ||
2062 | #define NID_X500algorithms 378 | ||
2063 | #define OBJ_X500algorithms OBJ_X500,8L | ||
2064 | |||
2065 | #define SN_rsa "RSA" | ||
2066 | #define LN_rsa "rsa" | ||
2067 | #define NID_rsa 19 | ||
2068 | #define OBJ_rsa OBJ_X500algorithms,1L,1L | ||
2069 | |||
2070 | #define SN_mdc2WithRSA "RSA-MDC2" | ||
2071 | #define LN_mdc2WithRSA "mdc2WithRSA" | ||
2072 | #define NID_mdc2WithRSA 96 | ||
2073 | #define OBJ_mdc2WithRSA OBJ_X500algorithms,3L,100L | ||
2074 | |||
2075 | #define SN_mdc2 "MDC2" | ||
2076 | #define LN_mdc2 "mdc2" | ||
2077 | #define NID_mdc2 95 | ||
2078 | #define OBJ_mdc2 OBJ_X500algorithms,3L,101L | ||
2079 | |||
2080 | #define SN_id_ce "id-ce" | ||
2081 | #define NID_id_ce 81 | ||
2082 | #define OBJ_id_ce OBJ_X500,29L | ||
2083 | |||
2084 | #define SN_subject_directory_attributes "subjectDirectoryAttributes" | ||
2085 | #define LN_subject_directory_attributes "X509v3 Subject Directory Attributes" | ||
2086 | #define NID_subject_directory_attributes 769 | ||
2087 | #define OBJ_subject_directory_attributes OBJ_id_ce,9L | ||
2088 | |||
2089 | #define SN_subject_key_identifier "subjectKeyIdentifier" | ||
2090 | #define LN_subject_key_identifier "X509v3 Subject Key Identifier" | ||
2091 | #define NID_subject_key_identifier 82 | ||
2092 | #define OBJ_subject_key_identifier OBJ_id_ce,14L | ||
2093 | |||
2094 | #define SN_key_usage "keyUsage" | ||
2095 | #define LN_key_usage "X509v3 Key Usage" | ||
2096 | #define NID_key_usage 83 | ||
2097 | #define OBJ_key_usage OBJ_id_ce,15L | ||
2098 | |||
2099 | #define SN_private_key_usage_period "privateKeyUsagePeriod" | ||
2100 | #define LN_private_key_usage_period "X509v3 Private Key Usage Period" | ||
2101 | #define NID_private_key_usage_period 84 | ||
2102 | #define OBJ_private_key_usage_period OBJ_id_ce,16L | ||
2103 | |||
2104 | #define SN_subject_alt_name "subjectAltName" | ||
2105 | #define LN_subject_alt_name "X509v3 Subject Alternative Name" | ||
2106 | #define NID_subject_alt_name 85 | ||
2107 | #define OBJ_subject_alt_name OBJ_id_ce,17L | ||
2108 | |||
2109 | #define SN_issuer_alt_name "issuerAltName" | ||
2110 | #define LN_issuer_alt_name "X509v3 Issuer Alternative Name" | ||
2111 | #define NID_issuer_alt_name 86 | ||
2112 | #define OBJ_issuer_alt_name OBJ_id_ce,18L | ||
2113 | |||
2114 | #define SN_basic_constraints "basicConstraints" | ||
2115 | #define LN_basic_constraints "X509v3 Basic Constraints" | ||
2116 | #define NID_basic_constraints 87 | ||
2117 | #define OBJ_basic_constraints OBJ_id_ce,19L | ||
2118 | |||
2119 | #define SN_crl_number "crlNumber" | ||
2120 | #define LN_crl_number "X509v3 CRL Number" | ||
2121 | #define NID_crl_number 88 | ||
2122 | #define OBJ_crl_number OBJ_id_ce,20L | ||
2123 | |||
2124 | #define SN_crl_reason "CRLReason" | ||
2125 | #define LN_crl_reason "X509v3 CRL Reason Code" | ||
2126 | #define NID_crl_reason 141 | ||
2127 | #define OBJ_crl_reason OBJ_id_ce,21L | ||
2128 | |||
2129 | #define SN_invalidity_date "invalidityDate" | ||
2130 | #define LN_invalidity_date "Invalidity Date" | ||
2131 | #define NID_invalidity_date 142 | ||
2132 | #define OBJ_invalidity_date OBJ_id_ce,24L | ||
2133 | |||
2134 | #define SN_delta_crl "deltaCRL" | ||
2135 | #define LN_delta_crl "X509v3 Delta CRL Indicator" | ||
2136 | #define NID_delta_crl 140 | ||
2137 | #define OBJ_delta_crl OBJ_id_ce,27L | ||
2138 | |||
2139 | #define SN_issuing_distribution_point "issuingDistributionPoint" | ||
2140 | #define LN_issuing_distribution_point "X509v3 Issuing Distrubution Point" | ||
2141 | #define NID_issuing_distribution_point 770 | ||
2142 | #define OBJ_issuing_distribution_point OBJ_id_ce,28L | ||
2143 | |||
2144 | #define SN_certificate_issuer "certificateIssuer" | ||
2145 | #define LN_certificate_issuer "X509v3 Certificate Issuer" | ||
2146 | #define NID_certificate_issuer 771 | ||
2147 | #define OBJ_certificate_issuer OBJ_id_ce,29L | ||
2148 | |||
2149 | #define SN_name_constraints "nameConstraints" | ||
2150 | #define LN_name_constraints "X509v3 Name Constraints" | ||
2151 | #define NID_name_constraints 666 | ||
2152 | #define OBJ_name_constraints OBJ_id_ce,30L | ||
2153 | |||
2154 | #define SN_crl_distribution_points "crlDistributionPoints" | ||
2155 | #define LN_crl_distribution_points "X509v3 CRL Distribution Points" | ||
2156 | #define NID_crl_distribution_points 103 | ||
2157 | #define OBJ_crl_distribution_points OBJ_id_ce,31L | ||
2158 | |||
2159 | #define SN_certificate_policies "certificatePolicies" | ||
2160 | #define LN_certificate_policies "X509v3 Certificate Policies" | ||
2161 | #define NID_certificate_policies 89 | ||
2162 | #define OBJ_certificate_policies OBJ_id_ce,32L | ||
2163 | |||
2164 | #define SN_any_policy "anyPolicy" | ||
2165 | #define LN_any_policy "X509v3 Any Policy" | ||
2166 | #define NID_any_policy 746 | ||
2167 | #define OBJ_any_policy OBJ_certificate_policies,0L | ||
2168 | |||
2169 | #define SN_policy_mappings "policyMappings" | ||
2170 | #define LN_policy_mappings "X509v3 Policy Mappings" | ||
2171 | #define NID_policy_mappings 747 | ||
2172 | #define OBJ_policy_mappings OBJ_id_ce,33L | ||
2173 | |||
2174 | #define SN_authority_key_identifier "authorityKeyIdentifier" | ||
2175 | #define LN_authority_key_identifier "X509v3 Authority Key Identifier" | ||
2176 | #define NID_authority_key_identifier 90 | ||
2177 | #define OBJ_authority_key_identifier OBJ_id_ce,35L | ||
2178 | |||
2179 | #define SN_policy_constraints "policyConstraints" | ||
2180 | #define LN_policy_constraints "X509v3 Policy Constraints" | ||
2181 | #define NID_policy_constraints 401 | ||
2182 | #define OBJ_policy_constraints OBJ_id_ce,36L | ||
2183 | |||
2184 | #define SN_ext_key_usage "extendedKeyUsage" | ||
2185 | #define LN_ext_key_usage "X509v3 Extended Key Usage" | ||
2186 | #define NID_ext_key_usage 126 | ||
2187 | #define OBJ_ext_key_usage OBJ_id_ce,37L | ||
2188 | |||
2189 | #define SN_inhibit_any_policy "inhibitAnyPolicy" | ||
2190 | #define LN_inhibit_any_policy "X509v3 Inhibit Any Policy" | ||
2191 | #define NID_inhibit_any_policy 748 | ||
2192 | #define OBJ_inhibit_any_policy OBJ_id_ce,54L | ||
2193 | |||
2194 | #define SN_target_information "targetInformation" | ||
2195 | #define LN_target_information "X509v3 AC Targeting" | ||
2196 | #define NID_target_information 402 | ||
2197 | #define OBJ_target_information OBJ_id_ce,55L | ||
2198 | |||
2199 | #define SN_no_rev_avail "noRevAvail" | ||
2200 | #define LN_no_rev_avail "X509v3 No Revocation Available" | ||
2201 | #define NID_no_rev_avail 403 | ||
2202 | #define OBJ_no_rev_avail OBJ_id_ce,56L | ||
2203 | |||
2204 | #define SN_netscape "Netscape" | ||
2205 | #define LN_netscape "Netscape Communications Corp." | ||
2206 | #define NID_netscape 57 | ||
2207 | #define OBJ_netscape 2L,16L,840L,1L,113730L | ||
2208 | |||
2209 | #define SN_netscape_cert_extension "nsCertExt" | ||
2210 | #define LN_netscape_cert_extension "Netscape Certificate Extension" | ||
2211 | #define NID_netscape_cert_extension 58 | ||
2212 | #define OBJ_netscape_cert_extension OBJ_netscape,1L | ||
2213 | |||
2214 | #define SN_netscape_data_type "nsDataType" | ||
2215 | #define LN_netscape_data_type "Netscape Data Type" | ||
2216 | #define NID_netscape_data_type 59 | ||
2217 | #define OBJ_netscape_data_type OBJ_netscape,2L | ||
2218 | |||
2219 | #define SN_netscape_cert_type "nsCertType" | ||
2220 | #define LN_netscape_cert_type "Netscape Cert Type" | ||
2221 | #define NID_netscape_cert_type 71 | ||
2222 | #define OBJ_netscape_cert_type OBJ_netscape_cert_extension,1L | ||
2223 | |||
2224 | #define SN_netscape_base_url "nsBaseUrl" | ||
2225 | #define LN_netscape_base_url "Netscape Base Url" | ||
2226 | #define NID_netscape_base_url 72 | ||
2227 | #define OBJ_netscape_base_url OBJ_netscape_cert_extension,2L | ||
2228 | |||
2229 | #define SN_netscape_revocation_url "nsRevocationUrl" | ||
2230 | #define LN_netscape_revocation_url "Netscape Revocation Url" | ||
2231 | #define NID_netscape_revocation_url 73 | ||
2232 | #define OBJ_netscape_revocation_url OBJ_netscape_cert_extension,3L | ||
2233 | |||
2234 | #define SN_netscape_ca_revocation_url "nsCaRevocationUrl" | ||
2235 | #define LN_netscape_ca_revocation_url "Netscape CA Revocation Url" | ||
2236 | #define NID_netscape_ca_revocation_url 74 | ||
2237 | #define OBJ_netscape_ca_revocation_url OBJ_netscape_cert_extension,4L | ||
2238 | |||
2239 | #define SN_netscape_renewal_url "nsRenewalUrl" | ||
2240 | #define LN_netscape_renewal_url "Netscape Renewal Url" | ||
2241 | #define NID_netscape_renewal_url 75 | ||
2242 | #define OBJ_netscape_renewal_url OBJ_netscape_cert_extension,7L | ||
2243 | |||
2244 | #define SN_netscape_ca_policy_url "nsCaPolicyUrl" | ||
2245 | #define LN_netscape_ca_policy_url "Netscape CA Policy Url" | ||
2246 | #define NID_netscape_ca_policy_url 76 | ||
2247 | #define OBJ_netscape_ca_policy_url OBJ_netscape_cert_extension,8L | ||
2248 | |||
2249 | #define SN_netscape_ssl_server_name "nsSslServerName" | ||
2250 | #define LN_netscape_ssl_server_name "Netscape SSL Server Name" | ||
2251 | #define NID_netscape_ssl_server_name 77 | ||
2252 | #define OBJ_netscape_ssl_server_name OBJ_netscape_cert_extension,12L | ||
2253 | |||
2254 | #define SN_netscape_comment "nsComment" | ||
2255 | #define LN_netscape_comment "Netscape Comment" | ||
2256 | #define NID_netscape_comment 78 | ||
2257 | #define OBJ_netscape_comment OBJ_netscape_cert_extension,13L | ||
2258 | |||
2259 | #define SN_netscape_cert_sequence "nsCertSequence" | ||
2260 | #define LN_netscape_cert_sequence "Netscape Certificate Sequence" | ||
2261 | #define NID_netscape_cert_sequence 79 | ||
2262 | #define OBJ_netscape_cert_sequence OBJ_netscape_data_type,5L | ||
2263 | |||
2264 | #define SN_ns_sgc "nsSGC" | ||
2265 | #define LN_ns_sgc "Netscape Server Gated Crypto" | ||
2266 | #define NID_ns_sgc 139 | ||
2267 | #define OBJ_ns_sgc OBJ_netscape,4L,1L | ||
2268 | |||
2269 | #define SN_org "ORG" | ||
2270 | #define LN_org "org" | ||
2271 | #define NID_org 379 | ||
2272 | #define OBJ_org OBJ_iso,3L | ||
2273 | |||
2274 | #define SN_dod "DOD" | ||
2275 | #define LN_dod "dod" | ||
2276 | #define NID_dod 380 | ||
2277 | #define OBJ_dod OBJ_org,6L | ||
2278 | |||
2279 | #define SN_iana "IANA" | ||
2280 | #define LN_iana "iana" | ||
2281 | #define NID_iana 381 | ||
2282 | #define OBJ_iana OBJ_dod,1L | ||
2283 | |||
2284 | #define OBJ_internet OBJ_iana | ||
2285 | |||
2286 | #define SN_Directory "directory" | ||
2287 | #define LN_Directory "Directory" | ||
2288 | #define NID_Directory 382 | ||
2289 | #define OBJ_Directory OBJ_internet,1L | ||
2290 | |||
2291 | #define SN_Management "mgmt" | ||
2292 | #define LN_Management "Management" | ||
2293 | #define NID_Management 383 | ||
2294 | #define OBJ_Management OBJ_internet,2L | ||
2295 | |||
2296 | #define SN_Experimental "experimental" | ||
2297 | #define LN_Experimental "Experimental" | ||
2298 | #define NID_Experimental 384 | ||
2299 | #define OBJ_Experimental OBJ_internet,3L | ||
2300 | |||
2301 | #define SN_Private "private" | ||
2302 | #define LN_Private "Private" | ||
2303 | #define NID_Private 385 | ||
2304 | #define OBJ_Private OBJ_internet,4L | ||
2305 | |||
2306 | #define SN_Security "security" | ||
2307 | #define LN_Security "Security" | ||
2308 | #define NID_Security 386 | ||
2309 | #define OBJ_Security OBJ_internet,5L | ||
2310 | |||
2311 | #define SN_SNMPv2 "snmpv2" | ||
2312 | #define LN_SNMPv2 "SNMPv2" | ||
2313 | #define NID_SNMPv2 387 | ||
2314 | #define OBJ_SNMPv2 OBJ_internet,6L | ||
2315 | |||
2316 | #define LN_Mail "Mail" | ||
2317 | #define NID_Mail 388 | ||
2318 | #define OBJ_Mail OBJ_internet,7L | ||
2319 | |||
2320 | #define SN_Enterprises "enterprises" | ||
2321 | #define LN_Enterprises "Enterprises" | ||
2322 | #define NID_Enterprises 389 | ||
2323 | #define OBJ_Enterprises OBJ_Private,1L | ||
2324 | |||
2325 | #define SN_dcObject "dcobject" | ||
2326 | #define LN_dcObject "dcObject" | ||
2327 | #define NID_dcObject 390 | ||
2328 | #define OBJ_dcObject OBJ_Enterprises,1466L,344L | ||
2329 | |||
2330 | #define SN_mime_mhs "mime-mhs" | ||
2331 | #define LN_mime_mhs "MIME MHS" | ||
2332 | #define NID_mime_mhs 504 | ||
2333 | #define OBJ_mime_mhs OBJ_Mail,1L | ||
2334 | |||
2335 | #define SN_mime_mhs_headings "mime-mhs-headings" | ||
2336 | #define LN_mime_mhs_headings "mime-mhs-headings" | ||
2337 | #define NID_mime_mhs_headings 505 | ||
2338 | #define OBJ_mime_mhs_headings OBJ_mime_mhs,1L | ||
2339 | |||
2340 | #define SN_mime_mhs_bodies "mime-mhs-bodies" | ||
2341 | #define LN_mime_mhs_bodies "mime-mhs-bodies" | ||
2342 | #define NID_mime_mhs_bodies 506 | ||
2343 | #define OBJ_mime_mhs_bodies OBJ_mime_mhs,2L | ||
2344 | |||
2345 | #define SN_id_hex_partial_message "id-hex-partial-message" | ||
2346 | #define LN_id_hex_partial_message "id-hex-partial-message" | ||
2347 | #define NID_id_hex_partial_message 507 | ||
2348 | #define OBJ_id_hex_partial_message OBJ_mime_mhs_headings,1L | ||
2349 | |||
2350 | #define SN_id_hex_multipart_message "id-hex-multipart-message" | ||
2351 | #define LN_id_hex_multipart_message "id-hex-multipart-message" | ||
2352 | #define NID_id_hex_multipart_message 508 | ||
2353 | #define OBJ_id_hex_multipart_message OBJ_mime_mhs_headings,2L | ||
2354 | |||
2355 | #define SN_rle_compression "RLE" | ||
2356 | #define LN_rle_compression "run length compression" | ||
2357 | #define NID_rle_compression 124 | ||
2358 | #define OBJ_rle_compression 1L,1L,1L,1L,666L,1L | ||
2359 | |||
2360 | #define SN_zlib_compression "ZLIB" | ||
2361 | #define LN_zlib_compression "zlib compression" | ||
2362 | #define NID_zlib_compression 125 | ||
2363 | #define OBJ_zlib_compression OBJ_id_smime_alg,8L | ||
2364 | |||
2365 | #define OBJ_csor 2L,16L,840L,1L,101L,3L | ||
2366 | |||
2367 | #define OBJ_nistAlgorithms OBJ_csor,4L | ||
2368 | |||
2369 | #define OBJ_aes OBJ_nistAlgorithms,1L | ||
2370 | |||
2371 | #define SN_aes_128_ecb "AES-128-ECB" | ||
2372 | #define LN_aes_128_ecb "aes-128-ecb" | ||
2373 | #define NID_aes_128_ecb 418 | ||
2374 | #define OBJ_aes_128_ecb OBJ_aes,1L | ||
2375 | |||
2376 | #define SN_aes_128_cbc "AES-128-CBC" | ||
2377 | #define LN_aes_128_cbc "aes-128-cbc" | ||
2378 | #define NID_aes_128_cbc 419 | ||
2379 | #define OBJ_aes_128_cbc OBJ_aes,2L | ||
2380 | |||
2381 | #define SN_aes_128_ofb128 "AES-128-OFB" | ||
2382 | #define LN_aes_128_ofb128 "aes-128-ofb" | ||
2383 | #define NID_aes_128_ofb128 420 | ||
2384 | #define OBJ_aes_128_ofb128 OBJ_aes,3L | ||
2385 | |||
2386 | #define SN_aes_128_cfb128 "AES-128-CFB" | ||
2387 | #define LN_aes_128_cfb128 "aes-128-cfb" | ||
2388 | #define NID_aes_128_cfb128 421 | ||
2389 | #define OBJ_aes_128_cfb128 OBJ_aes,4L | ||
2390 | |||
2391 | #define SN_aes_192_ecb "AES-192-ECB" | ||
2392 | #define LN_aes_192_ecb "aes-192-ecb" | ||
2393 | #define NID_aes_192_ecb 422 | ||
2394 | #define OBJ_aes_192_ecb OBJ_aes,21L | ||
2395 | |||
2396 | #define SN_aes_192_cbc "AES-192-CBC" | ||
2397 | #define LN_aes_192_cbc "aes-192-cbc" | ||
2398 | #define NID_aes_192_cbc 423 | ||
2399 | #define OBJ_aes_192_cbc OBJ_aes,22L | ||
2400 | |||
2401 | #define SN_aes_192_ofb128 "AES-192-OFB" | ||
2402 | #define LN_aes_192_ofb128 "aes-192-ofb" | ||
2403 | #define NID_aes_192_ofb128 424 | ||
2404 | #define OBJ_aes_192_ofb128 OBJ_aes,23L | ||
2405 | |||
2406 | #define SN_aes_192_cfb128 "AES-192-CFB" | ||
2407 | #define LN_aes_192_cfb128 "aes-192-cfb" | ||
2408 | #define NID_aes_192_cfb128 425 | ||
2409 | #define OBJ_aes_192_cfb128 OBJ_aes,24L | ||
2410 | |||
2411 | #define SN_aes_256_ecb "AES-256-ECB" | ||
2412 | #define LN_aes_256_ecb "aes-256-ecb" | ||
2413 | #define NID_aes_256_ecb 426 | ||
2414 | #define OBJ_aes_256_ecb OBJ_aes,41L | ||
2415 | |||
2416 | #define SN_aes_256_cbc "AES-256-CBC" | ||
2417 | #define LN_aes_256_cbc "aes-256-cbc" | ||
2418 | #define NID_aes_256_cbc 427 | ||
2419 | #define OBJ_aes_256_cbc OBJ_aes,42L | ||
2420 | |||
2421 | #define SN_aes_256_ofb128 "AES-256-OFB" | ||
2422 | #define LN_aes_256_ofb128 "aes-256-ofb" | ||
2423 | #define NID_aes_256_ofb128 428 | ||
2424 | #define OBJ_aes_256_ofb128 OBJ_aes,43L | ||
2425 | |||
2426 | #define SN_aes_256_cfb128 "AES-256-CFB" | ||
2427 | #define LN_aes_256_cfb128 "aes-256-cfb" | ||
2428 | #define NID_aes_256_cfb128 429 | ||
2429 | #define OBJ_aes_256_cfb128 OBJ_aes,44L | ||
2430 | |||
2431 | #define SN_aes_128_cfb1 "AES-128-CFB1" | ||
2432 | #define LN_aes_128_cfb1 "aes-128-cfb1" | ||
2433 | #define NID_aes_128_cfb1 650 | ||
2434 | |||
2435 | #define SN_aes_192_cfb1 "AES-192-CFB1" | ||
2436 | #define LN_aes_192_cfb1 "aes-192-cfb1" | ||
2437 | #define NID_aes_192_cfb1 651 | ||
2438 | |||
2439 | #define SN_aes_256_cfb1 "AES-256-CFB1" | ||
2440 | #define LN_aes_256_cfb1 "aes-256-cfb1" | ||
2441 | #define NID_aes_256_cfb1 652 | ||
2442 | |||
2443 | #define SN_aes_128_cfb8 "AES-128-CFB8" | ||
2444 | #define LN_aes_128_cfb8 "aes-128-cfb8" | ||
2445 | #define NID_aes_128_cfb8 653 | ||
2446 | |||
2447 | #define SN_aes_192_cfb8 "AES-192-CFB8" | ||
2448 | #define LN_aes_192_cfb8 "aes-192-cfb8" | ||
2449 | #define NID_aes_192_cfb8 654 | ||
2450 | |||
2451 | #define SN_aes_256_cfb8 "AES-256-CFB8" | ||
2452 | #define LN_aes_256_cfb8 "aes-256-cfb8" | ||
2453 | #define NID_aes_256_cfb8 655 | ||
2454 | |||
2455 | #define SN_des_cfb1 "DES-CFB1" | ||
2456 | #define LN_des_cfb1 "des-cfb1" | ||
2457 | #define NID_des_cfb1 656 | ||
2458 | |||
2459 | #define SN_des_cfb8 "DES-CFB8" | ||
2460 | #define LN_des_cfb8 "des-cfb8" | ||
2461 | #define NID_des_cfb8 657 | ||
2462 | |||
2463 | #define SN_des_ede3_cfb1 "DES-EDE3-CFB1" | ||
2464 | #define LN_des_ede3_cfb1 "des-ede3-cfb1" | ||
2465 | #define NID_des_ede3_cfb1 658 | ||
2466 | |||
2467 | #define SN_des_ede3_cfb8 "DES-EDE3-CFB8" | ||
2468 | #define LN_des_ede3_cfb8 "des-ede3-cfb8" | ||
2469 | #define NID_des_ede3_cfb8 659 | ||
2470 | |||
2471 | #define SN_id_aes128_wrap "id-aes128-wrap" | ||
2472 | #define NID_id_aes128_wrap 788 | ||
2473 | #define OBJ_id_aes128_wrap OBJ_aes,5L | ||
2474 | |||
2475 | #define SN_id_aes192_wrap "id-aes192-wrap" | ||
2476 | #define NID_id_aes192_wrap 789 | ||
2477 | #define OBJ_id_aes192_wrap OBJ_aes,25L | ||
2478 | |||
2479 | #define SN_id_aes256_wrap "id-aes256-wrap" | ||
2480 | #define NID_id_aes256_wrap 790 | ||
2481 | #define OBJ_id_aes256_wrap OBJ_aes,45L | ||
2482 | |||
2483 | #define OBJ_nist_hashalgs OBJ_nistAlgorithms,2L | ||
2484 | |||
2485 | #define SN_sha256 "SHA256" | ||
2486 | #define LN_sha256 "sha256" | ||
2487 | #define NID_sha256 672 | ||
2488 | #define OBJ_sha256 OBJ_nist_hashalgs,1L | ||
2489 | |||
2490 | #define SN_sha384 "SHA384" | ||
2491 | #define LN_sha384 "sha384" | ||
2492 | #define NID_sha384 673 | ||
2493 | #define OBJ_sha384 OBJ_nist_hashalgs,2L | ||
2494 | |||
2495 | #define SN_sha512 "SHA512" | ||
2496 | #define LN_sha512 "sha512" | ||
2497 | #define NID_sha512 674 | ||
2498 | #define OBJ_sha512 OBJ_nist_hashalgs,3L | ||
2499 | |||
2500 | #define SN_sha224 "SHA224" | ||
2501 | #define LN_sha224 "sha224" | ||
2502 | #define NID_sha224 675 | ||
2503 | #define OBJ_sha224 OBJ_nist_hashalgs,4L | ||
2504 | |||
2505 | #define SN_hold_instruction_code "holdInstructionCode" | ||
2506 | #define LN_hold_instruction_code "Hold Instruction Code" | ||
2507 | #define NID_hold_instruction_code 430 | ||
2508 | #define OBJ_hold_instruction_code OBJ_id_ce,23L | ||
2509 | |||
2510 | #define OBJ_holdInstruction OBJ_X9_57,2L | ||
2511 | |||
2512 | #define SN_hold_instruction_none "holdInstructionNone" | ||
2513 | #define LN_hold_instruction_none "Hold Instruction None" | ||
2514 | #define NID_hold_instruction_none 431 | ||
2515 | #define OBJ_hold_instruction_none OBJ_holdInstruction,1L | ||
2516 | |||
2517 | #define SN_hold_instruction_call_issuer "holdInstructionCallIssuer" | ||
2518 | #define LN_hold_instruction_call_issuer "Hold Instruction Call Issuer" | ||
2519 | #define NID_hold_instruction_call_issuer 432 | ||
2520 | #define OBJ_hold_instruction_call_issuer OBJ_holdInstruction,2L | ||
2521 | |||
2522 | #define SN_hold_instruction_reject "holdInstructionReject" | ||
2523 | #define LN_hold_instruction_reject "Hold Instruction Reject" | ||
2524 | #define NID_hold_instruction_reject 433 | ||
2525 | #define OBJ_hold_instruction_reject OBJ_holdInstruction,3L | ||
2526 | |||
2527 | #define SN_data "data" | ||
2528 | #define NID_data 434 | ||
2529 | #define OBJ_data OBJ_itu_t,9L | ||
2530 | |||
2531 | #define SN_pss "pss" | ||
2532 | #define NID_pss 435 | ||
2533 | #define OBJ_pss OBJ_data,2342L | ||
2534 | |||
2535 | #define SN_ucl "ucl" | ||
2536 | #define NID_ucl 436 | ||
2537 | #define OBJ_ucl OBJ_pss,19200300L | ||
2538 | |||
2539 | #define SN_pilot "pilot" | ||
2540 | #define NID_pilot 437 | ||
2541 | #define OBJ_pilot OBJ_ucl,100L | ||
2542 | |||
2543 | #define LN_pilotAttributeType "pilotAttributeType" | ||
2544 | #define NID_pilotAttributeType 438 | ||
2545 | #define OBJ_pilotAttributeType OBJ_pilot,1L | ||
2546 | |||
2547 | #define LN_pilotAttributeSyntax "pilotAttributeSyntax" | ||
2548 | #define NID_pilotAttributeSyntax 439 | ||
2549 | #define OBJ_pilotAttributeSyntax OBJ_pilot,3L | ||
2550 | |||
2551 | #define LN_pilotObjectClass "pilotObjectClass" | ||
2552 | #define NID_pilotObjectClass 440 | ||
2553 | #define OBJ_pilotObjectClass OBJ_pilot,4L | ||
2554 | |||
2555 | #define LN_pilotGroups "pilotGroups" | ||
2556 | #define NID_pilotGroups 441 | ||
2557 | #define OBJ_pilotGroups OBJ_pilot,10L | ||
2558 | |||
2559 | #define LN_iA5StringSyntax "iA5StringSyntax" | ||
2560 | #define NID_iA5StringSyntax 442 | ||
2561 | #define OBJ_iA5StringSyntax OBJ_pilotAttributeSyntax,4L | ||
2562 | |||
2563 | #define LN_caseIgnoreIA5StringSyntax "caseIgnoreIA5StringSyntax" | ||
2564 | #define NID_caseIgnoreIA5StringSyntax 443 | ||
2565 | #define OBJ_caseIgnoreIA5StringSyntax OBJ_pilotAttributeSyntax,5L | ||
2566 | |||
2567 | #define LN_pilotObject "pilotObject" | ||
2568 | #define NID_pilotObject 444 | ||
2569 | #define OBJ_pilotObject OBJ_pilotObjectClass,3L | ||
2570 | |||
2571 | #define LN_pilotPerson "pilotPerson" | ||
2572 | #define NID_pilotPerson 445 | ||
2573 | #define OBJ_pilotPerson OBJ_pilotObjectClass,4L | ||
2574 | |||
2575 | #define SN_account "account" | ||
2576 | #define NID_account 446 | ||
2577 | #define OBJ_account OBJ_pilotObjectClass,5L | ||
2578 | |||
2579 | #define SN_document "document" | ||
2580 | #define NID_document 447 | ||
2581 | #define OBJ_document OBJ_pilotObjectClass,6L | ||
2582 | |||
2583 | #define SN_room "room" | ||
2584 | #define NID_room 448 | ||
2585 | #define OBJ_room OBJ_pilotObjectClass,7L | ||
2586 | |||
2587 | #define LN_documentSeries "documentSeries" | ||
2588 | #define NID_documentSeries 449 | ||
2589 | #define OBJ_documentSeries OBJ_pilotObjectClass,9L | ||
2590 | |||
2591 | #define SN_Domain "domain" | ||
2592 | #define LN_Domain "Domain" | ||
2593 | #define NID_Domain 392 | ||
2594 | #define OBJ_Domain OBJ_pilotObjectClass,13L | ||
2595 | |||
2596 | #define LN_rFC822localPart "rFC822localPart" | ||
2597 | #define NID_rFC822localPart 450 | ||
2598 | #define OBJ_rFC822localPart OBJ_pilotObjectClass,14L | ||
2599 | |||
2600 | #define LN_dNSDomain "dNSDomain" | ||
2601 | #define NID_dNSDomain 451 | ||
2602 | #define OBJ_dNSDomain OBJ_pilotObjectClass,15L | ||
2603 | |||
2604 | #define LN_domainRelatedObject "domainRelatedObject" | ||
2605 | #define NID_domainRelatedObject 452 | ||
2606 | #define OBJ_domainRelatedObject OBJ_pilotObjectClass,17L | ||
2607 | |||
2608 | #define LN_friendlyCountry "friendlyCountry" | ||
2609 | #define NID_friendlyCountry 453 | ||
2610 | #define OBJ_friendlyCountry OBJ_pilotObjectClass,18L | ||
2611 | |||
2612 | #define LN_simpleSecurityObject "simpleSecurityObject" | ||
2613 | #define NID_simpleSecurityObject 454 | ||
2614 | #define OBJ_simpleSecurityObject OBJ_pilotObjectClass,19L | ||
2615 | |||
2616 | #define LN_pilotOrganization "pilotOrganization" | ||
2617 | #define NID_pilotOrganization 455 | ||
2618 | #define OBJ_pilotOrganization OBJ_pilotObjectClass,20L | ||
2619 | |||
2620 | #define LN_pilotDSA "pilotDSA" | ||
2621 | #define NID_pilotDSA 456 | ||
2622 | #define OBJ_pilotDSA OBJ_pilotObjectClass,21L | ||
2623 | |||
2624 | #define LN_qualityLabelledData "qualityLabelledData" | ||
2625 | #define NID_qualityLabelledData 457 | ||
2626 | #define OBJ_qualityLabelledData OBJ_pilotObjectClass,22L | ||
2627 | |||
2628 | #define SN_userId "UID" | ||
2629 | #define LN_userId "userId" | ||
2630 | #define NID_userId 458 | ||
2631 | #define OBJ_userId OBJ_pilotAttributeType,1L | ||
2632 | |||
2633 | #define LN_textEncodedORAddress "textEncodedORAddress" | ||
2634 | #define NID_textEncodedORAddress 459 | ||
2635 | #define OBJ_textEncodedORAddress OBJ_pilotAttributeType,2L | ||
2636 | |||
2637 | #define SN_rfc822Mailbox "mail" | ||
2638 | #define LN_rfc822Mailbox "rfc822Mailbox" | ||
2639 | #define NID_rfc822Mailbox 460 | ||
2640 | #define OBJ_rfc822Mailbox OBJ_pilotAttributeType,3L | ||
2641 | |||
2642 | #define SN_info "info" | ||
2643 | #define NID_info 461 | ||
2644 | #define OBJ_info OBJ_pilotAttributeType,4L | ||
2645 | |||
2646 | #define LN_favouriteDrink "favouriteDrink" | ||
2647 | #define NID_favouriteDrink 462 | ||
2648 | #define OBJ_favouriteDrink OBJ_pilotAttributeType,5L | ||
2649 | |||
2650 | #define LN_roomNumber "roomNumber" | ||
2651 | #define NID_roomNumber 463 | ||
2652 | #define OBJ_roomNumber OBJ_pilotAttributeType,6L | ||
2653 | |||
2654 | #define SN_photo "photo" | ||
2655 | #define NID_photo 464 | ||
2656 | #define OBJ_photo OBJ_pilotAttributeType,7L | ||
2657 | |||
2658 | #define LN_userClass "userClass" | ||
2659 | #define NID_userClass 465 | ||
2660 | #define OBJ_userClass OBJ_pilotAttributeType,8L | ||
2661 | |||
2662 | #define SN_host "host" | ||
2663 | #define NID_host 466 | ||
2664 | #define OBJ_host OBJ_pilotAttributeType,9L | ||
2665 | |||
2666 | #define SN_manager "manager" | ||
2667 | #define NID_manager 467 | ||
2668 | #define OBJ_manager OBJ_pilotAttributeType,10L | ||
2669 | |||
2670 | #define LN_documentIdentifier "documentIdentifier" | ||
2671 | #define NID_documentIdentifier 468 | ||
2672 | #define OBJ_documentIdentifier OBJ_pilotAttributeType,11L | ||
2673 | |||
2674 | #define LN_documentTitle "documentTitle" | ||
2675 | #define NID_documentTitle 469 | ||
2676 | #define OBJ_documentTitle OBJ_pilotAttributeType,12L | ||
2677 | |||
2678 | #define LN_documentVersion "documentVersion" | ||
2679 | #define NID_documentVersion 470 | ||
2680 | #define OBJ_documentVersion OBJ_pilotAttributeType,13L | ||
2681 | |||
2682 | #define LN_documentAuthor "documentAuthor" | ||
2683 | #define NID_documentAuthor 471 | ||
2684 | #define OBJ_documentAuthor OBJ_pilotAttributeType,14L | ||
2685 | |||
2686 | #define LN_documentLocation "documentLocation" | ||
2687 | #define NID_documentLocation 472 | ||
2688 | #define OBJ_documentLocation OBJ_pilotAttributeType,15L | ||
2689 | |||
2690 | #define LN_homeTelephoneNumber "homeTelephoneNumber" | ||
2691 | #define NID_homeTelephoneNumber 473 | ||
2692 | #define OBJ_homeTelephoneNumber OBJ_pilotAttributeType,20L | ||
2693 | |||
2694 | #define SN_secretary "secretary" | ||
2695 | #define NID_secretary 474 | ||
2696 | #define OBJ_secretary OBJ_pilotAttributeType,21L | ||
2697 | |||
2698 | #define LN_otherMailbox "otherMailbox" | ||
2699 | #define NID_otherMailbox 475 | ||
2700 | #define OBJ_otherMailbox OBJ_pilotAttributeType,22L | ||
2701 | |||
2702 | #define LN_lastModifiedTime "lastModifiedTime" | ||
2703 | #define NID_lastModifiedTime 476 | ||
2704 | #define OBJ_lastModifiedTime OBJ_pilotAttributeType,23L | ||
2705 | |||
2706 | #define LN_lastModifiedBy "lastModifiedBy" | ||
2707 | #define NID_lastModifiedBy 477 | ||
2708 | #define OBJ_lastModifiedBy OBJ_pilotAttributeType,24L | ||
2709 | |||
2710 | #define SN_domainComponent "DC" | ||
2711 | #define LN_domainComponent "domainComponent" | ||
2712 | #define NID_domainComponent 391 | ||
2713 | #define OBJ_domainComponent OBJ_pilotAttributeType,25L | ||
2714 | |||
2715 | #define LN_aRecord "aRecord" | ||
2716 | #define NID_aRecord 478 | ||
2717 | #define OBJ_aRecord OBJ_pilotAttributeType,26L | ||
2718 | |||
2719 | #define LN_pilotAttributeType27 "pilotAttributeType27" | ||
2720 | #define NID_pilotAttributeType27 479 | ||
2721 | #define OBJ_pilotAttributeType27 OBJ_pilotAttributeType,27L | ||
2722 | |||
2723 | #define LN_mXRecord "mXRecord" | ||
2724 | #define NID_mXRecord 480 | ||
2725 | #define OBJ_mXRecord OBJ_pilotAttributeType,28L | ||
2726 | |||
2727 | #define LN_nSRecord "nSRecord" | ||
2728 | #define NID_nSRecord 481 | ||
2729 | #define OBJ_nSRecord OBJ_pilotAttributeType,29L | ||
2730 | |||
2731 | #define LN_sOARecord "sOARecord" | ||
2732 | #define NID_sOARecord 482 | ||
2733 | #define OBJ_sOARecord OBJ_pilotAttributeType,30L | ||
2734 | |||
2735 | #define LN_cNAMERecord "cNAMERecord" | ||
2736 | #define NID_cNAMERecord 483 | ||
2737 | #define OBJ_cNAMERecord OBJ_pilotAttributeType,31L | ||
2738 | |||
2739 | #define LN_associatedDomain "associatedDomain" | ||
2740 | #define NID_associatedDomain 484 | ||
2741 | #define OBJ_associatedDomain OBJ_pilotAttributeType,37L | ||
2742 | |||
2743 | #define LN_associatedName "associatedName" | ||
2744 | #define NID_associatedName 485 | ||
2745 | #define OBJ_associatedName OBJ_pilotAttributeType,38L | ||
2746 | |||
2747 | #define LN_homePostalAddress "homePostalAddress" | ||
2748 | #define NID_homePostalAddress 486 | ||
2749 | #define OBJ_homePostalAddress OBJ_pilotAttributeType,39L | ||
2750 | |||
2751 | #define LN_personalTitle "personalTitle" | ||
2752 | #define NID_personalTitle 487 | ||
2753 | #define OBJ_personalTitle OBJ_pilotAttributeType,40L | ||
2754 | |||
2755 | #define LN_mobileTelephoneNumber "mobileTelephoneNumber" | ||
2756 | #define NID_mobileTelephoneNumber 488 | ||
2757 | #define OBJ_mobileTelephoneNumber OBJ_pilotAttributeType,41L | ||
2758 | |||
2759 | #define LN_pagerTelephoneNumber "pagerTelephoneNumber" | ||
2760 | #define NID_pagerTelephoneNumber 489 | ||
2761 | #define OBJ_pagerTelephoneNumber OBJ_pilotAttributeType,42L | ||
2762 | |||
2763 | #define LN_friendlyCountryName "friendlyCountryName" | ||
2764 | #define NID_friendlyCountryName 490 | ||
2765 | #define OBJ_friendlyCountryName OBJ_pilotAttributeType,43L | ||
2766 | |||
2767 | #define LN_organizationalStatus "organizationalStatus" | ||
2768 | #define NID_organizationalStatus 491 | ||
2769 | #define OBJ_organizationalStatus OBJ_pilotAttributeType,45L | ||
2770 | |||
2771 | #define LN_janetMailbox "janetMailbox" | ||
2772 | #define NID_janetMailbox 492 | ||
2773 | #define OBJ_janetMailbox OBJ_pilotAttributeType,46L | ||
2774 | |||
2775 | #define LN_mailPreferenceOption "mailPreferenceOption" | ||
2776 | #define NID_mailPreferenceOption 493 | ||
2777 | #define OBJ_mailPreferenceOption OBJ_pilotAttributeType,47L | ||
2778 | |||
2779 | #define LN_buildingName "buildingName" | ||
2780 | #define NID_buildingName 494 | ||
2781 | #define OBJ_buildingName OBJ_pilotAttributeType,48L | ||
2782 | |||
2783 | #define LN_dSAQuality "dSAQuality" | ||
2784 | #define NID_dSAQuality 495 | ||
2785 | #define OBJ_dSAQuality OBJ_pilotAttributeType,49L | ||
2786 | |||
2787 | #define LN_singleLevelQuality "singleLevelQuality" | ||
2788 | #define NID_singleLevelQuality 496 | ||
2789 | #define OBJ_singleLevelQuality OBJ_pilotAttributeType,50L | ||
2790 | |||
2791 | #define LN_subtreeMinimumQuality "subtreeMinimumQuality" | ||
2792 | #define NID_subtreeMinimumQuality 497 | ||
2793 | #define OBJ_subtreeMinimumQuality OBJ_pilotAttributeType,51L | ||
2794 | |||
2795 | #define LN_subtreeMaximumQuality "subtreeMaximumQuality" | ||
2796 | #define NID_subtreeMaximumQuality 498 | ||
2797 | #define OBJ_subtreeMaximumQuality OBJ_pilotAttributeType,52L | ||
2798 | |||
2799 | #define LN_personalSignature "personalSignature" | ||
2800 | #define NID_personalSignature 499 | ||
2801 | #define OBJ_personalSignature OBJ_pilotAttributeType,53L | ||
2802 | |||
2803 | #define LN_dITRedirect "dITRedirect" | ||
2804 | #define NID_dITRedirect 500 | ||
2805 | #define OBJ_dITRedirect OBJ_pilotAttributeType,54L | ||
2806 | |||
2807 | #define SN_audio "audio" | ||
2808 | #define NID_audio 501 | ||
2809 | #define OBJ_audio OBJ_pilotAttributeType,55L | ||
2810 | |||
2811 | #define LN_documentPublisher "documentPublisher" | ||
2812 | #define NID_documentPublisher 502 | ||
2813 | #define OBJ_documentPublisher OBJ_pilotAttributeType,56L | ||
2814 | |||
2815 | #define SN_id_set "id-set" | ||
2816 | #define LN_id_set "Secure Electronic Transactions" | ||
2817 | #define NID_id_set 512 | ||
2818 | #define OBJ_id_set OBJ_international_organizations,42L | ||
2819 | |||
2820 | #define SN_set_ctype "set-ctype" | ||
2821 | #define LN_set_ctype "content types" | ||
2822 | #define NID_set_ctype 513 | ||
2823 | #define OBJ_set_ctype OBJ_id_set,0L | ||
2824 | |||
2825 | #define SN_set_msgExt "set-msgExt" | ||
2826 | #define LN_set_msgExt "message extensions" | ||
2827 | #define NID_set_msgExt 514 | ||
2828 | #define OBJ_set_msgExt OBJ_id_set,1L | ||
2829 | |||
2830 | #define SN_set_attr "set-attr" | ||
2831 | #define NID_set_attr 515 | ||
2832 | #define OBJ_set_attr OBJ_id_set,3L | ||
2833 | |||
2834 | #define SN_set_policy "set-policy" | ||
2835 | #define NID_set_policy 516 | ||
2836 | #define OBJ_set_policy OBJ_id_set,5L | ||
2837 | |||
2838 | #define SN_set_certExt "set-certExt" | ||
2839 | #define LN_set_certExt "certificate extensions" | ||
2840 | #define NID_set_certExt 517 | ||
2841 | #define OBJ_set_certExt OBJ_id_set,7L | ||
2842 | |||
2843 | #define SN_set_brand "set-brand" | ||
2844 | #define NID_set_brand 518 | ||
2845 | #define OBJ_set_brand OBJ_id_set,8L | ||
2846 | |||
2847 | #define SN_setct_PANData "setct-PANData" | ||
2848 | #define NID_setct_PANData 519 | ||
2849 | #define OBJ_setct_PANData OBJ_set_ctype,0L | ||
2850 | |||
2851 | #define SN_setct_PANToken "setct-PANToken" | ||
2852 | #define NID_setct_PANToken 520 | ||
2853 | #define OBJ_setct_PANToken OBJ_set_ctype,1L | ||
2854 | |||
2855 | #define SN_setct_PANOnly "setct-PANOnly" | ||
2856 | #define NID_setct_PANOnly 521 | ||
2857 | #define OBJ_setct_PANOnly OBJ_set_ctype,2L | ||
2858 | |||
2859 | #define SN_setct_OIData "setct-OIData" | ||
2860 | #define NID_setct_OIData 522 | ||
2861 | #define OBJ_setct_OIData OBJ_set_ctype,3L | ||
2862 | |||
2863 | #define SN_setct_PI "setct-PI" | ||
2864 | #define NID_setct_PI 523 | ||
2865 | #define OBJ_setct_PI OBJ_set_ctype,4L | ||
2866 | |||
2867 | #define SN_setct_PIData "setct-PIData" | ||
2868 | #define NID_setct_PIData 524 | ||
2869 | #define OBJ_setct_PIData OBJ_set_ctype,5L | ||
2870 | |||
2871 | #define SN_setct_PIDataUnsigned "setct-PIDataUnsigned" | ||
2872 | #define NID_setct_PIDataUnsigned 525 | ||
2873 | #define OBJ_setct_PIDataUnsigned OBJ_set_ctype,6L | ||
2874 | |||
2875 | #define SN_setct_HODInput "setct-HODInput" | ||
2876 | #define NID_setct_HODInput 526 | ||
2877 | #define OBJ_setct_HODInput OBJ_set_ctype,7L | ||
2878 | |||
2879 | #define SN_setct_AuthResBaggage "setct-AuthResBaggage" | ||
2880 | #define NID_setct_AuthResBaggage 527 | ||
2881 | #define OBJ_setct_AuthResBaggage OBJ_set_ctype,8L | ||
2882 | |||
2883 | #define SN_setct_AuthRevReqBaggage "setct-AuthRevReqBaggage" | ||
2884 | #define NID_setct_AuthRevReqBaggage 528 | ||
2885 | #define OBJ_setct_AuthRevReqBaggage OBJ_set_ctype,9L | ||
2886 | |||
2887 | #define SN_setct_AuthRevResBaggage "setct-AuthRevResBaggage" | ||
2888 | #define NID_setct_AuthRevResBaggage 529 | ||
2889 | #define OBJ_setct_AuthRevResBaggage OBJ_set_ctype,10L | ||
2890 | |||
2891 | #define SN_setct_CapTokenSeq "setct-CapTokenSeq" | ||
2892 | #define NID_setct_CapTokenSeq 530 | ||
2893 | #define OBJ_setct_CapTokenSeq OBJ_set_ctype,11L | ||
2894 | |||
2895 | #define SN_setct_PInitResData "setct-PInitResData" | ||
2896 | #define NID_setct_PInitResData 531 | ||
2897 | #define OBJ_setct_PInitResData OBJ_set_ctype,12L | ||
2898 | |||
2899 | #define SN_setct_PI_TBS "setct-PI-TBS" | ||
2900 | #define NID_setct_PI_TBS 532 | ||
2901 | #define OBJ_setct_PI_TBS OBJ_set_ctype,13L | ||
2902 | |||
2903 | #define SN_setct_PResData "setct-PResData" | ||
2904 | #define NID_setct_PResData 533 | ||
2905 | #define OBJ_setct_PResData OBJ_set_ctype,14L | ||
2906 | |||
2907 | #define SN_setct_AuthReqTBS "setct-AuthReqTBS" | ||
2908 | #define NID_setct_AuthReqTBS 534 | ||
2909 | #define OBJ_setct_AuthReqTBS OBJ_set_ctype,16L | ||
2910 | |||
2911 | #define SN_setct_AuthResTBS "setct-AuthResTBS" | ||
2912 | #define NID_setct_AuthResTBS 535 | ||
2913 | #define OBJ_setct_AuthResTBS OBJ_set_ctype,17L | ||
2914 | |||
2915 | #define SN_setct_AuthResTBSX "setct-AuthResTBSX" | ||
2916 | #define NID_setct_AuthResTBSX 536 | ||
2917 | #define OBJ_setct_AuthResTBSX OBJ_set_ctype,18L | ||
2918 | |||
2919 | #define SN_setct_AuthTokenTBS "setct-AuthTokenTBS" | ||
2920 | #define NID_setct_AuthTokenTBS 537 | ||
2921 | #define OBJ_setct_AuthTokenTBS OBJ_set_ctype,19L | ||
2922 | |||
2923 | #define SN_setct_CapTokenData "setct-CapTokenData" | ||
2924 | #define NID_setct_CapTokenData 538 | ||
2925 | #define OBJ_setct_CapTokenData OBJ_set_ctype,20L | ||
2926 | |||
2927 | #define SN_setct_CapTokenTBS "setct-CapTokenTBS" | ||
2928 | #define NID_setct_CapTokenTBS 539 | ||
2929 | #define OBJ_setct_CapTokenTBS OBJ_set_ctype,21L | ||
2930 | |||
2931 | #define SN_setct_AcqCardCodeMsg "setct-AcqCardCodeMsg" | ||
2932 | #define NID_setct_AcqCardCodeMsg 540 | ||
2933 | #define OBJ_setct_AcqCardCodeMsg OBJ_set_ctype,22L | ||
2934 | |||
2935 | #define SN_setct_AuthRevReqTBS "setct-AuthRevReqTBS" | ||
2936 | #define NID_setct_AuthRevReqTBS 541 | ||
2937 | #define OBJ_setct_AuthRevReqTBS OBJ_set_ctype,23L | ||
2938 | |||
2939 | #define SN_setct_AuthRevResData "setct-AuthRevResData" | ||
2940 | #define NID_setct_AuthRevResData 542 | ||
2941 | #define OBJ_setct_AuthRevResData OBJ_set_ctype,24L | ||
2942 | |||
2943 | #define SN_setct_AuthRevResTBS "setct-AuthRevResTBS" | ||
2944 | #define NID_setct_AuthRevResTBS 543 | ||
2945 | #define OBJ_setct_AuthRevResTBS OBJ_set_ctype,25L | ||
2946 | |||
2947 | #define SN_setct_CapReqTBS "setct-CapReqTBS" | ||
2948 | #define NID_setct_CapReqTBS 544 | ||
2949 | #define OBJ_setct_CapReqTBS OBJ_set_ctype,26L | ||
2950 | |||
2951 | #define SN_setct_CapReqTBSX "setct-CapReqTBSX" | ||
2952 | #define NID_setct_CapReqTBSX 545 | ||
2953 | #define OBJ_setct_CapReqTBSX OBJ_set_ctype,27L | ||
2954 | |||
2955 | #define SN_setct_CapResData "setct-CapResData" | ||
2956 | #define NID_setct_CapResData 546 | ||
2957 | #define OBJ_setct_CapResData OBJ_set_ctype,28L | ||
2958 | |||
2959 | #define SN_setct_CapRevReqTBS "setct-CapRevReqTBS" | ||
2960 | #define NID_setct_CapRevReqTBS 547 | ||
2961 | #define OBJ_setct_CapRevReqTBS OBJ_set_ctype,29L | ||
2962 | |||
2963 | #define SN_setct_CapRevReqTBSX "setct-CapRevReqTBSX" | ||
2964 | #define NID_setct_CapRevReqTBSX 548 | ||
2965 | #define OBJ_setct_CapRevReqTBSX OBJ_set_ctype,30L | ||
2966 | |||
2967 | #define SN_setct_CapRevResData "setct-CapRevResData" | ||
2968 | #define NID_setct_CapRevResData 549 | ||
2969 | #define OBJ_setct_CapRevResData OBJ_set_ctype,31L | ||
2970 | |||
2971 | #define SN_setct_CredReqTBS "setct-CredReqTBS" | ||
2972 | #define NID_setct_CredReqTBS 550 | ||
2973 | #define OBJ_setct_CredReqTBS OBJ_set_ctype,32L | ||
2974 | |||
2975 | #define SN_setct_CredReqTBSX "setct-CredReqTBSX" | ||
2976 | #define NID_setct_CredReqTBSX 551 | ||
2977 | #define OBJ_setct_CredReqTBSX OBJ_set_ctype,33L | ||
2978 | |||
2979 | #define SN_setct_CredResData "setct-CredResData" | ||
2980 | #define NID_setct_CredResData 552 | ||
2981 | #define OBJ_setct_CredResData OBJ_set_ctype,34L | ||
2982 | |||
2983 | #define SN_setct_CredRevReqTBS "setct-CredRevReqTBS" | ||
2984 | #define NID_setct_CredRevReqTBS 553 | ||
2985 | #define OBJ_setct_CredRevReqTBS OBJ_set_ctype,35L | ||
2986 | |||
2987 | #define SN_setct_CredRevReqTBSX "setct-CredRevReqTBSX" | ||
2988 | #define NID_setct_CredRevReqTBSX 554 | ||
2989 | #define OBJ_setct_CredRevReqTBSX OBJ_set_ctype,36L | ||
2990 | |||
2991 | #define SN_setct_CredRevResData "setct-CredRevResData" | ||
2992 | #define NID_setct_CredRevResData 555 | ||
2993 | #define OBJ_setct_CredRevResData OBJ_set_ctype,37L | ||
2994 | |||
2995 | #define SN_setct_PCertReqData "setct-PCertReqData" | ||
2996 | #define NID_setct_PCertReqData 556 | ||
2997 | #define OBJ_setct_PCertReqData OBJ_set_ctype,38L | ||
2998 | |||
2999 | #define SN_setct_PCertResTBS "setct-PCertResTBS" | ||
3000 | #define NID_setct_PCertResTBS 557 | ||
3001 | #define OBJ_setct_PCertResTBS OBJ_set_ctype,39L | ||
3002 | |||
3003 | #define SN_setct_BatchAdminReqData "setct-BatchAdminReqData" | ||
3004 | #define NID_setct_BatchAdminReqData 558 | ||
3005 | #define OBJ_setct_BatchAdminReqData OBJ_set_ctype,40L | ||
3006 | |||
3007 | #define SN_setct_BatchAdminResData "setct-BatchAdminResData" | ||
3008 | #define NID_setct_BatchAdminResData 559 | ||
3009 | #define OBJ_setct_BatchAdminResData OBJ_set_ctype,41L | ||
3010 | |||
3011 | #define SN_setct_CardCInitResTBS "setct-CardCInitResTBS" | ||
3012 | #define NID_setct_CardCInitResTBS 560 | ||
3013 | #define OBJ_setct_CardCInitResTBS OBJ_set_ctype,42L | ||
3014 | |||
3015 | #define SN_setct_MeAqCInitResTBS "setct-MeAqCInitResTBS" | ||
3016 | #define NID_setct_MeAqCInitResTBS 561 | ||
3017 | #define OBJ_setct_MeAqCInitResTBS OBJ_set_ctype,43L | ||
3018 | |||
3019 | #define SN_setct_RegFormResTBS "setct-RegFormResTBS" | ||
3020 | #define NID_setct_RegFormResTBS 562 | ||
3021 | #define OBJ_setct_RegFormResTBS OBJ_set_ctype,44L | ||
3022 | |||
3023 | #define SN_setct_CertReqData "setct-CertReqData" | ||
3024 | #define NID_setct_CertReqData 563 | ||
3025 | #define OBJ_setct_CertReqData OBJ_set_ctype,45L | ||
3026 | |||
3027 | #define SN_setct_CertReqTBS "setct-CertReqTBS" | ||
3028 | #define NID_setct_CertReqTBS 564 | ||
3029 | #define OBJ_setct_CertReqTBS OBJ_set_ctype,46L | ||
3030 | |||
3031 | #define SN_setct_CertResData "setct-CertResData" | ||
3032 | #define NID_setct_CertResData 565 | ||
3033 | #define OBJ_setct_CertResData OBJ_set_ctype,47L | ||
3034 | |||
3035 | #define SN_setct_CertInqReqTBS "setct-CertInqReqTBS" | ||
3036 | #define NID_setct_CertInqReqTBS 566 | ||
3037 | #define OBJ_setct_CertInqReqTBS OBJ_set_ctype,48L | ||
3038 | |||
3039 | #define SN_setct_ErrorTBS "setct-ErrorTBS" | ||
3040 | #define NID_setct_ErrorTBS 567 | ||
3041 | #define OBJ_setct_ErrorTBS OBJ_set_ctype,49L | ||
3042 | |||
3043 | #define SN_setct_PIDualSignedTBE "setct-PIDualSignedTBE" | ||
3044 | #define NID_setct_PIDualSignedTBE 568 | ||
3045 | #define OBJ_setct_PIDualSignedTBE OBJ_set_ctype,50L | ||
3046 | |||
3047 | #define SN_setct_PIUnsignedTBE "setct-PIUnsignedTBE" | ||
3048 | #define NID_setct_PIUnsignedTBE 569 | ||
3049 | #define OBJ_setct_PIUnsignedTBE OBJ_set_ctype,51L | ||
3050 | |||
3051 | #define SN_setct_AuthReqTBE "setct-AuthReqTBE" | ||
3052 | #define NID_setct_AuthReqTBE 570 | ||
3053 | #define OBJ_setct_AuthReqTBE OBJ_set_ctype,52L | ||
3054 | |||
3055 | #define SN_setct_AuthResTBE "setct-AuthResTBE" | ||
3056 | #define NID_setct_AuthResTBE 571 | ||
3057 | #define OBJ_setct_AuthResTBE OBJ_set_ctype,53L | ||
3058 | |||
3059 | #define SN_setct_AuthResTBEX "setct-AuthResTBEX" | ||
3060 | #define NID_setct_AuthResTBEX 572 | ||
3061 | #define OBJ_setct_AuthResTBEX OBJ_set_ctype,54L | ||
3062 | |||
3063 | #define SN_setct_AuthTokenTBE "setct-AuthTokenTBE" | ||
3064 | #define NID_setct_AuthTokenTBE 573 | ||
3065 | #define OBJ_setct_AuthTokenTBE OBJ_set_ctype,55L | ||
3066 | |||
3067 | #define SN_setct_CapTokenTBE "setct-CapTokenTBE" | ||
3068 | #define NID_setct_CapTokenTBE 574 | ||
3069 | #define OBJ_setct_CapTokenTBE OBJ_set_ctype,56L | ||
3070 | |||
3071 | #define SN_setct_CapTokenTBEX "setct-CapTokenTBEX" | ||
3072 | #define NID_setct_CapTokenTBEX 575 | ||
3073 | #define OBJ_setct_CapTokenTBEX OBJ_set_ctype,57L | ||
3074 | |||
3075 | #define SN_setct_AcqCardCodeMsgTBE "setct-AcqCardCodeMsgTBE" | ||
3076 | #define NID_setct_AcqCardCodeMsgTBE 576 | ||
3077 | #define OBJ_setct_AcqCardCodeMsgTBE OBJ_set_ctype,58L | ||
3078 | |||
3079 | #define SN_setct_AuthRevReqTBE "setct-AuthRevReqTBE" | ||
3080 | #define NID_setct_AuthRevReqTBE 577 | ||
3081 | #define OBJ_setct_AuthRevReqTBE OBJ_set_ctype,59L | ||
3082 | |||
3083 | #define SN_setct_AuthRevResTBE "setct-AuthRevResTBE" | ||
3084 | #define NID_setct_AuthRevResTBE 578 | ||
3085 | #define OBJ_setct_AuthRevResTBE OBJ_set_ctype,60L | ||
3086 | |||
3087 | #define SN_setct_AuthRevResTBEB "setct-AuthRevResTBEB" | ||
3088 | #define NID_setct_AuthRevResTBEB 579 | ||
3089 | #define OBJ_setct_AuthRevResTBEB OBJ_set_ctype,61L | ||
3090 | |||
3091 | #define SN_setct_CapReqTBE "setct-CapReqTBE" | ||
3092 | #define NID_setct_CapReqTBE 580 | ||
3093 | #define OBJ_setct_CapReqTBE OBJ_set_ctype,62L | ||
3094 | |||
3095 | #define SN_setct_CapReqTBEX "setct-CapReqTBEX" | ||
3096 | #define NID_setct_CapReqTBEX 581 | ||
3097 | #define OBJ_setct_CapReqTBEX OBJ_set_ctype,63L | ||
3098 | |||
3099 | #define SN_setct_CapResTBE "setct-CapResTBE" | ||
3100 | #define NID_setct_CapResTBE 582 | ||
3101 | #define OBJ_setct_CapResTBE OBJ_set_ctype,64L | ||
3102 | |||
3103 | #define SN_setct_CapRevReqTBE "setct-CapRevReqTBE" | ||
3104 | #define NID_setct_CapRevReqTBE 583 | ||
3105 | #define OBJ_setct_CapRevReqTBE OBJ_set_ctype,65L | ||
3106 | |||
3107 | #define SN_setct_CapRevReqTBEX "setct-CapRevReqTBEX" | ||
3108 | #define NID_setct_CapRevReqTBEX 584 | ||
3109 | #define OBJ_setct_CapRevReqTBEX OBJ_set_ctype,66L | ||
3110 | |||
3111 | #define SN_setct_CapRevResTBE "setct-CapRevResTBE" | ||
3112 | #define NID_setct_CapRevResTBE 585 | ||
3113 | #define OBJ_setct_CapRevResTBE OBJ_set_ctype,67L | ||
3114 | |||
3115 | #define SN_setct_CredReqTBE "setct-CredReqTBE" | ||
3116 | #define NID_setct_CredReqTBE 586 | ||
3117 | #define OBJ_setct_CredReqTBE OBJ_set_ctype,68L | ||
3118 | |||
3119 | #define SN_setct_CredReqTBEX "setct-CredReqTBEX" | ||
3120 | #define NID_setct_CredReqTBEX 587 | ||
3121 | #define OBJ_setct_CredReqTBEX OBJ_set_ctype,69L | ||
3122 | |||
3123 | #define SN_setct_CredResTBE "setct-CredResTBE" | ||
3124 | #define NID_setct_CredResTBE 588 | ||
3125 | #define OBJ_setct_CredResTBE OBJ_set_ctype,70L | ||
3126 | |||
3127 | #define SN_setct_CredRevReqTBE "setct-CredRevReqTBE" | ||
3128 | #define NID_setct_CredRevReqTBE 589 | ||
3129 | #define OBJ_setct_CredRevReqTBE OBJ_set_ctype,71L | ||
3130 | |||
3131 | #define SN_setct_CredRevReqTBEX "setct-CredRevReqTBEX" | ||
3132 | #define NID_setct_CredRevReqTBEX 590 | ||
3133 | #define OBJ_setct_CredRevReqTBEX OBJ_set_ctype,72L | ||
3134 | |||
3135 | #define SN_setct_CredRevResTBE "setct-CredRevResTBE" | ||
3136 | #define NID_setct_CredRevResTBE 591 | ||
3137 | #define OBJ_setct_CredRevResTBE OBJ_set_ctype,73L | ||
3138 | |||
3139 | #define SN_setct_BatchAdminReqTBE "setct-BatchAdminReqTBE" | ||
3140 | #define NID_setct_BatchAdminReqTBE 592 | ||
3141 | #define OBJ_setct_BatchAdminReqTBE OBJ_set_ctype,74L | ||
3142 | |||
3143 | #define SN_setct_BatchAdminResTBE "setct-BatchAdminResTBE" | ||
3144 | #define NID_setct_BatchAdminResTBE 593 | ||
3145 | #define OBJ_setct_BatchAdminResTBE OBJ_set_ctype,75L | ||
3146 | |||
3147 | #define SN_setct_RegFormReqTBE "setct-RegFormReqTBE" | ||
3148 | #define NID_setct_RegFormReqTBE 594 | ||
3149 | #define OBJ_setct_RegFormReqTBE OBJ_set_ctype,76L | ||
3150 | |||
3151 | #define SN_setct_CertReqTBE "setct-CertReqTBE" | ||
3152 | #define NID_setct_CertReqTBE 595 | ||
3153 | #define OBJ_setct_CertReqTBE OBJ_set_ctype,77L | ||
3154 | |||
3155 | #define SN_setct_CertReqTBEX "setct-CertReqTBEX" | ||
3156 | #define NID_setct_CertReqTBEX 596 | ||
3157 | #define OBJ_setct_CertReqTBEX OBJ_set_ctype,78L | ||
3158 | |||
3159 | #define SN_setct_CertResTBE "setct-CertResTBE" | ||
3160 | #define NID_setct_CertResTBE 597 | ||
3161 | #define OBJ_setct_CertResTBE OBJ_set_ctype,79L | ||
3162 | |||
3163 | #define SN_setct_CRLNotificationTBS "setct-CRLNotificationTBS" | ||
3164 | #define NID_setct_CRLNotificationTBS 598 | ||
3165 | #define OBJ_setct_CRLNotificationTBS OBJ_set_ctype,80L | ||
3166 | |||
3167 | #define SN_setct_CRLNotificationResTBS "setct-CRLNotificationResTBS" | ||
3168 | #define NID_setct_CRLNotificationResTBS 599 | ||
3169 | #define OBJ_setct_CRLNotificationResTBS OBJ_set_ctype,81L | ||
3170 | |||
3171 | #define SN_setct_BCIDistributionTBS "setct-BCIDistributionTBS" | ||
3172 | #define NID_setct_BCIDistributionTBS 600 | ||
3173 | #define OBJ_setct_BCIDistributionTBS OBJ_set_ctype,82L | ||
3174 | |||
3175 | #define SN_setext_genCrypt "setext-genCrypt" | ||
3176 | #define LN_setext_genCrypt "generic cryptogram" | ||
3177 | #define NID_setext_genCrypt 601 | ||
3178 | #define OBJ_setext_genCrypt OBJ_set_msgExt,1L | ||
3179 | |||
3180 | #define SN_setext_miAuth "setext-miAuth" | ||
3181 | #define LN_setext_miAuth "merchant initiated auth" | ||
3182 | #define NID_setext_miAuth 602 | ||
3183 | #define OBJ_setext_miAuth OBJ_set_msgExt,3L | ||
3184 | |||
3185 | #define SN_setext_pinSecure "setext-pinSecure" | ||
3186 | #define NID_setext_pinSecure 603 | ||
3187 | #define OBJ_setext_pinSecure OBJ_set_msgExt,4L | ||
3188 | |||
3189 | #define SN_setext_pinAny "setext-pinAny" | ||
3190 | #define NID_setext_pinAny 604 | ||
3191 | #define OBJ_setext_pinAny OBJ_set_msgExt,5L | ||
3192 | |||
3193 | #define SN_setext_track2 "setext-track2" | ||
3194 | #define NID_setext_track2 605 | ||
3195 | #define OBJ_setext_track2 OBJ_set_msgExt,7L | ||
3196 | |||
3197 | #define SN_setext_cv "setext-cv" | ||
3198 | #define LN_setext_cv "additional verification" | ||
3199 | #define NID_setext_cv 606 | ||
3200 | #define OBJ_setext_cv OBJ_set_msgExt,8L | ||
3201 | |||
3202 | #define SN_set_policy_root "set-policy-root" | ||
3203 | #define NID_set_policy_root 607 | ||
3204 | #define OBJ_set_policy_root OBJ_set_policy,0L | ||
3205 | |||
3206 | #define SN_setCext_hashedRoot "setCext-hashedRoot" | ||
3207 | #define NID_setCext_hashedRoot 608 | ||
3208 | #define OBJ_setCext_hashedRoot OBJ_set_certExt,0L | ||
3209 | |||
3210 | #define SN_setCext_certType "setCext-certType" | ||
3211 | #define NID_setCext_certType 609 | ||
3212 | #define OBJ_setCext_certType OBJ_set_certExt,1L | ||
3213 | |||
3214 | #define SN_setCext_merchData "setCext-merchData" | ||
3215 | #define NID_setCext_merchData 610 | ||
3216 | #define OBJ_setCext_merchData OBJ_set_certExt,2L | ||
3217 | |||
3218 | #define SN_setCext_cCertRequired "setCext-cCertRequired" | ||
3219 | #define NID_setCext_cCertRequired 611 | ||
3220 | #define OBJ_setCext_cCertRequired OBJ_set_certExt,3L | ||
3221 | |||
3222 | #define SN_setCext_tunneling "setCext-tunneling" | ||
3223 | #define NID_setCext_tunneling 612 | ||
3224 | #define OBJ_setCext_tunneling OBJ_set_certExt,4L | ||
3225 | |||
3226 | #define SN_setCext_setExt "setCext-setExt" | ||
3227 | #define NID_setCext_setExt 613 | ||
3228 | #define OBJ_setCext_setExt OBJ_set_certExt,5L | ||
3229 | |||
3230 | #define SN_setCext_setQualf "setCext-setQualf" | ||
3231 | #define NID_setCext_setQualf 614 | ||
3232 | #define OBJ_setCext_setQualf OBJ_set_certExt,6L | ||
3233 | |||
3234 | #define SN_setCext_PGWYcapabilities "setCext-PGWYcapabilities" | ||
3235 | #define NID_setCext_PGWYcapabilities 615 | ||
3236 | #define OBJ_setCext_PGWYcapabilities OBJ_set_certExt,7L | ||
3237 | |||
3238 | #define SN_setCext_TokenIdentifier "setCext-TokenIdentifier" | ||
3239 | #define NID_setCext_TokenIdentifier 616 | ||
3240 | #define OBJ_setCext_TokenIdentifier OBJ_set_certExt,8L | ||
3241 | |||
3242 | #define SN_setCext_Track2Data "setCext-Track2Data" | ||
3243 | #define NID_setCext_Track2Data 617 | ||
3244 | #define OBJ_setCext_Track2Data OBJ_set_certExt,9L | ||
3245 | |||
3246 | #define SN_setCext_TokenType "setCext-TokenType" | ||
3247 | #define NID_setCext_TokenType 618 | ||
3248 | #define OBJ_setCext_TokenType OBJ_set_certExt,10L | ||
3249 | |||
3250 | #define SN_setCext_IssuerCapabilities "setCext-IssuerCapabilities" | ||
3251 | #define NID_setCext_IssuerCapabilities 619 | ||
3252 | #define OBJ_setCext_IssuerCapabilities OBJ_set_certExt,11L | ||
3253 | |||
3254 | #define SN_setAttr_Cert "setAttr-Cert" | ||
3255 | #define NID_setAttr_Cert 620 | ||
3256 | #define OBJ_setAttr_Cert OBJ_set_attr,0L | ||
3257 | |||
3258 | #define SN_setAttr_PGWYcap "setAttr-PGWYcap" | ||
3259 | #define LN_setAttr_PGWYcap "payment gateway capabilities" | ||
3260 | #define NID_setAttr_PGWYcap 621 | ||
3261 | #define OBJ_setAttr_PGWYcap OBJ_set_attr,1L | ||
3262 | |||
3263 | #define SN_setAttr_TokenType "setAttr-TokenType" | ||
3264 | #define NID_setAttr_TokenType 622 | ||
3265 | #define OBJ_setAttr_TokenType OBJ_set_attr,2L | ||
3266 | |||
3267 | #define SN_setAttr_IssCap "setAttr-IssCap" | ||
3268 | #define LN_setAttr_IssCap "issuer capabilities" | ||
3269 | #define NID_setAttr_IssCap 623 | ||
3270 | #define OBJ_setAttr_IssCap OBJ_set_attr,3L | ||
3271 | |||
3272 | #define SN_set_rootKeyThumb "set-rootKeyThumb" | ||
3273 | #define NID_set_rootKeyThumb 624 | ||
3274 | #define OBJ_set_rootKeyThumb OBJ_setAttr_Cert,0L | ||
3275 | |||
3276 | #define SN_set_addPolicy "set-addPolicy" | ||
3277 | #define NID_set_addPolicy 625 | ||
3278 | #define OBJ_set_addPolicy OBJ_setAttr_Cert,1L | ||
3279 | |||
3280 | #define SN_setAttr_Token_EMV "setAttr-Token-EMV" | ||
3281 | #define NID_setAttr_Token_EMV 626 | ||
3282 | #define OBJ_setAttr_Token_EMV OBJ_setAttr_TokenType,1L | ||
3283 | |||
3284 | #define SN_setAttr_Token_B0Prime "setAttr-Token-B0Prime" | ||
3285 | #define NID_setAttr_Token_B0Prime 627 | ||
3286 | #define OBJ_setAttr_Token_B0Prime OBJ_setAttr_TokenType,2L | ||
3287 | |||
3288 | #define SN_setAttr_IssCap_CVM "setAttr-IssCap-CVM" | ||
3289 | #define NID_setAttr_IssCap_CVM 628 | ||
3290 | #define OBJ_setAttr_IssCap_CVM OBJ_setAttr_IssCap,3L | ||
3291 | |||
3292 | #define SN_setAttr_IssCap_T2 "setAttr-IssCap-T2" | ||
3293 | #define NID_setAttr_IssCap_T2 629 | ||
3294 | #define OBJ_setAttr_IssCap_T2 OBJ_setAttr_IssCap,4L | ||
3295 | |||
3296 | #define SN_setAttr_IssCap_Sig "setAttr-IssCap-Sig" | ||
3297 | #define NID_setAttr_IssCap_Sig 630 | ||
3298 | #define OBJ_setAttr_IssCap_Sig OBJ_setAttr_IssCap,5L | ||
3299 | |||
3300 | #define SN_setAttr_GenCryptgrm "setAttr-GenCryptgrm" | ||
3301 | #define LN_setAttr_GenCryptgrm "generate cryptogram" | ||
3302 | #define NID_setAttr_GenCryptgrm 631 | ||
3303 | #define OBJ_setAttr_GenCryptgrm OBJ_setAttr_IssCap_CVM,1L | ||
3304 | |||
3305 | #define SN_setAttr_T2Enc "setAttr-T2Enc" | ||
3306 | #define LN_setAttr_T2Enc "encrypted track 2" | ||
3307 | #define NID_setAttr_T2Enc 632 | ||
3308 | #define OBJ_setAttr_T2Enc OBJ_setAttr_IssCap_T2,1L | ||
3309 | |||
3310 | #define SN_setAttr_T2cleartxt "setAttr-T2cleartxt" | ||
3311 | #define LN_setAttr_T2cleartxt "cleartext track 2" | ||
3312 | #define NID_setAttr_T2cleartxt 633 | ||
3313 | #define OBJ_setAttr_T2cleartxt OBJ_setAttr_IssCap_T2,2L | ||
3314 | |||
3315 | #define SN_setAttr_TokICCsig "setAttr-TokICCsig" | ||
3316 | #define LN_setAttr_TokICCsig "ICC or token signature" | ||
3317 | #define NID_setAttr_TokICCsig 634 | ||
3318 | #define OBJ_setAttr_TokICCsig OBJ_setAttr_IssCap_Sig,1L | ||
3319 | |||
3320 | #define SN_setAttr_SecDevSig "setAttr-SecDevSig" | ||
3321 | #define LN_setAttr_SecDevSig "secure device signature" | ||
3322 | #define NID_setAttr_SecDevSig 635 | ||
3323 | #define OBJ_setAttr_SecDevSig OBJ_setAttr_IssCap_Sig,2L | ||
3324 | |||
3325 | #define SN_set_brand_IATA_ATA "set-brand-IATA-ATA" | ||
3326 | #define NID_set_brand_IATA_ATA 636 | ||
3327 | #define OBJ_set_brand_IATA_ATA OBJ_set_brand,1L | ||
3328 | |||
3329 | #define SN_set_brand_Diners "set-brand-Diners" | ||
3330 | #define NID_set_brand_Diners 637 | ||
3331 | #define OBJ_set_brand_Diners OBJ_set_brand,30L | ||
3332 | |||
3333 | #define SN_set_brand_AmericanExpress "set-brand-AmericanExpress" | ||
3334 | #define NID_set_brand_AmericanExpress 638 | ||
3335 | #define OBJ_set_brand_AmericanExpress OBJ_set_brand,34L | ||
3336 | |||
3337 | #define SN_set_brand_JCB "set-brand-JCB" | ||
3338 | #define NID_set_brand_JCB 639 | ||
3339 | #define OBJ_set_brand_JCB OBJ_set_brand,35L | ||
3340 | |||
3341 | #define SN_set_brand_Visa "set-brand-Visa" | ||
3342 | #define NID_set_brand_Visa 640 | ||
3343 | #define OBJ_set_brand_Visa OBJ_set_brand,4L | ||
3344 | |||
3345 | #define SN_set_brand_MasterCard "set-brand-MasterCard" | ||
3346 | #define NID_set_brand_MasterCard 641 | ||
3347 | #define OBJ_set_brand_MasterCard OBJ_set_brand,5L | ||
3348 | |||
3349 | #define SN_set_brand_Novus "set-brand-Novus" | ||
3350 | #define NID_set_brand_Novus 642 | ||
3351 | #define OBJ_set_brand_Novus OBJ_set_brand,6011L | ||
3352 | |||
3353 | #define SN_des_cdmf "DES-CDMF" | ||
3354 | #define LN_des_cdmf "des-cdmf" | ||
3355 | #define NID_des_cdmf 643 | ||
3356 | #define OBJ_des_cdmf OBJ_rsadsi,3L,10L | ||
3357 | |||
3358 | #define SN_rsaOAEPEncryptionSET "rsaOAEPEncryptionSET" | ||
3359 | #define NID_rsaOAEPEncryptionSET 644 | ||
3360 | #define OBJ_rsaOAEPEncryptionSET OBJ_rsadsi,1L,1L,6L | ||
3361 | |||
3362 | #define SN_ipsec3 "Oakley-EC2N-3" | ||
3363 | #define LN_ipsec3 "ipsec3" | ||
3364 | #define NID_ipsec3 749 | ||
3365 | |||
3366 | #define SN_ipsec4 "Oakley-EC2N-4" | ||
3367 | #define LN_ipsec4 "ipsec4" | ||
3368 | #define NID_ipsec4 750 | ||
3369 | |||
3370 | #define SN_camellia_128_cbc "CAMELLIA-128-CBC" | ||
3371 | #define LN_camellia_128_cbc "camellia-128-cbc" | ||
3372 | #define NID_camellia_128_cbc 751 | ||
3373 | #define OBJ_camellia_128_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,2L | ||
3374 | |||
3375 | #define SN_camellia_192_cbc "CAMELLIA-192-CBC" | ||
3376 | #define LN_camellia_192_cbc "camellia-192-cbc" | ||
3377 | #define NID_camellia_192_cbc 752 | ||
3378 | #define OBJ_camellia_192_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,3L | ||
3379 | |||
3380 | #define SN_camellia_256_cbc "CAMELLIA-256-CBC" | ||
3381 | #define LN_camellia_256_cbc "camellia-256-cbc" | ||
3382 | #define NID_camellia_256_cbc 753 | ||
3383 | #define OBJ_camellia_256_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,4L | ||
3384 | |||
3385 | #define OBJ_ntt_ds 0L,3L,4401L,5L | ||
3386 | |||
3387 | #define OBJ_camellia OBJ_ntt_ds,3L,1L,9L | ||
3388 | |||
3389 | #define SN_camellia_128_ecb "CAMELLIA-128-ECB" | ||
3390 | #define LN_camellia_128_ecb "camellia-128-ecb" | ||
3391 | #define NID_camellia_128_ecb 754 | ||
3392 | #define OBJ_camellia_128_ecb OBJ_camellia,1L | ||
3393 | |||
3394 | #define SN_camellia_128_ofb128 "CAMELLIA-128-OFB" | ||
3395 | #define LN_camellia_128_ofb128 "camellia-128-ofb" | ||
3396 | #define NID_camellia_128_ofb128 766 | ||
3397 | #define OBJ_camellia_128_ofb128 OBJ_camellia,3L | ||
3398 | |||
3399 | #define SN_camellia_128_cfb128 "CAMELLIA-128-CFB" | ||
3400 | #define LN_camellia_128_cfb128 "camellia-128-cfb" | ||
3401 | #define NID_camellia_128_cfb128 757 | ||
3402 | #define OBJ_camellia_128_cfb128 OBJ_camellia,4L | ||
3403 | |||
3404 | #define SN_camellia_192_ecb "CAMELLIA-192-ECB" | ||
3405 | #define LN_camellia_192_ecb "camellia-192-ecb" | ||
3406 | #define NID_camellia_192_ecb 755 | ||
3407 | #define OBJ_camellia_192_ecb OBJ_camellia,21L | ||
3408 | |||
3409 | #define SN_camellia_192_ofb128 "CAMELLIA-192-OFB" | ||
3410 | #define LN_camellia_192_ofb128 "camellia-192-ofb" | ||
3411 | #define NID_camellia_192_ofb128 767 | ||
3412 | #define OBJ_camellia_192_ofb128 OBJ_camellia,23L | ||
3413 | |||
3414 | #define SN_camellia_192_cfb128 "CAMELLIA-192-CFB" | ||
3415 | #define LN_camellia_192_cfb128 "camellia-192-cfb" | ||
3416 | #define NID_camellia_192_cfb128 758 | ||
3417 | #define OBJ_camellia_192_cfb128 OBJ_camellia,24L | ||
3418 | |||
3419 | #define SN_camellia_256_ecb "CAMELLIA-256-ECB" | ||
3420 | #define LN_camellia_256_ecb "camellia-256-ecb" | ||
3421 | #define NID_camellia_256_ecb 756 | ||
3422 | #define OBJ_camellia_256_ecb OBJ_camellia,41L | ||
3423 | |||
3424 | #define SN_camellia_256_ofb128 "CAMELLIA-256-OFB" | ||
3425 | #define LN_camellia_256_ofb128 "camellia-256-ofb" | ||
3426 | #define NID_camellia_256_ofb128 768 | ||
3427 | #define OBJ_camellia_256_ofb128 OBJ_camellia,43L | ||
3428 | |||
3429 | #define SN_camellia_256_cfb128 "CAMELLIA-256-CFB" | ||
3430 | #define LN_camellia_256_cfb128 "camellia-256-cfb" | ||
3431 | #define NID_camellia_256_cfb128 759 | ||
3432 | #define OBJ_camellia_256_cfb128 OBJ_camellia,44L | ||
3433 | |||
3434 | #define SN_camellia_128_cfb1 "CAMELLIA-128-CFB1" | ||
3435 | #define LN_camellia_128_cfb1 "camellia-128-cfb1" | ||
3436 | #define NID_camellia_128_cfb1 760 | ||
3437 | |||
3438 | #define SN_camellia_192_cfb1 "CAMELLIA-192-CFB1" | ||
3439 | #define LN_camellia_192_cfb1 "camellia-192-cfb1" | ||
3440 | #define NID_camellia_192_cfb1 761 | ||
3441 | |||
3442 | #define SN_camellia_256_cfb1 "CAMELLIA-256-CFB1" | ||
3443 | #define LN_camellia_256_cfb1 "camellia-256-cfb1" | ||
3444 | #define NID_camellia_256_cfb1 762 | ||
3445 | |||
3446 | #define SN_camellia_128_cfb8 "CAMELLIA-128-CFB8" | ||
3447 | #define LN_camellia_128_cfb8 "camellia-128-cfb8" | ||
3448 | #define NID_camellia_128_cfb8 763 | ||
3449 | |||
3450 | #define SN_camellia_192_cfb8 "CAMELLIA-192-CFB8" | ||
3451 | #define LN_camellia_192_cfb8 "camellia-192-cfb8" | ||
3452 | #define NID_camellia_192_cfb8 764 | ||
3453 | |||
3454 | #define SN_camellia_256_cfb8 "CAMELLIA-256-CFB8" | ||
3455 | #define LN_camellia_256_cfb8 "camellia-256-cfb8" | ||
3456 | #define NID_camellia_256_cfb8 765 | ||
3457 | |||
3458 | #define SN_kisa "KISA" | ||
3459 | #define LN_kisa "kisa" | ||
3460 | #define NID_kisa 773 | ||
3461 | #define OBJ_kisa OBJ_member_body,410L,200004L | ||
3462 | |||
3463 | #define SN_seed_ecb "SEED-ECB" | ||
3464 | #define LN_seed_ecb "seed-ecb" | ||
3465 | #define NID_seed_ecb 776 | ||
3466 | #define OBJ_seed_ecb OBJ_kisa,1L,3L | ||
3467 | |||
3468 | #define SN_seed_cbc "SEED-CBC" | ||
3469 | #define LN_seed_cbc "seed-cbc" | ||
3470 | #define NID_seed_cbc 777 | ||
3471 | #define OBJ_seed_cbc OBJ_kisa,1L,4L | ||
3472 | |||
3473 | #define SN_seed_cfb128 "SEED-CFB" | ||
3474 | #define LN_seed_cfb128 "seed-cfb" | ||
3475 | #define NID_seed_cfb128 779 | ||
3476 | #define OBJ_seed_cfb128 OBJ_kisa,1L,5L | ||
3477 | |||
3478 | #define SN_seed_ofb128 "SEED-OFB" | ||
3479 | #define LN_seed_ofb128 "seed-ofb" | ||
3480 | #define NID_seed_ofb128 778 | ||
3481 | #define OBJ_seed_ofb128 OBJ_kisa,1L,6L | ||
3482 | |||
diff --git a/src/lib/libcrypto/objects/obj_mac.num b/src/lib/libcrypto/objects/obj_mac.num new file mode 100644 index 0000000000..84555d936e --- /dev/null +++ b/src/lib/libcrypto/objects/obj_mac.num | |||
@@ -0,0 +1,675 @@ | |||
1 | undef 0 | ||
2 | rsadsi 1 | ||
3 | pkcs 2 | ||
4 | md2 3 | ||
5 | md5 4 | ||
6 | rc4 5 | ||
7 | rsaEncryption 6 | ||
8 | md2WithRSAEncryption 7 | ||
9 | md5WithRSAEncryption 8 | ||
10 | pbeWithMD2AndDES_CBC 9 | ||
11 | pbeWithMD5AndDES_CBC 10 | ||
12 | X500 11 | ||
13 | X509 12 | ||
14 | commonName 13 | ||
15 | countryName 14 | ||
16 | localityName 15 | ||
17 | stateOrProvinceName 16 | ||
18 | organizationName 17 | ||
19 | organizationalUnitName 18 | ||
20 | rsa 19 | ||
21 | pkcs7 20 | ||
22 | pkcs7_data 21 | ||
23 | pkcs7_signed 22 | ||
24 | pkcs7_enveloped 23 | ||
25 | pkcs7_signedAndEnveloped 24 | ||
26 | pkcs7_digest 25 | ||
27 | pkcs7_encrypted 26 | ||
28 | pkcs3 27 | ||
29 | dhKeyAgreement 28 | ||
30 | des_ecb 29 | ||
31 | des_cfb64 30 | ||
32 | des_cbc 31 | ||
33 | des_ede_ecb 32 | ||
34 | des_ede3_ecb 33 | ||
35 | idea_cbc 34 | ||
36 | idea_cfb64 35 | ||
37 | idea_ecb 36 | ||
38 | rc2_cbc 37 | ||
39 | rc2_ecb 38 | ||
40 | rc2_cfb64 39 | ||
41 | rc2_ofb64 40 | ||
42 | sha 41 | ||
43 | shaWithRSAEncryption 42 | ||
44 | des_ede_cbc 43 | ||
45 | des_ede3_cbc 44 | ||
46 | des_ofb64 45 | ||
47 | idea_ofb64 46 | ||
48 | pkcs9 47 | ||
49 | pkcs9_emailAddress 48 | ||
50 | pkcs9_unstructuredName 49 | ||
51 | pkcs9_contentType 50 | ||
52 | pkcs9_messageDigest 51 | ||
53 | pkcs9_signingTime 52 | ||
54 | pkcs9_countersignature 53 | ||
55 | pkcs9_challengePassword 54 | ||
56 | pkcs9_unstructuredAddress 55 | ||
57 | pkcs9_extCertAttributes 56 | ||
58 | netscape 57 | ||
59 | netscape_cert_extension 58 | ||
60 | netscape_data_type 59 | ||
61 | des_ede_cfb64 60 | ||
62 | des_ede3_cfb64 61 | ||
63 | des_ede_ofb64 62 | ||
64 | des_ede3_ofb64 63 | ||
65 | sha1 64 | ||
66 | sha1WithRSAEncryption 65 | ||
67 | dsaWithSHA 66 | ||
68 | dsa_2 67 | ||
69 | pbeWithSHA1AndRC2_CBC 68 | ||
70 | id_pbkdf2 69 | ||
71 | dsaWithSHA1_2 70 | ||
72 | netscape_cert_type 71 | ||
73 | netscape_base_url 72 | ||
74 | netscape_revocation_url 73 | ||
75 | netscape_ca_revocation_url 74 | ||
76 | netscape_renewal_url 75 | ||
77 | netscape_ca_policy_url 76 | ||
78 | netscape_ssl_server_name 77 | ||
79 | netscape_comment 78 | ||
80 | netscape_cert_sequence 79 | ||
81 | desx_cbc 80 | ||
82 | id_ce 81 | ||
83 | subject_key_identifier 82 | ||
84 | key_usage 83 | ||
85 | private_key_usage_period 84 | ||
86 | subject_alt_name 85 | ||
87 | issuer_alt_name 86 | ||
88 | basic_constraints 87 | ||
89 | crl_number 88 | ||
90 | certificate_policies 89 | ||
91 | authority_key_identifier 90 | ||
92 | bf_cbc 91 | ||
93 | bf_ecb 92 | ||
94 | bf_cfb64 93 | ||
95 | bf_ofb64 94 | ||
96 | mdc2 95 | ||
97 | mdc2WithRSA 96 | ||
98 | rc4_40 97 | ||
99 | rc2_40_cbc 98 | ||
100 | givenName 99 | ||
101 | surname 100 | ||
102 | initials 101 | ||
103 | uniqueIdentifier 102 | ||
104 | crl_distribution_points 103 | ||
105 | md5WithRSA 104 | ||
106 | serialNumber 105 | ||
107 | title 106 | ||
108 | description 107 | ||
109 | cast5_cbc 108 | ||
110 | cast5_ecb 109 | ||
111 | cast5_cfb64 110 | ||
112 | cast5_ofb64 111 | ||
113 | pbeWithMD5AndCast5_CBC 112 | ||
114 | dsaWithSHA1 113 | ||
115 | md5_sha1 114 | ||
116 | sha1WithRSA 115 | ||
117 | dsa 116 | ||
118 | ripemd160 117 | ||
119 | ripemd160WithRSA 119 | ||
120 | rc5_cbc 120 | ||
121 | rc5_ecb 121 | ||
122 | rc5_cfb64 122 | ||
123 | rc5_ofb64 123 | ||
124 | rle_compression 124 | ||
125 | zlib_compression 125 | ||
126 | ext_key_usage 126 | ||
127 | id_pkix 127 | ||
128 | id_kp 128 | ||
129 | server_auth 129 | ||
130 | client_auth 130 | ||
131 | code_sign 131 | ||
132 | email_protect 132 | ||
133 | time_stamp 133 | ||
134 | ms_code_ind 134 | ||
135 | ms_code_com 135 | ||
136 | ms_ctl_sign 136 | ||
137 | ms_sgc 137 | ||
138 | ms_efs 138 | ||
139 | ns_sgc 139 | ||
140 | delta_crl 140 | ||
141 | crl_reason 141 | ||
142 | invalidity_date 142 | ||
143 | sxnet 143 | ||
144 | pbe_WithSHA1And128BitRC4 144 | ||
145 | pbe_WithSHA1And40BitRC4 145 | ||
146 | pbe_WithSHA1And3_Key_TripleDES_CBC 146 | ||
147 | pbe_WithSHA1And2_Key_TripleDES_CBC 147 | ||
148 | pbe_WithSHA1And128BitRC2_CBC 148 | ||
149 | pbe_WithSHA1And40BitRC2_CBC 149 | ||
150 | keyBag 150 | ||
151 | pkcs8ShroudedKeyBag 151 | ||
152 | certBag 152 | ||
153 | crlBag 153 | ||
154 | secretBag 154 | ||
155 | safeContentsBag 155 | ||
156 | friendlyName 156 | ||
157 | localKeyID 157 | ||
158 | x509Certificate 158 | ||
159 | sdsiCertificate 159 | ||
160 | x509Crl 160 | ||
161 | pbes2 161 | ||
162 | pbmac1 162 | ||
163 | hmacWithSHA1 163 | ||
164 | id_qt_cps 164 | ||
165 | id_qt_unotice 165 | ||
166 | rc2_64_cbc 166 | ||
167 | SMIMECapabilities 167 | ||
168 | pbeWithMD2AndRC2_CBC 168 | ||
169 | pbeWithMD5AndRC2_CBC 169 | ||
170 | pbeWithSHA1AndDES_CBC 170 | ||
171 | ms_ext_req 171 | ||
172 | ext_req 172 | ||
173 | name 173 | ||
174 | dnQualifier 174 | ||
175 | id_pe 175 | ||
176 | id_ad 176 | ||
177 | info_access 177 | ||
178 | ad_OCSP 178 | ||
179 | ad_ca_issuers 179 | ||
180 | OCSP_sign 180 | ||
181 | iso 181 | ||
182 | member_body 182 | ||
183 | ISO_US 183 | ||
184 | X9_57 184 | ||
185 | X9cm 185 | ||
186 | pkcs1 186 | ||
187 | pkcs5 187 | ||
188 | SMIME 188 | ||
189 | id_smime_mod 189 | ||
190 | id_smime_ct 190 | ||
191 | id_smime_aa 191 | ||
192 | id_smime_alg 192 | ||
193 | id_smime_cd 193 | ||
194 | id_smime_spq 194 | ||
195 | id_smime_cti 195 | ||
196 | id_smime_mod_cms 196 | ||
197 | id_smime_mod_ess 197 | ||
198 | id_smime_mod_oid 198 | ||
199 | id_smime_mod_msg_v3 199 | ||
200 | id_smime_mod_ets_eSignature_88 200 | ||
201 | id_smime_mod_ets_eSignature_97 201 | ||
202 | id_smime_mod_ets_eSigPolicy_88 202 | ||
203 | id_smime_mod_ets_eSigPolicy_97 203 | ||
204 | id_smime_ct_receipt 204 | ||
205 | id_smime_ct_authData 205 | ||
206 | id_smime_ct_publishCert 206 | ||
207 | id_smime_ct_TSTInfo 207 | ||
208 | id_smime_ct_TDTInfo 208 | ||
209 | id_smime_ct_contentInfo 209 | ||
210 | id_smime_ct_DVCSRequestData 210 | ||
211 | id_smime_ct_DVCSResponseData 211 | ||
212 | id_smime_aa_receiptRequest 212 | ||
213 | id_smime_aa_securityLabel 213 | ||
214 | id_smime_aa_mlExpandHistory 214 | ||
215 | id_smime_aa_contentHint 215 | ||
216 | id_smime_aa_msgSigDigest 216 | ||
217 | id_smime_aa_encapContentType 217 | ||
218 | id_smime_aa_contentIdentifier 218 | ||
219 | id_smime_aa_macValue 219 | ||
220 | id_smime_aa_equivalentLabels 220 | ||
221 | id_smime_aa_contentReference 221 | ||
222 | id_smime_aa_encrypKeyPref 222 | ||
223 | id_smime_aa_signingCertificate 223 | ||
224 | id_smime_aa_smimeEncryptCerts 224 | ||
225 | id_smime_aa_timeStampToken 225 | ||
226 | id_smime_aa_ets_sigPolicyId 226 | ||
227 | id_smime_aa_ets_commitmentType 227 | ||
228 | id_smime_aa_ets_signerLocation 228 | ||
229 | id_smime_aa_ets_signerAttr 229 | ||
230 | id_smime_aa_ets_otherSigCert 230 | ||
231 | id_smime_aa_ets_contentTimestamp 231 | ||
232 | id_smime_aa_ets_CertificateRefs 232 | ||
233 | id_smime_aa_ets_RevocationRefs 233 | ||
234 | id_smime_aa_ets_certValues 234 | ||
235 | id_smime_aa_ets_revocationValues 235 | ||
236 | id_smime_aa_ets_escTimeStamp 236 | ||
237 | id_smime_aa_ets_certCRLTimestamp 237 | ||
238 | id_smime_aa_ets_archiveTimeStamp 238 | ||
239 | id_smime_aa_signatureType 239 | ||
240 | id_smime_aa_dvcs_dvc 240 | ||
241 | id_smime_alg_ESDHwith3DES 241 | ||
242 | id_smime_alg_ESDHwithRC2 242 | ||
243 | id_smime_alg_3DESwrap 243 | ||
244 | id_smime_alg_RC2wrap 244 | ||
245 | id_smime_alg_ESDH 245 | ||
246 | id_smime_alg_CMS3DESwrap 246 | ||
247 | id_smime_alg_CMSRC2wrap 247 | ||
248 | id_smime_cd_ldap 248 | ||
249 | id_smime_spq_ets_sqt_uri 249 | ||
250 | id_smime_spq_ets_sqt_unotice 250 | ||
251 | id_smime_cti_ets_proofOfOrigin 251 | ||
252 | id_smime_cti_ets_proofOfReceipt 252 | ||
253 | id_smime_cti_ets_proofOfDelivery 253 | ||
254 | id_smime_cti_ets_proofOfSender 254 | ||
255 | id_smime_cti_ets_proofOfApproval 255 | ||
256 | id_smime_cti_ets_proofOfCreation 256 | ||
257 | md4 257 | ||
258 | id_pkix_mod 258 | ||
259 | id_qt 259 | ||
260 | id_it 260 | ||
261 | id_pkip 261 | ||
262 | id_alg 262 | ||
263 | id_cmc 263 | ||
264 | id_on 264 | ||
265 | id_pda 265 | ||
266 | id_aca 266 | ||
267 | id_qcs 267 | ||
268 | id_cct 268 | ||
269 | id_pkix1_explicit_88 269 | ||
270 | id_pkix1_implicit_88 270 | ||
271 | id_pkix1_explicit_93 271 | ||
272 | id_pkix1_implicit_93 272 | ||
273 | id_mod_crmf 273 | ||
274 | id_mod_cmc 274 | ||
275 | id_mod_kea_profile_88 275 | ||
276 | id_mod_kea_profile_93 276 | ||
277 | id_mod_cmp 277 | ||
278 | id_mod_qualified_cert_88 278 | ||
279 | id_mod_qualified_cert_93 279 | ||
280 | id_mod_attribute_cert 280 | ||
281 | id_mod_timestamp_protocol 281 | ||
282 | id_mod_ocsp 282 | ||
283 | id_mod_dvcs 283 | ||
284 | id_mod_cmp2000 284 | ||
285 | biometricInfo 285 | ||
286 | qcStatements 286 | ||
287 | ac_auditEntity 287 | ||
288 | ac_targeting 288 | ||
289 | aaControls 289 | ||
290 | sbgp_ipAddrBlock 290 | ||
291 | sbgp_autonomousSysNum 291 | ||
292 | sbgp_routerIdentifier 292 | ||
293 | textNotice 293 | ||
294 | ipsecEndSystem 294 | ||
295 | ipsecTunnel 295 | ||
296 | ipsecUser 296 | ||
297 | dvcs 297 | ||
298 | id_it_caProtEncCert 298 | ||
299 | id_it_signKeyPairTypes 299 | ||
300 | id_it_encKeyPairTypes 300 | ||
301 | id_it_preferredSymmAlg 301 | ||
302 | id_it_caKeyUpdateInfo 302 | ||
303 | id_it_currentCRL 303 | ||
304 | id_it_unsupportedOIDs 304 | ||
305 | id_it_subscriptionRequest 305 | ||
306 | id_it_subscriptionResponse 306 | ||
307 | id_it_keyPairParamReq 307 | ||
308 | id_it_keyPairParamRep 308 | ||
309 | id_it_revPassphrase 309 | ||
310 | id_it_implicitConfirm 310 | ||
311 | id_it_confirmWaitTime 311 | ||
312 | id_it_origPKIMessage 312 | ||
313 | id_regCtrl 313 | ||
314 | id_regInfo 314 | ||
315 | id_regCtrl_regToken 315 | ||
316 | id_regCtrl_authenticator 316 | ||
317 | id_regCtrl_pkiPublicationInfo 317 | ||
318 | id_regCtrl_pkiArchiveOptions 318 | ||
319 | id_regCtrl_oldCertID 319 | ||
320 | id_regCtrl_protocolEncrKey 320 | ||
321 | id_regInfo_utf8Pairs 321 | ||
322 | id_regInfo_certReq 322 | ||
323 | id_alg_des40 323 | ||
324 | id_alg_noSignature 324 | ||
325 | id_alg_dh_sig_hmac_sha1 325 | ||
326 | id_alg_dh_pop 326 | ||
327 | id_cmc_statusInfo 327 | ||
328 | id_cmc_identification 328 | ||
329 | id_cmc_identityProof 329 | ||
330 | id_cmc_dataReturn 330 | ||
331 | id_cmc_transactionId 331 | ||
332 | id_cmc_senderNonce 332 | ||
333 | id_cmc_recipientNonce 333 | ||
334 | id_cmc_addExtensions 334 | ||
335 | id_cmc_encryptedPOP 335 | ||
336 | id_cmc_decryptedPOP 336 | ||
337 | id_cmc_lraPOPWitness 337 | ||
338 | id_cmc_getCert 338 | ||
339 | id_cmc_getCRL 339 | ||
340 | id_cmc_revokeRequest 340 | ||
341 | id_cmc_regInfo 341 | ||
342 | id_cmc_responseInfo 342 | ||
343 | id_cmc_queryPending 343 | ||
344 | id_cmc_popLinkRandom 344 | ||
345 | id_cmc_popLinkWitness 345 | ||
346 | id_cmc_confirmCertAcceptance 346 | ||
347 | id_on_personalData 347 | ||
348 | id_pda_dateOfBirth 348 | ||
349 | id_pda_placeOfBirth 349 | ||
350 | id_pda_pseudonym 350 | ||
351 | id_pda_gender 351 | ||
352 | id_pda_countryOfCitizenship 352 | ||
353 | id_pda_countryOfResidence 353 | ||
354 | id_aca_authenticationInfo 354 | ||
355 | id_aca_accessIdentity 355 | ||
356 | id_aca_chargingIdentity 356 | ||
357 | id_aca_group 357 | ||
358 | id_aca_role 358 | ||
359 | id_qcs_pkixQCSyntax_v1 359 | ||
360 | id_cct_crs 360 | ||
361 | id_cct_PKIData 361 | ||
362 | id_cct_PKIResponse 362 | ||
363 | ad_timeStamping 363 | ||
364 | ad_dvcs 364 | ||
365 | id_pkix_OCSP_basic 365 | ||
366 | id_pkix_OCSP_Nonce 366 | ||
367 | id_pkix_OCSP_CrlID 367 | ||
368 | id_pkix_OCSP_acceptableResponses 368 | ||
369 | id_pkix_OCSP_noCheck 369 | ||
370 | id_pkix_OCSP_archiveCutoff 370 | ||
371 | id_pkix_OCSP_serviceLocator 371 | ||
372 | id_pkix_OCSP_extendedStatus 372 | ||
373 | id_pkix_OCSP_valid 373 | ||
374 | id_pkix_OCSP_path 374 | ||
375 | id_pkix_OCSP_trustRoot 375 | ||
376 | algorithm 376 | ||
377 | rsaSignature 377 | ||
378 | X500algorithms 378 | ||
379 | org 379 | ||
380 | dod 380 | ||
381 | iana 381 | ||
382 | Directory 382 | ||
383 | Management 383 | ||
384 | Experimental 384 | ||
385 | Private 385 | ||
386 | Security 386 | ||
387 | SNMPv2 387 | ||
388 | Mail 388 | ||
389 | Enterprises 389 | ||
390 | dcObject 390 | ||
391 | domainComponent 391 | ||
392 | Domain 392 | ||
393 | joint_iso_ccitt 393 | ||
394 | selected_attribute_types 394 | ||
395 | clearance 395 | ||
396 | md4WithRSAEncryption 396 | ||
397 | ac_proxying 397 | ||
398 | sinfo_access 398 | ||
399 | id_aca_encAttrs 399 | ||
400 | role 400 | ||
401 | policy_constraints 401 | ||
402 | target_information 402 | ||
403 | no_rev_avail 403 | ||
404 | ccitt 404 | ||
405 | ansi_X9_62 405 | ||
406 | X9_62_prime_field 406 | ||
407 | X9_62_characteristic_two_field 407 | ||
408 | X9_62_id_ecPublicKey 408 | ||
409 | X9_62_prime192v1 409 | ||
410 | X9_62_prime192v2 410 | ||
411 | X9_62_prime192v3 411 | ||
412 | X9_62_prime239v1 412 | ||
413 | X9_62_prime239v2 413 | ||
414 | X9_62_prime239v3 414 | ||
415 | X9_62_prime256v1 415 | ||
416 | ecdsa_with_SHA1 416 | ||
417 | ms_csp_name 417 | ||
418 | aes_128_ecb 418 | ||
419 | aes_128_cbc 419 | ||
420 | aes_128_ofb128 420 | ||
421 | aes_128_cfb128 421 | ||
422 | aes_192_ecb 422 | ||
423 | aes_192_cbc 423 | ||
424 | aes_192_ofb128 424 | ||
425 | aes_192_cfb128 425 | ||
426 | aes_256_ecb 426 | ||
427 | aes_256_cbc 427 | ||
428 | aes_256_ofb128 428 | ||
429 | aes_256_cfb128 429 | ||
430 | hold_instruction_code 430 | ||
431 | hold_instruction_none 431 | ||
432 | hold_instruction_call_issuer 432 | ||
433 | hold_instruction_reject 433 | ||
434 | data 434 | ||
435 | pss 435 | ||
436 | ucl 436 | ||
437 | pilot 437 | ||
438 | pilotAttributeType 438 | ||
439 | pilotAttributeSyntax 439 | ||
440 | pilotObjectClass 440 | ||
441 | pilotGroups 441 | ||
442 | iA5StringSyntax 442 | ||
443 | caseIgnoreIA5StringSyntax 443 | ||
444 | pilotObject 444 | ||
445 | pilotPerson 445 | ||
446 | account 446 | ||
447 | document 447 | ||
448 | room 448 | ||
449 | documentSeries 449 | ||
450 | rFC822localPart 450 | ||
451 | dNSDomain 451 | ||
452 | domainRelatedObject 452 | ||
453 | friendlyCountry 453 | ||
454 | simpleSecurityObject 454 | ||
455 | pilotOrganization 455 | ||
456 | pilotDSA 456 | ||
457 | qualityLabelledData 457 | ||
458 | userId 458 | ||
459 | textEncodedORAddress 459 | ||
460 | rfc822Mailbox 460 | ||
461 | info 461 | ||
462 | favouriteDrink 462 | ||
463 | roomNumber 463 | ||
464 | photo 464 | ||
465 | userClass 465 | ||
466 | host 466 | ||
467 | manager 467 | ||
468 | documentIdentifier 468 | ||
469 | documentTitle 469 | ||
470 | documentVersion 470 | ||
471 | documentAuthor 471 | ||
472 | documentLocation 472 | ||
473 | homeTelephoneNumber 473 | ||
474 | secretary 474 | ||
475 | otherMailbox 475 | ||
476 | lastModifiedTime 476 | ||
477 | lastModifiedBy 477 | ||
478 | aRecord 478 | ||
479 | pilotAttributeType27 479 | ||
480 | mXRecord 480 | ||
481 | nSRecord 481 | ||
482 | sOARecord 482 | ||
483 | cNAMERecord 483 | ||
484 | associatedDomain 484 | ||
485 | associatedName 485 | ||
486 | homePostalAddress 486 | ||
487 | personalTitle 487 | ||
488 | mobileTelephoneNumber 488 | ||
489 | pagerTelephoneNumber 489 | ||
490 | friendlyCountryName 490 | ||
491 | organizationalStatus 491 | ||
492 | janetMailbox 492 | ||
493 | mailPreferenceOption 493 | ||
494 | buildingName 494 | ||
495 | dSAQuality 495 | ||
496 | singleLevelQuality 496 | ||
497 | subtreeMinimumQuality 497 | ||
498 | subtreeMaximumQuality 498 | ||
499 | personalSignature 499 | ||
500 | dITRedirect 500 | ||
501 | audio 501 | ||
502 | documentPublisher 502 | ||
503 | x500UniqueIdentifier 503 | ||
504 | mime_mhs 504 | ||
505 | mime_mhs_headings 505 | ||
506 | mime_mhs_bodies 506 | ||
507 | id_hex_partial_message 507 | ||
508 | id_hex_multipart_message 508 | ||
509 | generationQualifier 509 | ||
510 | pseudonym 510 | ||
511 | InternationalRA 511 | ||
512 | id_set 512 | ||
513 | set_ctype 513 | ||
514 | set_msgExt 514 | ||
515 | set_attr 515 | ||
516 | set_policy 516 | ||
517 | set_certExt 517 | ||
518 | set_brand 518 | ||
519 | setct_PANData 519 | ||
520 | setct_PANToken 520 | ||
521 | setct_PANOnly 521 | ||
522 | setct_OIData 522 | ||
523 | setct_PI 523 | ||
524 | setct_PIData 524 | ||
525 | setct_PIDataUnsigned 525 | ||
526 | setct_HODInput 526 | ||
527 | setct_AuthResBaggage 527 | ||
528 | setct_AuthRevReqBaggage 528 | ||
529 | setct_AuthRevResBaggage 529 | ||
530 | setct_CapTokenSeq 530 | ||
531 | setct_PInitResData 531 | ||
532 | setct_PI_TBS 532 | ||
533 | setct_PResData 533 | ||
534 | setct_AuthReqTBS 534 | ||
535 | setct_AuthResTBS 535 | ||
536 | setct_AuthResTBSX 536 | ||
537 | setct_AuthTokenTBS 537 | ||
538 | setct_CapTokenData 538 | ||
539 | setct_CapTokenTBS 539 | ||
540 | setct_AcqCardCodeMsg 540 | ||
541 | setct_AuthRevReqTBS 541 | ||
542 | setct_AuthRevResData 542 | ||
543 | setct_AuthRevResTBS 543 | ||
544 | setct_CapReqTBS 544 | ||
545 | setct_CapReqTBSX 545 | ||
546 | setct_CapResData 546 | ||
547 | setct_CapRevReqTBS 547 | ||
548 | setct_CapRevReqTBSX 548 | ||
549 | setct_CapRevResData 549 | ||
550 | setct_CredReqTBS 550 | ||
551 | setct_CredReqTBSX 551 | ||
552 | setct_CredResData 552 | ||
553 | setct_CredRevReqTBS 553 | ||
554 | setct_CredRevReqTBSX 554 | ||
555 | setct_CredRevResData 555 | ||
556 | setct_PCertReqData 556 | ||
557 | setct_PCertResTBS 557 | ||
558 | setct_BatchAdminReqData 558 | ||
559 | setct_BatchAdminResData 559 | ||
560 | setct_CardCInitResTBS 560 | ||
561 | setct_MeAqCInitResTBS 561 | ||
562 | setct_RegFormResTBS 562 | ||
563 | setct_CertReqData 563 | ||
564 | setct_CertReqTBS 564 | ||
565 | setct_CertResData 565 | ||
566 | setct_CertInqReqTBS 566 | ||
567 | setct_ErrorTBS 567 | ||
568 | setct_PIDualSignedTBE 568 | ||
569 | setct_PIUnsignedTBE 569 | ||
570 | setct_AuthReqTBE 570 | ||
571 | setct_AuthResTBE 571 | ||
572 | setct_AuthResTBEX 572 | ||
573 | setct_AuthTokenTBE 573 | ||
574 | setct_CapTokenTBE 574 | ||
575 | setct_CapTokenTBEX 575 | ||
576 | setct_AcqCardCodeMsgTBE 576 | ||
577 | setct_AuthRevReqTBE 577 | ||
578 | setct_AuthRevResTBE 578 | ||
579 | setct_AuthRevResTBEB 579 | ||
580 | setct_CapReqTBE 580 | ||
581 | setct_CapReqTBEX 581 | ||
582 | setct_CapResTBE 582 | ||
583 | setct_CapRevReqTBE 583 | ||
584 | setct_CapRevReqTBEX 584 | ||
585 | setct_CapRevResTBE 585 | ||
586 | setct_CredReqTBE 586 | ||
587 | setct_CredReqTBEX 587 | ||
588 | setct_CredResTBE 588 | ||
589 | setct_CredRevReqTBE 589 | ||
590 | setct_CredRevReqTBEX 590 | ||
591 | setct_CredRevResTBE 591 | ||
592 | setct_BatchAdminReqTBE 592 | ||
593 | setct_BatchAdminResTBE 593 | ||
594 | setct_RegFormReqTBE 594 | ||
595 | setct_CertReqTBE 595 | ||
596 | setct_CertReqTBEX 596 | ||
597 | setct_CertResTBE 597 | ||
598 | setct_CRLNotificationTBS 598 | ||
599 | setct_CRLNotificationResTBS 599 | ||
600 | setct_BCIDistributionTBS 600 | ||
601 | setext_genCrypt 601 | ||
602 | setext_miAuth 602 | ||
603 | setext_pinSecure 603 | ||
604 | setext_pinAny 604 | ||
605 | setext_track2 605 | ||
606 | setext_cv 606 | ||
607 | set_policy_root 607 | ||
608 | setCext_hashedRoot 608 | ||
609 | setCext_certType 609 | ||
610 | setCext_merchData 610 | ||
611 | setCext_cCertRequired 611 | ||
612 | setCext_tunneling 612 | ||
613 | setCext_setExt 613 | ||
614 | setCext_setQualf 614 | ||
615 | setCext_PGWYcapabilities 615 | ||
616 | setCext_TokenIdentifier 616 | ||
617 | setCext_Track2Data 617 | ||
618 | setCext_TokenType 618 | ||
619 | setCext_IssuerCapabilities 619 | ||
620 | setAttr_Cert 620 | ||
621 | setAttr_PGWYcap 621 | ||
622 | setAttr_TokenType 622 | ||
623 | setAttr_IssCap 623 | ||
624 | set_rootKeyThumb 624 | ||
625 | set_addPolicy 625 | ||
626 | setAttr_Token_EMV 626 | ||
627 | setAttr_Token_B0Prime 627 | ||
628 | setAttr_IssCap_CVM 628 | ||
629 | setAttr_IssCap_T2 629 | ||
630 | setAttr_IssCap_Sig 630 | ||
631 | setAttr_GenCryptgrm 631 | ||
632 | setAttr_T2Enc 632 | ||
633 | setAttr_T2cleartxt 633 | ||
634 | setAttr_TokICCsig 634 | ||
635 | setAttr_SecDevSig 635 | ||
636 | set_brand_IATA_ATA 636 | ||
637 | set_brand_Diners 637 | ||
638 | set_brand_AmericanExpress 638 | ||
639 | set_brand_JCB 639 | ||
640 | set_brand_Visa 640 | ||
641 | set_brand_MasterCard 641 | ||
642 | set_brand_Novus 642 | ||
643 | des_cdmf 643 | ||
644 | rsaOAEPEncryptionSET 644 | ||
645 | itu_t 645 | ||
646 | joint_iso_itu_t 646 | ||
647 | international_organizations 647 | ||
648 | ms_smartcard_login 648 | ||
649 | ms_upn 649 | ||
650 | aes_128_cfb1 650 | ||
651 | aes_192_cfb1 651 | ||
652 | aes_256_cfb1 652 | ||
653 | aes_128_cfb8 653 | ||
654 | aes_192_cfb8 654 | ||
655 | aes_256_cfb8 655 | ||
656 | des_cfb1 656 | ||
657 | des_cfb8 657 | ||
658 | des_ede3_cfb1 658 | ||
659 | des_ede3_cfb8 659 | ||
660 | streetAddress 660 | ||
661 | postalCode 661 | ||
662 | id_ppl 662 | ||
663 | proxyCertInfo 663 | ||
664 | id_ppl_anyLanguage 664 | ||
665 | id_ppl_inheritAll 665 | ||
666 | name_constraints 666 | ||
667 | Independent 667 | ||
668 | sha256WithRSAEncryption 668 | ||
669 | sha384WithRSAEncryption 669 | ||
670 | sha512WithRSAEncryption 670 | ||
671 | sha224WithRSAEncryption 671 | ||
672 | sha256 672 | ||
673 | sha384 673 | ||
674 | sha512 674 | ||
675 | sha224 675 | ||
diff --git a/src/lib/libcrypto/objects/objects.README b/src/lib/libcrypto/objects/objects.README new file mode 100644 index 0000000000..4d745508d8 --- /dev/null +++ b/src/lib/libcrypto/objects/objects.README | |||
@@ -0,0 +1,44 @@ | |||
1 | objects.txt syntax | ||
2 | ------------------ | ||
3 | |||
4 | To cover all the naming hacks that were previously in objects.h needed some | ||
5 | kind of hacks in objects.txt. | ||
6 | |||
7 | The basic syntax for adding an object is as follows: | ||
8 | |||
9 | 1 2 3 4 : shortName : Long Name | ||
10 | |||
11 | If the long name doesn't contain spaces, or no short name | ||
12 | exists, the long name is used as basis for the base name | ||
13 | in C. Otherwise, the short name is used. | ||
14 | |||
15 | The base name (let's call it 'base') will then be used to | ||
16 | create the C macros SN_base, LN_base, NID_base and OBJ_base. | ||
17 | |||
18 | Note that if the base name contains spaces, dashes or periods, | ||
19 | those will be converte to underscore. | ||
20 | |||
21 | Then there are some extra commands: | ||
22 | |||
23 | !Alias foo 1 2 3 4 | ||
24 | |||
25 | This juts makes a name foo for an OID. The C macro | ||
26 | OBJ_foo will be created as a result. | ||
27 | |||
28 | !Cname foo | ||
29 | |||
30 | This makes sure that the name foo will be used as base name | ||
31 | in C. | ||
32 | |||
33 | !module foo | ||
34 | 1 2 3 4 : shortName : Long Name | ||
35 | !global | ||
36 | |||
37 | The !module command was meant to define a kind of modularity. | ||
38 | What it does is to make sure the module name is prepended | ||
39 | to the base name. !global turns this off. This construction | ||
40 | is not recursive. | ||
41 | |||
42 | Lines starting with # are treated as comments, as well as any line starting | ||
43 | with ! and not matching the commands above. | ||
44 | |||
diff --git a/src/lib/libcrypto/objects/objects.h b/src/lib/libcrypto/objects/objects.h new file mode 100644 index 0000000000..f859d859b8 --- /dev/null +++ b/src/lib/libcrypto/objects/objects.h | |||
@@ -0,0 +1,1044 @@ | |||
1 | /* crypto/objects/objects.h */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #ifndef HEADER_OBJECTS_H | ||
60 | #define HEADER_OBJECTS_H | ||
61 | |||
62 | #define USE_OBJ_MAC | ||
63 | |||
64 | #ifdef USE_OBJ_MAC | ||
65 | #include <openssl/obj_mac.h> | ||
66 | #else | ||
67 | #define SN_undef "UNDEF" | ||
68 | #define LN_undef "undefined" | ||
69 | #define NID_undef 0 | ||
70 | #define OBJ_undef 0L | ||
71 | |||
72 | #define SN_Algorithm "Algorithm" | ||
73 | #define LN_algorithm "algorithm" | ||
74 | #define NID_algorithm 38 | ||
75 | #define OBJ_algorithm 1L,3L,14L,3L,2L | ||
76 | |||
77 | #define LN_rsadsi "rsadsi" | ||
78 | #define NID_rsadsi 1 | ||
79 | #define OBJ_rsadsi 1L,2L,840L,113549L | ||
80 | |||
81 | #define LN_pkcs "pkcs" | ||
82 | #define NID_pkcs 2 | ||
83 | #define OBJ_pkcs OBJ_rsadsi,1L | ||
84 | |||
85 | #define SN_md2 "MD2" | ||
86 | #define LN_md2 "md2" | ||
87 | #define NID_md2 3 | ||
88 | #define OBJ_md2 OBJ_rsadsi,2L,2L | ||
89 | |||
90 | #define SN_md5 "MD5" | ||
91 | #define LN_md5 "md5" | ||
92 | #define NID_md5 4 | ||
93 | #define OBJ_md5 OBJ_rsadsi,2L,5L | ||
94 | |||
95 | #define SN_rc4 "RC4" | ||
96 | #define LN_rc4 "rc4" | ||
97 | #define NID_rc4 5 | ||
98 | #define OBJ_rc4 OBJ_rsadsi,3L,4L | ||
99 | |||
100 | #define LN_rsaEncryption "rsaEncryption" | ||
101 | #define NID_rsaEncryption 6 | ||
102 | #define OBJ_rsaEncryption OBJ_pkcs,1L,1L | ||
103 | |||
104 | #define SN_md2WithRSAEncryption "RSA-MD2" | ||
105 | #define LN_md2WithRSAEncryption "md2WithRSAEncryption" | ||
106 | #define NID_md2WithRSAEncryption 7 | ||
107 | #define OBJ_md2WithRSAEncryption OBJ_pkcs,1L,2L | ||
108 | |||
109 | #define SN_md5WithRSAEncryption "RSA-MD5" | ||
110 | #define LN_md5WithRSAEncryption "md5WithRSAEncryption" | ||
111 | #define NID_md5WithRSAEncryption 8 | ||
112 | #define OBJ_md5WithRSAEncryption OBJ_pkcs,1L,4L | ||
113 | |||
114 | #define SN_pbeWithMD2AndDES_CBC "PBE-MD2-DES" | ||
115 | #define LN_pbeWithMD2AndDES_CBC "pbeWithMD2AndDES-CBC" | ||
116 | #define NID_pbeWithMD2AndDES_CBC 9 | ||
117 | #define OBJ_pbeWithMD2AndDES_CBC OBJ_pkcs,5L,1L | ||
118 | |||
119 | #define SN_pbeWithMD5AndDES_CBC "PBE-MD5-DES" | ||
120 | #define LN_pbeWithMD5AndDES_CBC "pbeWithMD5AndDES-CBC" | ||
121 | #define NID_pbeWithMD5AndDES_CBC 10 | ||
122 | #define OBJ_pbeWithMD5AndDES_CBC OBJ_pkcs,5L,3L | ||
123 | |||
124 | #define LN_X500 "X500" | ||
125 | #define NID_X500 11 | ||
126 | #define OBJ_X500 2L,5L | ||
127 | |||
128 | #define LN_X509 "X509" | ||
129 | #define NID_X509 12 | ||
130 | #define OBJ_X509 OBJ_X500,4L | ||
131 | |||
132 | #define SN_commonName "CN" | ||
133 | #define LN_commonName "commonName" | ||
134 | #define NID_commonName 13 | ||
135 | #define OBJ_commonName OBJ_X509,3L | ||
136 | |||
137 | #define SN_countryName "C" | ||
138 | #define LN_countryName "countryName" | ||
139 | #define NID_countryName 14 | ||
140 | #define OBJ_countryName OBJ_X509,6L | ||
141 | |||
142 | #define SN_localityName "L" | ||
143 | #define LN_localityName "localityName" | ||
144 | #define NID_localityName 15 | ||
145 | #define OBJ_localityName OBJ_X509,7L | ||
146 | |||
147 | /* Postal Address? PA */ | ||
148 | |||
149 | /* should be "ST" (rfc1327) but MS uses 'S' */ | ||
150 | #define SN_stateOrProvinceName "ST" | ||
151 | #define LN_stateOrProvinceName "stateOrProvinceName" | ||
152 | #define NID_stateOrProvinceName 16 | ||
153 | #define OBJ_stateOrProvinceName OBJ_X509,8L | ||
154 | |||
155 | #define SN_organizationName "O" | ||
156 | #define LN_organizationName "organizationName" | ||
157 | #define NID_organizationName 17 | ||
158 | #define OBJ_organizationName OBJ_X509,10L | ||
159 | |||
160 | #define SN_organizationalUnitName "OU" | ||
161 | #define LN_organizationalUnitName "organizationalUnitName" | ||
162 | #define NID_organizationalUnitName 18 | ||
163 | #define OBJ_organizationalUnitName OBJ_X509,11L | ||
164 | |||
165 | #define SN_rsa "RSA" | ||
166 | #define LN_rsa "rsa" | ||
167 | #define NID_rsa 19 | ||
168 | #define OBJ_rsa OBJ_X500,8L,1L,1L | ||
169 | |||
170 | #define LN_pkcs7 "pkcs7" | ||
171 | #define NID_pkcs7 20 | ||
172 | #define OBJ_pkcs7 OBJ_pkcs,7L | ||
173 | |||
174 | #define LN_pkcs7_data "pkcs7-data" | ||
175 | #define NID_pkcs7_data 21 | ||
176 | #define OBJ_pkcs7_data OBJ_pkcs7,1L | ||
177 | |||
178 | #define LN_pkcs7_signed "pkcs7-signedData" | ||
179 | #define NID_pkcs7_signed 22 | ||
180 | #define OBJ_pkcs7_signed OBJ_pkcs7,2L | ||
181 | |||
182 | #define LN_pkcs7_enveloped "pkcs7-envelopedData" | ||
183 | #define NID_pkcs7_enveloped 23 | ||
184 | #define OBJ_pkcs7_enveloped OBJ_pkcs7,3L | ||
185 | |||
186 | #define LN_pkcs7_signedAndEnveloped "pkcs7-signedAndEnvelopedData" | ||
187 | #define NID_pkcs7_signedAndEnveloped 24 | ||
188 | #define OBJ_pkcs7_signedAndEnveloped OBJ_pkcs7,4L | ||
189 | |||
190 | #define LN_pkcs7_digest "pkcs7-digestData" | ||
191 | #define NID_pkcs7_digest 25 | ||
192 | #define OBJ_pkcs7_digest OBJ_pkcs7,5L | ||
193 | |||
194 | #define LN_pkcs7_encrypted "pkcs7-encryptedData" | ||
195 | #define NID_pkcs7_encrypted 26 | ||
196 | #define OBJ_pkcs7_encrypted OBJ_pkcs7,6L | ||
197 | |||
198 | #define LN_pkcs3 "pkcs3" | ||
199 | #define NID_pkcs3 27 | ||
200 | #define OBJ_pkcs3 OBJ_pkcs,3L | ||
201 | |||
202 | #define LN_dhKeyAgreement "dhKeyAgreement" | ||
203 | #define NID_dhKeyAgreement 28 | ||
204 | #define OBJ_dhKeyAgreement OBJ_pkcs3,1L | ||
205 | |||
206 | #define SN_des_ecb "DES-ECB" | ||
207 | #define LN_des_ecb "des-ecb" | ||
208 | #define NID_des_ecb 29 | ||
209 | #define OBJ_des_ecb OBJ_algorithm,6L | ||
210 | |||
211 | #define SN_des_cfb64 "DES-CFB" | ||
212 | #define LN_des_cfb64 "des-cfb" | ||
213 | #define NID_des_cfb64 30 | ||
214 | /* IV + num */ | ||
215 | #define OBJ_des_cfb64 OBJ_algorithm,9L | ||
216 | |||
217 | #define SN_des_cbc "DES-CBC" | ||
218 | #define LN_des_cbc "des-cbc" | ||
219 | #define NID_des_cbc 31 | ||
220 | /* IV */ | ||
221 | #define OBJ_des_cbc OBJ_algorithm,7L | ||
222 | |||
223 | #define SN_des_ede "DES-EDE" | ||
224 | #define LN_des_ede "des-ede" | ||
225 | #define NID_des_ede 32 | ||
226 | /* ?? */ | ||
227 | #define OBJ_des_ede OBJ_algorithm,17L | ||
228 | |||
229 | #define SN_des_ede3 "DES-EDE3" | ||
230 | #define LN_des_ede3 "des-ede3" | ||
231 | #define NID_des_ede3 33 | ||
232 | |||
233 | #define SN_idea_cbc "IDEA-CBC" | ||
234 | #define LN_idea_cbc "idea-cbc" | ||
235 | #define NID_idea_cbc 34 | ||
236 | #define OBJ_idea_cbc 1L,3L,6L,1L,4L,1L,188L,7L,1L,1L,2L | ||
237 | |||
238 | #define SN_idea_cfb64 "IDEA-CFB" | ||
239 | #define LN_idea_cfb64 "idea-cfb" | ||
240 | #define NID_idea_cfb64 35 | ||
241 | |||
242 | #define SN_idea_ecb "IDEA-ECB" | ||
243 | #define LN_idea_ecb "idea-ecb" | ||
244 | #define NID_idea_ecb 36 | ||
245 | |||
246 | #define SN_rc2_cbc "RC2-CBC" | ||
247 | #define LN_rc2_cbc "rc2-cbc" | ||
248 | #define NID_rc2_cbc 37 | ||
249 | #define OBJ_rc2_cbc OBJ_rsadsi,3L,2L | ||
250 | |||
251 | #define SN_rc2_ecb "RC2-ECB" | ||
252 | #define LN_rc2_ecb "rc2-ecb" | ||
253 | #define NID_rc2_ecb 38 | ||
254 | |||
255 | #define SN_rc2_cfb64 "RC2-CFB" | ||
256 | #define LN_rc2_cfb64 "rc2-cfb" | ||
257 | #define NID_rc2_cfb64 39 | ||
258 | |||
259 | #define SN_rc2_ofb64 "RC2-OFB" | ||
260 | #define LN_rc2_ofb64 "rc2-ofb" | ||
261 | #define NID_rc2_ofb64 40 | ||
262 | |||
263 | #define SN_sha "SHA" | ||
264 | #define LN_sha "sha" | ||
265 | #define NID_sha 41 | ||
266 | #define OBJ_sha OBJ_algorithm,18L | ||
267 | |||
268 | #define SN_shaWithRSAEncryption "RSA-SHA" | ||
269 | #define LN_shaWithRSAEncryption "shaWithRSAEncryption" | ||
270 | #define NID_shaWithRSAEncryption 42 | ||
271 | #define OBJ_shaWithRSAEncryption OBJ_algorithm,15L | ||
272 | |||
273 | #define SN_des_ede_cbc "DES-EDE-CBC" | ||
274 | #define LN_des_ede_cbc "des-ede-cbc" | ||
275 | #define NID_des_ede_cbc 43 | ||
276 | |||
277 | #define SN_des_ede3_cbc "DES-EDE3-CBC" | ||
278 | #define LN_des_ede3_cbc "des-ede3-cbc" | ||
279 | #define NID_des_ede3_cbc 44 | ||
280 | #define OBJ_des_ede3_cbc OBJ_rsadsi,3L,7L | ||
281 | |||
282 | #define SN_des_ofb64 "DES-OFB" | ||
283 | #define LN_des_ofb64 "des-ofb" | ||
284 | #define NID_des_ofb64 45 | ||
285 | #define OBJ_des_ofb64 OBJ_algorithm,8L | ||
286 | |||
287 | #define SN_idea_ofb64 "IDEA-OFB" | ||
288 | #define LN_idea_ofb64 "idea-ofb" | ||
289 | #define NID_idea_ofb64 46 | ||
290 | |||
291 | #define LN_pkcs9 "pkcs9" | ||
292 | #define NID_pkcs9 47 | ||
293 | #define OBJ_pkcs9 OBJ_pkcs,9L | ||
294 | |||
295 | #define SN_pkcs9_emailAddress "Email" | ||
296 | #define LN_pkcs9_emailAddress "emailAddress" | ||
297 | #define NID_pkcs9_emailAddress 48 | ||
298 | #define OBJ_pkcs9_emailAddress OBJ_pkcs9,1L | ||
299 | |||
300 | #define LN_pkcs9_unstructuredName "unstructuredName" | ||
301 | #define NID_pkcs9_unstructuredName 49 | ||
302 | #define OBJ_pkcs9_unstructuredName OBJ_pkcs9,2L | ||
303 | |||
304 | #define LN_pkcs9_contentType "contentType" | ||
305 | #define NID_pkcs9_contentType 50 | ||
306 | #define OBJ_pkcs9_contentType OBJ_pkcs9,3L | ||
307 | |||
308 | #define LN_pkcs9_messageDigest "messageDigest" | ||
309 | #define NID_pkcs9_messageDigest 51 | ||
310 | #define OBJ_pkcs9_messageDigest OBJ_pkcs9,4L | ||
311 | |||
312 | #define LN_pkcs9_signingTime "signingTime" | ||
313 | #define NID_pkcs9_signingTime 52 | ||
314 | #define OBJ_pkcs9_signingTime OBJ_pkcs9,5L | ||
315 | |||
316 | #define LN_pkcs9_countersignature "countersignature" | ||
317 | #define NID_pkcs9_countersignature 53 | ||
318 | #define OBJ_pkcs9_countersignature OBJ_pkcs9,6L | ||
319 | |||
320 | #define LN_pkcs9_challengePassword "challengePassword" | ||
321 | #define NID_pkcs9_challengePassword 54 | ||
322 | #define OBJ_pkcs9_challengePassword OBJ_pkcs9,7L | ||
323 | |||
324 | #define LN_pkcs9_unstructuredAddress "unstructuredAddress" | ||
325 | #define NID_pkcs9_unstructuredAddress 55 | ||
326 | #define OBJ_pkcs9_unstructuredAddress OBJ_pkcs9,8L | ||
327 | |||
328 | #define LN_pkcs9_extCertAttributes "extendedCertificateAttributes" | ||
329 | #define NID_pkcs9_extCertAttributes 56 | ||
330 | #define OBJ_pkcs9_extCertAttributes OBJ_pkcs9,9L | ||
331 | |||
332 | #define SN_netscape "Netscape" | ||
333 | #define LN_netscape "Netscape Communications Corp." | ||
334 | #define NID_netscape 57 | ||
335 | #define OBJ_netscape 2L,16L,840L,1L,113730L | ||
336 | |||
337 | #define SN_netscape_cert_extension "nsCertExt" | ||
338 | #define LN_netscape_cert_extension "Netscape Certificate Extension" | ||
339 | #define NID_netscape_cert_extension 58 | ||
340 | #define OBJ_netscape_cert_extension OBJ_netscape,1L | ||
341 | |||
342 | #define SN_netscape_data_type "nsDataType" | ||
343 | #define LN_netscape_data_type "Netscape Data Type" | ||
344 | #define NID_netscape_data_type 59 | ||
345 | #define OBJ_netscape_data_type OBJ_netscape,2L | ||
346 | |||
347 | #define SN_des_ede_cfb64 "DES-EDE-CFB" | ||
348 | #define LN_des_ede_cfb64 "des-ede-cfb" | ||
349 | #define NID_des_ede_cfb64 60 | ||
350 | |||
351 | #define SN_des_ede3_cfb64 "DES-EDE3-CFB" | ||
352 | #define LN_des_ede3_cfb64 "des-ede3-cfb" | ||
353 | #define NID_des_ede3_cfb64 61 | ||
354 | |||
355 | #define SN_des_ede_ofb64 "DES-EDE-OFB" | ||
356 | #define LN_des_ede_ofb64 "des-ede-ofb" | ||
357 | #define NID_des_ede_ofb64 62 | ||
358 | |||
359 | #define SN_des_ede3_ofb64 "DES-EDE3-OFB" | ||
360 | #define LN_des_ede3_ofb64 "des-ede3-ofb" | ||
361 | #define NID_des_ede3_ofb64 63 | ||
362 | |||
363 | /* I'm not sure about the object ID */ | ||
364 | #define SN_sha1 "SHA1" | ||
365 | #define LN_sha1 "sha1" | ||
366 | #define NID_sha1 64 | ||
367 | #define OBJ_sha1 OBJ_algorithm,26L | ||
368 | /* 28 Jun 1996 - eay */ | ||
369 | /* #define OBJ_sha1 1L,3L,14L,2L,26L,05L <- wrong */ | ||
370 | |||
371 | #define SN_sha1WithRSAEncryption "RSA-SHA1" | ||
372 | #define LN_sha1WithRSAEncryption "sha1WithRSAEncryption" | ||
373 | #define NID_sha1WithRSAEncryption 65 | ||
374 | #define OBJ_sha1WithRSAEncryption OBJ_pkcs,1L,5L | ||
375 | |||
376 | #define SN_dsaWithSHA "DSA-SHA" | ||
377 | #define LN_dsaWithSHA "dsaWithSHA" | ||
378 | #define NID_dsaWithSHA 66 | ||
379 | #define OBJ_dsaWithSHA OBJ_algorithm,13L | ||
380 | |||
381 | #define SN_dsa_2 "DSA-old" | ||
382 | #define LN_dsa_2 "dsaEncryption-old" | ||
383 | #define NID_dsa_2 67 | ||
384 | #define OBJ_dsa_2 OBJ_algorithm,12L | ||
385 | |||
386 | /* proposed by microsoft to RSA */ | ||
387 | #define SN_pbeWithSHA1AndRC2_CBC "PBE-SHA1-RC2-64" | ||
388 | #define LN_pbeWithSHA1AndRC2_CBC "pbeWithSHA1AndRC2-CBC" | ||
389 | #define NID_pbeWithSHA1AndRC2_CBC 68 | ||
390 | #define OBJ_pbeWithSHA1AndRC2_CBC OBJ_pkcs,5L,11L | ||
391 | |||
392 | /* proposed by microsoft to RSA as pbeWithSHA1AndRC4: it is now | ||
393 | * defined explicitly in PKCS#5 v2.0 as id-PBKDF2 which is something | ||
394 | * completely different. | ||
395 | */ | ||
396 | #define LN_id_pbkdf2 "PBKDF2" | ||
397 | #define NID_id_pbkdf2 69 | ||
398 | #define OBJ_id_pbkdf2 OBJ_pkcs,5L,12L | ||
399 | |||
400 | #define SN_dsaWithSHA1_2 "DSA-SHA1-old" | ||
401 | #define LN_dsaWithSHA1_2 "dsaWithSHA1-old" | ||
402 | #define NID_dsaWithSHA1_2 70 | ||
403 | /* Got this one from 'sdn706r20.pdf' which is actually an NSA document :-) */ | ||
404 | #define OBJ_dsaWithSHA1_2 OBJ_algorithm,27L | ||
405 | |||
406 | #define SN_netscape_cert_type "nsCertType" | ||
407 | #define LN_netscape_cert_type "Netscape Cert Type" | ||
408 | #define NID_netscape_cert_type 71 | ||
409 | #define OBJ_netscape_cert_type OBJ_netscape_cert_extension,1L | ||
410 | |||
411 | #define SN_netscape_base_url "nsBaseUrl" | ||
412 | #define LN_netscape_base_url "Netscape Base Url" | ||
413 | #define NID_netscape_base_url 72 | ||
414 | #define OBJ_netscape_base_url OBJ_netscape_cert_extension,2L | ||
415 | |||
416 | #define SN_netscape_revocation_url "nsRevocationUrl" | ||
417 | #define LN_netscape_revocation_url "Netscape Revocation Url" | ||
418 | #define NID_netscape_revocation_url 73 | ||
419 | #define OBJ_netscape_revocation_url OBJ_netscape_cert_extension,3L | ||
420 | |||
421 | #define SN_netscape_ca_revocation_url "nsCaRevocationUrl" | ||
422 | #define LN_netscape_ca_revocation_url "Netscape CA Revocation Url" | ||
423 | #define NID_netscape_ca_revocation_url 74 | ||
424 | #define OBJ_netscape_ca_revocation_url OBJ_netscape_cert_extension,4L | ||
425 | |||
426 | #define SN_netscape_renewal_url "nsRenewalUrl" | ||
427 | #define LN_netscape_renewal_url "Netscape Renewal Url" | ||
428 | #define NID_netscape_renewal_url 75 | ||
429 | #define OBJ_netscape_renewal_url OBJ_netscape_cert_extension,7L | ||
430 | |||
431 | #define SN_netscape_ca_policy_url "nsCaPolicyUrl" | ||
432 | #define LN_netscape_ca_policy_url "Netscape CA Policy Url" | ||
433 | #define NID_netscape_ca_policy_url 76 | ||
434 | #define OBJ_netscape_ca_policy_url OBJ_netscape_cert_extension,8L | ||
435 | |||
436 | #define SN_netscape_ssl_server_name "nsSslServerName" | ||
437 | #define LN_netscape_ssl_server_name "Netscape SSL Server Name" | ||
438 | #define NID_netscape_ssl_server_name 77 | ||
439 | #define OBJ_netscape_ssl_server_name OBJ_netscape_cert_extension,12L | ||
440 | |||
441 | #define SN_netscape_comment "nsComment" | ||
442 | #define LN_netscape_comment "Netscape Comment" | ||
443 | #define NID_netscape_comment 78 | ||
444 | #define OBJ_netscape_comment OBJ_netscape_cert_extension,13L | ||
445 | |||
446 | #define SN_netscape_cert_sequence "nsCertSequence" | ||
447 | #define LN_netscape_cert_sequence "Netscape Certificate Sequence" | ||
448 | #define NID_netscape_cert_sequence 79 | ||
449 | #define OBJ_netscape_cert_sequence OBJ_netscape_data_type,5L | ||
450 | |||
451 | #define SN_desx_cbc "DESX-CBC" | ||
452 | #define LN_desx_cbc "desx-cbc" | ||
453 | #define NID_desx_cbc 80 | ||
454 | |||
455 | #define SN_id_ce "id-ce" | ||
456 | #define NID_id_ce 81 | ||
457 | #define OBJ_id_ce 2L,5L,29L | ||
458 | |||
459 | #define SN_subject_key_identifier "subjectKeyIdentifier" | ||
460 | #define LN_subject_key_identifier "X509v3 Subject Key Identifier" | ||
461 | #define NID_subject_key_identifier 82 | ||
462 | #define OBJ_subject_key_identifier OBJ_id_ce,14L | ||
463 | |||
464 | #define SN_key_usage "keyUsage" | ||
465 | #define LN_key_usage "X509v3 Key Usage" | ||
466 | #define NID_key_usage 83 | ||
467 | #define OBJ_key_usage OBJ_id_ce,15L | ||
468 | |||
469 | #define SN_private_key_usage_period "privateKeyUsagePeriod" | ||
470 | #define LN_private_key_usage_period "X509v3 Private Key Usage Period" | ||
471 | #define NID_private_key_usage_period 84 | ||
472 | #define OBJ_private_key_usage_period OBJ_id_ce,16L | ||
473 | |||
474 | #define SN_subject_alt_name "subjectAltName" | ||
475 | #define LN_subject_alt_name "X509v3 Subject Alternative Name" | ||
476 | #define NID_subject_alt_name 85 | ||
477 | #define OBJ_subject_alt_name OBJ_id_ce,17L | ||
478 | |||
479 | #define SN_issuer_alt_name "issuerAltName" | ||
480 | #define LN_issuer_alt_name "X509v3 Issuer Alternative Name" | ||
481 | #define NID_issuer_alt_name 86 | ||
482 | #define OBJ_issuer_alt_name OBJ_id_ce,18L | ||
483 | |||
484 | #define SN_basic_constraints "basicConstraints" | ||
485 | #define LN_basic_constraints "X509v3 Basic Constraints" | ||
486 | #define NID_basic_constraints 87 | ||
487 | #define OBJ_basic_constraints OBJ_id_ce,19L | ||
488 | |||
489 | #define SN_crl_number "crlNumber" | ||
490 | #define LN_crl_number "X509v3 CRL Number" | ||
491 | #define NID_crl_number 88 | ||
492 | #define OBJ_crl_number OBJ_id_ce,20L | ||
493 | |||
494 | #define SN_certificate_policies "certificatePolicies" | ||
495 | #define LN_certificate_policies "X509v3 Certificate Policies" | ||
496 | #define NID_certificate_policies 89 | ||
497 | #define OBJ_certificate_policies OBJ_id_ce,32L | ||
498 | |||
499 | #define SN_authority_key_identifier "authorityKeyIdentifier" | ||
500 | #define LN_authority_key_identifier "X509v3 Authority Key Identifier" | ||
501 | #define NID_authority_key_identifier 90 | ||
502 | #define OBJ_authority_key_identifier OBJ_id_ce,35L | ||
503 | |||
504 | #define SN_bf_cbc "BF-CBC" | ||
505 | #define LN_bf_cbc "bf-cbc" | ||
506 | #define NID_bf_cbc 91 | ||
507 | #define OBJ_bf_cbc 1L,3L,6L,1L,4L,1L,3029L,1L,2L | ||
508 | |||
509 | #define SN_bf_ecb "BF-ECB" | ||
510 | #define LN_bf_ecb "bf-ecb" | ||
511 | #define NID_bf_ecb 92 | ||
512 | |||
513 | #define SN_bf_cfb64 "BF-CFB" | ||
514 | #define LN_bf_cfb64 "bf-cfb" | ||
515 | #define NID_bf_cfb64 93 | ||
516 | |||
517 | #define SN_bf_ofb64 "BF-OFB" | ||
518 | #define LN_bf_ofb64 "bf-ofb" | ||
519 | #define NID_bf_ofb64 94 | ||
520 | |||
521 | #define SN_mdc2 "MDC2" | ||
522 | #define LN_mdc2 "mdc2" | ||
523 | #define NID_mdc2 95 | ||
524 | #define OBJ_mdc2 2L,5L,8L,3L,101L | ||
525 | /* An alternative? 1L,3L,14L,3L,2L,19L */ | ||
526 | |||
527 | #define SN_mdc2WithRSA "RSA-MDC2" | ||
528 | #define LN_mdc2WithRSA "mdc2withRSA" | ||
529 | #define NID_mdc2WithRSA 96 | ||
530 | #define OBJ_mdc2WithRSA 2L,5L,8L,3L,100L | ||
531 | |||
532 | #define SN_rc4_40 "RC4-40" | ||
533 | #define LN_rc4_40 "rc4-40" | ||
534 | #define NID_rc4_40 97 | ||
535 | |||
536 | #define SN_rc2_40_cbc "RC2-40-CBC" | ||
537 | #define LN_rc2_40_cbc "rc2-40-cbc" | ||
538 | #define NID_rc2_40_cbc 98 | ||
539 | |||
540 | #define SN_givenName "G" | ||
541 | #define LN_givenName "givenName" | ||
542 | #define NID_givenName 99 | ||
543 | #define OBJ_givenName OBJ_X509,42L | ||
544 | |||
545 | #define SN_surname "S" | ||
546 | #define LN_surname "surname" | ||
547 | #define NID_surname 100 | ||
548 | #define OBJ_surname OBJ_X509,4L | ||
549 | |||
550 | #define SN_initials "I" | ||
551 | #define LN_initials "initials" | ||
552 | #define NID_initials 101 | ||
553 | #define OBJ_initials OBJ_X509,43L | ||
554 | |||
555 | #define SN_uniqueIdentifier "UID" | ||
556 | #define LN_uniqueIdentifier "uniqueIdentifier" | ||
557 | #define NID_uniqueIdentifier 102 | ||
558 | #define OBJ_uniqueIdentifier OBJ_X509,45L | ||
559 | |||
560 | #define SN_crl_distribution_points "crlDistributionPoints" | ||
561 | #define LN_crl_distribution_points "X509v3 CRL Distribution Points" | ||
562 | #define NID_crl_distribution_points 103 | ||
563 | #define OBJ_crl_distribution_points OBJ_id_ce,31L | ||
564 | |||
565 | #define SN_md5WithRSA "RSA-NP-MD5" | ||
566 | #define LN_md5WithRSA "md5WithRSA" | ||
567 | #define NID_md5WithRSA 104 | ||
568 | #define OBJ_md5WithRSA OBJ_algorithm,3L | ||
569 | |||
570 | #define SN_serialNumber "SN" | ||
571 | #define LN_serialNumber "serialNumber" | ||
572 | #define NID_serialNumber 105 | ||
573 | #define OBJ_serialNumber OBJ_X509,5L | ||
574 | |||
575 | #define SN_title "T" | ||
576 | #define LN_title "title" | ||
577 | #define NID_title 106 | ||
578 | #define OBJ_title OBJ_X509,12L | ||
579 | |||
580 | #define SN_description "D" | ||
581 | #define LN_description "description" | ||
582 | #define NID_description 107 | ||
583 | #define OBJ_description OBJ_X509,13L | ||
584 | |||
585 | /* CAST5 is CAST-128, I'm just sticking with the documentation */ | ||
586 | #define SN_cast5_cbc "CAST5-CBC" | ||
587 | #define LN_cast5_cbc "cast5-cbc" | ||
588 | #define NID_cast5_cbc 108 | ||
589 | #define OBJ_cast5_cbc 1L,2L,840L,113533L,7L,66L,10L | ||
590 | |||
591 | #define SN_cast5_ecb "CAST5-ECB" | ||
592 | #define LN_cast5_ecb "cast5-ecb" | ||
593 | #define NID_cast5_ecb 109 | ||
594 | |||
595 | #define SN_cast5_cfb64 "CAST5-CFB" | ||
596 | #define LN_cast5_cfb64 "cast5-cfb" | ||
597 | #define NID_cast5_cfb64 110 | ||
598 | |||
599 | #define SN_cast5_ofb64 "CAST5-OFB" | ||
600 | #define LN_cast5_ofb64 "cast5-ofb" | ||
601 | #define NID_cast5_ofb64 111 | ||
602 | |||
603 | #define LN_pbeWithMD5AndCast5_CBC "pbeWithMD5AndCast5CBC" | ||
604 | #define NID_pbeWithMD5AndCast5_CBC 112 | ||
605 | #define OBJ_pbeWithMD5AndCast5_CBC 1L,2L,840L,113533L,7L,66L,12L | ||
606 | |||
607 | /* This is one sun will soon be using :-( | ||
608 | * id-dsa-with-sha1 ID ::= { | ||
609 | * iso(1) member-body(2) us(840) x9-57 (10040) x9cm(4) 3 } | ||
610 | */ | ||
611 | #define SN_dsaWithSHA1 "DSA-SHA1" | ||
612 | #define LN_dsaWithSHA1 "dsaWithSHA1" | ||
613 | #define NID_dsaWithSHA1 113 | ||
614 | #define OBJ_dsaWithSHA1 1L,2L,840L,10040L,4L,3L | ||
615 | |||
616 | #define NID_md5_sha1 114 | ||
617 | #define SN_md5_sha1 "MD5-SHA1" | ||
618 | #define LN_md5_sha1 "md5-sha1" | ||
619 | |||
620 | #define SN_sha1WithRSA "RSA-SHA1-2" | ||
621 | #define LN_sha1WithRSA "sha1WithRSA" | ||
622 | #define NID_sha1WithRSA 115 | ||
623 | #define OBJ_sha1WithRSA OBJ_algorithm,29L | ||
624 | |||
625 | #define SN_dsa "DSA" | ||
626 | #define LN_dsa "dsaEncryption" | ||
627 | #define NID_dsa 116 | ||
628 | #define OBJ_dsa 1L,2L,840L,10040L,4L,1L | ||
629 | |||
630 | #define SN_ripemd160 "RIPEMD160" | ||
631 | #define LN_ripemd160 "ripemd160" | ||
632 | #define NID_ripemd160 117 | ||
633 | #define OBJ_ripemd160 1L,3L,36L,3L,2L,1L | ||
634 | |||
635 | /* The name should actually be rsaSignatureWithripemd160, but I'm going | ||
636 | * to continue using the convention I'm using with the other ciphers */ | ||
637 | #define SN_ripemd160WithRSA "RSA-RIPEMD160" | ||
638 | #define LN_ripemd160WithRSA "ripemd160WithRSA" | ||
639 | #define NID_ripemd160WithRSA 119 | ||
640 | #define OBJ_ripemd160WithRSA 1L,3L,36L,3L,3L,1L,2L | ||
641 | |||
642 | /* Taken from rfc2040 | ||
643 | * RC5_CBC_Parameters ::= SEQUENCE { | ||
644 | * version INTEGER (v1_0(16)), | ||
645 | * rounds INTEGER (8..127), | ||
646 | * blockSizeInBits INTEGER (64, 128), | ||
647 | * iv OCTET STRING OPTIONAL | ||
648 | * } | ||
649 | */ | ||
650 | #define SN_rc5_cbc "RC5-CBC" | ||
651 | #define LN_rc5_cbc "rc5-cbc" | ||
652 | #define NID_rc5_cbc 120 | ||
653 | #define OBJ_rc5_cbc OBJ_rsadsi,3L,8L | ||
654 | |||
655 | #define SN_rc5_ecb "RC5-ECB" | ||
656 | #define LN_rc5_ecb "rc5-ecb" | ||
657 | #define NID_rc5_ecb 121 | ||
658 | |||
659 | #define SN_rc5_cfb64 "RC5-CFB" | ||
660 | #define LN_rc5_cfb64 "rc5-cfb" | ||
661 | #define NID_rc5_cfb64 122 | ||
662 | |||
663 | #define SN_rc5_ofb64 "RC5-OFB" | ||
664 | #define LN_rc5_ofb64 "rc5-ofb" | ||
665 | #define NID_rc5_ofb64 123 | ||
666 | |||
667 | #define SN_rle_compression "RLE" | ||
668 | #define LN_rle_compression "run length compression" | ||
669 | #define NID_rle_compression 124 | ||
670 | #define OBJ_rle_compression 1L,1L,1L,1L,666L,1L | ||
671 | |||
672 | #define SN_zlib_compression "ZLIB" | ||
673 | #define LN_zlib_compression "zlib compression" | ||
674 | #define NID_zlib_compression 125 | ||
675 | #define OBJ_zlib_compression 1L,1L,1L,1L,666L,2L | ||
676 | |||
677 | #define SN_ext_key_usage "extendedKeyUsage" | ||
678 | #define LN_ext_key_usage "X509v3 Extended Key Usage" | ||
679 | #define NID_ext_key_usage 126 | ||
680 | #define OBJ_ext_key_usage OBJ_id_ce,37 | ||
681 | |||
682 | #define SN_id_pkix "PKIX" | ||
683 | #define NID_id_pkix 127 | ||
684 | #define OBJ_id_pkix 1L,3L,6L,1L,5L,5L,7L | ||
685 | |||
686 | #define SN_id_kp "id-kp" | ||
687 | #define NID_id_kp 128 | ||
688 | #define OBJ_id_kp OBJ_id_pkix,3L | ||
689 | |||
690 | /* PKIX extended key usage OIDs */ | ||
691 | |||
692 | #define SN_server_auth "serverAuth" | ||
693 | #define LN_server_auth "TLS Web Server Authentication" | ||
694 | #define NID_server_auth 129 | ||
695 | #define OBJ_server_auth OBJ_id_kp,1L | ||
696 | |||
697 | #define SN_client_auth "clientAuth" | ||
698 | #define LN_client_auth "TLS Web Client Authentication" | ||
699 | #define NID_client_auth 130 | ||
700 | #define OBJ_client_auth OBJ_id_kp,2L | ||
701 | |||
702 | #define SN_code_sign "codeSigning" | ||
703 | #define LN_code_sign "Code Signing" | ||
704 | #define NID_code_sign 131 | ||
705 | #define OBJ_code_sign OBJ_id_kp,3L | ||
706 | |||
707 | #define SN_email_protect "emailProtection" | ||
708 | #define LN_email_protect "E-mail Protection" | ||
709 | #define NID_email_protect 132 | ||
710 | #define OBJ_email_protect OBJ_id_kp,4L | ||
711 | |||
712 | #define SN_time_stamp "timeStamping" | ||
713 | #define LN_time_stamp "Time Stamping" | ||
714 | #define NID_time_stamp 133 | ||
715 | #define OBJ_time_stamp OBJ_id_kp,8L | ||
716 | |||
717 | /* Additional extended key usage OIDs: Microsoft */ | ||
718 | |||
719 | #define SN_ms_code_ind "msCodeInd" | ||
720 | #define LN_ms_code_ind "Microsoft Individual Code Signing" | ||
721 | #define NID_ms_code_ind 134 | ||
722 | #define OBJ_ms_code_ind 1L,3L,6L,1L,4L,1L,311L,2L,1L,21L | ||
723 | |||
724 | #define SN_ms_code_com "msCodeCom" | ||
725 | #define LN_ms_code_com "Microsoft Commercial Code Signing" | ||
726 | #define NID_ms_code_com 135 | ||
727 | #define OBJ_ms_code_com 1L,3L,6L,1L,4L,1L,311L,2L,1L,22L | ||
728 | |||
729 | #define SN_ms_ctl_sign "msCTLSign" | ||
730 | #define LN_ms_ctl_sign "Microsoft Trust List Signing" | ||
731 | #define NID_ms_ctl_sign 136 | ||
732 | #define OBJ_ms_ctl_sign 1L,3L,6L,1L,4L,1L,311L,10L,3L,1L | ||
733 | |||
734 | #define SN_ms_sgc "msSGC" | ||
735 | #define LN_ms_sgc "Microsoft Server Gated Crypto" | ||
736 | #define NID_ms_sgc 137 | ||
737 | #define OBJ_ms_sgc 1L,3L,6L,1L,4L,1L,311L,10L,3L,3L | ||
738 | |||
739 | #define SN_ms_efs "msEFS" | ||
740 | #define LN_ms_efs "Microsoft Encrypted File System" | ||
741 | #define NID_ms_efs 138 | ||
742 | #define OBJ_ms_efs 1L,3L,6L,1L,4L,1L,311L,10L,3L,4L | ||
743 | |||
744 | /* Additional usage: Netscape */ | ||
745 | |||
746 | #define SN_ns_sgc "nsSGC" | ||
747 | #define LN_ns_sgc "Netscape Server Gated Crypto" | ||
748 | #define NID_ns_sgc 139 | ||
749 | #define OBJ_ns_sgc OBJ_netscape,4L,1L | ||
750 | |||
751 | #define SN_delta_crl "deltaCRL" | ||
752 | #define LN_delta_crl "X509v3 Delta CRL Indicator" | ||
753 | #define NID_delta_crl 140 | ||
754 | #define OBJ_delta_crl OBJ_id_ce,27L | ||
755 | |||
756 | #define SN_crl_reason "CRLReason" | ||
757 | #define LN_crl_reason "CRL Reason Code" | ||
758 | #define NID_crl_reason 141 | ||
759 | #define OBJ_crl_reason OBJ_id_ce,21L | ||
760 | |||
761 | #define SN_invalidity_date "invalidityDate" | ||
762 | #define LN_invalidity_date "Invalidity Date" | ||
763 | #define NID_invalidity_date 142 | ||
764 | #define OBJ_invalidity_date OBJ_id_ce,24L | ||
765 | |||
766 | #define SN_sxnet "SXNetID" | ||
767 | #define LN_sxnet "Strong Extranet ID" | ||
768 | #define NID_sxnet 143 | ||
769 | #define OBJ_sxnet 1L,3L,101L,1L,4L,1L | ||
770 | |||
771 | /* PKCS12 and related OBJECT IDENTIFIERS */ | ||
772 | |||
773 | #define OBJ_pkcs12 OBJ_pkcs,12L | ||
774 | #define OBJ_pkcs12_pbeids OBJ_pkcs12, 1 | ||
775 | |||
776 | #define SN_pbe_WithSHA1And128BitRC4 "PBE-SHA1-RC4-128" | ||
777 | #define LN_pbe_WithSHA1And128BitRC4 "pbeWithSHA1And128BitRC4" | ||
778 | #define NID_pbe_WithSHA1And128BitRC4 144 | ||
779 | #define OBJ_pbe_WithSHA1And128BitRC4 OBJ_pkcs12_pbeids, 1L | ||
780 | |||
781 | #define SN_pbe_WithSHA1And40BitRC4 "PBE-SHA1-RC4-40" | ||
782 | #define LN_pbe_WithSHA1And40BitRC4 "pbeWithSHA1And40BitRC4" | ||
783 | #define NID_pbe_WithSHA1And40BitRC4 145 | ||
784 | #define OBJ_pbe_WithSHA1And40BitRC4 OBJ_pkcs12_pbeids, 2L | ||
785 | |||
786 | #define SN_pbe_WithSHA1And3_Key_TripleDES_CBC "PBE-SHA1-3DES" | ||
787 | #define LN_pbe_WithSHA1And3_Key_TripleDES_CBC "pbeWithSHA1And3-KeyTripleDES-CBC" | ||
788 | #define NID_pbe_WithSHA1And3_Key_TripleDES_CBC 146 | ||
789 | #define OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC OBJ_pkcs12_pbeids, 3L | ||
790 | |||
791 | #define SN_pbe_WithSHA1And2_Key_TripleDES_CBC "PBE-SHA1-2DES" | ||
792 | #define LN_pbe_WithSHA1And2_Key_TripleDES_CBC "pbeWithSHA1And2-KeyTripleDES-CBC" | ||
793 | #define NID_pbe_WithSHA1And2_Key_TripleDES_CBC 147 | ||
794 | #define OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC OBJ_pkcs12_pbeids, 4L | ||
795 | |||
796 | #define SN_pbe_WithSHA1And128BitRC2_CBC "PBE-SHA1-RC2-128" | ||
797 | #define LN_pbe_WithSHA1And128BitRC2_CBC "pbeWithSHA1And128BitRC2-CBC" | ||
798 | #define NID_pbe_WithSHA1And128BitRC2_CBC 148 | ||
799 | #define OBJ_pbe_WithSHA1And128BitRC2_CBC OBJ_pkcs12_pbeids, 5L | ||
800 | |||
801 | #define SN_pbe_WithSHA1And40BitRC2_CBC "PBE-SHA1-RC2-40" | ||
802 | #define LN_pbe_WithSHA1And40BitRC2_CBC "pbeWithSHA1And40BitRC2-CBC" | ||
803 | #define NID_pbe_WithSHA1And40BitRC2_CBC 149 | ||
804 | #define OBJ_pbe_WithSHA1And40BitRC2_CBC OBJ_pkcs12_pbeids, 6L | ||
805 | |||
806 | #define OBJ_pkcs12_Version1 OBJ_pkcs12, 10L | ||
807 | |||
808 | #define OBJ_pkcs12_BagIds OBJ_pkcs12_Version1, 1L | ||
809 | |||
810 | #define LN_keyBag "keyBag" | ||
811 | #define NID_keyBag 150 | ||
812 | #define OBJ_keyBag OBJ_pkcs12_BagIds, 1L | ||
813 | |||
814 | #define LN_pkcs8ShroudedKeyBag "pkcs8ShroudedKeyBag" | ||
815 | #define NID_pkcs8ShroudedKeyBag 151 | ||
816 | #define OBJ_pkcs8ShroudedKeyBag OBJ_pkcs12_BagIds, 2L | ||
817 | |||
818 | #define LN_certBag "certBag" | ||
819 | #define NID_certBag 152 | ||
820 | #define OBJ_certBag OBJ_pkcs12_BagIds, 3L | ||
821 | |||
822 | #define LN_crlBag "crlBag" | ||
823 | #define NID_crlBag 153 | ||
824 | #define OBJ_crlBag OBJ_pkcs12_BagIds, 4L | ||
825 | |||
826 | #define LN_secretBag "secretBag" | ||
827 | #define NID_secretBag 154 | ||
828 | #define OBJ_secretBag OBJ_pkcs12_BagIds, 5L | ||
829 | |||
830 | #define LN_safeContentsBag "safeContentsBag" | ||
831 | #define NID_safeContentsBag 155 | ||
832 | #define OBJ_safeContentsBag OBJ_pkcs12_BagIds, 6L | ||
833 | |||
834 | #define LN_friendlyName "friendlyName" | ||
835 | #define NID_friendlyName 156 | ||
836 | #define OBJ_friendlyName OBJ_pkcs9, 20L | ||
837 | |||
838 | #define LN_localKeyID "localKeyID" | ||
839 | #define NID_localKeyID 157 | ||
840 | #define OBJ_localKeyID OBJ_pkcs9, 21L | ||
841 | |||
842 | #define OBJ_certTypes OBJ_pkcs9, 22L | ||
843 | |||
844 | #define LN_x509Certificate "x509Certificate" | ||
845 | #define NID_x509Certificate 158 | ||
846 | #define OBJ_x509Certificate OBJ_certTypes, 1L | ||
847 | |||
848 | #define LN_sdsiCertificate "sdsiCertificate" | ||
849 | #define NID_sdsiCertificate 159 | ||
850 | #define OBJ_sdsiCertificate OBJ_certTypes, 2L | ||
851 | |||
852 | #define OBJ_crlTypes OBJ_pkcs9, 23L | ||
853 | |||
854 | #define LN_x509Crl "x509Crl" | ||
855 | #define NID_x509Crl 160 | ||
856 | #define OBJ_x509Crl OBJ_crlTypes, 1L | ||
857 | |||
858 | /* PKCS#5 v2 OIDs */ | ||
859 | |||
860 | #define LN_pbes2 "PBES2" | ||
861 | #define NID_pbes2 161 | ||
862 | #define OBJ_pbes2 OBJ_pkcs,5L,13L | ||
863 | |||
864 | #define LN_pbmac1 "PBMAC1" | ||
865 | #define NID_pbmac1 162 | ||
866 | #define OBJ_pbmac1 OBJ_pkcs,5L,14L | ||
867 | |||
868 | #define LN_hmacWithSHA1 "hmacWithSHA1" | ||
869 | #define NID_hmacWithSHA1 163 | ||
870 | #define OBJ_hmacWithSHA1 OBJ_rsadsi,2L,7L | ||
871 | |||
872 | /* Policy Qualifier Ids */ | ||
873 | |||
874 | #define LN_id_qt_cps "Policy Qualifier CPS" | ||
875 | #define SN_id_qt_cps "id-qt-cps" | ||
876 | #define NID_id_qt_cps 164 | ||
877 | #define OBJ_id_qt_cps OBJ_id_pkix,2L,1L | ||
878 | |||
879 | #define LN_id_qt_unotice "Policy Qualifier User Notice" | ||
880 | #define SN_id_qt_unotice "id-qt-unotice" | ||
881 | #define NID_id_qt_unotice 165 | ||
882 | #define OBJ_id_qt_unotice OBJ_id_pkix,2L,2L | ||
883 | |||
884 | #define SN_rc2_64_cbc "RC2-64-CBC" | ||
885 | #define LN_rc2_64_cbc "rc2-64-cbc" | ||
886 | #define NID_rc2_64_cbc 166 | ||
887 | |||
888 | #define SN_SMIMECapabilities "SMIME-CAPS" | ||
889 | #define LN_SMIMECapabilities "S/MIME Capabilities" | ||
890 | #define NID_SMIMECapabilities 167 | ||
891 | #define OBJ_SMIMECapabilities OBJ_pkcs9,15L | ||
892 | |||
893 | #define SN_pbeWithMD2AndRC2_CBC "PBE-MD2-RC2-64" | ||
894 | #define LN_pbeWithMD2AndRC2_CBC "pbeWithMD2AndRC2-CBC" | ||
895 | #define NID_pbeWithMD2AndRC2_CBC 168 | ||
896 | #define OBJ_pbeWithMD2AndRC2_CBC OBJ_pkcs,5L,4L | ||
897 | |||
898 | #define SN_pbeWithMD5AndRC2_CBC "PBE-MD5-RC2-64" | ||
899 | #define LN_pbeWithMD5AndRC2_CBC "pbeWithMD5AndRC2-CBC" | ||
900 | #define NID_pbeWithMD5AndRC2_CBC 169 | ||
901 | #define OBJ_pbeWithMD5AndRC2_CBC OBJ_pkcs,5L,6L | ||
902 | |||
903 | #define SN_pbeWithSHA1AndDES_CBC "PBE-SHA1-DES" | ||
904 | #define LN_pbeWithSHA1AndDES_CBC "pbeWithSHA1AndDES-CBC" | ||
905 | #define NID_pbeWithSHA1AndDES_CBC 170 | ||
906 | #define OBJ_pbeWithSHA1AndDES_CBC OBJ_pkcs,5L,10L | ||
907 | |||
908 | /* Extension request OIDs */ | ||
909 | |||
910 | #define LN_ms_ext_req "Microsoft Extension Request" | ||
911 | #define SN_ms_ext_req "msExtReq" | ||
912 | #define NID_ms_ext_req 171 | ||
913 | #define OBJ_ms_ext_req 1L,3L,6L,1L,4L,1L,311L,2L,1L,14L | ||
914 | |||
915 | #define LN_ext_req "Extension Request" | ||
916 | #define SN_ext_req "extReq" | ||
917 | #define NID_ext_req 172 | ||
918 | #define OBJ_ext_req OBJ_pkcs9,14L | ||
919 | |||
920 | #define SN_name "name" | ||
921 | #define LN_name "name" | ||
922 | #define NID_name 173 | ||
923 | #define OBJ_name OBJ_X509,41L | ||
924 | |||
925 | #define SN_dnQualifier "dnQualifier" | ||
926 | #define LN_dnQualifier "dnQualifier" | ||
927 | #define NID_dnQualifier 174 | ||
928 | #define OBJ_dnQualifier OBJ_X509,46L | ||
929 | |||
930 | #define SN_id_pe "id-pe" | ||
931 | #define NID_id_pe 175 | ||
932 | #define OBJ_id_pe OBJ_id_pkix,1L | ||
933 | |||
934 | #define SN_id_ad "id-ad" | ||
935 | #define NID_id_ad 176 | ||
936 | #define OBJ_id_ad OBJ_id_pkix,48L | ||
937 | |||
938 | #define SN_info_access "authorityInfoAccess" | ||
939 | #define LN_info_access "Authority Information Access" | ||
940 | #define NID_info_access 177 | ||
941 | #define OBJ_info_access OBJ_id_pe,1L | ||
942 | |||
943 | #define SN_ad_OCSP "OCSP" | ||
944 | #define LN_ad_OCSP "OCSP" | ||
945 | #define NID_ad_OCSP 178 | ||
946 | #define OBJ_ad_OCSP OBJ_id_ad,1L | ||
947 | |||
948 | #define SN_ad_ca_issuers "caIssuers" | ||
949 | #define LN_ad_ca_issuers "CA Issuers" | ||
950 | #define NID_ad_ca_issuers 179 | ||
951 | #define OBJ_ad_ca_issuers OBJ_id_ad,2L | ||
952 | |||
953 | #define SN_OCSP_sign "OCSPSigning" | ||
954 | #define LN_OCSP_sign "OCSP Signing" | ||
955 | #define NID_OCSP_sign 180 | ||
956 | #define OBJ_OCSP_sign OBJ_id_kp,9L | ||
957 | #endif /* USE_OBJ_MAC */ | ||
958 | |||
959 | #include <openssl/bio.h> | ||
960 | #include <openssl/asn1.h> | ||
961 | |||
962 | #define OBJ_NAME_TYPE_UNDEF 0x00 | ||
963 | #define OBJ_NAME_TYPE_MD_METH 0x01 | ||
964 | #define OBJ_NAME_TYPE_CIPHER_METH 0x02 | ||
965 | #define OBJ_NAME_TYPE_PKEY_METH 0x03 | ||
966 | #define OBJ_NAME_TYPE_COMP_METH 0x04 | ||
967 | #define OBJ_NAME_TYPE_NUM 0x05 | ||
968 | |||
969 | #define OBJ_NAME_ALIAS 0x8000 | ||
970 | |||
971 | |||
972 | #ifdef __cplusplus | ||
973 | extern "C" { | ||
974 | #endif | ||
975 | |||
976 | typedef struct obj_name_st | ||
977 | { | ||
978 | int type; | ||
979 | int alias; | ||
980 | const char *name; | ||
981 | const char *data; | ||
982 | } OBJ_NAME; | ||
983 | |||
984 | #define OBJ_create_and_add_object(a,b,c) OBJ_create(a,b,c) | ||
985 | |||
986 | |||
987 | int OBJ_NAME_init(void); | ||
988 | int OBJ_NAME_new_index(unsigned long (*hash_func)(const char *), | ||
989 | int (*cmp_func)(const char *, const char *), | ||
990 | void (*free_func)(const char *, int, const char *)); | ||
991 | const char *OBJ_NAME_get(const char *name,int type); | ||
992 | int OBJ_NAME_add(const char *name,int type,const char *data); | ||
993 | int OBJ_NAME_remove(const char *name,int type); | ||
994 | void OBJ_NAME_cleanup(int type); /* -1 for everything */ | ||
995 | void OBJ_NAME_do_all(int type,void (*fn)(const OBJ_NAME *,void *arg), | ||
996 | void *arg); | ||
997 | void OBJ_NAME_do_all_sorted(int type,void (*fn)(const OBJ_NAME *,void *arg), | ||
998 | void *arg); | ||
999 | |||
1000 | ASN1_OBJECT * OBJ_dup(const ASN1_OBJECT *o); | ||
1001 | ASN1_OBJECT * OBJ_nid2obj(int n); | ||
1002 | const char * OBJ_nid2ln(int n); | ||
1003 | const char * OBJ_nid2sn(int n); | ||
1004 | int OBJ_obj2nid(const ASN1_OBJECT *o); | ||
1005 | ASN1_OBJECT * OBJ_txt2obj(const char *s, int no_name); | ||
1006 | int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name); | ||
1007 | int OBJ_txt2nid(const char *s); | ||
1008 | int OBJ_ln2nid(const char *s); | ||
1009 | int OBJ_sn2nid(const char *s); | ||
1010 | int OBJ_cmp(const ASN1_OBJECT *a,const ASN1_OBJECT *b); | ||
1011 | const char * OBJ_bsearch(const char *key,const char *base,int num,int size, | ||
1012 | int (*cmp)(const void *, const void *)); | ||
1013 | |||
1014 | int OBJ_new_nid(int num); | ||
1015 | int OBJ_add_object(const ASN1_OBJECT *obj); | ||
1016 | int OBJ_create(const char *oid,const char *sn,const char *ln); | ||
1017 | void OBJ_cleanup(void ); | ||
1018 | int OBJ_create_objects(BIO *in); | ||
1019 | |||
1020 | /* BEGIN ERROR CODES */ | ||
1021 | /* The following lines are auto generated by the script mkerr.pl. Any changes | ||
1022 | * made after this point may be overwritten when the script is next run. | ||
1023 | */ | ||
1024 | void ERR_load_OBJ_strings(void); | ||
1025 | |||
1026 | /* Error codes for the OBJ functions. */ | ||
1027 | |||
1028 | /* Function codes. */ | ||
1029 | #define OBJ_F_OBJ_ADD_OBJECT 105 | ||
1030 | #define OBJ_F_OBJ_CREATE 100 | ||
1031 | #define OBJ_F_OBJ_DUP 101 | ||
1032 | #define OBJ_F_OBJ_NAME_NEW_INDEX 106 | ||
1033 | #define OBJ_F_OBJ_NID2LN 102 | ||
1034 | #define OBJ_F_OBJ_NID2OBJ 103 | ||
1035 | #define OBJ_F_OBJ_NID2SN 104 | ||
1036 | |||
1037 | /* Reason codes. */ | ||
1038 | #define OBJ_R_MALLOC_FAILURE 100 | ||
1039 | #define OBJ_R_UNKNOWN_NID 101 | ||
1040 | |||
1041 | #ifdef __cplusplus | ||
1042 | } | ||
1043 | #endif | ||
1044 | #endif | ||
diff --git a/src/lib/libcrypto/objects/objects.pl b/src/lib/libcrypto/objects/objects.pl new file mode 100644 index 0000000000..76bb8da677 --- /dev/null +++ b/src/lib/libcrypto/objects/objects.pl | |||
@@ -0,0 +1,230 @@ | |||
1 | #!/usr/local/bin/perl | ||
2 | |||
3 | open (NUMIN,"$ARGV[1]") || die "Can't open number file $ARGV[1]"; | ||
4 | $max_nid=0; | ||
5 | $o=0; | ||
6 | while(<NUMIN>) | ||
7 | { | ||
8 | chop; | ||
9 | $o++; | ||
10 | s/#.*$//; | ||
11 | next if /^\s*$/; | ||
12 | $_ = 'X'.$_; | ||
13 | ($Cname,$mynum) = split; | ||
14 | $Cname =~ s/^X//; | ||
15 | if (defined($nidn{$mynum})) | ||
16 | { die "$ARGV[1]:$o:There's already an object with NID ",$mynum," on line ",$order{$mynum},"\n"; } | ||
17 | $nid{$Cname} = $mynum; | ||
18 | $nidn{$mynum} = $Cname; | ||
19 | $order{$mynum} = $o; | ||
20 | $max_nid = $mynum if $mynum > $max_nid; | ||
21 | } | ||
22 | close NUMIN; | ||
23 | |||
24 | open (IN,"$ARGV[0]") || die "Can't open input file $ARGV[0]"; | ||
25 | $Cname=""; | ||
26 | $o=0; | ||
27 | while (<IN>) | ||
28 | { | ||
29 | chop; | ||
30 | $o++; | ||
31 | if (/^!module\s+(.*)$/) | ||
32 | { | ||
33 | $module = $1."-"; | ||
34 | $module =~ s/\./_/g; | ||
35 | $module =~ s/-/_/g; | ||
36 | } | ||
37 | if (/^!global$/) | ||
38 | { $module = ""; } | ||
39 | if (/^!Cname\s+(.*)$/) | ||
40 | { $Cname = $1; } | ||
41 | if (/^!Alias\s+(.+?)\s+(.*)$/) | ||
42 | { | ||
43 | $Cname = $module.$1; | ||
44 | $myoid = $2; | ||
45 | $myoid = &process_oid($myoid); | ||
46 | $Cname =~ s/-/_/g; | ||
47 | $ordern{$o} = $Cname; | ||
48 | $order{$Cname} = $o; | ||
49 | $obj{$Cname} = $myoid; | ||
50 | $_ = ""; | ||
51 | $Cname = ""; | ||
52 | } | ||
53 | s/!.*$//; | ||
54 | s/#.*$//; | ||
55 | next if /^\s*$/; | ||
56 | ($myoid,$mysn,$myln) = split ':'; | ||
57 | $mysn =~ s/^\s*//; | ||
58 | $mysn =~ s/\s*$//; | ||
59 | $myln =~ s/^\s*//; | ||
60 | $myln =~ s/\s*$//; | ||
61 | $myoid =~ s/^\s*//; | ||
62 | $myoid =~ s/\s*$//; | ||
63 | if ($myoid ne "") | ||
64 | { | ||
65 | $myoid = &process_oid($myoid); | ||
66 | } | ||
67 | |||
68 | if ($Cname eq "" && !($myln =~ / /)) | ||
69 | { | ||
70 | $Cname = $myln; | ||
71 | $Cname =~ s/\./_/g; | ||
72 | $Cname =~ s/-/_/g; | ||
73 | if ($Cname ne "" && defined($ln{$module.$Cname})) | ||
74 | { die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.$Cname},"\n"; } | ||
75 | } | ||
76 | if ($Cname eq "") | ||
77 | { | ||
78 | $Cname = $mysn; | ||
79 | $Cname =~ s/-/_/g; | ||
80 | if ($Cname ne "" && defined($sn{$module.$Cname})) | ||
81 | { die "objects.txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.$Cname},"\n"; } | ||
82 | } | ||
83 | if ($Cname eq "") | ||
84 | { | ||
85 | $Cname = $myln; | ||
86 | $Cname =~ s/-/_/g; | ||
87 | $Cname =~ s/\./_/g; | ||
88 | $Cname =~ s/ /_/g; | ||
89 | if ($Cname ne "" && defined($ln{$module.$Cname})) | ||
90 | { die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.$Cname},"\n"; } | ||
91 | } | ||
92 | $Cname =~ s/\./_/g; | ||
93 | $Cname =~ s/-/_/g; | ||
94 | $Cname = $module.$Cname; | ||
95 | $ordern{$o} = $Cname; | ||
96 | $order{$Cname} = $o; | ||
97 | $sn{$Cname} = $mysn; | ||
98 | $ln{$Cname} = $myln; | ||
99 | $obj{$Cname} = $myoid; | ||
100 | if (!defined($nid{$Cname})) | ||
101 | { | ||
102 | $max_nid++; | ||
103 | $nid{$Cname} = $max_nid; | ||
104 | $nidn{$max_nid} = $Cname; | ||
105 | } | ||
106 | $Cname=""; | ||
107 | } | ||
108 | close IN; | ||
109 | |||
110 | #XXX don't modify input files | ||
111 | #open (NUMOUT,">$ARGV[1]") || die "Can't open output file $ARGV[1]"; | ||
112 | #foreach (sort { $a <=> $b } keys %nidn) | ||
113 | # { | ||
114 | # print NUMOUT $nidn{$_},"\t\t",$_,"\n"; | ||
115 | # } | ||
116 | #close NUMOUT; | ||
117 | |||
118 | open (OUT,">$ARGV[2]") || die "Can't open output file $ARGV[2]"; | ||
119 | print OUT <<'EOF'; | ||
120 | /* crypto/objects/obj_mac.h */ | ||
121 | |||
122 | /* THIS FILE IS GENERATED FROM objects.txt by objects.pl via the | ||
123 | * following command: | ||
124 | * perl objects.pl objects.txt obj_mac.num obj_mac.h | ||
125 | */ | ||
126 | |||
127 | /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) | ||
128 | * All rights reserved. | ||
129 | * | ||
130 | * This package is an SSL implementation written | ||
131 | * by Eric Young (eay@cryptsoft.com). | ||
132 | * The implementation was written so as to conform with Netscapes SSL. | ||
133 | * | ||
134 | * This library is free for commercial and non-commercial use as long as | ||
135 | * the following conditions are aheared to. The following conditions | ||
136 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
137 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
138 | * included with this distribution is covered by the same copyright terms | ||
139 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
140 | * | ||
141 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
142 | * the code are not to be removed. | ||
143 | * If this package is used in a product, Eric Young should be given attribution | ||
144 | * as the author of the parts of the library used. | ||
145 | * This can be in the form of a textual message at program startup or | ||
146 | * in documentation (online or textual) provided with the package. | ||
147 | * | ||
148 | * Redistribution and use in source and binary forms, with or without | ||
149 | * modification, are permitted provided that the following conditions | ||
150 | * are met: | ||
151 | * 1. Redistributions of source code must retain the copyright | ||
152 | * notice, this list of conditions and the following disclaimer. | ||
153 | * 2. Redistributions in binary form must reproduce the above copyright | ||
154 | * notice, this list of conditions and the following disclaimer in the | ||
155 | * documentation and/or other materials provided with the distribution. | ||
156 | * 3. All advertising materials mentioning features or use of this software | ||
157 | * must display the following acknowledgement: | ||
158 | * "This product includes cryptographic software written by | ||
159 | * Eric Young (eay@cryptsoft.com)" | ||
160 | * The word 'cryptographic' can be left out if the rouines from the library | ||
161 | * being used are not cryptographic related :-). | ||
162 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
163 | * the apps directory (application code) you must include an acknowledgement: | ||
164 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
165 | * | ||
166 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
167 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
168 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
169 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
170 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
171 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
172 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
173 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
174 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
175 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
176 | * SUCH DAMAGE. | ||
177 | * | ||
178 | * The licence and distribution terms for any publically available version or | ||
179 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
180 | * copied and put under another distribution licence | ||
181 | * [including the GNU Public Licence.] | ||
182 | */ | ||
183 | |||
184 | #define SN_undef "UNDEF" | ||
185 | #define LN_undef "undefined" | ||
186 | #define NID_undef 0 | ||
187 | #define OBJ_undef 0L | ||
188 | |||
189 | EOF | ||
190 | |||
191 | foreach (sort { $a <=> $b } keys %ordern) | ||
192 | { | ||
193 | $Cname=$ordern{$_}; | ||
194 | print OUT "#define SN_",$Cname,"\t\t\"",$sn{$Cname},"\"\n" if $sn{$Cname} ne ""; | ||
195 | print OUT "#define LN_",$Cname,"\t\t\"",$ln{$Cname},"\"\n" if $ln{$Cname} ne ""; | ||
196 | print OUT "#define NID_",$Cname,"\t\t",$nid{$Cname},"\n" if $nid{$Cname} ne ""; | ||
197 | print OUT "#define OBJ_",$Cname,"\t\t",$obj{$Cname},"\n" if $obj{$Cname} ne ""; | ||
198 | print OUT "\n"; | ||
199 | } | ||
200 | |||
201 | close OUT; | ||
202 | |||
203 | sub process_oid | ||
204 | { | ||
205 | local($oid)=@_; | ||
206 | local(@a,$oid_pref); | ||
207 | |||
208 | @a = split(/\s+/,$myoid); | ||
209 | $pref_oid = ""; | ||
210 | $pref_sep = ""; | ||
211 | if (!($a[0] =~ /^[0-9]+$/)) | ||
212 | { | ||
213 | $a[0] =~ s/-/_/g; | ||
214 | if (!defined($obj{$a[0]})) | ||
215 | { die "$ARGV[0]:$o:Undefined identifier ",$a[0],"\n"; } | ||
216 | $pref_oid = "OBJ_" . $a[0]; | ||
217 | $pref_sep = ","; | ||
218 | shift @a; | ||
219 | } | ||
220 | $oids = join('L,',@a) . "L"; | ||
221 | if ($oids ne "L") | ||
222 | { | ||
223 | $oids = $pref_oid . $pref_sep . $oids; | ||
224 | } | ||
225 | else | ||
226 | { | ||
227 | $oids = $pref_oid; | ||
228 | } | ||
229 | return($oids); | ||
230 | } | ||
diff --git a/src/lib/libcrypto/objects/objects.txt b/src/lib/libcrypto/objects/objects.txt new file mode 100644 index 0000000000..2635c4e667 --- /dev/null +++ b/src/lib/libcrypto/objects/objects.txt | |||
@@ -0,0 +1,952 @@ | |||
1 | 0 : CCITT : ccitt | ||
2 | |||
3 | 1 : ISO : iso | ||
4 | |||
5 | 2 : JOINT-ISO-CCITT : joint-iso-ccitt | ||
6 | |||
7 | iso 2 : member-body : ISO Member Body | ||
8 | |||
9 | joint-iso-ccitt 5 1 5 : selected-attribute-types : Selected Attribute Types | ||
10 | |||
11 | selected-attribute-types 55 : clearance | ||
12 | |||
13 | member-body 840 : ISO-US : ISO US Member Body | ||
14 | ISO-US 10040 : X9-57 : X9.57 | ||
15 | X9-57 4 : X9cm : X9.57 CM ? | ||
16 | |||
17 | !Cname dsa | ||
18 | X9cm 1 : DSA : dsaEncryption | ||
19 | X9cm 3 : DSA-SHA1 : dsaWithSHA1 | ||
20 | |||
21 | |||
22 | ISO-US 10045 : ansi-X9-62 : ANSI X9.62 | ||
23 | !module X9-62 | ||
24 | !Alias id-fieldType ansi-X9-62 1 | ||
25 | X9-62_id-fieldType 1 : prime-field | ||
26 | X9-62_id-fieldType 2 : characteristic-two-field | ||
27 | # ... characteristic-two-field OID subtree | ||
28 | !Alias id-publicKeyType ansi-X9-62 2 | ||
29 | X9-62_id-publicKeyType 1 : id-ecPublicKey | ||
30 | !Alias ellipticCurve ansi-X9-62 3 | ||
31 | !Alias c-TwoCurve X9-62_ellipticCurve 0 | ||
32 | # ... characteristic 2 curve OIDs | ||
33 | !Alias primeCurve X9-62_ellipticCurve 1 | ||
34 | X9-62_primeCurve 1 : prime192v1 | ||
35 | X9-62_primeCurve 2 : prime192v2 | ||
36 | X9-62_primeCurve 3 : prime192v3 | ||
37 | X9-62_primeCurve 4 : prime239v1 | ||
38 | X9-62_primeCurve 5 : prime239v2 | ||
39 | X9-62_primeCurve 6 : prime239v3 | ||
40 | X9-62_primeCurve 7 : prime256v1 | ||
41 | !Alias id-ecSigType ansi-X9-62 4 | ||
42 | !global | ||
43 | X9-62_id-ecSigType 1 : ecdsa-with-SHA1 | ||
44 | |||
45 | |||
46 | |||
47 | ISO-US 113533 7 66 10 : CAST5-CBC : cast5-cbc | ||
48 | : CAST5-ECB : cast5-ecb | ||
49 | !Cname cast5-cfb64 | ||
50 | : CAST5-CFB : cast5-cfb | ||
51 | !Cname cast5-ofb64 | ||
52 | : CAST5-OFB : cast5-ofb | ||
53 | !Cname pbeWithMD5AndCast5-CBC | ||
54 | ISO-US 113533 7 66 12 : : pbeWithMD5AndCast5CBC | ||
55 | |||
56 | ISO-US 113549 : rsadsi : RSA Data Security, Inc. | ||
57 | |||
58 | rsadsi 1 : pkcs : RSA Data Security, Inc. PKCS | ||
59 | |||
60 | pkcs 1 : pkcs1 | ||
61 | pkcs1 1 : : rsaEncryption | ||
62 | pkcs1 2 : RSA-MD2 : md2WithRSAEncryption | ||
63 | pkcs1 3 : RSA-MD4 : md4WithRSAEncryption | ||
64 | pkcs1 4 : RSA-MD5 : md5WithRSAEncryption | ||
65 | pkcs1 5 : RSA-SHA1 : sha1WithRSAEncryption | ||
66 | # According to PKCS #1 version 2.1 | ||
67 | pkcs1 11 : RSA-SHA256 : sha256WithRSAEncryption | ||
68 | pkcs1 12 : RSA-SHA384 : sha384WithRSAEncryption | ||
69 | pkcs1 13 : RSA-SHA512 : sha512WithRSAEncryption | ||
70 | pkcs1 14 : RSA-SHA224 : sha224WithRSAEncryption | ||
71 | |||
72 | pkcs 3 : pkcs3 | ||
73 | pkcs3 1 : : dhKeyAgreement | ||
74 | |||
75 | pkcs 5 : pkcs5 | ||
76 | pkcs5 1 : PBE-MD2-DES : pbeWithMD2AndDES-CBC | ||
77 | pkcs5 3 : PBE-MD5-DES : pbeWithMD5AndDES-CBC | ||
78 | pkcs5 4 : PBE-MD2-RC2-64 : pbeWithMD2AndRC2-CBC | ||
79 | pkcs5 6 : PBE-MD5-RC2-64 : pbeWithMD5AndRC2-CBC | ||
80 | pkcs5 10 : PBE-SHA1-DES : pbeWithSHA1AndDES-CBC | ||
81 | pkcs5 11 : PBE-SHA1-RC2-64 : pbeWithSHA1AndRC2-CBC | ||
82 | !Cname id_pbkdf2 | ||
83 | pkcs5 12 : : PBKDF2 | ||
84 | !Cname pbes2 | ||
85 | pkcs5 13 : : PBES2 | ||
86 | !Cname pbmac1 | ||
87 | pkcs5 14 : : PBMAC1 | ||
88 | |||
89 | pkcs 7 : pkcs7 | ||
90 | pkcs7 1 : : pkcs7-data | ||
91 | !Cname pkcs7-signed | ||
92 | pkcs7 2 : : pkcs7-signedData | ||
93 | !Cname pkcs7-enveloped | ||
94 | pkcs7 3 : : pkcs7-envelopedData | ||
95 | !Cname pkcs7-signedAndEnveloped | ||
96 | pkcs7 4 : : pkcs7-signedAndEnvelopedData | ||
97 | !Cname pkcs7-digest | ||
98 | pkcs7 5 : : pkcs7-digestData | ||
99 | !Cname pkcs7-encrypted | ||
100 | pkcs7 6 : : pkcs7-encryptedData | ||
101 | |||
102 | pkcs 9 : pkcs9 | ||
103 | !module pkcs9 | ||
104 | pkcs9 1 : : emailAddress | ||
105 | pkcs9 2 : : unstructuredName | ||
106 | pkcs9 3 : : contentType | ||
107 | pkcs9 4 : : messageDigest | ||
108 | pkcs9 5 : : signingTime | ||
109 | pkcs9 6 : : countersignature | ||
110 | pkcs9 7 : : challengePassword | ||
111 | pkcs9 8 : : unstructuredAddress | ||
112 | !Cname extCertAttributes | ||
113 | pkcs9 9 : : extendedCertificateAttributes | ||
114 | !global | ||
115 | |||
116 | !Cname ext-req | ||
117 | pkcs9 14 : extReq : Extension Request | ||
118 | |||
119 | !Cname SMIMECapabilities | ||
120 | pkcs9 15 : SMIME-CAPS : S/MIME Capabilities | ||
121 | |||
122 | # S/MIME | ||
123 | !Cname SMIME | ||
124 | pkcs9 16 : SMIME : S/MIME | ||
125 | SMIME 0 : id-smime-mod | ||
126 | SMIME 1 : id-smime-ct | ||
127 | SMIME 2 : id-smime-aa | ||
128 | SMIME 3 : id-smime-alg | ||
129 | SMIME 4 : id-smime-cd | ||
130 | SMIME 5 : id-smime-spq | ||
131 | SMIME 6 : id-smime-cti | ||
132 | |||
133 | # S/MIME Modules | ||
134 | id-smime-mod 1 : id-smime-mod-cms | ||
135 | id-smime-mod 2 : id-smime-mod-ess | ||
136 | id-smime-mod 3 : id-smime-mod-oid | ||
137 | id-smime-mod 4 : id-smime-mod-msg-v3 | ||
138 | id-smime-mod 5 : id-smime-mod-ets-eSignature-88 | ||
139 | id-smime-mod 6 : id-smime-mod-ets-eSignature-97 | ||
140 | id-smime-mod 7 : id-smime-mod-ets-eSigPolicy-88 | ||
141 | id-smime-mod 8 : id-smime-mod-ets-eSigPolicy-97 | ||
142 | |||
143 | # S/MIME Content Types | ||
144 | id-smime-ct 1 : id-smime-ct-receipt | ||
145 | id-smime-ct 2 : id-smime-ct-authData | ||
146 | id-smime-ct 3 : id-smime-ct-publishCert | ||
147 | id-smime-ct 4 : id-smime-ct-TSTInfo | ||
148 | id-smime-ct 5 : id-smime-ct-TDTInfo | ||
149 | id-smime-ct 6 : id-smime-ct-contentInfo | ||
150 | id-smime-ct 7 : id-smime-ct-DVCSRequestData | ||
151 | id-smime-ct 8 : id-smime-ct-DVCSResponseData | ||
152 | |||
153 | # S/MIME Attributes | ||
154 | id-smime-aa 1 : id-smime-aa-receiptRequest | ||
155 | id-smime-aa 2 : id-smime-aa-securityLabel | ||
156 | id-smime-aa 3 : id-smime-aa-mlExpandHistory | ||
157 | id-smime-aa 4 : id-smime-aa-contentHint | ||
158 | id-smime-aa 5 : id-smime-aa-msgSigDigest | ||
159 | # obsolete | ||
160 | id-smime-aa 6 : id-smime-aa-encapContentType | ||
161 | id-smime-aa 7 : id-smime-aa-contentIdentifier | ||
162 | # obsolete | ||
163 | id-smime-aa 8 : id-smime-aa-macValue | ||
164 | id-smime-aa 9 : id-smime-aa-equivalentLabels | ||
165 | id-smime-aa 10 : id-smime-aa-contentReference | ||
166 | id-smime-aa 11 : id-smime-aa-encrypKeyPref | ||
167 | id-smime-aa 12 : id-smime-aa-signingCertificate | ||
168 | id-smime-aa 13 : id-smime-aa-smimeEncryptCerts | ||
169 | id-smime-aa 14 : id-smime-aa-timeStampToken | ||
170 | id-smime-aa 15 : id-smime-aa-ets-sigPolicyId | ||
171 | id-smime-aa 16 : id-smime-aa-ets-commitmentType | ||
172 | id-smime-aa 17 : id-smime-aa-ets-signerLocation | ||
173 | id-smime-aa 18 : id-smime-aa-ets-signerAttr | ||
174 | id-smime-aa 19 : id-smime-aa-ets-otherSigCert | ||
175 | id-smime-aa 20 : id-smime-aa-ets-contentTimestamp | ||
176 | id-smime-aa 21 : id-smime-aa-ets-CertificateRefs | ||
177 | id-smime-aa 22 : id-smime-aa-ets-RevocationRefs | ||
178 | id-smime-aa 23 : id-smime-aa-ets-certValues | ||
179 | id-smime-aa 24 : id-smime-aa-ets-revocationValues | ||
180 | id-smime-aa 25 : id-smime-aa-ets-escTimeStamp | ||
181 | id-smime-aa 26 : id-smime-aa-ets-certCRLTimestamp | ||
182 | id-smime-aa 27 : id-smime-aa-ets-archiveTimeStamp | ||
183 | id-smime-aa 28 : id-smime-aa-signatureType | ||
184 | id-smime-aa 29 : id-smime-aa-dvcs-dvc | ||
185 | |||
186 | # S/MIME Algorithm Identifiers | ||
187 | # obsolete | ||
188 | id-smime-alg 1 : id-smime-alg-ESDHwith3DES | ||
189 | # obsolete | ||
190 | id-smime-alg 2 : id-smime-alg-ESDHwithRC2 | ||
191 | # obsolete | ||
192 | id-smime-alg 3 : id-smime-alg-3DESwrap | ||
193 | # obsolete | ||
194 | id-smime-alg 4 : id-smime-alg-RC2wrap | ||
195 | id-smime-alg 5 : id-smime-alg-ESDH | ||
196 | id-smime-alg 6 : id-smime-alg-CMS3DESwrap | ||
197 | id-smime-alg 7 : id-smime-alg-CMSRC2wrap | ||
198 | |||
199 | # S/MIME Certificate Distribution | ||
200 | id-smime-cd 1 : id-smime-cd-ldap | ||
201 | |||
202 | # S/MIME Signature Policy Qualifier | ||
203 | id-smime-spq 1 : id-smime-spq-ets-sqt-uri | ||
204 | id-smime-spq 2 : id-smime-spq-ets-sqt-unotice | ||
205 | |||
206 | # S/MIME Commitment Type Identifier | ||
207 | id-smime-cti 1 : id-smime-cti-ets-proofOfOrigin | ||
208 | id-smime-cti 2 : id-smime-cti-ets-proofOfReceipt | ||
209 | id-smime-cti 3 : id-smime-cti-ets-proofOfDelivery | ||
210 | id-smime-cti 4 : id-smime-cti-ets-proofOfSender | ||
211 | id-smime-cti 5 : id-smime-cti-ets-proofOfApproval | ||
212 | id-smime-cti 6 : id-smime-cti-ets-proofOfCreation | ||
213 | |||
214 | pkcs9 20 : : friendlyName | ||
215 | pkcs9 21 : : localKeyID | ||
216 | !Cname ms-csp-name | ||
217 | 1 3 6 1 4 1 311 17 1 : CSPName : Microsoft CSP Name | ||
218 | !Alias certTypes pkcs9 22 | ||
219 | certTypes 1 : : x509Certificate | ||
220 | certTypes 2 : : sdsiCertificate | ||
221 | !Alias crlTypes pkcs9 23 | ||
222 | crlTypes 1 : : x509Crl | ||
223 | |||
224 | !Alias pkcs12 pkcs 12 | ||
225 | !Alias pkcs12-pbeids pkcs12 1 | ||
226 | |||
227 | !Cname pbe-WithSHA1And128BitRC4 | ||
228 | pkcs12-pbeids 1 : PBE-SHA1-RC4-128 : pbeWithSHA1And128BitRC4 | ||
229 | !Cname pbe-WithSHA1And40BitRC4 | ||
230 | pkcs12-pbeids 2 : PBE-SHA1-RC4-40 : pbeWithSHA1And40BitRC4 | ||
231 | !Cname pbe-WithSHA1And3_Key_TripleDES-CBC | ||
232 | pkcs12-pbeids 3 : PBE-SHA1-3DES : pbeWithSHA1And3-KeyTripleDES-CBC | ||
233 | !Cname pbe-WithSHA1And2_Key_TripleDES-CBC | ||
234 | pkcs12-pbeids 4 : PBE-SHA1-2DES : pbeWithSHA1And2-KeyTripleDES-CBC | ||
235 | !Cname pbe-WithSHA1And128BitRC2-CBC | ||
236 | pkcs12-pbeids 5 : PBE-SHA1-RC2-128 : pbeWithSHA1And128BitRC2-CBC | ||
237 | !Cname pbe-WithSHA1And40BitRC2-CBC | ||
238 | pkcs12-pbeids 6 : PBE-SHA1-RC2-40 : pbeWithSHA1And40BitRC2-CBC | ||
239 | |||
240 | !Alias pkcs12-Version1 pkcs12 10 | ||
241 | !Alias pkcs12-BagIds pkcs12-Version1 1 | ||
242 | pkcs12-BagIds 1 : : keyBag | ||
243 | pkcs12-BagIds 2 : : pkcs8ShroudedKeyBag | ||
244 | pkcs12-BagIds 3 : : certBag | ||
245 | pkcs12-BagIds 4 : : crlBag | ||
246 | pkcs12-BagIds 5 : : secretBag | ||
247 | pkcs12-BagIds 6 : : safeContentsBag | ||
248 | |||
249 | rsadsi 2 2 : MD2 : md2 | ||
250 | rsadsi 2 4 : MD4 : md4 | ||
251 | rsadsi 2 5 : MD5 : md5 | ||
252 | : MD5-SHA1 : md5-sha1 | ||
253 | rsadsi 2 7 : : hmacWithSHA1 | ||
254 | rsadsi 3 2 : RC2-CBC : rc2-cbc | ||
255 | : RC2-ECB : rc2-ecb | ||
256 | !Cname rc2-cfb64 | ||
257 | : RC2-CFB : rc2-cfb | ||
258 | !Cname rc2-ofb64 | ||
259 | : RC2-OFB : rc2-ofb | ||
260 | : RC2-40-CBC : rc2-40-cbc | ||
261 | : RC2-64-CBC : rc2-64-cbc | ||
262 | rsadsi 3 4 : RC4 : rc4 | ||
263 | : RC4-40 : rc4-40 | ||
264 | rsadsi 3 7 : DES-EDE3-CBC : des-ede3-cbc | ||
265 | rsadsi 3 8 : RC5-CBC : rc5-cbc | ||
266 | : RC5-ECB : rc5-ecb | ||
267 | !Cname rc5-cfb64 | ||
268 | : RC5-CFB : rc5-cfb | ||
269 | !Cname rc5-ofb64 | ||
270 | : RC5-OFB : rc5-ofb | ||
271 | |||
272 | !Cname ms-ext-req | ||
273 | 1 3 6 1 4 1 311 2 1 14 : msExtReq : Microsoft Extension Request | ||
274 | !Cname ms-code-ind | ||
275 | 1 3 6 1 4 1 311 2 1 21 : msCodeInd : Microsoft Individual Code Signing | ||
276 | !Cname ms-code-com | ||
277 | 1 3 6 1 4 1 311 2 1 22 : msCodeCom : Microsoft Commercial Code Signing | ||
278 | !Cname ms-ctl-sign | ||
279 | 1 3 6 1 4 1 311 10 3 1 : msCTLSign : Microsoft Trust List Signing | ||
280 | !Cname ms-sgc | ||
281 | 1 3 6 1 4 1 311 10 3 3 : msSGC : Microsoft Server Gated Crypto | ||
282 | !Cname ms-efs | ||
283 | 1 3 6 1 4 1 311 10 3 4 : msEFS : Microsoft Encrypted File System | ||
284 | !Cname ms-smartcard-login | ||
285 | 1 3 6 1 4 1 311 20 2 2 : msSmartcardLogin : Microsoft Smartcardlogin | ||
286 | !Cname ms-upn | ||
287 | 1 3 6 1 4 1 311 20 2 3 : msUPN : Microsoft Universal Principal Name | ||
288 | |||
289 | 1 3 6 1 4 1 188 7 1 1 2 : IDEA-CBC : idea-cbc | ||
290 | : IDEA-ECB : idea-ecb | ||
291 | !Cname idea-cfb64 | ||
292 | : IDEA-CFB : idea-cfb | ||
293 | !Cname idea-ofb64 | ||
294 | : IDEA-OFB : idea-ofb | ||
295 | |||
296 | 1 3 6 1 4 1 3029 1 2 : BF-CBC : bf-cbc | ||
297 | : BF-ECB : bf-ecb | ||
298 | !Cname bf-cfb64 | ||
299 | : BF-CFB : bf-cfb | ||
300 | !Cname bf-ofb64 | ||
301 | : BF-OFB : bf-ofb | ||
302 | |||
303 | !Cname id-pkix | ||
304 | 1 3 6 1 5 5 7 : PKIX | ||
305 | |||
306 | # PKIX Arcs | ||
307 | id-pkix 0 : id-pkix-mod | ||
308 | id-pkix 1 : id-pe | ||
309 | id-pkix 2 : id-qt | ||
310 | id-pkix 3 : id-kp | ||
311 | id-pkix 4 : id-it | ||
312 | id-pkix 5 : id-pkip | ||
313 | id-pkix 6 : id-alg | ||
314 | id-pkix 7 : id-cmc | ||
315 | id-pkix 8 : id-on | ||
316 | id-pkix 9 : id-pda | ||
317 | id-pkix 10 : id-aca | ||
318 | id-pkix 11 : id-qcs | ||
319 | id-pkix 12 : id-cct | ||
320 | id-pkix 21 : id-ppl | ||
321 | id-pkix 48 : id-ad | ||
322 | |||
323 | # PKIX Modules | ||
324 | id-pkix-mod 1 : id-pkix1-explicit-88 | ||
325 | id-pkix-mod 2 : id-pkix1-implicit-88 | ||
326 | id-pkix-mod 3 : id-pkix1-explicit-93 | ||
327 | id-pkix-mod 4 : id-pkix1-implicit-93 | ||
328 | id-pkix-mod 5 : id-mod-crmf | ||
329 | id-pkix-mod 6 : id-mod-cmc | ||
330 | id-pkix-mod 7 : id-mod-kea-profile-88 | ||
331 | id-pkix-mod 8 : id-mod-kea-profile-93 | ||
332 | id-pkix-mod 9 : id-mod-cmp | ||
333 | id-pkix-mod 10 : id-mod-qualified-cert-88 | ||
334 | id-pkix-mod 11 : id-mod-qualified-cert-93 | ||
335 | id-pkix-mod 12 : id-mod-attribute-cert | ||
336 | id-pkix-mod 13 : id-mod-timestamp-protocol | ||
337 | id-pkix-mod 14 : id-mod-ocsp | ||
338 | id-pkix-mod 15 : id-mod-dvcs | ||
339 | id-pkix-mod 16 : id-mod-cmp2000 | ||
340 | |||
341 | # PKIX Private Extensions | ||
342 | !Cname info-access | ||
343 | id-pe 1 : authorityInfoAccess : Authority Information Access | ||
344 | id-pe 2 : biometricInfo : Biometric Info | ||
345 | id-pe 3 : qcStatements | ||
346 | id-pe 4 : ac-auditEntity | ||
347 | id-pe 5 : ac-targeting | ||
348 | id-pe 6 : aaControls | ||
349 | id-pe 7 : sbgp-ipAddrBlock | ||
350 | id-pe 8 : sbgp-autonomousSysNum | ||
351 | id-pe 9 : sbgp-routerIdentifier | ||
352 | id-pe 10 : ac-proxying | ||
353 | !Cname sinfo-access | ||
354 | id-pe 11 : subjectInfoAccess : Subject Information Access | ||
355 | id-pe 14 : proxyCertInfo : Proxy Certificate Information | ||
356 | |||
357 | # PKIX policyQualifiers for Internet policy qualifiers | ||
358 | id-qt 1 : id-qt-cps : Policy Qualifier CPS | ||
359 | id-qt 2 : id-qt-unotice : Policy Qualifier User Notice | ||
360 | id-qt 3 : textNotice | ||
361 | |||
362 | # PKIX key purpose identifiers | ||
363 | !Cname server-auth | ||
364 | id-kp 1 : serverAuth : TLS Web Server Authentication | ||
365 | !Cname client-auth | ||
366 | id-kp 2 : clientAuth : TLS Web Client Authentication | ||
367 | !Cname code-sign | ||
368 | id-kp 3 : codeSigning : Code Signing | ||
369 | !Cname email-protect | ||
370 | id-kp 4 : emailProtection : E-mail Protection | ||
371 | id-kp 5 : ipsecEndSystem : IPSec End System | ||
372 | id-kp 6 : ipsecTunnel : IPSec Tunnel | ||
373 | id-kp 7 : ipsecUser : IPSec User | ||
374 | !Cname time-stamp | ||
375 | id-kp 8 : timeStamping : Time Stamping | ||
376 | # From OCSP spec RFC2560 | ||
377 | !Cname OCSP-sign | ||
378 | id-kp 9 : OCSPSigning : OCSP Signing | ||
379 | id-kp 10 : DVCS : dvcs | ||
380 | |||
381 | # CMP information types | ||
382 | id-it 1 : id-it-caProtEncCert | ||
383 | id-it 2 : id-it-signKeyPairTypes | ||
384 | id-it 3 : id-it-encKeyPairTypes | ||
385 | id-it 4 : id-it-preferredSymmAlg | ||
386 | id-it 5 : id-it-caKeyUpdateInfo | ||
387 | id-it 6 : id-it-currentCRL | ||
388 | id-it 7 : id-it-unsupportedOIDs | ||
389 | # obsolete | ||
390 | id-it 8 : id-it-subscriptionRequest | ||
391 | # obsolete | ||
392 | id-it 9 : id-it-subscriptionResponse | ||
393 | id-it 10 : id-it-keyPairParamReq | ||
394 | id-it 11 : id-it-keyPairParamRep | ||
395 | id-it 12 : id-it-revPassphrase | ||
396 | id-it 13 : id-it-implicitConfirm | ||
397 | id-it 14 : id-it-confirmWaitTime | ||
398 | id-it 15 : id-it-origPKIMessage | ||
399 | |||
400 | # CRMF registration | ||
401 | id-pkip 1 : id-regCtrl | ||
402 | id-pkip 2 : id-regInfo | ||
403 | |||
404 | # CRMF registration controls | ||
405 | id-regCtrl 1 : id-regCtrl-regToken | ||
406 | id-regCtrl 2 : id-regCtrl-authenticator | ||
407 | id-regCtrl 3 : id-regCtrl-pkiPublicationInfo | ||
408 | id-regCtrl 4 : id-regCtrl-pkiArchiveOptions | ||
409 | id-regCtrl 5 : id-regCtrl-oldCertID | ||
410 | id-regCtrl 6 : id-regCtrl-protocolEncrKey | ||
411 | |||
412 | # CRMF registration information | ||
413 | id-regInfo 1 : id-regInfo-utf8Pairs | ||
414 | id-regInfo 2 : id-regInfo-certReq | ||
415 | |||
416 | # algorithms | ||
417 | id-alg 1 : id-alg-des40 | ||
418 | id-alg 2 : id-alg-noSignature | ||
419 | id-alg 3 : id-alg-dh-sig-hmac-sha1 | ||
420 | id-alg 4 : id-alg-dh-pop | ||
421 | |||
422 | # CMC controls | ||
423 | id-cmc 1 : id-cmc-statusInfo | ||
424 | id-cmc 2 : id-cmc-identification | ||
425 | id-cmc 3 : id-cmc-identityProof | ||
426 | id-cmc 4 : id-cmc-dataReturn | ||
427 | id-cmc 5 : id-cmc-transactionId | ||
428 | id-cmc 6 : id-cmc-senderNonce | ||
429 | id-cmc 7 : id-cmc-recipientNonce | ||
430 | id-cmc 8 : id-cmc-addExtensions | ||
431 | id-cmc 9 : id-cmc-encryptedPOP | ||
432 | id-cmc 10 : id-cmc-decryptedPOP | ||
433 | id-cmc 11 : id-cmc-lraPOPWitness | ||
434 | id-cmc 15 : id-cmc-getCert | ||
435 | id-cmc 16 : id-cmc-getCRL | ||
436 | id-cmc 17 : id-cmc-revokeRequest | ||
437 | id-cmc 18 : id-cmc-regInfo | ||
438 | id-cmc 19 : id-cmc-responseInfo | ||
439 | id-cmc 21 : id-cmc-queryPending | ||
440 | id-cmc 22 : id-cmc-popLinkRandom | ||
441 | id-cmc 23 : id-cmc-popLinkWitness | ||
442 | id-cmc 24 : id-cmc-confirmCertAcceptance | ||
443 | |||
444 | # other names | ||
445 | id-on 1 : id-on-personalData | ||
446 | |||
447 | # personal data attributes | ||
448 | id-pda 1 : id-pda-dateOfBirth | ||
449 | id-pda 2 : id-pda-placeOfBirth | ||
450 | id-pda 3 : id-pda-gender | ||
451 | id-pda 4 : id-pda-countryOfCitizenship | ||
452 | id-pda 5 : id-pda-countryOfResidence | ||
453 | |||
454 | # attribute certificate attributes | ||
455 | id-aca 1 : id-aca-authenticationInfo | ||
456 | id-aca 2 : id-aca-accessIdentity | ||
457 | id-aca 3 : id-aca-chargingIdentity | ||
458 | id-aca 4 : id-aca-group | ||
459 | # attention : the following seems to be obsolete, replace by 'role' | ||
460 | id-aca 5 : id-aca-role | ||
461 | id-aca 6 : id-aca-encAttrs | ||
462 | |||
463 | # qualified certificate statements | ||
464 | id-qcs 1 : id-qcs-pkixQCSyntax-v1 | ||
465 | |||
466 | # CMC content types | ||
467 | id-cct 1 : id-cct-crs | ||
468 | id-cct 2 : id-cct-PKIData | ||
469 | id-cct 3 : id-cct-PKIResponse | ||
470 | |||
471 | # Predefined Proxy Certificate policy languages | ||
472 | id-ppl 0 : id-ppl-anyLanguage : Any language | ||
473 | id-ppl 1 : id-ppl-inheritAll : Inherit all | ||
474 | id-ppl 2 : id-ppl-independent : Independent | ||
475 | |||
476 | # access descriptors for authority info access extension | ||
477 | !Cname ad-OCSP | ||
478 | id-ad 1 : OCSP : OCSP | ||
479 | !Cname ad-ca-issuers | ||
480 | id-ad 2 : caIssuers : CA Issuers | ||
481 | !Cname ad-timeStamping | ||
482 | id-ad 3 : ad_timestamping : AD Time Stamping | ||
483 | !Cname ad-dvcs | ||
484 | id-ad 4 : AD_DVCS : ad dvcs | ||
485 | |||
486 | |||
487 | !Alias id-pkix-OCSP ad-OCSP | ||
488 | !module id-pkix-OCSP | ||
489 | !Cname basic | ||
490 | id-pkix-OCSP 1 : basicOCSPResponse : Basic OCSP Response | ||
491 | id-pkix-OCSP 2 : Nonce : OCSP Nonce | ||
492 | id-pkix-OCSP 3 : CrlID : OCSP CRL ID | ||
493 | id-pkix-OCSP 4 : acceptableResponses : Acceptable OCSP Responses | ||
494 | id-pkix-OCSP 5 : noCheck : OCSP No Check | ||
495 | id-pkix-OCSP 6 : archiveCutoff : OCSP Archive Cutoff | ||
496 | id-pkix-OCSP 7 : serviceLocator : OCSP Service Locator | ||
497 | id-pkix-OCSP 8 : extendedStatus : Extended OCSP Status | ||
498 | id-pkix-OCSP 9 : valid | ||
499 | id-pkix-OCSP 10 : path | ||
500 | id-pkix-OCSP 11 : trustRoot : Trust Root | ||
501 | !global | ||
502 | |||
503 | 1 3 14 3 2 : algorithm : algorithm | ||
504 | algorithm 3 : RSA-NP-MD5 : md5WithRSA | ||
505 | algorithm 6 : DES-ECB : des-ecb | ||
506 | algorithm 7 : DES-CBC : des-cbc | ||
507 | !Cname des-ofb64 | ||
508 | algorithm 8 : DES-OFB : des-ofb | ||
509 | !Cname des-cfb64 | ||
510 | algorithm 9 : DES-CFB : des-cfb | ||
511 | algorithm 11 : rsaSignature | ||
512 | !Cname dsa-2 | ||
513 | algorithm 12 : DSA-old : dsaEncryption-old | ||
514 | algorithm 13 : DSA-SHA : dsaWithSHA | ||
515 | algorithm 15 : RSA-SHA : shaWithRSAEncryption | ||
516 | !Cname des-ede-ecb | ||
517 | algorithm 17 : DES-EDE : des-ede | ||
518 | !Cname des-ede3-ecb | ||
519 | : DES-EDE3 : des-ede3 | ||
520 | : DES-EDE-CBC : des-ede-cbc | ||
521 | !Cname des-ede-cfb64 | ||
522 | : DES-EDE-CFB : des-ede-cfb | ||
523 | !Cname des-ede3-cfb64 | ||
524 | : DES-EDE3-CFB : des-ede3-cfb | ||
525 | !Cname des-ede-ofb64 | ||
526 | : DES-EDE-OFB : des-ede-ofb | ||
527 | !Cname des-ede3-ofb64 | ||
528 | : DES-EDE3-OFB : des-ede3-ofb | ||
529 | : DESX-CBC : desx-cbc | ||
530 | algorithm 18 : SHA : sha | ||
531 | algorithm 26 : SHA1 : sha1 | ||
532 | !Cname dsaWithSHA1-2 | ||
533 | algorithm 27 : DSA-SHA1-old : dsaWithSHA1-old | ||
534 | algorithm 29 : RSA-SHA1-2 : sha1WithRSA | ||
535 | |||
536 | 1 3 36 3 2 1 : RIPEMD160 : ripemd160 | ||
537 | 1 3 36 3 3 1 2 : RSA-RIPEMD160 : ripemd160WithRSA | ||
538 | |||
539 | !Cname sxnet | ||
540 | 1 3 101 1 4 1 : SXNetID : Strong Extranet ID | ||
541 | |||
542 | 2 5 : X500 : directory services (X.500) | ||
543 | |||
544 | X500 4 : X509 | ||
545 | X509 3 : CN : commonName | ||
546 | X509 4 : SN : surname | ||
547 | X509 5 : : serialNumber | ||
548 | X509 6 : C : countryName | ||
549 | X509 7 : L : localityName | ||
550 | X509 8 : ST : stateOrProvinceName | ||
551 | X509 9 : : streetAddress | ||
552 | X509 10 : O : organizationName | ||
553 | X509 11 : OU : organizationalUnitName | ||
554 | X509 12 : : title | ||
555 | X509 13 : : description | ||
556 | X509 17 : : postalCode | ||
557 | X509 41 : name : name | ||
558 | X509 42 : GN : givenName | ||
559 | X509 43 : : initials | ||
560 | X509 44 : : generationQualifier | ||
561 | X509 45 : : x500UniqueIdentifier | ||
562 | X509 46 : dnQualifier : dnQualifier | ||
563 | X509 65 : : pseudonym | ||
564 | X509 72 : role : role | ||
565 | |||
566 | X500 8 : X500algorithms : directory services - algorithms | ||
567 | X500algorithms 1 1 : RSA : rsa | ||
568 | X500algorithms 3 100 : RSA-MDC2 : mdc2WithRSA | ||
569 | X500algorithms 3 101 : MDC2 : mdc2 | ||
570 | |||
571 | X500 29 : id-ce | ||
572 | !Cname subject-key-identifier | ||
573 | id-ce 14 : subjectKeyIdentifier : X509v3 Subject Key Identifier | ||
574 | !Cname key-usage | ||
575 | id-ce 15 : keyUsage : X509v3 Key Usage | ||
576 | !Cname private-key-usage-period | ||
577 | id-ce 16 : privateKeyUsagePeriod : X509v3 Private Key Usage Period | ||
578 | !Cname subject-alt-name | ||
579 | id-ce 17 : subjectAltName : X509v3 Subject Alternative Name | ||
580 | !Cname issuer-alt-name | ||
581 | id-ce 18 : issuerAltName : X509v3 Issuer Alternative Name | ||
582 | !Cname basic-constraints | ||
583 | id-ce 19 : basicConstraints : X509v3 Basic Constraints | ||
584 | !Cname crl-number | ||
585 | id-ce 20 : crlNumber : X509v3 CRL Number | ||
586 | !Cname crl-reason | ||
587 | id-ce 21 : CRLReason : X509v3 CRL Reason Code | ||
588 | !Cname invalidity-date | ||
589 | id-ce 24 : invalidityDate : Invalidity Date | ||
590 | !Cname delta-crl | ||
591 | id-ce 27 : deltaCRL : X509v3 Delta CRL Indicator | ||
592 | !Cname name-constraints | ||
593 | id-ce 30 : nameConstraints : X509v3 Name Constraints | ||
594 | !Cname crl-distribution-points | ||
595 | id-ce 31 : crlDistributionPoints : X509v3 CRL Distribution Points | ||
596 | !Cname certificate-policies | ||
597 | id-ce 32 : certificatePolicies : X509v3 Certificate Policies | ||
598 | !Cname authority-key-identifier | ||
599 | id-ce 35 : authorityKeyIdentifier : X509v3 Authority Key Identifier | ||
600 | !Cname policy-constraints | ||
601 | id-ce 36 : policyConstraints : X509v3 Policy Constraints | ||
602 | !Cname ext-key-usage | ||
603 | id-ce 37 : extendedKeyUsage : X509v3 Extended Key Usage | ||
604 | !Cname target-information | ||
605 | id-ce 55 : targetInformation : X509v3 AC Targeting | ||
606 | !Cname no-rev-avail | ||
607 | id-ce 56 : noRevAvail : X509v3 No Revocation Available | ||
608 | |||
609 | !Cname netscape | ||
610 | 2 16 840 1 113730 : Netscape : Netscape Communications Corp. | ||
611 | !Cname netscape-cert-extension | ||
612 | netscape 1 : nsCertExt : Netscape Certificate Extension | ||
613 | !Cname netscape-data-type | ||
614 | netscape 2 : nsDataType : Netscape Data Type | ||
615 | !Cname netscape-cert-type | ||
616 | netscape-cert-extension 1 : nsCertType : Netscape Cert Type | ||
617 | !Cname netscape-base-url | ||
618 | netscape-cert-extension 2 : nsBaseUrl : Netscape Base Url | ||
619 | !Cname netscape-revocation-url | ||
620 | netscape-cert-extension 3 : nsRevocationUrl : Netscape Revocation Url | ||
621 | !Cname netscape-ca-revocation-url | ||
622 | netscape-cert-extension 4 : nsCaRevocationUrl : Netscape CA Revocation Url | ||
623 | !Cname netscape-renewal-url | ||
624 | netscape-cert-extension 7 : nsRenewalUrl : Netscape Renewal Url | ||
625 | !Cname netscape-ca-policy-url | ||
626 | netscape-cert-extension 8 : nsCaPolicyUrl : Netscape CA Policy Url | ||
627 | !Cname netscape-ssl-server-name | ||
628 | netscape-cert-extension 12 : nsSslServerName : Netscape SSL Server Name | ||
629 | !Cname netscape-comment | ||
630 | netscape-cert-extension 13 : nsComment : Netscape Comment | ||
631 | !Cname netscape-cert-sequence | ||
632 | netscape-data-type 5 : nsCertSequence : Netscape Certificate Sequence | ||
633 | !Cname ns-sgc | ||
634 | netscape 4 1 : nsSGC : Netscape Server Gated Crypto | ||
635 | |||
636 | # iso(1) | ||
637 | iso 3 : ORG : org | ||
638 | org 6 : DOD : dod | ||
639 | dod 1 : IANA : iana | ||
640 | !Alias internet iana | ||
641 | |||
642 | internet 1 : directory : Directory | ||
643 | internet 2 : mgmt : Management | ||
644 | internet 3 : experimental : Experimental | ||
645 | internet 4 : private : Private | ||
646 | internet 5 : security : Security | ||
647 | internet 6 : snmpv2 : SNMPv2 | ||
648 | # Documents refer to "internet 7" as "mail". This however leads to ambiguities | ||
649 | # with RFC2798, Section 9.1.3, where "mail" is defined as the short name for | ||
650 | # rfc822Mailbox. The short name is therefore here left out for a reason. | ||
651 | # Subclasses of "mail", e.g. "MIME MHS" don't consitute a problem, as | ||
652 | # references are realized via long name "Mail" (with capital M). | ||
653 | internet 7 : : Mail | ||
654 | |||
655 | Private 1 : enterprises : Enterprises | ||
656 | |||
657 | # RFC 2247 | ||
658 | Enterprises 1466 344 : dcobject : dcObject | ||
659 | |||
660 | # RFC 1495 | ||
661 | Mail 1 : mime-mhs : MIME MHS | ||
662 | mime-mhs 1 : mime-mhs-headings : mime-mhs-headings | ||
663 | mime-mhs 2 : mime-mhs-bodies : mime-mhs-bodies | ||
664 | mime-mhs-headings 1 : id-hex-partial-message : id-hex-partial-message | ||
665 | mime-mhs-headings 2 : id-hex-multipart-message : id-hex-multipart-message | ||
666 | |||
667 | # What the hell are these OIDs, really? | ||
668 | !Cname rle-compression | ||
669 | 1 1 1 1 666 1 : RLE : run length compression | ||
670 | !Cname zlib-compression | ||
671 | 1 1 1 1 666 2 : ZLIB : zlib compression | ||
672 | |||
673 | # AES aka Rijndael | ||
674 | |||
675 | !Alias csor 2 16 840 1 101 3 | ||
676 | !Alias nistAlgorithms csor 4 | ||
677 | !Alias aes nistAlgorithms 1 | ||
678 | |||
679 | aes 1 : AES-128-ECB : aes-128-ecb | ||
680 | aes 2 : AES-128-CBC : aes-128-cbc | ||
681 | !Cname aes-128-ofb128 | ||
682 | aes 3 : AES-128-OFB : aes-128-ofb | ||
683 | !Cname aes-128-cfb128 | ||
684 | aes 4 : AES-128-CFB : aes-128-cfb | ||
685 | |||
686 | aes 21 : AES-192-ECB : aes-192-ecb | ||
687 | aes 22 : AES-192-CBC : aes-192-cbc | ||
688 | !Cname aes-192-ofb128 | ||
689 | aes 23 : AES-192-OFB : aes-192-ofb | ||
690 | !Cname aes-192-cfb128 | ||
691 | aes 24 : AES-192-CFB : aes-192-cfb | ||
692 | |||
693 | aes 41 : AES-256-ECB : aes-256-ecb | ||
694 | aes 42 : AES-256-CBC : aes-256-cbc | ||
695 | !Cname aes-256-ofb128 | ||
696 | aes 43 : AES-256-OFB : aes-256-ofb | ||
697 | !Cname aes-256-cfb128 | ||
698 | aes 44 : AES-256-CFB : aes-256-cfb | ||
699 | |||
700 | # There are no OIDs for these modes... | ||
701 | |||
702 | : AES-128-CFB1 : aes-128-cfb1 | ||
703 | : AES-192-CFB1 : aes-192-cfb1 | ||
704 | : AES-256-CFB1 : aes-256-cfb1 | ||
705 | : AES-128-CFB8 : aes-128-cfb8 | ||
706 | : AES-192-CFB8 : aes-192-cfb8 | ||
707 | : AES-256-CFB8 : aes-256-cfb8 | ||
708 | : DES-CFB1 : des-cfb1 | ||
709 | : DES-CFB8 : des-cfb8 | ||
710 | : DES-EDE3-CFB1 : des-ede3-cfb1 | ||
711 | : DES-EDE3-CFB8 : des-ede3-cfb8 | ||
712 | |||
713 | # OIDs for SHA224, SHA256, SHA385 and SHA512, according to x9.84. | ||
714 | !Alias nist_hashalgs nistAlgorithms 2 | ||
715 | nist_hashalgs 1 : SHA256 : sha256 | ||
716 | nist_hashalgs 2 : SHA384 : sha384 | ||
717 | nist_hashalgs 3 : SHA512 : sha512 | ||
718 | nist_hashalgs 4 : SHA224 : sha224 | ||
719 | |||
720 | # Hold instruction CRL entry extension | ||
721 | !Cname hold-instruction-code | ||
722 | id-ce 23 : holdInstructionCode : Hold Instruction Code | ||
723 | !Alias holdInstruction X9-57 2 | ||
724 | !Cname hold-instruction-none | ||
725 | holdInstruction 1 : holdInstructionNone : Hold Instruction None | ||
726 | !Cname hold-instruction-call-issuer | ||
727 | holdInstruction 2 : holdInstructionCallIssuer : Hold Instruction Call Issuer | ||
728 | !Cname hold-instruction-reject | ||
729 | holdInstruction 3 : holdInstructionReject : Hold Instruction Reject | ||
730 | |||
731 | # OID's from CCITT. Most of this is defined in RFC 1274. A couple of | ||
732 | # them are also mentioned in RFC 2247 | ||
733 | ccitt 9 : data | ||
734 | data 2342 : pss | ||
735 | pss 19200300 : ucl | ||
736 | ucl 100 : pilot | ||
737 | pilot 1 : : pilotAttributeType | ||
738 | pilot 3 : : pilotAttributeSyntax | ||
739 | pilot 4 : : pilotObjectClass | ||
740 | pilot 10 : : pilotGroups | ||
741 | pilotAttributeSyntax 4 : : iA5StringSyntax | ||
742 | pilotAttributeSyntax 5 : : caseIgnoreIA5StringSyntax | ||
743 | pilotObjectClass 3 : : pilotObject | ||
744 | pilotObjectClass 4 : : pilotPerson | ||
745 | pilotObjectClass 5 : account | ||
746 | pilotObjectClass 6 : document | ||
747 | pilotObjectClass 7 : room | ||
748 | pilotObjectClass 9 : : documentSeries | ||
749 | pilotObjectClass 13 : domain : Domain | ||
750 | pilotObjectClass 14 : : rFC822localPart | ||
751 | pilotObjectClass 15 : : dNSDomain | ||
752 | pilotObjectClass 17 : : domainRelatedObject | ||
753 | pilotObjectClass 18 : : friendlyCountry | ||
754 | pilotObjectClass 19 : : simpleSecurityObject | ||
755 | pilotObjectClass 20 : : pilotOrganization | ||
756 | pilotObjectClass 21 : : pilotDSA | ||
757 | pilotObjectClass 22 : : qualityLabelledData | ||
758 | pilotAttributeType 1 : UID : userId | ||
759 | pilotAttributeType 2 : : textEncodedORAddress | ||
760 | pilotAttributeType 3 : mail : rfc822Mailbox | ||
761 | pilotAttributeType 4 : info | ||
762 | pilotAttributeType 5 : : favouriteDrink | ||
763 | pilotAttributeType 6 : : roomNumber | ||
764 | pilotAttributeType 7 : photo | ||
765 | pilotAttributeType 8 : : userClass | ||
766 | pilotAttributeType 9 : host | ||
767 | pilotAttributeType 10 : manager | ||
768 | pilotAttributeType 11 : : documentIdentifier | ||
769 | pilotAttributeType 12 : : documentTitle | ||
770 | pilotAttributeType 13 : : documentVersion | ||
771 | pilotAttributeType 14 : : documentAuthor | ||
772 | pilotAttributeType 15 : : documentLocation | ||
773 | pilotAttributeType 20 : : homeTelephoneNumber | ||
774 | pilotAttributeType 21 : secretary | ||
775 | pilotAttributeType 22 : : otherMailbox | ||
776 | pilotAttributeType 23 : : lastModifiedTime | ||
777 | pilotAttributeType 24 : : lastModifiedBy | ||
778 | pilotAttributeType 25 : DC : domainComponent | ||
779 | pilotAttributeType 26 : : aRecord | ||
780 | pilotAttributeType 27 : : pilotAttributeType27 | ||
781 | pilotAttributeType 28 : : mXRecord | ||
782 | pilotAttributeType 29 : : nSRecord | ||
783 | pilotAttributeType 30 : : sOARecord | ||
784 | pilotAttributeType 31 : : cNAMERecord | ||
785 | pilotAttributeType 37 : : associatedDomain | ||
786 | pilotAttributeType 38 : : associatedName | ||
787 | pilotAttributeType 39 : : homePostalAddress | ||
788 | pilotAttributeType 40 : : personalTitle | ||
789 | pilotAttributeType 41 : : mobileTelephoneNumber | ||
790 | pilotAttributeType 42 : : pagerTelephoneNumber | ||
791 | pilotAttributeType 43 : : friendlyCountryName | ||
792 | # The following clashes with 2.5.4.45, so commented away | ||
793 | #pilotAttributeType 44 : uid : uniqueIdentifier | ||
794 | pilotAttributeType 45 : : organizationalStatus | ||
795 | pilotAttributeType 46 : : janetMailbox | ||
796 | pilotAttributeType 47 : : mailPreferenceOption | ||
797 | pilotAttributeType 48 : : buildingName | ||
798 | pilotAttributeType 49 : : dSAQuality | ||
799 | pilotAttributeType 50 : : singleLevelQuality | ||
800 | pilotAttributeType 51 : : subtreeMinimumQuality | ||
801 | pilotAttributeType 52 : : subtreeMaximumQuality | ||
802 | pilotAttributeType 53 : : personalSignature | ||
803 | pilotAttributeType 54 : : dITRedirect | ||
804 | pilotAttributeType 55 : audio | ||
805 | pilotAttributeType 56 : : documentPublisher | ||
806 | |||
807 | 2 23 42 : id-set : Secure Electronic Transactions | ||
808 | |||
809 | id-set 0 : set-ctype : content types | ||
810 | id-set 1 : set-msgExt : message extensions | ||
811 | id-set 3 : set-attr | ||
812 | id-set 5 : set-policy | ||
813 | id-set 7 : set-certExt : certificate extensions | ||
814 | id-set 8 : set-brand | ||
815 | |||
816 | set-ctype 0 : setct-PANData | ||
817 | set-ctype 1 : setct-PANToken | ||
818 | set-ctype 2 : setct-PANOnly | ||
819 | set-ctype 3 : setct-OIData | ||
820 | set-ctype 4 : setct-PI | ||
821 | set-ctype 5 : setct-PIData | ||
822 | set-ctype 6 : setct-PIDataUnsigned | ||
823 | set-ctype 7 : setct-HODInput | ||
824 | set-ctype 8 : setct-AuthResBaggage | ||
825 | set-ctype 9 : setct-AuthRevReqBaggage | ||
826 | set-ctype 10 : setct-AuthRevResBaggage | ||
827 | set-ctype 11 : setct-CapTokenSeq | ||
828 | set-ctype 12 : setct-PInitResData | ||
829 | set-ctype 13 : setct-PI-TBS | ||
830 | set-ctype 14 : setct-PResData | ||
831 | set-ctype 16 : setct-AuthReqTBS | ||
832 | set-ctype 17 : setct-AuthResTBS | ||
833 | set-ctype 18 : setct-AuthResTBSX | ||
834 | set-ctype 19 : setct-AuthTokenTBS | ||
835 | set-ctype 20 : setct-CapTokenData | ||
836 | set-ctype 21 : setct-CapTokenTBS | ||
837 | set-ctype 22 : setct-AcqCardCodeMsg | ||
838 | set-ctype 23 : setct-AuthRevReqTBS | ||
839 | set-ctype 24 : setct-AuthRevResData | ||
840 | set-ctype 25 : setct-AuthRevResTBS | ||
841 | set-ctype 26 : setct-CapReqTBS | ||
842 | set-ctype 27 : setct-CapReqTBSX | ||
843 | set-ctype 28 : setct-CapResData | ||
844 | set-ctype 29 : setct-CapRevReqTBS | ||
845 | set-ctype 30 : setct-CapRevReqTBSX | ||
846 | set-ctype 31 : setct-CapRevResData | ||
847 | set-ctype 32 : setct-CredReqTBS | ||
848 | set-ctype 33 : setct-CredReqTBSX | ||
849 | set-ctype 34 : setct-CredResData | ||
850 | set-ctype 35 : setct-CredRevReqTBS | ||
851 | set-ctype 36 : setct-CredRevReqTBSX | ||
852 | set-ctype 37 : setct-CredRevResData | ||
853 | set-ctype 38 : setct-PCertReqData | ||
854 | set-ctype 39 : setct-PCertResTBS | ||
855 | set-ctype 40 : setct-BatchAdminReqData | ||
856 | set-ctype 41 : setct-BatchAdminResData | ||
857 | set-ctype 42 : setct-CardCInitResTBS | ||
858 | set-ctype 43 : setct-MeAqCInitResTBS | ||
859 | set-ctype 44 : setct-RegFormResTBS | ||
860 | set-ctype 45 : setct-CertReqData | ||
861 | set-ctype 46 : setct-CertReqTBS | ||
862 | set-ctype 47 : setct-CertResData | ||
863 | set-ctype 48 : setct-CertInqReqTBS | ||
864 | set-ctype 49 : setct-ErrorTBS | ||
865 | set-ctype 50 : setct-PIDualSignedTBE | ||
866 | set-ctype 51 : setct-PIUnsignedTBE | ||
867 | set-ctype 52 : setct-AuthReqTBE | ||
868 | set-ctype 53 : setct-AuthResTBE | ||
869 | set-ctype 54 : setct-AuthResTBEX | ||
870 | set-ctype 55 : setct-AuthTokenTBE | ||
871 | set-ctype 56 : setct-CapTokenTBE | ||
872 | set-ctype 57 : setct-CapTokenTBEX | ||
873 | set-ctype 58 : setct-AcqCardCodeMsgTBE | ||
874 | set-ctype 59 : setct-AuthRevReqTBE | ||
875 | set-ctype 60 : setct-AuthRevResTBE | ||
876 | set-ctype 61 : setct-AuthRevResTBEB | ||
877 | set-ctype 62 : setct-CapReqTBE | ||
878 | set-ctype 63 : setct-CapReqTBEX | ||
879 | set-ctype 64 : setct-CapResTBE | ||
880 | set-ctype 65 : setct-CapRevReqTBE | ||
881 | set-ctype 66 : setct-CapRevReqTBEX | ||
882 | set-ctype 67 : setct-CapRevResTBE | ||
883 | set-ctype 68 : setct-CredReqTBE | ||
884 | set-ctype 69 : setct-CredReqTBEX | ||
885 | set-ctype 70 : setct-CredResTBE | ||
886 | set-ctype 71 : setct-CredRevReqTBE | ||
887 | set-ctype 72 : setct-CredRevReqTBEX | ||
888 | set-ctype 73 : setct-CredRevResTBE | ||
889 | set-ctype 74 : setct-BatchAdminReqTBE | ||
890 | set-ctype 75 : setct-BatchAdminResTBE | ||
891 | set-ctype 76 : setct-RegFormReqTBE | ||
892 | set-ctype 77 : setct-CertReqTBE | ||
893 | set-ctype 78 : setct-CertReqTBEX | ||
894 | set-ctype 79 : setct-CertResTBE | ||
895 | set-ctype 80 : setct-CRLNotificationTBS | ||
896 | set-ctype 81 : setct-CRLNotificationResTBS | ||
897 | set-ctype 82 : setct-BCIDistributionTBS | ||
898 | |||
899 | set-msgExt 1 : setext-genCrypt : generic cryptogram | ||
900 | set-msgExt 3 : setext-miAuth : merchant initiated auth | ||
901 | set-msgExt 4 : setext-pinSecure | ||
902 | set-msgExt 5 : setext-pinAny | ||
903 | set-msgExt 7 : setext-track2 | ||
904 | set-msgExt 8 : setext-cv : additional verification | ||
905 | |||
906 | set-policy 0 : set-policy-root | ||
907 | |||
908 | set-certExt 0 : setCext-hashedRoot | ||
909 | set-certExt 1 : setCext-certType | ||
910 | set-certExt 2 : setCext-merchData | ||
911 | set-certExt 3 : setCext-cCertRequired | ||
912 | set-certExt 4 : setCext-tunneling | ||
913 | set-certExt 5 : setCext-setExt | ||
914 | set-certExt 6 : setCext-setQualf | ||
915 | set-certExt 7 : setCext-PGWYcapabilities | ||
916 | set-certExt 8 : setCext-TokenIdentifier | ||
917 | set-certExt 9 : setCext-Track2Data | ||
918 | set-certExt 10 : setCext-TokenType | ||
919 | set-certExt 11 : setCext-IssuerCapabilities | ||
920 | |||
921 | set-attr 0 : setAttr-Cert | ||
922 | set-attr 1 : setAttr-PGWYcap : payment gateway capabilities | ||
923 | set-attr 2 : setAttr-TokenType | ||
924 | set-attr 3 : setAttr-IssCap : issuer capabilities | ||
925 | |||
926 | setAttr-Cert 0 : set-rootKeyThumb | ||
927 | setAttr-Cert 1 : set-addPolicy | ||
928 | |||
929 | setAttr-TokenType 1 : setAttr-Token-EMV | ||
930 | setAttr-TokenType 2 : setAttr-Token-B0Prime | ||
931 | |||
932 | setAttr-IssCap 3 : setAttr-IssCap-CVM | ||
933 | setAttr-IssCap 4 : setAttr-IssCap-T2 | ||
934 | setAttr-IssCap 5 : setAttr-IssCap-Sig | ||
935 | |||
936 | setAttr-IssCap-CVM 1 : setAttr-GenCryptgrm : generate cryptogram | ||
937 | setAttr-IssCap-T2 1 : setAttr-T2Enc : encrypted track 2 | ||
938 | setAttr-IssCap-T2 2 : setAttr-T2cleartxt : cleartext track 2 | ||
939 | |||
940 | setAttr-IssCap-Sig 1 : setAttr-TokICCsig : ICC or token signature | ||
941 | setAttr-IssCap-Sig 2 : setAttr-SecDevSig : secure device signature | ||
942 | |||
943 | set-brand 1 : set-brand-IATA-ATA | ||
944 | set-brand 30 : set-brand-Diners | ||
945 | set-brand 34 : set-brand-AmericanExpress | ||
946 | set-brand 35 : set-brand-JCB | ||
947 | set-brand 4 : set-brand-Visa | ||
948 | set-brand 5 : set-brand-MasterCard | ||
949 | set-brand 6011 : set-brand-Novus | ||
950 | |||
951 | rsadsi 3 10 : DES-CDMF : des-cdmf | ||
952 | rsadsi 1 1 6 : rsaOAEPEncryptionSET | ||