summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/objects
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/objects')
-rw-r--r--src/lib/libcrypto/objects/o_names.c372
-rw-r--r--src/lib/libcrypto/objects/obj_dat.c810
-rw-r--r--src/lib/libcrypto/objects/obj_dat.h5102
-rw-r--r--src/lib/libcrypto/objects/obj_dat.pl307
-rw-r--r--src/lib/libcrypto/objects/obj_err.c102
-rw-r--r--src/lib/libcrypto/objects/obj_lib.c129
-rw-r--r--src/lib/libcrypto/objects/obj_mac.h4032
-rw-r--r--src/lib/libcrypto/objects/obj_mac.num892
-rw-r--r--src/lib/libcrypto/objects/obj_xref.c234
-rw-r--r--src/lib/libcrypto/objects/obj_xref.h77
-rw-r--r--src/lib/libcrypto/objects/obj_xref.txt46
-rw-r--r--src/lib/libcrypto/objects/objects.README44
-rw-r--r--src/lib/libcrypto/objects/objects.h1138
-rw-r--r--src/lib/libcrypto/objects/objects.pl233
-rw-r--r--src/lib/libcrypto/objects/objects.txt1259
-rw-r--r--src/lib/libcrypto/objects/objxref.pl107
16 files changed, 5750 insertions, 9134 deletions
diff --git a/src/lib/libcrypto/objects/o_names.c b/src/lib/libcrypto/objects/o_names.c
new file mode 100644
index 0000000000..84380a96a9
--- /dev/null
+++ b/src/lib/libcrypto/objects/o_names.c
@@ -0,0 +1,372 @@
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 */
25DECLARE_LHASH_OF(OBJ_NAME);
26static LHASH_OF(OBJ_NAME) *names_lh=NULL;
27static int names_type_num=OBJ_NAME_TYPE_NUM;
28
29typedef struct name_funcs_st
30 {
31 unsigned long (*hash_func)(const char *name);
32 int (*cmp_func)(const char *a,const char *b);
33 void (*free_func)(const char *, int, const char *);
34 } NAME_FUNCS;
35
36DECLARE_STACK_OF(NAME_FUNCS)
37IMPLEMENT_STACK_OF(NAME_FUNCS)
38
39static STACK_OF(NAME_FUNCS) *name_funcs_stack;
40
41/* The LHASH callbacks now use the raw "void *" prototypes and do per-variable
42 * casting in the functions. This prevents function pointer casting without the
43 * need for macro-generated wrapper functions. */
44
45/* static unsigned long obj_name_hash(OBJ_NAME *a); */
46static unsigned long obj_name_hash(const void *a_void);
47/* static int obj_name_cmp(OBJ_NAME *a,OBJ_NAME *b); */
48static int obj_name_cmp(const void *a_void,const void *b_void);
49
50static IMPLEMENT_LHASH_HASH_FN(obj_name, OBJ_NAME)
51static IMPLEMENT_LHASH_COMP_FN(obj_name, OBJ_NAME)
52
53int OBJ_NAME_init(void)
54 {
55 if (names_lh != NULL) return(1);
56 MemCheck_off();
57 names_lh=lh_OBJ_NAME_new();
58 MemCheck_on();
59 return(names_lh != NULL);
60 }
61
62int OBJ_NAME_new_index(unsigned long (*hash_func)(const char *),
63 int (*cmp_func)(const char *, const char *),
64 void (*free_func)(const char *, int, const char *))
65 {
66 int ret;
67 int i;
68 NAME_FUNCS *name_funcs;
69
70 if (name_funcs_stack == NULL)
71 {
72 MemCheck_off();
73 name_funcs_stack=sk_NAME_FUNCS_new_null();
74 MemCheck_on();
75 }
76 if ((name_funcs_stack == NULL))
77 {
78 /* ERROR */
79 return(0);
80 }
81 ret=names_type_num;
82 names_type_num++;
83 for (i=sk_NAME_FUNCS_num(name_funcs_stack); i<names_type_num; i++)
84 {
85 MemCheck_off();
86 name_funcs = OPENSSL_malloc(sizeof(NAME_FUNCS));
87 MemCheck_on();
88 if (!name_funcs)
89 {
90 OBJerr(OBJ_F_OBJ_NAME_NEW_INDEX,ERR_R_MALLOC_FAILURE);
91 return(0);
92 }
93 name_funcs->hash_func = lh_strhash;
94 name_funcs->cmp_func = OPENSSL_strcmp;
95 name_funcs->free_func = 0; /* NULL is often declared to
96 * ((void *)0), which according
97 * to Compaq C is not really
98 * compatible with a function
99 * pointer. -- Richard Levitte*/
100 MemCheck_off();
101 sk_NAME_FUNCS_push(name_funcs_stack,name_funcs);
102 MemCheck_on();
103 }
104 name_funcs = sk_NAME_FUNCS_value(name_funcs_stack, ret);
105 if (hash_func != NULL)
106 name_funcs->hash_func = hash_func;
107 if (cmp_func != NULL)
108 name_funcs->cmp_func = cmp_func;
109 if (free_func != NULL)
110 name_funcs->free_func = free_func;
111 return(ret);
112 }
113
114/* static int obj_name_cmp(OBJ_NAME *a, OBJ_NAME *b) */
115static int obj_name_cmp(const void *a_void, const void *b_void)
116 {
117 int ret;
118 const OBJ_NAME *a = (const OBJ_NAME *)a_void;
119 const OBJ_NAME *b = (const OBJ_NAME *)b_void;
120
121 ret=a->type-b->type;
122 if (ret == 0)
123 {
124 if ((name_funcs_stack != NULL)
125 && (sk_NAME_FUNCS_num(name_funcs_stack) > a->type))
126 {
127 ret=sk_NAME_FUNCS_value(name_funcs_stack,
128 a->type)->cmp_func(a->name,b->name);
129 }
130 else
131 ret=strcmp(a->name,b->name);
132 }
133 return(ret);
134 }
135
136/* static unsigned long obj_name_hash(OBJ_NAME *a) */
137static unsigned long obj_name_hash(const void *a_void)
138 {
139 unsigned long ret;
140 const OBJ_NAME *a = (const OBJ_NAME *)a_void;
141
142 if ((name_funcs_stack != NULL) && (sk_NAME_FUNCS_num(name_funcs_stack) > a->type))
143 {
144 ret=sk_NAME_FUNCS_value(name_funcs_stack,
145 a->type)->hash_func(a->name);
146 }
147 else
148 {
149 ret=lh_strhash(a->name);
150 }
151 ret^=a->type;
152 return(ret);
153 }
154
155const char *OBJ_NAME_get(const char *name, int type)
156 {
157 OBJ_NAME on,*ret;
158 int num=0,alias;
159
160 if (name == NULL) return(NULL);
161 if ((names_lh == NULL) && !OBJ_NAME_init()) return(NULL);
162
163 alias=type&OBJ_NAME_ALIAS;
164 type&= ~OBJ_NAME_ALIAS;
165
166 on.name=name;
167 on.type=type;
168
169 for (;;)
170 {
171 ret=lh_OBJ_NAME_retrieve(names_lh,&on);
172 if (ret == NULL) return(NULL);
173 if ((ret->alias) && !alias)
174 {
175 if (++num > 10) return(NULL);
176 on.name=ret->data;
177 }
178 else
179 {
180 return(ret->data);
181 }
182 }
183 }
184
185int OBJ_NAME_add(const char *name, int type, const char *data)
186 {
187 OBJ_NAME *onp,*ret;
188 int alias;
189
190 if ((names_lh == NULL) && !OBJ_NAME_init()) return(0);
191
192 alias=type&OBJ_NAME_ALIAS;
193 type&= ~OBJ_NAME_ALIAS;
194
195 onp=(OBJ_NAME *)OPENSSL_malloc(sizeof(OBJ_NAME));
196 if (onp == NULL)
197 {
198 /* ERROR */
199 return(0);
200 }
201
202 onp->name=name;
203 onp->alias=alias;
204 onp->type=type;
205 onp->data=data;
206
207 ret=lh_OBJ_NAME_insert(names_lh,onp);
208 if (ret != NULL)
209 {
210 /* free things */
211 if ((name_funcs_stack != NULL) && (sk_NAME_FUNCS_num(name_funcs_stack) > ret->type))
212 {
213 /* XXX: I'm not sure I understand why the free
214 * function should get three arguments...
215 * -- Richard Levitte
216 */
217 sk_NAME_FUNCS_value(name_funcs_stack,
218 ret->type)->free_func(ret->name,ret->type,ret->data);
219 }
220 OPENSSL_free(ret);
221 }
222 else
223 {
224 if (lh_OBJ_NAME_error(names_lh))
225 {
226 /* ERROR */
227 return(0);
228 }
229 }
230 return(1);
231 }
232
233int OBJ_NAME_remove(const char *name, int type)
234 {
235 OBJ_NAME on,*ret;
236
237 if (names_lh == NULL) return(0);
238
239 type&= ~OBJ_NAME_ALIAS;
240 on.name=name;
241 on.type=type;
242 ret=lh_OBJ_NAME_delete(names_lh,&on);
243 if (ret != NULL)
244 {
245 /* free things */
246 if ((name_funcs_stack != NULL) && (sk_NAME_FUNCS_num(name_funcs_stack) > ret->type))
247 {
248 /* XXX: I'm not sure I understand why the free
249 * function should get three arguments...
250 * -- Richard Levitte
251 */
252 sk_NAME_FUNCS_value(name_funcs_stack,
253 ret->type)->free_func(ret->name,ret->type,ret->data);
254 }
255 OPENSSL_free(ret);
256 return(1);
257 }
258 else
259 return(0);
260 }
261
262struct doall
263 {
264 int type;
265 void (*fn)(const OBJ_NAME *,void *arg);
266 void *arg;
267 };
268
269static void do_all_fn_doall_arg(const OBJ_NAME *name,struct doall *d)
270 {
271 if(name->type == d->type)
272 d->fn(name,d->arg);
273 }
274
275static IMPLEMENT_LHASH_DOALL_ARG_FN(do_all_fn, const OBJ_NAME, struct doall)
276
277void OBJ_NAME_do_all(int type,void (*fn)(const OBJ_NAME *,void *arg),void *arg)
278 {
279 struct doall d;
280
281 d.type=type;
282 d.fn=fn;
283 d.arg=arg;
284
285 lh_OBJ_NAME_doall_arg(names_lh, LHASH_DOALL_ARG_FN(do_all_fn),
286 struct doall, &d);
287 }
288
289struct doall_sorted
290 {
291 int type;
292 int n;
293 const OBJ_NAME **names;
294 };
295
296static void do_all_sorted_fn(const OBJ_NAME *name,void *d_)
297 {
298 struct doall_sorted *d=d_;
299
300 if(name->type != d->type)
301 return;
302
303 d->names[d->n++]=name;
304 }
305
306static int do_all_sorted_cmp(const void *n1_,const void *n2_)
307 {
308 const OBJ_NAME * const *n1=n1_;
309 const OBJ_NAME * const *n2=n2_;
310
311 return strcmp((*n1)->name,(*n2)->name);
312 }
313
314void OBJ_NAME_do_all_sorted(int type,void (*fn)(const OBJ_NAME *,void *arg),
315 void *arg)
316 {
317 struct doall_sorted d;
318 int n;
319
320 d.type=type;
321 d.names=OPENSSL_malloc(lh_OBJ_NAME_num_items(names_lh)*sizeof *d.names);
322 d.n=0;
323 OBJ_NAME_do_all(type,do_all_sorted_fn,&d);
324
325 qsort((void *)d.names,d.n,sizeof *d.names,do_all_sorted_cmp);
326
327 for(n=0 ; n < d.n ; ++n)
328 fn(d.names[n],arg);
329
330 OPENSSL_free((void *)d.names);
331 }
332
333static int free_type;
334
335static void names_lh_free_doall(OBJ_NAME *onp)
336 {
337 if (onp == NULL)
338 return;
339
340 if (free_type < 0 || free_type == onp->type)
341 OBJ_NAME_remove(onp->name,onp->type);
342 }
343
344static IMPLEMENT_LHASH_DOALL_FN(names_lh_free, OBJ_NAME)
345
346static void name_funcs_free(NAME_FUNCS *ptr)
347 {
348 OPENSSL_free(ptr);
349 }
350
351void OBJ_NAME_cleanup(int type)
352 {
353 unsigned long down_load;
354
355 if (names_lh == NULL) return;
356
357 free_type=type;
358 down_load=lh_OBJ_NAME_down_load(names_lh);
359 lh_OBJ_NAME_down_load(names_lh)=0;
360
361 lh_OBJ_NAME_doall(names_lh,LHASH_DOALL_FN(names_lh_free));
362 if (type < 0)
363 {
364 lh_OBJ_NAME_free(names_lh);
365 sk_NAME_FUNCS_pop_free(name_funcs_stack,name_funcs_free);
366 names_lh=NULL;
367 name_funcs_stack = NULL;
368 }
369 else
370 lh_OBJ_NAME_down_load(names_lh)=down_load;
371 }
372
diff --git a/src/lib/libcrypto/objects/obj_dat.c b/src/lib/libcrypto/objects/obj_dat.c
new file mode 100644
index 0000000000..8a342ba3eb
--- /dev/null
+++ b/src/lib/libcrypto/objects/obj_dat.c
@@ -0,0 +1,810 @@
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 <limits.h>
62#include "cryptlib.h"
63#include <openssl/lhash.h>
64#include <openssl/asn1.h>
65#include <openssl/objects.h>
66#include <openssl/bn.h>
67
68/* obj_dat.h is generated from objects.h by obj_dat.pl */
69#ifndef OPENSSL_NO_OBJECT
70#include "obj_dat.h"
71#else
72/* You will have to load all the objects needed manually in the application */
73#define NUM_NID 0
74#define NUM_SN 0
75#define NUM_LN 0
76#define NUM_OBJ 0
77static const unsigned char lvalues[1];
78static const ASN1_OBJECT nid_objs[1];
79static const unsigned int sn_objs[1];
80static const unsigned int ln_objs[1];
81static const unsigned int obj_objs[1];
82#endif
83
84DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, sn);
85DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, ln);
86DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, obj);
87
88#define ADDED_DATA 0
89#define ADDED_SNAME 1
90#define ADDED_LNAME 2
91#define ADDED_NID 3
92
93typedef struct added_obj_st
94 {
95 int type;
96 ASN1_OBJECT *obj;
97 } ADDED_OBJ;
98DECLARE_LHASH_OF(ADDED_OBJ);
99
100static int new_nid=NUM_NID;
101static LHASH_OF(ADDED_OBJ) *added=NULL;
102
103static int sn_cmp(const ASN1_OBJECT * const *a, const unsigned int *b)
104 { return(strcmp((*a)->sn,nid_objs[*b].sn)); }
105
106IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, sn);
107
108static int ln_cmp(const ASN1_OBJECT * const *a, const unsigned int *b)
109 { return(strcmp((*a)->ln,nid_objs[*b].ln)); }
110
111IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, ln);
112
113static unsigned long added_obj_hash(const ADDED_OBJ *ca)
114 {
115 const ASN1_OBJECT *a;
116 int i;
117 unsigned long ret=0;
118 unsigned char *p;
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 }
146static IMPLEMENT_LHASH_HASH_FN(added_obj, ADDED_OBJ)
147
148static int added_obj_cmp(const ADDED_OBJ *ca, const ADDED_OBJ *cb)
149 {
150 ASN1_OBJECT *a,*b;
151 int i;
152
153 i=ca->type-cb->type;
154 if (i) return(i);
155 a=ca->obj;
156 b=cb->obj;
157 switch (ca->type)
158 {
159 case ADDED_DATA:
160 i=(a->length - b->length);
161 if (i) return(i);
162 return(memcmp(a->data,b->data,(size_t)a->length));
163 case ADDED_SNAME:
164 if (a->sn == NULL) return(-1);
165 else if (b->sn == NULL) return(1);
166 else return(strcmp(a->sn,b->sn));
167 case ADDED_LNAME:
168 if (a->ln == NULL) return(-1);
169 else if (b->ln == NULL) return(1);
170 else return(strcmp(a->ln,b->ln));
171 case ADDED_NID:
172 return(a->nid-b->nid);
173 default:
174 /* abort(); */
175 return 0;
176 }
177 }
178static IMPLEMENT_LHASH_COMP_FN(added_obj, ADDED_OBJ)
179
180static int init_added(void)
181 {
182 if (added != NULL) return(1);
183 added=lh_ADDED_OBJ_new();
184 return(added != NULL);
185 }
186
187static void cleanup1_doall(ADDED_OBJ *a)
188 {
189 a->obj->nid=0;
190 a->obj->flags|=ASN1_OBJECT_FLAG_DYNAMIC|
191 ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|
192 ASN1_OBJECT_FLAG_DYNAMIC_DATA;
193 }
194
195static void cleanup2_doall(ADDED_OBJ *a)
196 { a->obj->nid++; }
197
198static void cleanup3_doall(ADDED_OBJ *a)
199 {
200 if (--a->obj->nid == 0)
201 ASN1_OBJECT_free(a->obj);
202 OPENSSL_free(a);
203 }
204
205static IMPLEMENT_LHASH_DOALL_FN(cleanup1, ADDED_OBJ)
206static IMPLEMENT_LHASH_DOALL_FN(cleanup2, ADDED_OBJ)
207static IMPLEMENT_LHASH_DOALL_FN(cleanup3, ADDED_OBJ)
208
209/* The purpose of obj_cleanup_defer is to avoid EVP_cleanup() attempting
210 * to use freed up OIDs. If neccessary the actual freeing up of OIDs is
211 * delayed.
212 */
213
214int obj_cleanup_defer = 0;
215
216void check_defer(int nid)
217 {
218 if (!obj_cleanup_defer && nid >= NUM_NID)
219 obj_cleanup_defer = 1;
220 }
221
222void OBJ_cleanup(void)
223 {
224 if (obj_cleanup_defer)
225 {
226 obj_cleanup_defer = 2;
227 return ;
228 }
229 if (added == NULL) return;
230 lh_ADDED_OBJ_down_load(added) = 0;
231 lh_ADDED_OBJ_doall(added,LHASH_DOALL_FN(cleanup1)); /* zero counters */
232 lh_ADDED_OBJ_doall(added,LHASH_DOALL_FN(cleanup2)); /* set counters */
233 lh_ADDED_OBJ_doall(added,LHASH_DOALL_FN(cleanup3)); /* free objects */
234 lh_ADDED_OBJ_free(added);
235 added=NULL;
236 }
237
238int OBJ_new_nid(int num)
239 {
240 int i;
241
242 i=new_nid;
243 new_nid+=num;
244 return(i);
245 }
246
247int OBJ_add_object(const ASN1_OBJECT *obj)
248 {
249 ASN1_OBJECT *o;
250 ADDED_OBJ *ao[4]={NULL,NULL,NULL,NULL},*aop;
251 int i;
252
253 if (added == NULL)
254 if (!init_added()) return(0);
255 if ((o=OBJ_dup(obj)) == NULL) goto err;
256 if (!(ao[ADDED_NID]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
257 if ((o->length != 0) && (obj->data != NULL))
258 if (!(ao[ADDED_DATA]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
259 if (o->sn != NULL)
260 if (!(ao[ADDED_SNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
261 if (o->ln != NULL)
262 if (!(ao[ADDED_LNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
263
264 for (i=ADDED_DATA; i<=ADDED_NID; i++)
265 {
266 if (ao[i] != NULL)
267 {
268 ao[i]->type=i;
269 ao[i]->obj=o;
270 aop=lh_ADDED_OBJ_insert(added,ao[i]);
271 /* memory leak, buit should not normally matter */
272 if (aop != NULL)
273 OPENSSL_free(aop);
274 }
275 }
276 o->flags&= ~(ASN1_OBJECT_FLAG_DYNAMIC|ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|
277 ASN1_OBJECT_FLAG_DYNAMIC_DATA);
278
279 return(o->nid);
280err2:
281 OBJerr(OBJ_F_OBJ_ADD_OBJECT,ERR_R_MALLOC_FAILURE);
282err:
283 for (i=ADDED_DATA; i<=ADDED_NID; i++)
284 if (ao[i] != NULL) OPENSSL_free(ao[i]);
285 if (o != NULL) OPENSSL_free(o);
286 return(NID_undef);
287 }
288
289ASN1_OBJECT *OBJ_nid2obj(int n)
290 {
291 ADDED_OBJ ad,*adp;
292 ASN1_OBJECT ob;
293
294 if ((n >= 0) && (n < NUM_NID))
295 {
296 if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
297 {
298 OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID);
299 return(NULL);
300 }
301 return((ASN1_OBJECT *)&(nid_objs[n]));
302 }
303 else if (added == NULL)
304 return(NULL);
305 else
306 {
307 ad.type=ADDED_NID;
308 ad.obj= &ob;
309 ob.nid=n;
310 adp=lh_ADDED_OBJ_retrieve(added,&ad);
311 if (adp != NULL)
312 return(adp->obj);
313 else
314 {
315 OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID);
316 return(NULL);
317 }
318 }
319 }
320
321const char *OBJ_nid2sn(int n)
322 {
323 ADDED_OBJ ad,*adp;
324 ASN1_OBJECT ob;
325
326 if ((n >= 0) && (n < NUM_NID))
327 {
328 if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
329 {
330 OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID);
331 return(NULL);
332 }
333 return(nid_objs[n].sn);
334 }
335 else if (added == NULL)
336 return(NULL);
337 else
338 {
339 ad.type=ADDED_NID;
340 ad.obj= &ob;
341 ob.nid=n;
342 adp=lh_ADDED_OBJ_retrieve(added,&ad);
343 if (adp != NULL)
344 return(adp->obj->sn);
345 else
346 {
347 OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID);
348 return(NULL);
349 }
350 }
351 }
352
353const char *OBJ_nid2ln(int n)
354 {
355 ADDED_OBJ ad,*adp;
356 ASN1_OBJECT ob;
357
358 if ((n >= 0) && (n < NUM_NID))
359 {
360 if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
361 {
362 OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID);
363 return(NULL);
364 }
365 return(nid_objs[n].ln);
366 }
367 else if (added == NULL)
368 return(NULL);
369 else
370 {
371 ad.type=ADDED_NID;
372 ad.obj= &ob;
373 ob.nid=n;
374 adp=lh_ADDED_OBJ_retrieve(added,&ad);
375 if (adp != NULL)
376 return(adp->obj->ln);
377 else
378 {
379 OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID);
380 return(NULL);
381 }
382 }
383 }
384
385static int obj_cmp(const ASN1_OBJECT * const *ap, const unsigned int *bp)
386 {
387 int j;
388 const ASN1_OBJECT *a= *ap;
389 const ASN1_OBJECT *b= &nid_objs[*bp];
390
391 j=(a->length - b->length);
392 if (j) return(j);
393 return(memcmp(a->data,b->data,a->length));
394 }
395
396IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, obj);
397
398int OBJ_obj2nid(const ASN1_OBJECT *a)
399 {
400 const unsigned int *op;
401 ADDED_OBJ ad,*adp;
402
403 if (a == NULL)
404 return(NID_undef);
405 if (a->nid != 0)
406 return(a->nid);
407
408 if (added != NULL)
409 {
410 ad.type=ADDED_DATA;
411 ad.obj=(ASN1_OBJECT *)a; /* XXX: ugly but harmless */
412 adp=lh_ADDED_OBJ_retrieve(added,&ad);
413 if (adp != NULL) return (adp->obj->nid);
414 }
415 op=OBJ_bsearch_obj(&a, obj_objs, NUM_OBJ);
416 if (op == NULL)
417 return(NID_undef);
418 return(nid_objs[*op].nid);
419 }
420
421/* Convert an object name into an ASN1_OBJECT
422 * if "noname" is not set then search for short and long names first.
423 * This will convert the "dotted" form into an object: unlike OBJ_txt2nid
424 * it can be used with any objects, not just registered ones.
425 */
426
427ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name)
428 {
429 int nid = NID_undef;
430 ASN1_OBJECT *op=NULL;
431 unsigned char *buf;
432 unsigned char *p;
433 const unsigned char *cp;
434 int i, j;
435
436 if(!no_name) {
437 if( ((nid = OBJ_sn2nid(s)) != NID_undef) ||
438 ((nid = OBJ_ln2nid(s)) != NID_undef) )
439 return OBJ_nid2obj(nid);
440 }
441
442 /* Work out size of content octets */
443 i=a2d_ASN1_OBJECT(NULL,0,s,-1);
444 if (i <= 0) {
445 /* Don't clear the error */
446 /*ERR_clear_error();*/
447 return NULL;
448 }
449 /* Work out total size */
450 j = ASN1_object_size(0,i,V_ASN1_OBJECT);
451
452 if((buf=(unsigned char *)OPENSSL_malloc(j)) == NULL) return NULL;
453
454 p = buf;
455 /* Write out tag+length */
456 ASN1_put_object(&p,0,i,V_ASN1_OBJECT,V_ASN1_UNIVERSAL);
457 /* Write out contents */
458 a2d_ASN1_OBJECT(p,i,s,-1);
459
460 cp=buf;
461 op=d2i_ASN1_OBJECT(NULL,&cp,j);
462 OPENSSL_free(buf);
463 return op;
464 }
465
466int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name)
467{
468 int i,n=0,len,nid, first, use_bn;
469 BIGNUM *bl;
470 unsigned long l;
471 const unsigned char *p;
472 char tbuf[DECIMAL_SIZE(i)+DECIMAL_SIZE(l)+2];
473
474 if ((a == NULL) || (a->data == NULL)) {
475 buf[0]='\0';
476 return(0);
477 }
478
479
480 if (!no_name && (nid=OBJ_obj2nid(a)) != NID_undef)
481 {
482 const char *s;
483 s=OBJ_nid2ln(nid);
484 if (s == NULL)
485 s=OBJ_nid2sn(nid);
486 if (s)
487 {
488 if (buf)
489 BUF_strlcpy(buf,s,buf_len);
490 n=strlen(s);
491 return n;
492 }
493 }
494
495
496 len=a->length;
497 p=a->data;
498
499 first = 1;
500 bl = NULL;
501
502 while (len > 0)
503 {
504 l=0;
505 use_bn = 0;
506 for (;;)
507 {
508 unsigned char c = *p++;
509 len--;
510 if ((len == 0) && (c & 0x80))
511 goto err;
512 if (use_bn)
513 {
514 if (!BN_add_word(bl, c & 0x7f))
515 goto err;
516 }
517 else
518 l |= c & 0x7f;
519 if (!(c & 0x80))
520 break;
521 if (!use_bn && (l > (ULONG_MAX >> 7L)))
522 {
523 if (!bl && !(bl = BN_new()))
524 goto err;
525 if (!BN_set_word(bl, l))
526 goto err;
527 use_bn = 1;
528 }
529 if (use_bn)
530 {
531 if (!BN_lshift(bl, bl, 7))
532 goto err;
533 }
534 else
535 l<<=7L;
536 }
537
538 if (first)
539 {
540 first = 0;
541 if (l >= 80)
542 {
543 i = 2;
544 if (use_bn)
545 {
546 if (!BN_sub_word(bl, 80))
547 goto err;
548 }
549 else
550 l -= 80;
551 }
552 else
553 {
554 i=(int)(l/40);
555 l-=(long)(i*40);
556 }
557 if (buf && (buf_len > 0))
558 {
559 *buf++ = i + '0';
560 buf_len--;
561 }
562 n++;
563 }
564
565 if (use_bn)
566 {
567 char *bndec;
568 bndec = BN_bn2dec(bl);
569 if (!bndec)
570 goto err;
571 i = strlen(bndec);
572 if (buf)
573 {
574 if (buf_len > 0)
575 {
576 *buf++ = '.';
577 buf_len--;
578 }
579 BUF_strlcpy(buf,bndec,buf_len);
580 if (i > buf_len)
581 {
582 buf += buf_len;
583 buf_len = 0;
584 }
585 else
586 {
587 buf+=i;
588 buf_len-=i;
589 }
590 }
591 n++;
592 n += i;
593 OPENSSL_free(bndec);
594 }
595 else
596 {
597 BIO_snprintf(tbuf,sizeof tbuf,".%lu",l);
598 i=strlen(tbuf);
599 if (buf && (buf_len > 0))
600 {
601 BUF_strlcpy(buf,tbuf,buf_len);
602 if (i > buf_len)
603 {
604 buf += buf_len;
605 buf_len = 0;
606 }
607 else
608 {
609 buf+=i;
610 buf_len-=i;
611 }
612 }
613 n+=i;
614 l=0;
615 }
616 }
617
618 if (bl)
619 BN_free(bl);
620 return n;
621
622 err:
623 if (bl)
624 BN_free(bl);
625 return -1;
626}
627
628int OBJ_txt2nid(const char *s)
629{
630 ASN1_OBJECT *obj;
631 int nid;
632 obj = OBJ_txt2obj(s, 0);
633 nid = OBJ_obj2nid(obj);
634 ASN1_OBJECT_free(obj);
635 return nid;
636}
637
638int OBJ_ln2nid(const char *s)
639 {
640 ASN1_OBJECT o;
641 const ASN1_OBJECT *oo= &o;
642 ADDED_OBJ ad,*adp;
643 const unsigned int *op;
644
645 o.ln=s;
646 if (added != NULL)
647 {
648 ad.type=ADDED_LNAME;
649 ad.obj= &o;
650 adp=lh_ADDED_OBJ_retrieve(added,&ad);
651 if (adp != NULL) return (adp->obj->nid);
652 }
653 op=OBJ_bsearch_ln(&oo, ln_objs, NUM_LN);
654 if (op == NULL) return(NID_undef);
655 return(nid_objs[*op].nid);
656 }
657
658int OBJ_sn2nid(const char *s)
659 {
660 ASN1_OBJECT o;
661 const ASN1_OBJECT *oo= &o;
662 ADDED_OBJ ad,*adp;
663 const unsigned int *op;
664
665 o.sn=s;
666 if (added != NULL)
667 {
668 ad.type=ADDED_SNAME;
669 ad.obj= &o;
670 adp=lh_ADDED_OBJ_retrieve(added,&ad);
671 if (adp != NULL) return (adp->obj->nid);
672 }
673 op=OBJ_bsearch_sn(&oo, sn_objs, NUM_SN);
674 if (op == NULL) return(NID_undef);
675 return(nid_objs[*op].nid);
676 }
677
678const void *OBJ_bsearch_(const void *key, const void *base, int num, int size,
679 int (*cmp)(const void *, const void *))
680 {
681 return OBJ_bsearch_ex_(key, base, num, size, cmp, 0);
682 }
683
684const void *OBJ_bsearch_ex_(const void *key, const void *base_, int num,
685 int size,
686 int (*cmp)(const void *, const void *),
687 int flags)
688 {
689 const char *base=base_;
690 int l,h,i=0,c=0;
691 const char *p = NULL;
692
693 if (num == 0) return(NULL);
694 l=0;
695 h=num;
696 while (l < h)
697 {
698 i=(l+h)/2;
699 p= &(base[i*size]);
700 c=(*cmp)(key,p);
701 if (c < 0)
702 h=i;
703 else if (c > 0)
704 l=i+1;
705 else
706 break;
707 }
708#ifdef CHARSET_EBCDIC
709/* THIS IS A KLUDGE - Because the *_obj is sorted in ASCII order, and
710 * I don't have perl (yet), we revert to a *LINEAR* search
711 * when the object wasn't found in the binary search.
712 */
713 if (c != 0)
714 {
715 for (i=0; i<num; ++i)
716 {
717 p= &(base[i*size]);
718 c = (*cmp)(key,p);
719 if (c == 0 || (c < 0 && (flags & OBJ_BSEARCH_VALUE_ON_NOMATCH)))
720 return p;
721 }
722 }
723#endif
724 if (c != 0 && !(flags & OBJ_BSEARCH_VALUE_ON_NOMATCH))
725 p = NULL;
726 else if (c == 0 && (flags & OBJ_BSEARCH_FIRST_VALUE_ON_MATCH))
727 {
728 while(i > 0 && (*cmp)(key,&(base[(i-1)*size])) == 0)
729 i--;
730 p = &(base[i*size]);
731 }
732 return(p);
733 }
734
735int OBJ_create_objects(BIO *in)
736 {
737 MS_STATIC char buf[512];
738 int i,num=0;
739 char *o,*s,*l=NULL;
740
741 for (;;)
742 {
743 s=o=NULL;
744 i=BIO_gets(in,buf,512);
745 if (i <= 0) return(num);
746 buf[i-1]='\0';
747 if (!isalnum((unsigned char)buf[0])) return(num);
748 o=s=buf;
749 while (isdigit((unsigned char)*s) || (*s == '.'))
750 s++;
751 if (*s != '\0')
752 {
753 *(s++)='\0';
754 while (isspace((unsigned char)*s))
755 s++;
756 if (*s == '\0')
757 s=NULL;
758 else
759 {
760 l=s;
761 while ((*l != '\0') && !isspace((unsigned char)*l))
762 l++;
763 if (*l != '\0')
764 {
765 *(l++)='\0';
766 while (isspace((unsigned char)*l))
767 l++;
768 if (*l == '\0') l=NULL;
769 }
770 else
771 l=NULL;
772 }
773 }
774 else
775 s=NULL;
776 if ((o == NULL) || (*o == '\0')) return(num);
777 if (!OBJ_create(o,s,l)) return(num);
778 num++;
779 }
780 /* return(num); */
781 }
782
783int OBJ_create(const char *oid, const char *sn, const char *ln)
784 {
785 int ok=0;
786 ASN1_OBJECT *op=NULL;
787 unsigned char *buf;
788 int i;
789
790 i=a2d_ASN1_OBJECT(NULL,0,oid,-1);
791 if (i <= 0) return(0);
792
793 if ((buf=(unsigned char *)OPENSSL_malloc(i)) == NULL)
794 {
795 OBJerr(OBJ_F_OBJ_CREATE,ERR_R_MALLOC_FAILURE);
796 return(0);
797 }
798 i=a2d_ASN1_OBJECT(buf,i,oid,-1);
799 if (i == 0)
800 goto err;
801 op=(ASN1_OBJECT *)ASN1_OBJECT_create(OBJ_new_nid(1),buf,i,sn,ln);
802 if (op == NULL)
803 goto err;
804 ok=OBJ_add_object(op);
805err:
806 ASN1_OBJECT_free(op);
807 OPENSSL_free(buf);
808 return(ok);
809 }
810
diff --git a/src/lib/libcrypto/objects/obj_dat.h b/src/lib/libcrypto/objects/obj_dat.h
deleted file mode 100644
index d404ad07c9..0000000000
--- a/src/lib/libcrypto/objects/obj_dat.h
+++ /dev/null
@@ -1,5102 +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 920
66#define NUM_SN 913
67#define NUM_LN 913
68#define NUM_OBJ 857
69
70static const unsigned char lvalues[5980]={
710x00, /* [ 0] OBJ_undef */
720x2A,0x86,0x48,0x86,0xF7,0x0D, /* [ 1] OBJ_rsadsi */
730x2A,0x86,0x48,0x86,0xF7,0x0D,0x01, /* [ 7] OBJ_pkcs */
740x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x02, /* [ 14] OBJ_md2 */
750x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x05, /* [ 22] OBJ_md5 */
760x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x04, /* [ 30] OBJ_rc4 */
770x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x01,/* [ 38] OBJ_rsaEncryption */
780x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x02,/* [ 47] OBJ_md2WithRSAEncryption */
790x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x04,/* [ 56] OBJ_md5WithRSAEncryption */
800x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x01,/* [ 65] OBJ_pbeWithMD2AndDES_CBC */
810x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x03,/* [ 74] OBJ_pbeWithMD5AndDES_CBC */
820x55, /* [ 83] OBJ_X500 */
830x55,0x04, /* [ 84] OBJ_X509 */
840x55,0x04,0x03, /* [ 86] OBJ_commonName */
850x55,0x04,0x06, /* [ 89] OBJ_countryName */
860x55,0x04,0x07, /* [ 92] OBJ_localityName */
870x55,0x04,0x08, /* [ 95] OBJ_stateOrProvinceName */
880x55,0x04,0x0A, /* [ 98] OBJ_organizationName */
890x55,0x04,0x0B, /* [101] OBJ_organizationalUnitName */
900x55,0x08,0x01,0x01, /* [104] OBJ_rsa */
910x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07, /* [108] OBJ_pkcs7 */
920x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x01,/* [116] OBJ_pkcs7_data */
930x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x02,/* [125] OBJ_pkcs7_signed */
940x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x03,/* [134] OBJ_pkcs7_enveloped */
950x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x04,/* [143] OBJ_pkcs7_signedAndEnveloped */
960x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x05,/* [152] OBJ_pkcs7_digest */
970x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x06,/* [161] OBJ_pkcs7_encrypted */
980x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x03, /* [170] OBJ_pkcs3 */
990x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x03,0x01,/* [178] OBJ_dhKeyAgreement */
1000x2B,0x0E,0x03,0x02,0x06, /* [187] OBJ_des_ecb */
1010x2B,0x0E,0x03,0x02,0x09, /* [192] OBJ_des_cfb64 */
1020x2B,0x0E,0x03,0x02,0x07, /* [197] OBJ_des_cbc */
1030x2B,0x0E,0x03,0x02,0x11, /* [202] OBJ_des_ede_ecb */
1040x2B,0x06,0x01,0x04,0x01,0x81,0x3C,0x07,0x01,0x01,0x02,/* [207] OBJ_idea_cbc */
1050x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x02, /* [218] OBJ_rc2_cbc */
1060x2B,0x0E,0x03,0x02,0x12, /* [226] OBJ_sha */
1070x2B,0x0E,0x03,0x02,0x0F, /* [231] OBJ_shaWithRSAEncryption */
1080x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x07, /* [236] OBJ_des_ede3_cbc */
1090x2B,0x0E,0x03,0x02,0x08, /* [244] OBJ_des_ofb64 */
1100x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09, /* [249] OBJ_pkcs9 */
1110x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x01,/* [257] OBJ_pkcs9_emailAddress */
1120x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x02,/* [266] OBJ_pkcs9_unstructuredName */
1130x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x03,/* [275] OBJ_pkcs9_contentType */
1140x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x04,/* [284] OBJ_pkcs9_messageDigest */
1150x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x05,/* [293] OBJ_pkcs9_signingTime */
1160x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x06,/* [302] OBJ_pkcs9_countersignature */
1170x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x07,/* [311] OBJ_pkcs9_challengePassword */
1180x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x08,/* [320] OBJ_pkcs9_unstructuredAddress */
1190x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x09,/* [329] OBJ_pkcs9_extCertAttributes */
1200x60,0x86,0x48,0x01,0x86,0xF8,0x42, /* [338] OBJ_netscape */
1210x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01, /* [345] OBJ_netscape_cert_extension */
1220x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x02, /* [353] OBJ_netscape_data_type */
1230x2B,0x0E,0x03,0x02,0x1A, /* [361] OBJ_sha1 */
1240x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x05,/* [366] OBJ_sha1WithRSAEncryption */
1250x2B,0x0E,0x03,0x02,0x0D, /* [375] OBJ_dsaWithSHA */
1260x2B,0x0E,0x03,0x02,0x0C, /* [380] OBJ_dsa_2 */
1270x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0B,/* [385] OBJ_pbeWithSHA1AndRC2_CBC */
1280x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0C,/* [394] OBJ_id_pbkdf2 */
1290x2B,0x0E,0x03,0x02,0x1B, /* [403] OBJ_dsaWithSHA1_2 */
1300x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x01,/* [408] OBJ_netscape_cert_type */
1310x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x02,/* [417] OBJ_netscape_base_url */
1320x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x03,/* [426] OBJ_netscape_revocation_url */
1330x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x04,/* [435] OBJ_netscape_ca_revocation_url */
1340x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x07,/* [444] OBJ_netscape_renewal_url */
1350x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x08,/* [453] OBJ_netscape_ca_policy_url */
1360x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x0C,/* [462] OBJ_netscape_ssl_server_name */
1370x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x0D,/* [471] OBJ_netscape_comment */
1380x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x02,0x05,/* [480] OBJ_netscape_cert_sequence */
1390x55,0x1D, /* [489] OBJ_id_ce */
1400x55,0x1D,0x0E, /* [491] OBJ_subject_key_identifier */
1410x55,0x1D,0x0F, /* [494] OBJ_key_usage */
1420x55,0x1D,0x10, /* [497] OBJ_private_key_usage_period */
1430x55,0x1D,0x11, /* [500] OBJ_subject_alt_name */
1440x55,0x1D,0x12, /* [503] OBJ_issuer_alt_name */
1450x55,0x1D,0x13, /* [506] OBJ_basic_constraints */
1460x55,0x1D,0x14, /* [509] OBJ_crl_number */
1470x55,0x1D,0x20, /* [512] OBJ_certificate_policies */
1480x55,0x1D,0x23, /* [515] OBJ_authority_key_identifier */
1490x2B,0x06,0x01,0x04,0x01,0x97,0x55,0x01,0x02,/* [518] OBJ_bf_cbc */
1500x55,0x08,0x03,0x65, /* [527] OBJ_mdc2 */
1510x55,0x08,0x03,0x64, /* [531] OBJ_mdc2WithRSA */
1520x55,0x04,0x2A, /* [535] OBJ_givenName */
1530x55,0x04,0x04, /* [538] OBJ_surname */
1540x55,0x04,0x2B, /* [541] OBJ_initials */
1550x55,0x1D,0x1F, /* [544] OBJ_crl_distribution_points */
1560x2B,0x0E,0x03,0x02,0x03, /* [547] OBJ_md5WithRSA */
1570x55,0x04,0x05, /* [552] OBJ_serialNumber */
1580x55,0x04,0x0C, /* [555] OBJ_title */
1590x55,0x04,0x0D, /* [558] OBJ_description */
1600x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0A,/* [561] OBJ_cast5_cbc */
1610x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0C,/* [570] OBJ_pbeWithMD5AndCast5_CBC */
1620x2A,0x86,0x48,0xCE,0x38,0x04,0x03, /* [579] OBJ_dsaWithSHA1 */
1630x2B,0x0E,0x03,0x02,0x1D, /* [586] OBJ_sha1WithRSA */
1640x2A,0x86,0x48,0xCE,0x38,0x04,0x01, /* [591] OBJ_dsa */
1650x2B,0x24,0x03,0x02,0x01, /* [598] OBJ_ripemd160 */
1660x2B,0x24,0x03,0x03,0x01,0x02, /* [603] OBJ_ripemd160WithRSA */
1670x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x08, /* [609] OBJ_rc5_cbc */
1680x29,0x01,0x01,0x85,0x1A,0x01, /* [617] OBJ_rle_compression */
1690x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x08,/* [623] OBJ_zlib_compression */
1700x55,0x1D,0x25, /* [634] OBJ_ext_key_usage */
1710x2B,0x06,0x01,0x05,0x05,0x07, /* [637] OBJ_id_pkix */
1720x2B,0x06,0x01,0x05,0x05,0x07,0x03, /* [643] OBJ_id_kp */
1730x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x01, /* [650] OBJ_server_auth */
1740x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x02, /* [658] OBJ_client_auth */
1750x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x03, /* [666] OBJ_code_sign */
1760x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x04, /* [674] OBJ_email_protect */
1770x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x08, /* [682] OBJ_time_stamp */
1780x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x15,/* [690] OBJ_ms_code_ind */
1790x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x16,/* [700] OBJ_ms_code_com */
1800x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x01,/* [710] OBJ_ms_ctl_sign */
1810x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x03,/* [720] OBJ_ms_sgc */
1820x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x04,/* [730] OBJ_ms_efs */
1830x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x04,0x01,/* [740] OBJ_ns_sgc */
1840x55,0x1D,0x1B, /* [749] OBJ_delta_crl */
1850x55,0x1D,0x15, /* [752] OBJ_crl_reason */
1860x55,0x1D,0x18, /* [755] OBJ_invalidity_date */
1870x2B,0x65,0x01,0x04,0x01, /* [758] OBJ_sxnet */
1880x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x01,/* [763] OBJ_pbe_WithSHA1And128BitRC4 */
1890x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x02,/* [773] OBJ_pbe_WithSHA1And40BitRC4 */
1900x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x03,/* [783] OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC */
1910x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x04,/* [793] OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC */
1920x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x05,/* [803] OBJ_pbe_WithSHA1And128BitRC2_CBC */
1930x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x06,/* [813] OBJ_pbe_WithSHA1And40BitRC2_CBC */
1940x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x01,/* [823] OBJ_keyBag */
1950x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x02,/* [834] OBJ_pkcs8ShroudedKeyBag */
1960x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x03,/* [845] OBJ_certBag */
1970x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x04,/* [856] OBJ_crlBag */
1980x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x05,/* [867] OBJ_secretBag */
1990x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x06,/* [878] OBJ_safeContentsBag */
2000x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x14,/* [889] OBJ_friendlyName */
2010x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x15,/* [898] OBJ_localKeyID */
2020x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x16,0x01,/* [907] OBJ_x509Certificate */
2030x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x16,0x02,/* [917] OBJ_sdsiCertificate */
2040x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x17,0x01,/* [927] OBJ_x509Crl */
2050x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0D,/* [937] OBJ_pbes2 */
2060x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0E,/* [946] OBJ_pbmac1 */
2070x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x07, /* [955] OBJ_hmacWithSHA1 */
2080x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x01, /* [963] OBJ_id_qt_cps */
2090x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x02, /* [971] OBJ_id_qt_unotice */
2100x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x0F,/* [979] OBJ_SMIMECapabilities */
2110x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x04,/* [988] OBJ_pbeWithMD2AndRC2_CBC */
2120x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x06,/* [997] OBJ_pbeWithMD5AndRC2_CBC */
2130x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0A,/* [1006] OBJ_pbeWithSHA1AndDES_CBC */
2140x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x0E,/* [1015] OBJ_ms_ext_req */
2150x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x0E,/* [1025] OBJ_ext_req */
2160x55,0x04,0x29, /* [1034] OBJ_name */
2170x55,0x04,0x2E, /* [1037] OBJ_dnQualifier */
2180x2B,0x06,0x01,0x05,0x05,0x07,0x01, /* [1040] OBJ_id_pe */
2190x2B,0x06,0x01,0x05,0x05,0x07,0x30, /* [1047] OBJ_id_ad */
2200x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x01, /* [1054] OBJ_info_access */
2210x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01, /* [1062] OBJ_ad_OCSP */
2220x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x02, /* [1070] OBJ_ad_ca_issuers */
2230x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x09, /* [1078] OBJ_OCSP_sign */
2240x28, /* [1086] OBJ_iso */
2250x2A, /* [1087] OBJ_member_body */
2260x2A,0x86,0x48, /* [1088] OBJ_ISO_US */
2270x2A,0x86,0x48,0xCE,0x38, /* [1091] OBJ_X9_57 */
2280x2A,0x86,0x48,0xCE,0x38,0x04, /* [1096] OBJ_X9cm */
2290x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01, /* [1102] OBJ_pkcs1 */
2300x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05, /* [1110] OBJ_pkcs5 */
2310x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,/* [1118] OBJ_SMIME */
2320x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,/* [1127] OBJ_id_smime_mod */
2330x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,/* [1137] OBJ_id_smime_ct */
2340x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,/* [1147] OBJ_id_smime_aa */
2350x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,/* [1157] OBJ_id_smime_alg */
2360x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x04,/* [1167] OBJ_id_smime_cd */
2370x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,/* [1177] OBJ_id_smime_spq */
2380x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,/* [1187] OBJ_id_smime_cti */
2390x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x01,/* [1197] OBJ_id_smime_mod_cms */
2400x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x02,/* [1208] OBJ_id_smime_mod_ess */
2410x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x03,/* [1219] OBJ_id_smime_mod_oid */
2420x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x04,/* [1230] OBJ_id_smime_mod_msg_v3 */
2430x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x05,/* [1241] OBJ_id_smime_mod_ets_eSignature_88 */
2440x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x06,/* [1252] OBJ_id_smime_mod_ets_eSignature_97 */
2450x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x07,/* [1263] OBJ_id_smime_mod_ets_eSigPolicy_88 */
2460x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x08,/* [1274] OBJ_id_smime_mod_ets_eSigPolicy_97 */
2470x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x01,/* [1285] OBJ_id_smime_ct_receipt */
2480x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x02,/* [1296] OBJ_id_smime_ct_authData */
2490x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x03,/* [1307] OBJ_id_smime_ct_publishCert */
2500x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x04,/* [1318] OBJ_id_smime_ct_TSTInfo */
2510x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x05,/* [1329] OBJ_id_smime_ct_TDTInfo */
2520x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x06,/* [1340] OBJ_id_smime_ct_contentInfo */
2530x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x07,/* [1351] OBJ_id_smime_ct_DVCSRequestData */
2540x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x08,/* [1362] OBJ_id_smime_ct_DVCSResponseData */
2550x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x01,/* [1373] OBJ_id_smime_aa_receiptRequest */
2560x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x02,/* [1384] OBJ_id_smime_aa_securityLabel */
2570x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x03,/* [1395] OBJ_id_smime_aa_mlExpandHistory */
2580x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x04,/* [1406] OBJ_id_smime_aa_contentHint */
2590x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x05,/* [1417] OBJ_id_smime_aa_msgSigDigest */
2600x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x06,/* [1428] OBJ_id_smime_aa_encapContentType */
2610x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x07,/* [1439] OBJ_id_smime_aa_contentIdentifier */
2620x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x08,/* [1450] OBJ_id_smime_aa_macValue */
2630x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x09,/* [1461] OBJ_id_smime_aa_equivalentLabels */
2640x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0A,/* [1472] OBJ_id_smime_aa_contentReference */
2650x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0B,/* [1483] OBJ_id_smime_aa_encrypKeyPref */
2660x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0C,/* [1494] OBJ_id_smime_aa_signingCertificate */
2670x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0D,/* [1505] OBJ_id_smime_aa_smimeEncryptCerts */
2680x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0E,/* [1516] OBJ_id_smime_aa_timeStampToken */
2690x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0F,/* [1527] OBJ_id_smime_aa_ets_sigPolicyId */
2700x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x10,/* [1538] OBJ_id_smime_aa_ets_commitmentType */
2710x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x11,/* [1549] OBJ_id_smime_aa_ets_signerLocation */
2720x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x12,/* [1560] OBJ_id_smime_aa_ets_signerAttr */
2730x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x13,/* [1571] OBJ_id_smime_aa_ets_otherSigCert */
2740x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x14,/* [1582] OBJ_id_smime_aa_ets_contentTimestamp */
2750x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x15,/* [1593] OBJ_id_smime_aa_ets_CertificateRefs */
2760x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x16,/* [1604] OBJ_id_smime_aa_ets_RevocationRefs */
2770x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x17,/* [1615] OBJ_id_smime_aa_ets_certValues */
2780x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x18,/* [1626] OBJ_id_smime_aa_ets_revocationValues */
2790x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x19,/* [1637] OBJ_id_smime_aa_ets_escTimeStamp */
2800x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1A,/* [1648] OBJ_id_smime_aa_ets_certCRLTimestamp */
2810x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1B,/* [1659] OBJ_id_smime_aa_ets_archiveTimeStamp */
2820x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1C,/* [1670] OBJ_id_smime_aa_signatureType */
2830x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1D,/* [1681] OBJ_id_smime_aa_dvcs_dvc */
2840x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x01,/* [1692] OBJ_id_smime_alg_ESDHwith3DES */
2850x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x02,/* [1703] OBJ_id_smime_alg_ESDHwithRC2 */
2860x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x03,/* [1714] OBJ_id_smime_alg_3DESwrap */
2870x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x04,/* [1725] OBJ_id_smime_alg_RC2wrap */
2880x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x05,/* [1736] OBJ_id_smime_alg_ESDH */
2890x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x06,/* [1747] OBJ_id_smime_alg_CMS3DESwrap */
2900x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x07,/* [1758] OBJ_id_smime_alg_CMSRC2wrap */
2910x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x04,0x01,/* [1769] OBJ_id_smime_cd_ldap */
2920x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,0x01,/* [1780] OBJ_id_smime_spq_ets_sqt_uri */
2930x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,0x02,/* [1791] OBJ_id_smime_spq_ets_sqt_unotice */
2940x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x01,/* [1802] OBJ_id_smime_cti_ets_proofOfOrigin */
2950x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x02,/* [1813] OBJ_id_smime_cti_ets_proofOfReceipt */
2960x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x03,/* [1824] OBJ_id_smime_cti_ets_proofOfDelivery */
2970x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x04,/* [1835] OBJ_id_smime_cti_ets_proofOfSender */
2980x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x05,/* [1846] OBJ_id_smime_cti_ets_proofOfApproval */
2990x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x06,/* [1857] OBJ_id_smime_cti_ets_proofOfCreation */
3000x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x04, /* [1868] OBJ_md4 */
3010x2B,0x06,0x01,0x05,0x05,0x07,0x00, /* [1876] OBJ_id_pkix_mod */
3020x2B,0x06,0x01,0x05,0x05,0x07,0x02, /* [1883] OBJ_id_qt */
3030x2B,0x06,0x01,0x05,0x05,0x07,0x04, /* [1890] OBJ_id_it */
3040x2B,0x06,0x01,0x05,0x05,0x07,0x05, /* [1897] OBJ_id_pkip */
3050x2B,0x06,0x01,0x05,0x05,0x07,0x06, /* [1904] OBJ_id_alg */
3060x2B,0x06,0x01,0x05,0x05,0x07,0x07, /* [1911] OBJ_id_cmc */
3070x2B,0x06,0x01,0x05,0x05,0x07,0x08, /* [1918] OBJ_id_on */
3080x2B,0x06,0x01,0x05,0x05,0x07,0x09, /* [1925] OBJ_id_pda */
3090x2B,0x06,0x01,0x05,0x05,0x07,0x0A, /* [1932] OBJ_id_aca */
3100x2B,0x06,0x01,0x05,0x05,0x07,0x0B, /* [1939] OBJ_id_qcs */
3110x2B,0x06,0x01,0x05,0x05,0x07,0x0C, /* [1946] OBJ_id_cct */
3120x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x01, /* [1953] OBJ_id_pkix1_explicit_88 */
3130x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x02, /* [1961] OBJ_id_pkix1_implicit_88 */
3140x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x03, /* [1969] OBJ_id_pkix1_explicit_93 */
3150x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x04, /* [1977] OBJ_id_pkix1_implicit_93 */
3160x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x05, /* [1985] OBJ_id_mod_crmf */
3170x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x06, /* [1993] OBJ_id_mod_cmc */
3180x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x07, /* [2001] OBJ_id_mod_kea_profile_88 */
3190x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x08, /* [2009] OBJ_id_mod_kea_profile_93 */
3200x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x09, /* [2017] OBJ_id_mod_cmp */
3210x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0A, /* [2025] OBJ_id_mod_qualified_cert_88 */
3220x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0B, /* [2033] OBJ_id_mod_qualified_cert_93 */
3230x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0C, /* [2041] OBJ_id_mod_attribute_cert */
3240x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0D, /* [2049] OBJ_id_mod_timestamp_protocol */
3250x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0E, /* [2057] OBJ_id_mod_ocsp */
3260x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0F, /* [2065] OBJ_id_mod_dvcs */
3270x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x10, /* [2073] OBJ_id_mod_cmp2000 */
3280x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x02, /* [2081] OBJ_biometricInfo */
3290x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x03, /* [2089] OBJ_qcStatements */
3300x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x04, /* [2097] OBJ_ac_auditEntity */
3310x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x05, /* [2105] OBJ_ac_targeting */
3320x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x06, /* [2113] OBJ_aaControls */
3330x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x07, /* [2121] OBJ_sbgp_ipAddrBlock */
3340x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x08, /* [2129] OBJ_sbgp_autonomousSysNum */
3350x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x09, /* [2137] OBJ_sbgp_routerIdentifier */
3360x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x03, /* [2145] OBJ_textNotice */
3370x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x05, /* [2153] OBJ_ipsecEndSystem */
3380x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x06, /* [2161] OBJ_ipsecTunnel */
3390x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x07, /* [2169] OBJ_ipsecUser */
3400x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x0A, /* [2177] OBJ_dvcs */
3410x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x01, /* [2185] OBJ_id_it_caProtEncCert */
3420x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x02, /* [2193] OBJ_id_it_signKeyPairTypes */
3430x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x03, /* [2201] OBJ_id_it_encKeyPairTypes */
3440x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x04, /* [2209] OBJ_id_it_preferredSymmAlg */
3450x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x05, /* [2217] OBJ_id_it_caKeyUpdateInfo */
3460x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x06, /* [2225] OBJ_id_it_currentCRL */
3470x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x07, /* [2233] OBJ_id_it_unsupportedOIDs */
3480x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x08, /* [2241] OBJ_id_it_subscriptionRequest */
3490x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x09, /* [2249] OBJ_id_it_subscriptionResponse */
3500x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0A, /* [2257] OBJ_id_it_keyPairParamReq */
3510x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0B, /* [2265] OBJ_id_it_keyPairParamRep */
3520x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0C, /* [2273] OBJ_id_it_revPassphrase */
3530x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0D, /* [2281] OBJ_id_it_implicitConfirm */
3540x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0E, /* [2289] OBJ_id_it_confirmWaitTime */
3550x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0F, /* [2297] OBJ_id_it_origPKIMessage */
3560x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01, /* [2305] OBJ_id_regCtrl */
3570x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02, /* [2313] OBJ_id_regInfo */
3580x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x01,/* [2321] OBJ_id_regCtrl_regToken */
3590x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x02,/* [2330] OBJ_id_regCtrl_authenticator */
3600x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x03,/* [2339] OBJ_id_regCtrl_pkiPublicationInfo */
3610x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x04,/* [2348] OBJ_id_regCtrl_pkiArchiveOptions */
3620x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x05,/* [2357] OBJ_id_regCtrl_oldCertID */
3630x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x06,/* [2366] OBJ_id_regCtrl_protocolEncrKey */
3640x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02,0x01,/* [2375] OBJ_id_regInfo_utf8Pairs */
3650x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02,0x02,/* [2384] OBJ_id_regInfo_certReq */
3660x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x01, /* [2393] OBJ_id_alg_des40 */
3670x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x02, /* [2401] OBJ_id_alg_noSignature */
3680x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x03, /* [2409] OBJ_id_alg_dh_sig_hmac_sha1 */
3690x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x04, /* [2417] OBJ_id_alg_dh_pop */
3700x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x01, /* [2425] OBJ_id_cmc_statusInfo */
3710x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x02, /* [2433] OBJ_id_cmc_identification */
3720x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x03, /* [2441] OBJ_id_cmc_identityProof */
3730x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x04, /* [2449] OBJ_id_cmc_dataReturn */
3740x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x05, /* [2457] OBJ_id_cmc_transactionId */
3750x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x06, /* [2465] OBJ_id_cmc_senderNonce */
3760x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x07, /* [2473] OBJ_id_cmc_recipientNonce */
3770x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x08, /* [2481] OBJ_id_cmc_addExtensions */
3780x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x09, /* [2489] OBJ_id_cmc_encryptedPOP */
3790x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0A, /* [2497] OBJ_id_cmc_decryptedPOP */
3800x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0B, /* [2505] OBJ_id_cmc_lraPOPWitness */
3810x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0F, /* [2513] OBJ_id_cmc_getCert */
3820x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x10, /* [2521] OBJ_id_cmc_getCRL */
3830x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x11, /* [2529] OBJ_id_cmc_revokeRequest */
3840x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x12, /* [2537] OBJ_id_cmc_regInfo */
3850x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x13, /* [2545] OBJ_id_cmc_responseInfo */
3860x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x15, /* [2553] OBJ_id_cmc_queryPending */
3870x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x16, /* [2561] OBJ_id_cmc_popLinkRandom */
3880x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x17, /* [2569] OBJ_id_cmc_popLinkWitness */
3890x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x18, /* [2577] OBJ_id_cmc_confirmCertAcceptance */
3900x2B,0x06,0x01,0x05,0x05,0x07,0x08,0x01, /* [2585] OBJ_id_on_personalData */
3910x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x01, /* [2593] OBJ_id_pda_dateOfBirth */
3920x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x02, /* [2601] OBJ_id_pda_placeOfBirth */
3930x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x03, /* [2609] OBJ_id_pda_gender */
3940x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x04, /* [2617] OBJ_id_pda_countryOfCitizenship */
3950x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x05, /* [2625] OBJ_id_pda_countryOfResidence */
3960x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x01, /* [2633] OBJ_id_aca_authenticationInfo */
3970x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x02, /* [2641] OBJ_id_aca_accessIdentity */
3980x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x03, /* [2649] OBJ_id_aca_chargingIdentity */
3990x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x04, /* [2657] OBJ_id_aca_group */
4000x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x05, /* [2665] OBJ_id_aca_role */
4010x2B,0x06,0x01,0x05,0x05,0x07,0x0B,0x01, /* [2673] OBJ_id_qcs_pkixQCSyntax_v1 */
4020x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x01, /* [2681] OBJ_id_cct_crs */
4030x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x02, /* [2689] OBJ_id_cct_PKIData */
4040x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x03, /* [2697] OBJ_id_cct_PKIResponse */
4050x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x03, /* [2705] OBJ_ad_timeStamping */
4060x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x04, /* [2713] OBJ_ad_dvcs */
4070x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x01,/* [2721] OBJ_id_pkix_OCSP_basic */
4080x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x02,/* [2730] OBJ_id_pkix_OCSP_Nonce */
4090x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x03,/* [2739] OBJ_id_pkix_OCSP_CrlID */
4100x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x04,/* [2748] OBJ_id_pkix_OCSP_acceptableResponses */
4110x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x05,/* [2757] OBJ_id_pkix_OCSP_noCheck */
4120x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x06,/* [2766] OBJ_id_pkix_OCSP_archiveCutoff */
4130x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x07,/* [2775] OBJ_id_pkix_OCSP_serviceLocator */
4140x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x08,/* [2784] OBJ_id_pkix_OCSP_extendedStatus */
4150x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x09,/* [2793] OBJ_id_pkix_OCSP_valid */
4160x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x0A,/* [2802] OBJ_id_pkix_OCSP_path */
4170x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x0B,/* [2811] OBJ_id_pkix_OCSP_trustRoot */
4180x2B,0x0E,0x03,0x02, /* [2820] OBJ_algorithm */
4190x2B,0x0E,0x03,0x02,0x0B, /* [2824] OBJ_rsaSignature */
4200x55,0x08, /* [2829] OBJ_X500algorithms */
4210x2B, /* [2831] OBJ_org */
4220x2B,0x06, /* [2832] OBJ_dod */
4230x2B,0x06,0x01, /* [2834] OBJ_iana */
4240x2B,0x06,0x01,0x01, /* [2837] OBJ_Directory */
4250x2B,0x06,0x01,0x02, /* [2841] OBJ_Management */
4260x2B,0x06,0x01,0x03, /* [2845] OBJ_Experimental */
4270x2B,0x06,0x01,0x04, /* [2849] OBJ_Private */
4280x2B,0x06,0x01,0x05, /* [2853] OBJ_Security */
4290x2B,0x06,0x01,0x06, /* [2857] OBJ_SNMPv2 */
4300x2B,0x06,0x01,0x07, /* [2861] OBJ_Mail */
4310x2B,0x06,0x01,0x04,0x01, /* [2865] OBJ_Enterprises */
4320x2B,0x06,0x01,0x04,0x01,0x8B,0x3A,0x82,0x58,/* [2870] OBJ_dcObject */
4330x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x19,/* [2879] OBJ_domainComponent */
4340x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0D,/* [2889] OBJ_Domain */
4350x00, /* [2899] OBJ_joint_iso_ccitt */
4360x55,0x01,0x05, /* [2900] OBJ_selected_attribute_types */
4370x55,0x01,0x05,0x37, /* [2903] OBJ_clearance */
4380x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x03,/* [2907] OBJ_md4WithRSAEncryption */
4390x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0A, /* [2916] OBJ_ac_proxying */
4400x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0B, /* [2924] OBJ_sinfo_access */
4410x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x06, /* [2932] OBJ_id_aca_encAttrs */
4420x55,0x04,0x48, /* [2940] OBJ_role */
4430x55,0x1D,0x24, /* [2943] OBJ_policy_constraints */
4440x55,0x1D,0x37, /* [2946] OBJ_target_information */
4450x55,0x1D,0x38, /* [2949] OBJ_no_rev_avail */
4460x00, /* [2952] OBJ_ccitt */
4470x2A,0x86,0x48,0xCE,0x3D, /* [2953] OBJ_ansi_X9_62 */
4480x2A,0x86,0x48,0xCE,0x3D,0x01,0x01, /* [2958] OBJ_X9_62_prime_field */
4490x2A,0x86,0x48,0xCE,0x3D,0x01,0x02, /* [2965] OBJ_X9_62_characteristic_two_field */
4500x2A,0x86,0x48,0xCE,0x3D,0x02,0x01, /* [2972] OBJ_X9_62_id_ecPublicKey */
4510x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x01, /* [2979] OBJ_X9_62_prime192v1 */
4520x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x02, /* [2987] OBJ_X9_62_prime192v2 */
4530x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x03, /* [2995] OBJ_X9_62_prime192v3 */
4540x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x04, /* [3003] OBJ_X9_62_prime239v1 */
4550x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x05, /* [3011] OBJ_X9_62_prime239v2 */
4560x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x06, /* [3019] OBJ_X9_62_prime239v3 */
4570x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x07, /* [3027] OBJ_X9_62_prime256v1 */
4580x2A,0x86,0x48,0xCE,0x3D,0x04,0x01, /* [3035] OBJ_ecdsa_with_SHA1 */
4590x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x11,0x01,/* [3042] OBJ_ms_csp_name */
4600x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x01,/* [3051] OBJ_aes_128_ecb */
4610x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x02,/* [3060] OBJ_aes_128_cbc */
4620x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x03,/* [3069] OBJ_aes_128_ofb128 */
4630x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x04,/* [3078] OBJ_aes_128_cfb128 */
4640x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x15,/* [3087] OBJ_aes_192_ecb */
4650x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x16,/* [3096] OBJ_aes_192_cbc */
4660x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x17,/* [3105] OBJ_aes_192_ofb128 */
4670x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x18,/* [3114] OBJ_aes_192_cfb128 */
4680x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x29,/* [3123] OBJ_aes_256_ecb */
4690x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2A,/* [3132] OBJ_aes_256_cbc */
4700x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2B,/* [3141] OBJ_aes_256_ofb128 */
4710x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2C,/* [3150] OBJ_aes_256_cfb128 */
4720x55,0x1D,0x17, /* [3159] OBJ_hold_instruction_code */
4730x2A,0x86,0x48,0xCE,0x38,0x02,0x01, /* [3162] OBJ_hold_instruction_none */
4740x2A,0x86,0x48,0xCE,0x38,0x02,0x02, /* [3169] OBJ_hold_instruction_call_issuer */
4750x2A,0x86,0x48,0xCE,0x38,0x02,0x03, /* [3176] OBJ_hold_instruction_reject */
4760x09, /* [3183] OBJ_data */
4770x09,0x92,0x26, /* [3184] OBJ_pss */
4780x09,0x92,0x26,0x89,0x93,0xF2,0x2C, /* [3187] OBJ_ucl */
4790x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64, /* [3194] OBJ_pilot */
4800x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,/* [3202] OBJ_pilotAttributeType */
4810x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,/* [3211] OBJ_pilotAttributeSyntax */
4820x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,/* [3220] OBJ_pilotObjectClass */
4830x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x0A,/* [3229] OBJ_pilotGroups */
4840x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,0x04,/* [3238] OBJ_iA5StringSyntax */
4850x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,0x05,/* [3248] OBJ_caseIgnoreIA5StringSyntax */
4860x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x03,/* [3258] OBJ_pilotObject */
4870x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x04,/* [3268] OBJ_pilotPerson */
4880x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x05,/* [3278] OBJ_account */
4890x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x06,/* [3288] OBJ_document */
4900x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x07,/* [3298] OBJ_room */
4910x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x09,/* [3308] OBJ_documentSeries */
4920x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0E,/* [3318] OBJ_rFC822localPart */
4930x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0F,/* [3328] OBJ_dNSDomain */
4940x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x11,/* [3338] OBJ_domainRelatedObject */
4950x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x12,/* [3348] OBJ_friendlyCountry */
4960x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x13,/* [3358] OBJ_simpleSecurityObject */
4970x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x14,/* [3368] OBJ_pilotOrganization */
4980x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x15,/* [3378] OBJ_pilotDSA */
4990x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x16,/* [3388] OBJ_qualityLabelledData */
5000x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x01,/* [3398] OBJ_userId */
5010x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x02,/* [3408] OBJ_textEncodedORAddress */
5020x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x03,/* [3418] OBJ_rfc822Mailbox */
5030x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x04,/* [3428] OBJ_info */
5040x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x05,/* [3438] OBJ_favouriteDrink */
5050x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x06,/* [3448] OBJ_roomNumber */
5060x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x07,/* [3458] OBJ_photo */
5070x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x08,/* [3468] OBJ_userClass */
5080x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x09,/* [3478] OBJ_host */
5090x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0A,/* [3488] OBJ_manager */
5100x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0B,/* [3498] OBJ_documentIdentifier */
5110x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0C,/* [3508] OBJ_documentTitle */
5120x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0D,/* [3518] OBJ_documentVersion */
5130x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0E,/* [3528] OBJ_documentAuthor */
5140x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0F,/* [3538] OBJ_documentLocation */
5150x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x14,/* [3548] OBJ_homeTelephoneNumber */
5160x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x15,/* [3558] OBJ_secretary */
5170x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x16,/* [3568] OBJ_otherMailbox */
5180x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x17,/* [3578] OBJ_lastModifiedTime */
5190x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x18,/* [3588] OBJ_lastModifiedBy */
5200x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1A,/* [3598] OBJ_aRecord */
5210x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1B,/* [3608] OBJ_pilotAttributeType27 */
5220x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1C,/* [3618] OBJ_mXRecord */
5230x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1D,/* [3628] OBJ_nSRecord */
5240x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1E,/* [3638] OBJ_sOARecord */
5250x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1F,/* [3648] OBJ_cNAMERecord */
5260x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x25,/* [3658] OBJ_associatedDomain */
5270x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x26,/* [3668] OBJ_associatedName */
5280x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x27,/* [3678] OBJ_homePostalAddress */
5290x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x28,/* [3688] OBJ_personalTitle */
5300x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x29,/* [3698] OBJ_mobileTelephoneNumber */
5310x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2A,/* [3708] OBJ_pagerTelephoneNumber */
5320x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2B,/* [3718] OBJ_friendlyCountryName */
5330x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2D,/* [3728] OBJ_organizationalStatus */
5340x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2E,/* [3738] OBJ_janetMailbox */
5350x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2F,/* [3748] OBJ_mailPreferenceOption */
5360x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x30,/* [3758] OBJ_buildingName */
5370x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x31,/* [3768] OBJ_dSAQuality */
5380x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x32,/* [3778] OBJ_singleLevelQuality */
5390x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x33,/* [3788] OBJ_subtreeMinimumQuality */
5400x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x34,/* [3798] OBJ_subtreeMaximumQuality */
5410x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x35,/* [3808] OBJ_personalSignature */
5420x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x36,/* [3818] OBJ_dITRedirect */
5430x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x37,/* [3828] OBJ_audio */
5440x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x38,/* [3838] OBJ_documentPublisher */
5450x55,0x04,0x2D, /* [3848] OBJ_x500UniqueIdentifier */
5460x2B,0x06,0x01,0x07,0x01, /* [3851] OBJ_mime_mhs */
5470x2B,0x06,0x01,0x07,0x01,0x01, /* [3856] OBJ_mime_mhs_headings */
5480x2B,0x06,0x01,0x07,0x01,0x02, /* [3862] OBJ_mime_mhs_bodies */
5490x2B,0x06,0x01,0x07,0x01,0x01,0x01, /* [3868] OBJ_id_hex_partial_message */
5500x2B,0x06,0x01,0x07,0x01,0x01,0x02, /* [3875] OBJ_id_hex_multipart_message */
5510x55,0x04,0x2C, /* [3882] OBJ_generationQualifier */
5520x55,0x04,0x41, /* [3885] OBJ_pseudonym */
5530x67,0x2A, /* [3888] OBJ_id_set */
5540x67,0x2A,0x00, /* [3890] OBJ_set_ctype */
5550x67,0x2A,0x01, /* [3893] OBJ_set_msgExt */
5560x67,0x2A,0x03, /* [3896] OBJ_set_attr */
5570x67,0x2A,0x05, /* [3899] OBJ_set_policy */
5580x67,0x2A,0x07, /* [3902] OBJ_set_certExt */
5590x67,0x2A,0x08, /* [3905] OBJ_set_brand */
5600x67,0x2A,0x00,0x00, /* [3908] OBJ_setct_PANData */
5610x67,0x2A,0x00,0x01, /* [3912] OBJ_setct_PANToken */
5620x67,0x2A,0x00,0x02, /* [3916] OBJ_setct_PANOnly */
5630x67,0x2A,0x00,0x03, /* [3920] OBJ_setct_OIData */
5640x67,0x2A,0x00,0x04, /* [3924] OBJ_setct_PI */
5650x67,0x2A,0x00,0x05, /* [3928] OBJ_setct_PIData */
5660x67,0x2A,0x00,0x06, /* [3932] OBJ_setct_PIDataUnsigned */
5670x67,0x2A,0x00,0x07, /* [3936] OBJ_setct_HODInput */
5680x67,0x2A,0x00,0x08, /* [3940] OBJ_setct_AuthResBaggage */
5690x67,0x2A,0x00,0x09, /* [3944] OBJ_setct_AuthRevReqBaggage */
5700x67,0x2A,0x00,0x0A, /* [3948] OBJ_setct_AuthRevResBaggage */
5710x67,0x2A,0x00,0x0B, /* [3952] OBJ_setct_CapTokenSeq */
5720x67,0x2A,0x00,0x0C, /* [3956] OBJ_setct_PInitResData */
5730x67,0x2A,0x00,0x0D, /* [3960] OBJ_setct_PI_TBS */
5740x67,0x2A,0x00,0x0E, /* [3964] OBJ_setct_PResData */
5750x67,0x2A,0x00,0x10, /* [3968] OBJ_setct_AuthReqTBS */
5760x67,0x2A,0x00,0x11, /* [3972] OBJ_setct_AuthResTBS */
5770x67,0x2A,0x00,0x12, /* [3976] OBJ_setct_AuthResTBSX */
5780x67,0x2A,0x00,0x13, /* [3980] OBJ_setct_AuthTokenTBS */
5790x67,0x2A,0x00,0x14, /* [3984] OBJ_setct_CapTokenData */
5800x67,0x2A,0x00,0x15, /* [3988] OBJ_setct_CapTokenTBS */
5810x67,0x2A,0x00,0x16, /* [3992] OBJ_setct_AcqCardCodeMsg */
5820x67,0x2A,0x00,0x17, /* [3996] OBJ_setct_AuthRevReqTBS */
5830x67,0x2A,0x00,0x18, /* [4000] OBJ_setct_AuthRevResData */
5840x67,0x2A,0x00,0x19, /* [4004] OBJ_setct_AuthRevResTBS */
5850x67,0x2A,0x00,0x1A, /* [4008] OBJ_setct_CapReqTBS */
5860x67,0x2A,0x00,0x1B, /* [4012] OBJ_setct_CapReqTBSX */
5870x67,0x2A,0x00,0x1C, /* [4016] OBJ_setct_CapResData */
5880x67,0x2A,0x00,0x1D, /* [4020] OBJ_setct_CapRevReqTBS */
5890x67,0x2A,0x00,0x1E, /* [4024] OBJ_setct_CapRevReqTBSX */
5900x67,0x2A,0x00,0x1F, /* [4028] OBJ_setct_CapRevResData */
5910x67,0x2A,0x00,0x20, /* [4032] OBJ_setct_CredReqTBS */
5920x67,0x2A,0x00,0x21, /* [4036] OBJ_setct_CredReqTBSX */
5930x67,0x2A,0x00,0x22, /* [4040] OBJ_setct_CredResData */
5940x67,0x2A,0x00,0x23, /* [4044] OBJ_setct_CredRevReqTBS */
5950x67,0x2A,0x00,0x24, /* [4048] OBJ_setct_CredRevReqTBSX */
5960x67,0x2A,0x00,0x25, /* [4052] OBJ_setct_CredRevResData */
5970x67,0x2A,0x00,0x26, /* [4056] OBJ_setct_PCertReqData */
5980x67,0x2A,0x00,0x27, /* [4060] OBJ_setct_PCertResTBS */
5990x67,0x2A,0x00,0x28, /* [4064] OBJ_setct_BatchAdminReqData */
6000x67,0x2A,0x00,0x29, /* [4068] OBJ_setct_BatchAdminResData */
6010x67,0x2A,0x00,0x2A, /* [4072] OBJ_setct_CardCInitResTBS */
6020x67,0x2A,0x00,0x2B, /* [4076] OBJ_setct_MeAqCInitResTBS */
6030x67,0x2A,0x00,0x2C, /* [4080] OBJ_setct_RegFormResTBS */
6040x67,0x2A,0x00,0x2D, /* [4084] OBJ_setct_CertReqData */
6050x67,0x2A,0x00,0x2E, /* [4088] OBJ_setct_CertReqTBS */
6060x67,0x2A,0x00,0x2F, /* [4092] OBJ_setct_CertResData */
6070x67,0x2A,0x00,0x30, /* [4096] OBJ_setct_CertInqReqTBS */
6080x67,0x2A,0x00,0x31, /* [4100] OBJ_setct_ErrorTBS */
6090x67,0x2A,0x00,0x32, /* [4104] OBJ_setct_PIDualSignedTBE */
6100x67,0x2A,0x00,0x33, /* [4108] OBJ_setct_PIUnsignedTBE */
6110x67,0x2A,0x00,0x34, /* [4112] OBJ_setct_AuthReqTBE */
6120x67,0x2A,0x00,0x35, /* [4116] OBJ_setct_AuthResTBE */
6130x67,0x2A,0x00,0x36, /* [4120] OBJ_setct_AuthResTBEX */
6140x67,0x2A,0x00,0x37, /* [4124] OBJ_setct_AuthTokenTBE */
6150x67,0x2A,0x00,0x38, /* [4128] OBJ_setct_CapTokenTBE */
6160x67,0x2A,0x00,0x39, /* [4132] OBJ_setct_CapTokenTBEX */
6170x67,0x2A,0x00,0x3A, /* [4136] OBJ_setct_AcqCardCodeMsgTBE */
6180x67,0x2A,0x00,0x3B, /* [4140] OBJ_setct_AuthRevReqTBE */
6190x67,0x2A,0x00,0x3C, /* [4144] OBJ_setct_AuthRevResTBE */
6200x67,0x2A,0x00,0x3D, /* [4148] OBJ_setct_AuthRevResTBEB */
6210x67,0x2A,0x00,0x3E, /* [4152] OBJ_setct_CapReqTBE */
6220x67,0x2A,0x00,0x3F, /* [4156] OBJ_setct_CapReqTBEX */
6230x67,0x2A,0x00,0x40, /* [4160] OBJ_setct_CapResTBE */
6240x67,0x2A,0x00,0x41, /* [4164] OBJ_setct_CapRevReqTBE */
6250x67,0x2A,0x00,0x42, /* [4168] OBJ_setct_CapRevReqTBEX */
6260x67,0x2A,0x00,0x43, /* [4172] OBJ_setct_CapRevResTBE */
6270x67,0x2A,0x00,0x44, /* [4176] OBJ_setct_CredReqTBE */
6280x67,0x2A,0x00,0x45, /* [4180] OBJ_setct_CredReqTBEX */
6290x67,0x2A,0x00,0x46, /* [4184] OBJ_setct_CredResTBE */
6300x67,0x2A,0x00,0x47, /* [4188] OBJ_setct_CredRevReqTBE */
6310x67,0x2A,0x00,0x48, /* [4192] OBJ_setct_CredRevReqTBEX */
6320x67,0x2A,0x00,0x49, /* [4196] OBJ_setct_CredRevResTBE */
6330x67,0x2A,0x00,0x4A, /* [4200] OBJ_setct_BatchAdminReqTBE */
6340x67,0x2A,0x00,0x4B, /* [4204] OBJ_setct_BatchAdminResTBE */
6350x67,0x2A,0x00,0x4C, /* [4208] OBJ_setct_RegFormReqTBE */
6360x67,0x2A,0x00,0x4D, /* [4212] OBJ_setct_CertReqTBE */
6370x67,0x2A,0x00,0x4E, /* [4216] OBJ_setct_CertReqTBEX */
6380x67,0x2A,0x00,0x4F, /* [4220] OBJ_setct_CertResTBE */
6390x67,0x2A,0x00,0x50, /* [4224] OBJ_setct_CRLNotificationTBS */
6400x67,0x2A,0x00,0x51, /* [4228] OBJ_setct_CRLNotificationResTBS */
6410x67,0x2A,0x00,0x52, /* [4232] OBJ_setct_BCIDistributionTBS */
6420x67,0x2A,0x01,0x01, /* [4236] OBJ_setext_genCrypt */
6430x67,0x2A,0x01,0x03, /* [4240] OBJ_setext_miAuth */
6440x67,0x2A,0x01,0x04, /* [4244] OBJ_setext_pinSecure */
6450x67,0x2A,0x01,0x05, /* [4248] OBJ_setext_pinAny */
6460x67,0x2A,0x01,0x07, /* [4252] OBJ_setext_track2 */
6470x67,0x2A,0x01,0x08, /* [4256] OBJ_setext_cv */
6480x67,0x2A,0x05,0x00, /* [4260] OBJ_set_policy_root */
6490x67,0x2A,0x07,0x00, /* [4264] OBJ_setCext_hashedRoot */
6500x67,0x2A,0x07,0x01, /* [4268] OBJ_setCext_certType */
6510x67,0x2A,0x07,0x02, /* [4272] OBJ_setCext_merchData */
6520x67,0x2A,0x07,0x03, /* [4276] OBJ_setCext_cCertRequired */
6530x67,0x2A,0x07,0x04, /* [4280] OBJ_setCext_tunneling */
6540x67,0x2A,0x07,0x05, /* [4284] OBJ_setCext_setExt */
6550x67,0x2A,0x07,0x06, /* [4288] OBJ_setCext_setQualf */
6560x67,0x2A,0x07,0x07, /* [4292] OBJ_setCext_PGWYcapabilities */
6570x67,0x2A,0x07,0x08, /* [4296] OBJ_setCext_TokenIdentifier */
6580x67,0x2A,0x07,0x09, /* [4300] OBJ_setCext_Track2Data */
6590x67,0x2A,0x07,0x0A, /* [4304] OBJ_setCext_TokenType */
6600x67,0x2A,0x07,0x0B, /* [4308] OBJ_setCext_IssuerCapabilities */
6610x67,0x2A,0x03,0x00, /* [4312] OBJ_setAttr_Cert */
6620x67,0x2A,0x03,0x01, /* [4316] OBJ_setAttr_PGWYcap */
6630x67,0x2A,0x03,0x02, /* [4320] OBJ_setAttr_TokenType */
6640x67,0x2A,0x03,0x03, /* [4324] OBJ_setAttr_IssCap */
6650x67,0x2A,0x03,0x00,0x00, /* [4328] OBJ_set_rootKeyThumb */
6660x67,0x2A,0x03,0x00,0x01, /* [4333] OBJ_set_addPolicy */
6670x67,0x2A,0x03,0x02,0x01, /* [4338] OBJ_setAttr_Token_EMV */
6680x67,0x2A,0x03,0x02,0x02, /* [4343] OBJ_setAttr_Token_B0Prime */
6690x67,0x2A,0x03,0x03,0x03, /* [4348] OBJ_setAttr_IssCap_CVM */
6700x67,0x2A,0x03,0x03,0x04, /* [4353] OBJ_setAttr_IssCap_T2 */
6710x67,0x2A,0x03,0x03,0x05, /* [4358] OBJ_setAttr_IssCap_Sig */
6720x67,0x2A,0x03,0x03,0x03,0x01, /* [4363] OBJ_setAttr_GenCryptgrm */
6730x67,0x2A,0x03,0x03,0x04,0x01, /* [4369] OBJ_setAttr_T2Enc */
6740x67,0x2A,0x03,0x03,0x04,0x02, /* [4375] OBJ_setAttr_T2cleartxt */
6750x67,0x2A,0x03,0x03,0x05,0x01, /* [4381] OBJ_setAttr_TokICCsig */
6760x67,0x2A,0x03,0x03,0x05,0x02, /* [4387] OBJ_setAttr_SecDevSig */
6770x67,0x2A,0x08,0x01, /* [4393] OBJ_set_brand_IATA_ATA */
6780x67,0x2A,0x08,0x1E, /* [4397] OBJ_set_brand_Diners */
6790x67,0x2A,0x08,0x22, /* [4401] OBJ_set_brand_AmericanExpress */
6800x67,0x2A,0x08,0x23, /* [4405] OBJ_set_brand_JCB */
6810x67,0x2A,0x08,0x04, /* [4409] OBJ_set_brand_Visa */
6820x67,0x2A,0x08,0x05, /* [4413] OBJ_set_brand_MasterCard */
6830x67,0x2A,0x08,0xAE,0x7B, /* [4417] OBJ_set_brand_Novus */
6840x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x0A, /* [4422] OBJ_des_cdmf */
6850x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x06,/* [4430] OBJ_rsaOAEPEncryptionSET */
6860x00, /* [4439] OBJ_itu_t */
6870x50, /* [4440] OBJ_joint_iso_itu_t */
6880x67, /* [4441] OBJ_international_organizations */
6890x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x02,/* [4442] OBJ_ms_smartcard_login */
6900x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x03,/* [4452] OBJ_ms_upn */
6910x55,0x04,0x09, /* [4462] OBJ_streetAddress */
6920x55,0x04,0x11, /* [4465] OBJ_postalCode */
6930x2B,0x06,0x01,0x05,0x05,0x07,0x15, /* [4468] OBJ_id_ppl */
6940x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0E, /* [4475] OBJ_proxyCertInfo */
6950x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x00, /* [4483] OBJ_id_ppl_anyLanguage */
6960x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x01, /* [4491] OBJ_id_ppl_inheritAll */
6970x55,0x1D,0x1E, /* [4499] OBJ_name_constraints */
6980x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x02, /* [4502] OBJ_Independent */
6990x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0B,/* [4510] OBJ_sha256WithRSAEncryption */
7000x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0C,/* [4519] OBJ_sha384WithRSAEncryption */
7010x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0D,/* [4528] OBJ_sha512WithRSAEncryption */
7020x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0E,/* [4537] OBJ_sha224WithRSAEncryption */
7030x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x01,/* [4546] OBJ_sha256 */
7040x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x02,/* [4555] OBJ_sha384 */
7050x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x03,/* [4564] OBJ_sha512 */
7060x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x04,/* [4573] OBJ_sha224 */
7070x2B, /* [4582] OBJ_identified_organization */
7080x2B,0x81,0x04, /* [4583] OBJ_certicom_arc */
7090x67,0x2B, /* [4586] OBJ_wap */
7100x67,0x2B,0x01, /* [4588] OBJ_wap_wsg */
7110x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03, /* [4591] OBJ_X9_62_id_characteristic_two_basis */
7120x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x01,/* [4599] OBJ_X9_62_onBasis */
7130x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x02,/* [4608] OBJ_X9_62_tpBasis */
7140x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x03,/* [4617] OBJ_X9_62_ppBasis */
7150x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x01, /* [4626] OBJ_X9_62_c2pnb163v1 */
7160x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x02, /* [4634] OBJ_X9_62_c2pnb163v2 */
7170x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x03, /* [4642] OBJ_X9_62_c2pnb163v3 */
7180x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x04, /* [4650] OBJ_X9_62_c2pnb176v1 */
7190x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x05, /* [4658] OBJ_X9_62_c2tnb191v1 */
7200x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x06, /* [4666] OBJ_X9_62_c2tnb191v2 */
7210x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x07, /* [4674] OBJ_X9_62_c2tnb191v3 */
7220x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x08, /* [4682] OBJ_X9_62_c2onb191v4 */
7230x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x09, /* [4690] OBJ_X9_62_c2onb191v5 */
7240x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0A, /* [4698] OBJ_X9_62_c2pnb208w1 */
7250x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0B, /* [4706] OBJ_X9_62_c2tnb239v1 */
7260x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0C, /* [4714] OBJ_X9_62_c2tnb239v2 */
7270x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0D, /* [4722] OBJ_X9_62_c2tnb239v3 */
7280x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0E, /* [4730] OBJ_X9_62_c2onb239v4 */
7290x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0F, /* [4738] OBJ_X9_62_c2onb239v5 */
7300x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x10, /* [4746] OBJ_X9_62_c2pnb272w1 */
7310x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x11, /* [4754] OBJ_X9_62_c2pnb304w1 */
7320x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x12, /* [4762] OBJ_X9_62_c2tnb359v1 */
7330x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x13, /* [4770] OBJ_X9_62_c2pnb368w1 */
7340x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x14, /* [4778] OBJ_X9_62_c2tnb431r1 */
7350x2B,0x81,0x04,0x00,0x06, /* [4786] OBJ_secp112r1 */
7360x2B,0x81,0x04,0x00,0x07, /* [4791] OBJ_secp112r2 */
7370x2B,0x81,0x04,0x00,0x1C, /* [4796] OBJ_secp128r1 */
7380x2B,0x81,0x04,0x00,0x1D, /* [4801] OBJ_secp128r2 */
7390x2B,0x81,0x04,0x00,0x09, /* [4806] OBJ_secp160k1 */
7400x2B,0x81,0x04,0x00,0x08, /* [4811] OBJ_secp160r1 */
7410x2B,0x81,0x04,0x00,0x1E, /* [4816] OBJ_secp160r2 */
7420x2B,0x81,0x04,0x00,0x1F, /* [4821] OBJ_secp192k1 */
7430x2B,0x81,0x04,0x00,0x20, /* [4826] OBJ_secp224k1 */
7440x2B,0x81,0x04,0x00,0x21, /* [4831] OBJ_secp224r1 */
7450x2B,0x81,0x04,0x00,0x0A, /* [4836] OBJ_secp256k1 */
7460x2B,0x81,0x04,0x00,0x22, /* [4841] OBJ_secp384r1 */
7470x2B,0x81,0x04,0x00,0x23, /* [4846] OBJ_secp521r1 */
7480x2B,0x81,0x04,0x00,0x04, /* [4851] OBJ_sect113r1 */
7490x2B,0x81,0x04,0x00,0x05, /* [4856] OBJ_sect113r2 */
7500x2B,0x81,0x04,0x00,0x16, /* [4861] OBJ_sect131r1 */
7510x2B,0x81,0x04,0x00,0x17, /* [4866] OBJ_sect131r2 */
7520x2B,0x81,0x04,0x00,0x01, /* [4871] OBJ_sect163k1 */
7530x2B,0x81,0x04,0x00,0x02, /* [4876] OBJ_sect163r1 */
7540x2B,0x81,0x04,0x00,0x0F, /* [4881] OBJ_sect163r2 */
7550x2B,0x81,0x04,0x00,0x18, /* [4886] OBJ_sect193r1 */
7560x2B,0x81,0x04,0x00,0x19, /* [4891] OBJ_sect193r2 */
7570x2B,0x81,0x04,0x00,0x1A, /* [4896] OBJ_sect233k1 */
7580x2B,0x81,0x04,0x00,0x1B, /* [4901] OBJ_sect233r1 */
7590x2B,0x81,0x04,0x00,0x03, /* [4906] OBJ_sect239k1 */
7600x2B,0x81,0x04,0x00,0x10, /* [4911] OBJ_sect283k1 */
7610x2B,0x81,0x04,0x00,0x11, /* [4916] OBJ_sect283r1 */
7620x2B,0x81,0x04,0x00,0x24, /* [4921] OBJ_sect409k1 */
7630x2B,0x81,0x04,0x00,0x25, /* [4926] OBJ_sect409r1 */
7640x2B,0x81,0x04,0x00,0x26, /* [4931] OBJ_sect571k1 */
7650x2B,0x81,0x04,0x00,0x27, /* [4936] OBJ_sect571r1 */
7660x67,0x2B,0x01,0x04,0x01, /* [4941] OBJ_wap_wsg_idm_ecid_wtls1 */
7670x67,0x2B,0x01,0x04,0x03, /* [4946] OBJ_wap_wsg_idm_ecid_wtls3 */
7680x67,0x2B,0x01,0x04,0x04, /* [4951] OBJ_wap_wsg_idm_ecid_wtls4 */
7690x67,0x2B,0x01,0x04,0x05, /* [4956] OBJ_wap_wsg_idm_ecid_wtls5 */
7700x67,0x2B,0x01,0x04,0x06, /* [4961] OBJ_wap_wsg_idm_ecid_wtls6 */
7710x67,0x2B,0x01,0x04,0x07, /* [4966] OBJ_wap_wsg_idm_ecid_wtls7 */
7720x67,0x2B,0x01,0x04,0x08, /* [4971] OBJ_wap_wsg_idm_ecid_wtls8 */
7730x67,0x2B,0x01,0x04,0x09, /* [4976] OBJ_wap_wsg_idm_ecid_wtls9 */
7740x67,0x2B,0x01,0x04,0x0A, /* [4981] OBJ_wap_wsg_idm_ecid_wtls10 */
7750x67,0x2B,0x01,0x04,0x0B, /* [4986] OBJ_wap_wsg_idm_ecid_wtls11 */
7760x67,0x2B,0x01,0x04,0x0C, /* [4991] OBJ_wap_wsg_idm_ecid_wtls12 */
7770x55,0x1D,0x20,0x00, /* [4996] OBJ_any_policy */
7780x55,0x1D,0x21, /* [5000] OBJ_policy_mappings */
7790x55,0x1D,0x36, /* [5003] OBJ_inhibit_any_policy */
7800x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x01,0x02,/* [5006] OBJ_camellia_128_cbc */
7810x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x01,0x03,/* [5017] OBJ_camellia_192_cbc */
7820x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x01,0x04,/* [5028] OBJ_camellia_256_cbc */
7830x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x01, /* [5039] OBJ_camellia_128_ecb */
7840x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x15, /* [5047] OBJ_camellia_192_ecb */
7850x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x29, /* [5055] OBJ_camellia_256_ecb */
7860x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x04, /* [5063] OBJ_camellia_128_cfb128 */
7870x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x18, /* [5071] OBJ_camellia_192_cfb128 */
7880x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x2C, /* [5079] OBJ_camellia_256_cfb128 */
7890x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x03, /* [5087] OBJ_camellia_128_ofb128 */
7900x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x17, /* [5095] OBJ_camellia_192_ofb128 */
7910x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x2B, /* [5103] OBJ_camellia_256_ofb128 */
7920x55,0x1D,0x09, /* [5111] OBJ_subject_directory_attributes */
7930x55,0x1D,0x1C, /* [5114] OBJ_issuing_distribution_point */
7940x55,0x1D,0x1D, /* [5117] OBJ_certificate_issuer */
7950x2A,0x83,0x1A,0x8C,0x9A,0x44, /* [5120] OBJ_kisa */
7960x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x03, /* [5126] OBJ_seed_ecb */
7970x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x04, /* [5134] OBJ_seed_cbc */
7980x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x06, /* [5142] OBJ_seed_ofb128 */
7990x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x05, /* [5150] OBJ_seed_cfb128 */
8000x2B,0x06,0x01,0x05,0x05,0x08,0x01,0x01, /* [5158] OBJ_hmac_md5 */
8010x2B,0x06,0x01,0x05,0x05,0x08,0x01,0x02, /* [5166] OBJ_hmac_sha1 */
8020x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0D,/* [5174] OBJ_id_PasswordBasedMAC */
8030x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x1E,/* [5183] OBJ_id_DHBasedMac */
8040x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x10, /* [5192] OBJ_id_it_suppLangTags */
8050x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x05, /* [5200] OBJ_caRepository */
8060x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x09,/* [5208] OBJ_id_smime_ct_compressedData */
8070x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x1B,/* [5219] OBJ_id_ct_asciiTextWithCRLF */
8080x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x05,/* [5230] OBJ_id_aes128_wrap */
8090x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x19,/* [5239] OBJ_id_aes192_wrap */
8100x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2D,/* [5248] OBJ_id_aes256_wrap */
8110x2A,0x86,0x48,0xCE,0x3D,0x04,0x02, /* [5257] OBJ_ecdsa_with_Recommended */
8120x2A,0x86,0x48,0xCE,0x3D,0x04,0x03, /* [5264] OBJ_ecdsa_with_Specified */
8130x2A,0x86,0x48,0xCE,0x3D,0x04,0x03,0x01, /* [5271] OBJ_ecdsa_with_SHA224 */
8140x2A,0x86,0x48,0xCE,0x3D,0x04,0x03,0x02, /* [5279] OBJ_ecdsa_with_SHA256 */
8150x2A,0x86,0x48,0xCE,0x3D,0x04,0x03,0x03, /* [5287] OBJ_ecdsa_with_SHA384 */
8160x2A,0x86,0x48,0xCE,0x3D,0x04,0x03,0x04, /* [5295] OBJ_ecdsa_with_SHA512 */
8170x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x06, /* [5303] OBJ_hmacWithMD5 */
8180x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x08, /* [5311] OBJ_hmacWithSHA224 */
8190x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x09, /* [5319] OBJ_hmacWithSHA256 */
8200x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x0A, /* [5327] OBJ_hmacWithSHA384 */
8210x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x0B, /* [5335] OBJ_hmacWithSHA512 */
8220x60,0x86,0x48,0x01,0x65,0x03,0x04,0x03,0x01,/* [5343] OBJ_dsa_with_SHA224 */
8230x60,0x86,0x48,0x01,0x65,0x03,0x04,0x03,0x02,/* [5352] OBJ_dsa_with_SHA256 */
8240x28,0xCF,0x06,0x03,0x00,0x37, /* [5361] OBJ_whirlpool */
8250x2A,0x85,0x03,0x02,0x02, /* [5367] OBJ_cryptopro */
8260x2A,0x85,0x03,0x02,0x09, /* [5372] OBJ_cryptocom */
8270x2A,0x85,0x03,0x02,0x02,0x03, /* [5377] OBJ_id_GostR3411_94_with_GostR3410_2001 */
8280x2A,0x85,0x03,0x02,0x02,0x04, /* [5383] OBJ_id_GostR3411_94_with_GostR3410_94 */
8290x2A,0x85,0x03,0x02,0x02,0x09, /* [5389] OBJ_id_GostR3411_94 */
8300x2A,0x85,0x03,0x02,0x02,0x0A, /* [5395] OBJ_id_HMACGostR3411_94 */
8310x2A,0x85,0x03,0x02,0x02,0x13, /* [5401] OBJ_id_GostR3410_2001 */
8320x2A,0x85,0x03,0x02,0x02,0x14, /* [5407] OBJ_id_GostR3410_94 */
8330x2A,0x85,0x03,0x02,0x02,0x15, /* [5413] OBJ_id_Gost28147_89 */
8340x2A,0x85,0x03,0x02,0x02,0x16, /* [5419] OBJ_id_Gost28147_89_MAC */
8350x2A,0x85,0x03,0x02,0x02,0x17, /* [5425] OBJ_id_GostR3411_94_prf */
8360x2A,0x85,0x03,0x02,0x02,0x62, /* [5431] OBJ_id_GostR3410_2001DH */
8370x2A,0x85,0x03,0x02,0x02,0x63, /* [5437] OBJ_id_GostR3410_94DH */
8380x2A,0x85,0x03,0x02,0x02,0x0E,0x01, /* [5443] OBJ_id_Gost28147_89_CryptoPro_KeyMeshing */
8390x2A,0x85,0x03,0x02,0x02,0x0E,0x00, /* [5450] OBJ_id_Gost28147_89_None_KeyMeshing */
8400x2A,0x85,0x03,0x02,0x02,0x1E,0x00, /* [5457] OBJ_id_GostR3411_94_TestParamSet */
8410x2A,0x85,0x03,0x02,0x02,0x1E,0x01, /* [5464] OBJ_id_GostR3411_94_CryptoProParamSet */
8420x2A,0x85,0x03,0x02,0x02,0x1F,0x00, /* [5471] OBJ_id_Gost28147_89_TestParamSet */
8430x2A,0x85,0x03,0x02,0x02,0x1F,0x01, /* [5478] OBJ_id_Gost28147_89_CryptoPro_A_ParamSet */
8440x2A,0x85,0x03,0x02,0x02,0x1F,0x02, /* [5485] OBJ_id_Gost28147_89_CryptoPro_B_ParamSet */
8450x2A,0x85,0x03,0x02,0x02,0x1F,0x03, /* [5492] OBJ_id_Gost28147_89_CryptoPro_C_ParamSet */
8460x2A,0x85,0x03,0x02,0x02,0x1F,0x04, /* [5499] OBJ_id_Gost28147_89_CryptoPro_D_ParamSet */
8470x2A,0x85,0x03,0x02,0x02,0x1F,0x05, /* [5506] OBJ_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet */
8480x2A,0x85,0x03,0x02,0x02,0x1F,0x06, /* [5513] OBJ_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet */
8490x2A,0x85,0x03,0x02,0x02,0x1F,0x07, /* [5520] OBJ_id_Gost28147_89_CryptoPro_RIC_1_ParamSet */
8500x2A,0x85,0x03,0x02,0x02,0x20,0x00, /* [5527] OBJ_id_GostR3410_94_TestParamSet */
8510x2A,0x85,0x03,0x02,0x02,0x20,0x02, /* [5534] OBJ_id_GostR3410_94_CryptoPro_A_ParamSet */
8520x2A,0x85,0x03,0x02,0x02,0x20,0x03, /* [5541] OBJ_id_GostR3410_94_CryptoPro_B_ParamSet */
8530x2A,0x85,0x03,0x02,0x02,0x20,0x04, /* [5548] OBJ_id_GostR3410_94_CryptoPro_C_ParamSet */
8540x2A,0x85,0x03,0x02,0x02,0x20,0x05, /* [5555] OBJ_id_GostR3410_94_CryptoPro_D_ParamSet */
8550x2A,0x85,0x03,0x02,0x02,0x21,0x01, /* [5562] OBJ_id_GostR3410_94_CryptoPro_XchA_ParamSet */
8560x2A,0x85,0x03,0x02,0x02,0x21,0x02, /* [5569] OBJ_id_GostR3410_94_CryptoPro_XchB_ParamSet */
8570x2A,0x85,0x03,0x02,0x02,0x21,0x03, /* [5576] OBJ_id_GostR3410_94_CryptoPro_XchC_ParamSet */
8580x2A,0x85,0x03,0x02,0x02,0x23,0x00, /* [5583] OBJ_id_GostR3410_2001_TestParamSet */
8590x2A,0x85,0x03,0x02,0x02,0x23,0x01, /* [5590] OBJ_id_GostR3410_2001_CryptoPro_A_ParamSet */
8600x2A,0x85,0x03,0x02,0x02,0x23,0x02, /* [5597] OBJ_id_GostR3410_2001_CryptoPro_B_ParamSet */
8610x2A,0x85,0x03,0x02,0x02,0x23,0x03, /* [5604] OBJ_id_GostR3410_2001_CryptoPro_C_ParamSet */
8620x2A,0x85,0x03,0x02,0x02,0x24,0x00, /* [5611] OBJ_id_GostR3410_2001_CryptoPro_XchA_ParamSet */
8630x2A,0x85,0x03,0x02,0x02,0x24,0x01, /* [5618] OBJ_id_GostR3410_2001_CryptoPro_XchB_ParamSet */
8640x2A,0x85,0x03,0x02,0x02,0x14,0x01, /* [5625] OBJ_id_GostR3410_94_a */
8650x2A,0x85,0x03,0x02,0x02,0x14,0x02, /* [5632] OBJ_id_GostR3410_94_aBis */
8660x2A,0x85,0x03,0x02,0x02,0x14,0x03, /* [5639] OBJ_id_GostR3410_94_b */
8670x2A,0x85,0x03,0x02,0x02,0x14,0x04, /* [5646] OBJ_id_GostR3410_94_bBis */
8680x2A,0x85,0x03,0x02,0x09,0x01,0x06,0x01, /* [5653] OBJ_id_Gost28147_89_cc */
8690x2A,0x85,0x03,0x02,0x09,0x01,0x05,0x03, /* [5661] OBJ_id_GostR3410_94_cc */
8700x2A,0x85,0x03,0x02,0x09,0x01,0x05,0x04, /* [5669] OBJ_id_GostR3410_2001_cc */
8710x2A,0x85,0x03,0x02,0x09,0x01,0x03,0x03, /* [5677] OBJ_id_GostR3411_94_with_GostR3410_94_cc */
8720x2A,0x85,0x03,0x02,0x09,0x01,0x03,0x04, /* [5685] OBJ_id_GostR3411_94_with_GostR3410_2001_cc */
8730x2A,0x85,0x03,0x02,0x09,0x01,0x08,0x01, /* [5693] OBJ_id_GostR3410_2001_ParamSet_cc */
8740x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x11,0x02,/* [5701] OBJ_LocalKeySet */
8750x55,0x1D,0x2E, /* [5710] OBJ_freshest_crl */
8760x2B,0x06,0x01,0x05,0x05,0x07,0x08,0x03, /* [5713] OBJ_id_on_permanentIdentifier */
8770x55,0x04,0x0E, /* [5721] OBJ_searchGuide */
8780x55,0x04,0x0F, /* [5724] OBJ_businessCategory */
8790x55,0x04,0x10, /* [5727] OBJ_postalAddress */
8800x55,0x04,0x12, /* [5730] OBJ_postOfficeBox */
8810x55,0x04,0x13, /* [5733] OBJ_physicalDeliveryOfficeName */
8820x55,0x04,0x14, /* [5736] OBJ_telephoneNumber */
8830x55,0x04,0x15, /* [5739] OBJ_telexNumber */
8840x55,0x04,0x16, /* [5742] OBJ_teletexTerminalIdentifier */
8850x55,0x04,0x17, /* [5745] OBJ_facsimileTelephoneNumber */
8860x55,0x04,0x18, /* [5748] OBJ_x121Address */
8870x55,0x04,0x19, /* [5751] OBJ_internationaliSDNNumber */
8880x55,0x04,0x1A, /* [5754] OBJ_registeredAddress */
8890x55,0x04,0x1B, /* [5757] OBJ_destinationIndicator */
8900x55,0x04,0x1C, /* [5760] OBJ_preferredDeliveryMethod */
8910x55,0x04,0x1D, /* [5763] OBJ_presentationAddress */
8920x55,0x04,0x1E, /* [5766] OBJ_supportedApplicationContext */
8930x55,0x04,0x1F, /* [5769] OBJ_member */
8940x55,0x04,0x20, /* [5772] OBJ_owner */
8950x55,0x04,0x21, /* [5775] OBJ_roleOccupant */
8960x55,0x04,0x22, /* [5778] OBJ_seeAlso */
8970x55,0x04,0x23, /* [5781] OBJ_userPassword */
8980x55,0x04,0x24, /* [5784] OBJ_userCertificate */
8990x55,0x04,0x25, /* [5787] OBJ_cACertificate */
9000x55,0x04,0x26, /* [5790] OBJ_authorityRevocationList */
9010x55,0x04,0x27, /* [5793] OBJ_certificateRevocationList */
9020x55,0x04,0x28, /* [5796] OBJ_crossCertificatePair */
9030x55,0x04,0x2F, /* [5799] OBJ_enhancedSearchGuide */
9040x55,0x04,0x30, /* [5802] OBJ_protocolInformation */
9050x55,0x04,0x31, /* [5805] OBJ_distinguishedName */
9060x55,0x04,0x32, /* [5808] OBJ_uniqueMember */
9070x55,0x04,0x33, /* [5811] OBJ_houseIdentifier */
9080x55,0x04,0x34, /* [5814] OBJ_supportedAlgorithms */
9090x55,0x04,0x35, /* [5817] OBJ_deltaRevocationList */
9100x55,0x04,0x36, /* [5820] OBJ_dmdName */
9110x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x09,/* [5823] OBJ_id_alg_PWRI_KEK */
9120x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x06,/* [5834] OBJ_aes_128_gcm */
9130x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x07,/* [5843] OBJ_aes_128_ccm */
9140x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x08,/* [5852] OBJ_id_aes128_wrap_pad */
9150x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x1A,/* [5861] OBJ_aes_192_gcm */
9160x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x1B,/* [5870] OBJ_aes_192_ccm */
9170x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x1C,/* [5879] OBJ_id_aes192_wrap_pad */
9180x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2E,/* [5888] OBJ_aes_256_gcm */
9190x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2F,/* [5897] OBJ_aes_256_ccm */
9200x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x30,/* [5906] OBJ_id_aes256_wrap_pad */
9210x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x03,0x02,/* [5915] OBJ_id_camellia128_wrap */
9220x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x03,0x03,/* [5926] OBJ_id_camellia192_wrap */
9230x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x03,0x04,/* [5937] OBJ_id_camellia256_wrap */
9240x55,0x1D,0x25,0x00, /* [5948] OBJ_anyExtendedKeyUsage */
9250x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x08,/* [5952] OBJ_mgf1 */
9260x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0A,/* [5961] OBJ_rsassaPss */
9270x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x07,/* [5970] OBJ_rsaesOaep */
928};
929
930static const ASN1_OBJECT nid_objs[NUM_NID]={
931{"UNDEF","undefined",NID_undef,1,&(lvalues[0]),0},
932{"rsadsi","RSA Data Security, Inc.",NID_rsadsi,6,&(lvalues[1]),0},
933{"pkcs","RSA Data Security, Inc. PKCS",NID_pkcs,7,&(lvalues[7]),0},
934{"MD2","md2",NID_md2,8,&(lvalues[14]),0},
935{"MD5","md5",NID_md5,8,&(lvalues[22]),0},
936{"RC4","rc4",NID_rc4,8,&(lvalues[30]),0},
937{"rsaEncryption","rsaEncryption",NID_rsaEncryption,9,&(lvalues[38]),0},
938{"RSA-MD2","md2WithRSAEncryption",NID_md2WithRSAEncryption,9,
939 &(lvalues[47]),0},
940{"RSA-MD5","md5WithRSAEncryption",NID_md5WithRSAEncryption,9,
941 &(lvalues[56]),0},
942{"PBE-MD2-DES","pbeWithMD2AndDES-CBC",NID_pbeWithMD2AndDES_CBC,9,
943 &(lvalues[65]),0},
944{"PBE-MD5-DES","pbeWithMD5AndDES-CBC",NID_pbeWithMD5AndDES_CBC,9,
945 &(lvalues[74]),0},
946{"X500","directory services (X.500)",NID_X500,1,&(lvalues[83]),0},
947{"X509","X509",NID_X509,2,&(lvalues[84]),0},
948{"CN","commonName",NID_commonName,3,&(lvalues[86]),0},
949{"C","countryName",NID_countryName,3,&(lvalues[89]),0},
950{"L","localityName",NID_localityName,3,&(lvalues[92]),0},
951{"ST","stateOrProvinceName",NID_stateOrProvinceName,3,&(lvalues[95]),0},
952{"O","organizationName",NID_organizationName,3,&(lvalues[98]),0},
953{"OU","organizationalUnitName",NID_organizationalUnitName,3,
954 &(lvalues[101]),0},
955{"RSA","rsa",NID_rsa,4,&(lvalues[104]),0},
956{"pkcs7","pkcs7",NID_pkcs7,8,&(lvalues[108]),0},
957{"pkcs7-data","pkcs7-data",NID_pkcs7_data,9,&(lvalues[116]),0},
958{"pkcs7-signedData","pkcs7-signedData",NID_pkcs7_signed,9,
959 &(lvalues[125]),0},
960{"pkcs7-envelopedData","pkcs7-envelopedData",NID_pkcs7_enveloped,9,
961 &(lvalues[134]),0},
962{"pkcs7-signedAndEnvelopedData","pkcs7-signedAndEnvelopedData",
963 NID_pkcs7_signedAndEnveloped,9,&(lvalues[143]),0},
964{"pkcs7-digestData","pkcs7-digestData",NID_pkcs7_digest,9,
965 &(lvalues[152]),0},
966{"pkcs7-encryptedData","pkcs7-encryptedData",NID_pkcs7_encrypted,9,
967 &(lvalues[161]),0},
968{"pkcs3","pkcs3",NID_pkcs3,8,&(lvalues[170]),0},
969{"dhKeyAgreement","dhKeyAgreement",NID_dhKeyAgreement,9,
970 &(lvalues[178]),0},
971{"DES-ECB","des-ecb",NID_des_ecb,5,&(lvalues[187]),0},
972{"DES-CFB","des-cfb",NID_des_cfb64,5,&(lvalues[192]),0},
973{"DES-CBC","des-cbc",NID_des_cbc,5,&(lvalues[197]),0},
974{"DES-EDE","des-ede",NID_des_ede_ecb,5,&(lvalues[202]),0},
975{"DES-EDE3","des-ede3",NID_des_ede3_ecb,0,NULL,0},
976{"IDEA-CBC","idea-cbc",NID_idea_cbc,11,&(lvalues[207]),0},
977{"IDEA-CFB","idea-cfb",NID_idea_cfb64,0,NULL,0},
978{"IDEA-ECB","idea-ecb",NID_idea_ecb,0,NULL,0},
979{"RC2-CBC","rc2-cbc",NID_rc2_cbc,8,&(lvalues[218]),0},
980{"RC2-ECB","rc2-ecb",NID_rc2_ecb,0,NULL,0},
981{"RC2-CFB","rc2-cfb",NID_rc2_cfb64,0,NULL,0},
982{"RC2-OFB","rc2-ofb",NID_rc2_ofb64,0,NULL,0},
983{"SHA","sha",NID_sha,5,&(lvalues[226]),0},
984{"RSA-SHA","shaWithRSAEncryption",NID_shaWithRSAEncryption,5,
985 &(lvalues[231]),0},
986{"DES-EDE-CBC","des-ede-cbc",NID_des_ede_cbc,0,NULL,0},
987{"DES-EDE3-CBC","des-ede3-cbc",NID_des_ede3_cbc,8,&(lvalues[236]),0},
988{"DES-OFB","des-ofb",NID_des_ofb64,5,&(lvalues[244]),0},
989{"IDEA-OFB","idea-ofb",NID_idea_ofb64,0,NULL,0},
990{"pkcs9","pkcs9",NID_pkcs9,8,&(lvalues[249]),0},
991{"emailAddress","emailAddress",NID_pkcs9_emailAddress,9,
992 &(lvalues[257]),0},
993{"unstructuredName","unstructuredName",NID_pkcs9_unstructuredName,9,
994 &(lvalues[266]),0},
995{"contentType","contentType",NID_pkcs9_contentType,9,&(lvalues[275]),0},
996{"messageDigest","messageDigest",NID_pkcs9_messageDigest,9,
997 &(lvalues[284]),0},
998{"signingTime","signingTime",NID_pkcs9_signingTime,9,&(lvalues[293]),0},
999{"countersignature","countersignature",NID_pkcs9_countersignature,9,
1000 &(lvalues[302]),0},
1001{"challengePassword","challengePassword",NID_pkcs9_challengePassword,
1002 9,&(lvalues[311]),0},
1003{"unstructuredAddress","unstructuredAddress",
1004 NID_pkcs9_unstructuredAddress,9,&(lvalues[320]),0},
1005{"extendedCertificateAttributes","extendedCertificateAttributes",
1006 NID_pkcs9_extCertAttributes,9,&(lvalues[329]),0},
1007{"Netscape","Netscape Communications Corp.",NID_netscape,7,
1008 &(lvalues[338]),0},
1009{"nsCertExt","Netscape Certificate Extension",
1010 NID_netscape_cert_extension,8,&(lvalues[345]),0},
1011{"nsDataType","Netscape Data Type",NID_netscape_data_type,8,
1012 &(lvalues[353]),0},
1013{"DES-EDE-CFB","des-ede-cfb",NID_des_ede_cfb64,0,NULL,0},
1014{"DES-EDE3-CFB","des-ede3-cfb",NID_des_ede3_cfb64,0,NULL,0},
1015{"DES-EDE-OFB","des-ede-ofb",NID_des_ede_ofb64,0,NULL,0},
1016{"DES-EDE3-OFB","des-ede3-ofb",NID_des_ede3_ofb64,0,NULL,0},
1017{"SHA1","sha1",NID_sha1,5,&(lvalues[361]),0},
1018{"RSA-SHA1","sha1WithRSAEncryption",NID_sha1WithRSAEncryption,9,
1019 &(lvalues[366]),0},
1020{"DSA-SHA","dsaWithSHA",NID_dsaWithSHA,5,&(lvalues[375]),0},
1021{"DSA-old","dsaEncryption-old",NID_dsa_2,5,&(lvalues[380]),0},
1022{"PBE-SHA1-RC2-64","pbeWithSHA1AndRC2-CBC",NID_pbeWithSHA1AndRC2_CBC,
1023 9,&(lvalues[385]),0},
1024{"PBKDF2","PBKDF2",NID_id_pbkdf2,9,&(lvalues[394]),0},
1025{"DSA-SHA1-old","dsaWithSHA1-old",NID_dsaWithSHA1_2,5,&(lvalues[403]),0},
1026{"nsCertType","Netscape Cert Type",NID_netscape_cert_type,9,
1027 &(lvalues[408]),0},
1028{"nsBaseUrl","Netscape Base Url",NID_netscape_base_url,9,
1029 &(lvalues[417]),0},
1030{"nsRevocationUrl","Netscape Revocation Url",
1031 NID_netscape_revocation_url,9,&(lvalues[426]),0},
1032{"nsCaRevocationUrl","Netscape CA Revocation Url",
1033 NID_netscape_ca_revocation_url,9,&(lvalues[435]),0},
1034{"nsRenewalUrl","Netscape Renewal Url",NID_netscape_renewal_url,9,
1035 &(lvalues[444]),0},
1036{"nsCaPolicyUrl","Netscape CA Policy Url",NID_netscape_ca_policy_url,
1037 9,&(lvalues[453]),0},
1038{"nsSslServerName","Netscape SSL Server Name",
1039 NID_netscape_ssl_server_name,9,&(lvalues[462]),0},
1040{"nsComment","Netscape Comment",NID_netscape_comment,9,&(lvalues[471]),0},
1041{"nsCertSequence","Netscape Certificate Sequence",
1042 NID_netscape_cert_sequence,9,&(lvalues[480]),0},
1043{"DESX-CBC","desx-cbc",NID_desx_cbc,0,NULL,0},
1044{"id-ce","id-ce",NID_id_ce,2,&(lvalues[489]),0},
1045{"subjectKeyIdentifier","X509v3 Subject Key Identifier",
1046 NID_subject_key_identifier,3,&(lvalues[491]),0},
1047{"keyUsage","X509v3 Key Usage",NID_key_usage,3,&(lvalues[494]),0},
1048{"privateKeyUsagePeriod","X509v3 Private Key Usage Period",
1049 NID_private_key_usage_period,3,&(lvalues[497]),0},
1050{"subjectAltName","X509v3 Subject Alternative Name",
1051 NID_subject_alt_name,3,&(lvalues[500]),0},
1052{"issuerAltName","X509v3 Issuer Alternative Name",NID_issuer_alt_name,
1053 3,&(lvalues[503]),0},
1054{"basicConstraints","X509v3 Basic Constraints",NID_basic_constraints,
1055 3,&(lvalues[506]),0},
1056{"crlNumber","X509v3 CRL Number",NID_crl_number,3,&(lvalues[509]),0},
1057{"certificatePolicies","X509v3 Certificate Policies",
1058 NID_certificate_policies,3,&(lvalues[512]),0},
1059{"authorityKeyIdentifier","X509v3 Authority Key Identifier",
1060 NID_authority_key_identifier,3,&(lvalues[515]),0},
1061{"BF-CBC","bf-cbc",NID_bf_cbc,9,&(lvalues[518]),0},
1062{"BF-ECB","bf-ecb",NID_bf_ecb,0,NULL,0},
1063{"BF-CFB","bf-cfb",NID_bf_cfb64,0,NULL,0},
1064{"BF-OFB","bf-ofb",NID_bf_ofb64,0,NULL,0},
1065{"MDC2","mdc2",NID_mdc2,4,&(lvalues[527]),0},
1066{"RSA-MDC2","mdc2WithRSA",NID_mdc2WithRSA,4,&(lvalues[531]),0},
1067{"RC4-40","rc4-40",NID_rc4_40,0,NULL,0},
1068{"RC2-40-CBC","rc2-40-cbc",NID_rc2_40_cbc,0,NULL,0},
1069{"GN","givenName",NID_givenName,3,&(lvalues[535]),0},
1070{"SN","surname",NID_surname,3,&(lvalues[538]),0},
1071{"initials","initials",NID_initials,3,&(lvalues[541]),0},
1072{NULL,NULL,NID_undef,0,NULL,0},
1073{"crlDistributionPoints","X509v3 CRL Distribution Points",
1074 NID_crl_distribution_points,3,&(lvalues[544]),0},
1075{"RSA-NP-MD5","md5WithRSA",NID_md5WithRSA,5,&(lvalues[547]),0},
1076{"serialNumber","serialNumber",NID_serialNumber,3,&(lvalues[552]),0},
1077{"title","title",NID_title,3,&(lvalues[555]),0},
1078{"description","description",NID_description,3,&(lvalues[558]),0},
1079{"CAST5-CBC","cast5-cbc",NID_cast5_cbc,9,&(lvalues[561]),0},
1080{"CAST5-ECB","cast5-ecb",NID_cast5_ecb,0,NULL,0},
1081{"CAST5-CFB","cast5-cfb",NID_cast5_cfb64,0,NULL,0},
1082{"CAST5-OFB","cast5-ofb",NID_cast5_ofb64,0,NULL,0},
1083{"pbeWithMD5AndCast5CBC","pbeWithMD5AndCast5CBC",
1084 NID_pbeWithMD5AndCast5_CBC,9,&(lvalues[570]),0},
1085{"DSA-SHA1","dsaWithSHA1",NID_dsaWithSHA1,7,&(lvalues[579]),0},
1086{"MD5-SHA1","md5-sha1",NID_md5_sha1,0,NULL,0},
1087{"RSA-SHA1-2","sha1WithRSA",NID_sha1WithRSA,5,&(lvalues[586]),0},
1088{"DSA","dsaEncryption",NID_dsa,7,&(lvalues[591]),0},
1089{"RIPEMD160","ripemd160",NID_ripemd160,5,&(lvalues[598]),0},
1090{NULL,NULL,NID_undef,0,NULL,0},
1091{"RSA-RIPEMD160","ripemd160WithRSA",NID_ripemd160WithRSA,6,
1092 &(lvalues[603]),0},
1093{"RC5-CBC","rc5-cbc",NID_rc5_cbc,8,&(lvalues[609]),0},
1094{"RC5-ECB","rc5-ecb",NID_rc5_ecb,0,NULL,0},
1095{"RC5-CFB","rc5-cfb",NID_rc5_cfb64,0,NULL,0},
1096{"RC5-OFB","rc5-ofb",NID_rc5_ofb64,0,NULL,0},
1097{"RLE","run length compression",NID_rle_compression,6,&(lvalues[617]),0},
1098{"ZLIB","zlib compression",NID_zlib_compression,11,&(lvalues[623]),0},
1099{"extendedKeyUsage","X509v3 Extended Key Usage",NID_ext_key_usage,3,
1100 &(lvalues[634]),0},
1101{"PKIX","PKIX",NID_id_pkix,6,&(lvalues[637]),0},
1102{"id-kp","id-kp",NID_id_kp,7,&(lvalues[643]),0},
1103{"serverAuth","TLS Web Server Authentication",NID_server_auth,8,
1104 &(lvalues[650]),0},
1105{"clientAuth","TLS Web Client Authentication",NID_client_auth,8,
1106 &(lvalues[658]),0},
1107{"codeSigning","Code Signing",NID_code_sign,8,&(lvalues[666]),0},
1108{"emailProtection","E-mail Protection",NID_email_protect,8,
1109 &(lvalues[674]),0},
1110{"timeStamping","Time Stamping",NID_time_stamp,8,&(lvalues[682]),0},
1111{"msCodeInd","Microsoft Individual Code Signing",NID_ms_code_ind,10,
1112 &(lvalues[690]),0},
1113{"msCodeCom","Microsoft Commercial Code Signing",NID_ms_code_com,10,
1114 &(lvalues[700]),0},
1115{"msCTLSign","Microsoft Trust List Signing",NID_ms_ctl_sign,10,
1116 &(lvalues[710]),0},
1117{"msSGC","Microsoft Server Gated Crypto",NID_ms_sgc,10,&(lvalues[720]),0},
1118{"msEFS","Microsoft Encrypted File System",NID_ms_efs,10,
1119 &(lvalues[730]),0},
1120{"nsSGC","Netscape Server Gated Crypto",NID_ns_sgc,9,&(lvalues[740]),0},
1121{"deltaCRL","X509v3 Delta CRL Indicator",NID_delta_crl,3,
1122 &(lvalues[749]),0},
1123{"CRLReason","X509v3 CRL Reason Code",NID_crl_reason,3,&(lvalues[752]),0},
1124{"invalidityDate","Invalidity Date",NID_invalidity_date,3,
1125 &(lvalues[755]),0},
1126{"SXNetID","Strong Extranet ID",NID_sxnet,5,&(lvalues[758]),0},
1127{"PBE-SHA1-RC4-128","pbeWithSHA1And128BitRC4",
1128 NID_pbe_WithSHA1And128BitRC4,10,&(lvalues[763]),0},
1129{"PBE-SHA1-RC4-40","pbeWithSHA1And40BitRC4",
1130 NID_pbe_WithSHA1And40BitRC4,10,&(lvalues[773]),0},
1131{"PBE-SHA1-3DES","pbeWithSHA1And3-KeyTripleDES-CBC",
1132 NID_pbe_WithSHA1And3_Key_TripleDES_CBC,10,&(lvalues[783]),0},
1133{"PBE-SHA1-2DES","pbeWithSHA1And2-KeyTripleDES-CBC",
1134 NID_pbe_WithSHA1And2_Key_TripleDES_CBC,10,&(lvalues[793]),0},
1135{"PBE-SHA1-RC2-128","pbeWithSHA1And128BitRC2-CBC",
1136 NID_pbe_WithSHA1And128BitRC2_CBC,10,&(lvalues[803]),0},
1137{"PBE-SHA1-RC2-40","pbeWithSHA1And40BitRC2-CBC",
1138 NID_pbe_WithSHA1And40BitRC2_CBC,10,&(lvalues[813]),0},
1139{"keyBag","keyBag",NID_keyBag,11,&(lvalues[823]),0},
1140{"pkcs8ShroudedKeyBag","pkcs8ShroudedKeyBag",NID_pkcs8ShroudedKeyBag,
1141 11,&(lvalues[834]),0},
1142{"certBag","certBag",NID_certBag,11,&(lvalues[845]),0},
1143{"crlBag","crlBag",NID_crlBag,11,&(lvalues[856]),0},
1144{"secretBag","secretBag",NID_secretBag,11,&(lvalues[867]),0},
1145{"safeContentsBag","safeContentsBag",NID_safeContentsBag,11,
1146 &(lvalues[878]),0},
1147{"friendlyName","friendlyName",NID_friendlyName,9,&(lvalues[889]),0},
1148{"localKeyID","localKeyID",NID_localKeyID,9,&(lvalues[898]),0},
1149{"x509Certificate","x509Certificate",NID_x509Certificate,10,
1150 &(lvalues[907]),0},
1151{"sdsiCertificate","sdsiCertificate",NID_sdsiCertificate,10,
1152 &(lvalues[917]),0},
1153{"x509Crl","x509Crl",NID_x509Crl,10,&(lvalues[927]),0},
1154{"PBES2","PBES2",NID_pbes2,9,&(lvalues[937]),0},
1155{"PBMAC1","PBMAC1",NID_pbmac1,9,&(lvalues[946]),0},
1156{"hmacWithSHA1","hmacWithSHA1",NID_hmacWithSHA1,8,&(lvalues[955]),0},
1157{"id-qt-cps","Policy Qualifier CPS",NID_id_qt_cps,8,&(lvalues[963]),0},
1158{"id-qt-unotice","Policy Qualifier User Notice",NID_id_qt_unotice,8,
1159 &(lvalues[971]),0},
1160{"RC2-64-CBC","rc2-64-cbc",NID_rc2_64_cbc,0,NULL,0},
1161{"SMIME-CAPS","S/MIME Capabilities",NID_SMIMECapabilities,9,
1162 &(lvalues[979]),0},
1163{"PBE-MD2-RC2-64","pbeWithMD2AndRC2-CBC",NID_pbeWithMD2AndRC2_CBC,9,
1164 &(lvalues[988]),0},
1165{"PBE-MD5-RC2-64","pbeWithMD5AndRC2-CBC",NID_pbeWithMD5AndRC2_CBC,9,
1166 &(lvalues[997]),0},
1167{"PBE-SHA1-DES","pbeWithSHA1AndDES-CBC",NID_pbeWithSHA1AndDES_CBC,9,
1168 &(lvalues[1006]),0},
1169{"msExtReq","Microsoft Extension Request",NID_ms_ext_req,10,
1170 &(lvalues[1015]),0},
1171{"extReq","Extension Request",NID_ext_req,9,&(lvalues[1025]),0},
1172{"name","name",NID_name,3,&(lvalues[1034]),0},
1173{"dnQualifier","dnQualifier",NID_dnQualifier,3,&(lvalues[1037]),0},
1174{"id-pe","id-pe",NID_id_pe,7,&(lvalues[1040]),0},
1175{"id-ad","id-ad",NID_id_ad,7,&(lvalues[1047]),0},
1176{"authorityInfoAccess","Authority Information Access",NID_info_access,
1177 8,&(lvalues[1054]),0},
1178{"OCSP","OCSP",NID_ad_OCSP,8,&(lvalues[1062]),0},
1179{"caIssuers","CA Issuers",NID_ad_ca_issuers,8,&(lvalues[1070]),0},
1180{"OCSPSigning","OCSP Signing",NID_OCSP_sign,8,&(lvalues[1078]),0},
1181{"ISO","iso",NID_iso,1,&(lvalues[1086]),0},
1182{"member-body","ISO Member Body",NID_member_body,1,&(lvalues[1087]),0},
1183{"ISO-US","ISO US Member Body",NID_ISO_US,3,&(lvalues[1088]),0},
1184{"X9-57","X9.57",NID_X9_57,5,&(lvalues[1091]),0},
1185{"X9cm","X9.57 CM ?",NID_X9cm,6,&(lvalues[1096]),0},
1186{"pkcs1","pkcs1",NID_pkcs1,8,&(lvalues[1102]),0},
1187{"pkcs5","pkcs5",NID_pkcs5,8,&(lvalues[1110]),0},
1188{"SMIME","S/MIME",NID_SMIME,9,&(lvalues[1118]),0},
1189{"id-smime-mod","id-smime-mod",NID_id_smime_mod,10,&(lvalues[1127]),0},
1190{"id-smime-ct","id-smime-ct",NID_id_smime_ct,10,&(lvalues[1137]),0},
1191{"id-smime-aa","id-smime-aa",NID_id_smime_aa,10,&(lvalues[1147]),0},
1192{"id-smime-alg","id-smime-alg",NID_id_smime_alg,10,&(lvalues[1157]),0},
1193{"id-smime-cd","id-smime-cd",NID_id_smime_cd,10,&(lvalues[1167]),0},
1194{"id-smime-spq","id-smime-spq",NID_id_smime_spq,10,&(lvalues[1177]),0},
1195{"id-smime-cti","id-smime-cti",NID_id_smime_cti,10,&(lvalues[1187]),0},
1196{"id-smime-mod-cms","id-smime-mod-cms",NID_id_smime_mod_cms,11,
1197 &(lvalues[1197]),0},
1198{"id-smime-mod-ess","id-smime-mod-ess",NID_id_smime_mod_ess,11,
1199 &(lvalues[1208]),0},
1200{"id-smime-mod-oid","id-smime-mod-oid",NID_id_smime_mod_oid,11,
1201 &(lvalues[1219]),0},
1202{"id-smime-mod-msg-v3","id-smime-mod-msg-v3",NID_id_smime_mod_msg_v3,
1203 11,&(lvalues[1230]),0},
1204{"id-smime-mod-ets-eSignature-88","id-smime-mod-ets-eSignature-88",
1205 NID_id_smime_mod_ets_eSignature_88,11,&(lvalues[1241]),0},
1206{"id-smime-mod-ets-eSignature-97","id-smime-mod-ets-eSignature-97",
1207 NID_id_smime_mod_ets_eSignature_97,11,&(lvalues[1252]),0},
1208{"id-smime-mod-ets-eSigPolicy-88","id-smime-mod-ets-eSigPolicy-88",
1209 NID_id_smime_mod_ets_eSigPolicy_88,11,&(lvalues[1263]),0},
1210{"id-smime-mod-ets-eSigPolicy-97","id-smime-mod-ets-eSigPolicy-97",
1211 NID_id_smime_mod_ets_eSigPolicy_97,11,&(lvalues[1274]),0},
1212{"id-smime-ct-receipt","id-smime-ct-receipt",NID_id_smime_ct_receipt,
1213 11,&(lvalues[1285]),0},
1214{"id-smime-ct-authData","id-smime-ct-authData",
1215 NID_id_smime_ct_authData,11,&(lvalues[1296]),0},
1216{"id-smime-ct-publishCert","id-smime-ct-publishCert",
1217 NID_id_smime_ct_publishCert,11,&(lvalues[1307]),0},
1218{"id-smime-ct-TSTInfo","id-smime-ct-TSTInfo",NID_id_smime_ct_TSTInfo,
1219 11,&(lvalues[1318]),0},
1220{"id-smime-ct-TDTInfo","id-smime-ct-TDTInfo",NID_id_smime_ct_TDTInfo,
1221 11,&(lvalues[1329]),0},
1222{"id-smime-ct-contentInfo","id-smime-ct-contentInfo",
1223 NID_id_smime_ct_contentInfo,11,&(lvalues[1340]),0},
1224{"id-smime-ct-DVCSRequestData","id-smime-ct-DVCSRequestData",
1225 NID_id_smime_ct_DVCSRequestData,11,&(lvalues[1351]),0},
1226{"id-smime-ct-DVCSResponseData","id-smime-ct-DVCSResponseData",
1227 NID_id_smime_ct_DVCSResponseData,11,&(lvalues[1362]),0},
1228{"id-smime-aa-receiptRequest","id-smime-aa-receiptRequest",
1229 NID_id_smime_aa_receiptRequest,11,&(lvalues[1373]),0},
1230{"id-smime-aa-securityLabel","id-smime-aa-securityLabel",
1231 NID_id_smime_aa_securityLabel,11,&(lvalues[1384]),0},
1232{"id-smime-aa-mlExpandHistory","id-smime-aa-mlExpandHistory",
1233 NID_id_smime_aa_mlExpandHistory,11,&(lvalues[1395]),0},
1234{"id-smime-aa-contentHint","id-smime-aa-contentHint",
1235 NID_id_smime_aa_contentHint,11,&(lvalues[1406]),0},
1236{"id-smime-aa-msgSigDigest","id-smime-aa-msgSigDigest",
1237 NID_id_smime_aa_msgSigDigest,11,&(lvalues[1417]),0},
1238{"id-smime-aa-encapContentType","id-smime-aa-encapContentType",
1239 NID_id_smime_aa_encapContentType,11,&(lvalues[1428]),0},
1240{"id-smime-aa-contentIdentifier","id-smime-aa-contentIdentifier",
1241 NID_id_smime_aa_contentIdentifier,11,&(lvalues[1439]),0},
1242{"id-smime-aa-macValue","id-smime-aa-macValue",
1243 NID_id_smime_aa_macValue,11,&(lvalues[1450]),0},
1244{"id-smime-aa-equivalentLabels","id-smime-aa-equivalentLabels",
1245 NID_id_smime_aa_equivalentLabels,11,&(lvalues[1461]),0},
1246{"id-smime-aa-contentReference","id-smime-aa-contentReference",
1247 NID_id_smime_aa_contentReference,11,&(lvalues[1472]),0},
1248{"id-smime-aa-encrypKeyPref","id-smime-aa-encrypKeyPref",
1249 NID_id_smime_aa_encrypKeyPref,11,&(lvalues[1483]),0},
1250{"id-smime-aa-signingCertificate","id-smime-aa-signingCertificate",
1251 NID_id_smime_aa_signingCertificate,11,&(lvalues[1494]),0},
1252{"id-smime-aa-smimeEncryptCerts","id-smime-aa-smimeEncryptCerts",
1253 NID_id_smime_aa_smimeEncryptCerts,11,&(lvalues[1505]),0},
1254{"id-smime-aa-timeStampToken","id-smime-aa-timeStampToken",
1255 NID_id_smime_aa_timeStampToken,11,&(lvalues[1516]),0},
1256{"id-smime-aa-ets-sigPolicyId","id-smime-aa-ets-sigPolicyId",
1257 NID_id_smime_aa_ets_sigPolicyId,11,&(lvalues[1527]),0},
1258{"id-smime-aa-ets-commitmentType","id-smime-aa-ets-commitmentType",
1259 NID_id_smime_aa_ets_commitmentType,11,&(lvalues[1538]),0},
1260{"id-smime-aa-ets-signerLocation","id-smime-aa-ets-signerLocation",
1261 NID_id_smime_aa_ets_signerLocation,11,&(lvalues[1549]),0},
1262{"id-smime-aa-ets-signerAttr","id-smime-aa-ets-signerAttr",
1263 NID_id_smime_aa_ets_signerAttr,11,&(lvalues[1560]),0},
1264{"id-smime-aa-ets-otherSigCert","id-smime-aa-ets-otherSigCert",
1265 NID_id_smime_aa_ets_otherSigCert,11,&(lvalues[1571]),0},
1266{"id-smime-aa-ets-contentTimestamp",
1267 "id-smime-aa-ets-contentTimestamp",
1268 NID_id_smime_aa_ets_contentTimestamp,11,&(lvalues[1582]),0},
1269{"id-smime-aa-ets-CertificateRefs","id-smime-aa-ets-CertificateRefs",
1270 NID_id_smime_aa_ets_CertificateRefs,11,&(lvalues[1593]),0},
1271{"id-smime-aa-ets-RevocationRefs","id-smime-aa-ets-RevocationRefs",
1272 NID_id_smime_aa_ets_RevocationRefs,11,&(lvalues[1604]),0},
1273{"id-smime-aa-ets-certValues","id-smime-aa-ets-certValues",
1274 NID_id_smime_aa_ets_certValues,11,&(lvalues[1615]),0},
1275{"id-smime-aa-ets-revocationValues",
1276 "id-smime-aa-ets-revocationValues",
1277 NID_id_smime_aa_ets_revocationValues,11,&(lvalues[1626]),0},
1278{"id-smime-aa-ets-escTimeStamp","id-smime-aa-ets-escTimeStamp",
1279 NID_id_smime_aa_ets_escTimeStamp,11,&(lvalues[1637]),0},
1280{"id-smime-aa-ets-certCRLTimestamp",
1281 "id-smime-aa-ets-certCRLTimestamp",
1282 NID_id_smime_aa_ets_certCRLTimestamp,11,&(lvalues[1648]),0},
1283{"id-smime-aa-ets-archiveTimeStamp",
1284 "id-smime-aa-ets-archiveTimeStamp",
1285 NID_id_smime_aa_ets_archiveTimeStamp,11,&(lvalues[1659]),0},
1286{"id-smime-aa-signatureType","id-smime-aa-signatureType",
1287 NID_id_smime_aa_signatureType,11,&(lvalues[1670]),0},
1288{"id-smime-aa-dvcs-dvc","id-smime-aa-dvcs-dvc",
1289 NID_id_smime_aa_dvcs_dvc,11,&(lvalues[1681]),0},
1290{"id-smime-alg-ESDHwith3DES","id-smime-alg-ESDHwith3DES",
1291 NID_id_smime_alg_ESDHwith3DES,11,&(lvalues[1692]),0},
1292{"id-smime-alg-ESDHwithRC2","id-smime-alg-ESDHwithRC2",
1293 NID_id_smime_alg_ESDHwithRC2,11,&(lvalues[1703]),0},
1294{"id-smime-alg-3DESwrap","id-smime-alg-3DESwrap",
1295 NID_id_smime_alg_3DESwrap,11,&(lvalues[1714]),0},
1296{"id-smime-alg-RC2wrap","id-smime-alg-RC2wrap",
1297 NID_id_smime_alg_RC2wrap,11,&(lvalues[1725]),0},
1298{"id-smime-alg-ESDH","id-smime-alg-ESDH",NID_id_smime_alg_ESDH,11,
1299 &(lvalues[1736]),0},
1300{"id-smime-alg-CMS3DESwrap","id-smime-alg-CMS3DESwrap",
1301 NID_id_smime_alg_CMS3DESwrap,11,&(lvalues[1747]),0},
1302{"id-smime-alg-CMSRC2wrap","id-smime-alg-CMSRC2wrap",
1303 NID_id_smime_alg_CMSRC2wrap,11,&(lvalues[1758]),0},
1304{"id-smime-cd-ldap","id-smime-cd-ldap",NID_id_smime_cd_ldap,11,
1305 &(lvalues[1769]),0},
1306{"id-smime-spq-ets-sqt-uri","id-smime-spq-ets-sqt-uri",
1307 NID_id_smime_spq_ets_sqt_uri,11,&(lvalues[1780]),0},
1308{"id-smime-spq-ets-sqt-unotice","id-smime-spq-ets-sqt-unotice",
1309 NID_id_smime_spq_ets_sqt_unotice,11,&(lvalues[1791]),0},
1310{"id-smime-cti-ets-proofOfOrigin","id-smime-cti-ets-proofOfOrigin",
1311 NID_id_smime_cti_ets_proofOfOrigin,11,&(lvalues[1802]),0},
1312{"id-smime-cti-ets-proofOfReceipt","id-smime-cti-ets-proofOfReceipt",
1313 NID_id_smime_cti_ets_proofOfReceipt,11,&(lvalues[1813]),0},
1314{"id-smime-cti-ets-proofOfDelivery",
1315 "id-smime-cti-ets-proofOfDelivery",
1316 NID_id_smime_cti_ets_proofOfDelivery,11,&(lvalues[1824]),0},
1317{"id-smime-cti-ets-proofOfSender","id-smime-cti-ets-proofOfSender",
1318 NID_id_smime_cti_ets_proofOfSender,11,&(lvalues[1835]),0},
1319{"id-smime-cti-ets-proofOfApproval",
1320 "id-smime-cti-ets-proofOfApproval",
1321 NID_id_smime_cti_ets_proofOfApproval,11,&(lvalues[1846]),0},
1322{"id-smime-cti-ets-proofOfCreation",
1323 "id-smime-cti-ets-proofOfCreation",
1324 NID_id_smime_cti_ets_proofOfCreation,11,&(lvalues[1857]),0},
1325{"MD4","md4",NID_md4,8,&(lvalues[1868]),0},
1326{"id-pkix-mod","id-pkix-mod",NID_id_pkix_mod,7,&(lvalues[1876]),0},
1327{"id-qt","id-qt",NID_id_qt,7,&(lvalues[1883]),0},
1328{"id-it","id-it",NID_id_it,7,&(lvalues[1890]),0},
1329{"id-pkip","id-pkip",NID_id_pkip,7,&(lvalues[1897]),0},
1330{"id-alg","id-alg",NID_id_alg,7,&(lvalues[1904]),0},
1331{"id-cmc","id-cmc",NID_id_cmc,7,&(lvalues[1911]),0},
1332{"id-on","id-on",NID_id_on,7,&(lvalues[1918]),0},
1333{"id-pda","id-pda",NID_id_pda,7,&(lvalues[1925]),0},
1334{"id-aca","id-aca",NID_id_aca,7,&(lvalues[1932]),0},
1335{"id-qcs","id-qcs",NID_id_qcs,7,&(lvalues[1939]),0},
1336{"id-cct","id-cct",NID_id_cct,7,&(lvalues[1946]),0},
1337{"id-pkix1-explicit-88","id-pkix1-explicit-88",
1338 NID_id_pkix1_explicit_88,8,&(lvalues[1953]),0},
1339{"id-pkix1-implicit-88","id-pkix1-implicit-88",
1340 NID_id_pkix1_implicit_88,8,&(lvalues[1961]),0},
1341{"id-pkix1-explicit-93","id-pkix1-explicit-93",
1342 NID_id_pkix1_explicit_93,8,&(lvalues[1969]),0},
1343{"id-pkix1-implicit-93","id-pkix1-implicit-93",
1344 NID_id_pkix1_implicit_93,8,&(lvalues[1977]),0},
1345{"id-mod-crmf","id-mod-crmf",NID_id_mod_crmf,8,&(lvalues[1985]),0},
1346{"id-mod-cmc","id-mod-cmc",NID_id_mod_cmc,8,&(lvalues[1993]),0},
1347{"id-mod-kea-profile-88","id-mod-kea-profile-88",
1348 NID_id_mod_kea_profile_88,8,&(lvalues[2001]),0},
1349{"id-mod-kea-profile-93","id-mod-kea-profile-93",
1350 NID_id_mod_kea_profile_93,8,&(lvalues[2009]),0},
1351{"id-mod-cmp","id-mod-cmp",NID_id_mod_cmp,8,&(lvalues[2017]),0},
1352{"id-mod-qualified-cert-88","id-mod-qualified-cert-88",
1353 NID_id_mod_qualified_cert_88,8,&(lvalues[2025]),0},
1354{"id-mod-qualified-cert-93","id-mod-qualified-cert-93",
1355 NID_id_mod_qualified_cert_93,8,&(lvalues[2033]),0},
1356{"id-mod-attribute-cert","id-mod-attribute-cert",
1357 NID_id_mod_attribute_cert,8,&(lvalues[2041]),0},
1358{"id-mod-timestamp-protocol","id-mod-timestamp-protocol",
1359 NID_id_mod_timestamp_protocol,8,&(lvalues[2049]),0},
1360{"id-mod-ocsp","id-mod-ocsp",NID_id_mod_ocsp,8,&(lvalues[2057]),0},
1361{"id-mod-dvcs","id-mod-dvcs",NID_id_mod_dvcs,8,&(lvalues[2065]),0},
1362{"id-mod-cmp2000","id-mod-cmp2000",NID_id_mod_cmp2000,8,
1363 &(lvalues[2073]),0},
1364{"biometricInfo","Biometric Info",NID_biometricInfo,8,&(lvalues[2081]),0},
1365{"qcStatements","qcStatements",NID_qcStatements,8,&(lvalues[2089]),0},
1366{"ac-auditEntity","ac-auditEntity",NID_ac_auditEntity,8,
1367 &(lvalues[2097]),0},
1368{"ac-targeting","ac-targeting",NID_ac_targeting,8,&(lvalues[2105]),0},
1369{"aaControls","aaControls",NID_aaControls,8,&(lvalues[2113]),0},
1370{"sbgp-ipAddrBlock","sbgp-ipAddrBlock",NID_sbgp_ipAddrBlock,8,
1371 &(lvalues[2121]),0},
1372{"sbgp-autonomousSysNum","sbgp-autonomousSysNum",
1373 NID_sbgp_autonomousSysNum,8,&(lvalues[2129]),0},
1374{"sbgp-routerIdentifier","sbgp-routerIdentifier",
1375 NID_sbgp_routerIdentifier,8,&(lvalues[2137]),0},
1376{"textNotice","textNotice",NID_textNotice,8,&(lvalues[2145]),0},
1377{"ipsecEndSystem","IPSec End System",NID_ipsecEndSystem,8,
1378 &(lvalues[2153]),0},
1379{"ipsecTunnel","IPSec Tunnel",NID_ipsecTunnel,8,&(lvalues[2161]),0},
1380{"ipsecUser","IPSec User",NID_ipsecUser,8,&(lvalues[2169]),0},
1381{"DVCS","dvcs",NID_dvcs,8,&(lvalues[2177]),0},
1382{"id-it-caProtEncCert","id-it-caProtEncCert",NID_id_it_caProtEncCert,
1383 8,&(lvalues[2185]),0},
1384{"id-it-signKeyPairTypes","id-it-signKeyPairTypes",
1385 NID_id_it_signKeyPairTypes,8,&(lvalues[2193]),0},
1386{"id-it-encKeyPairTypes","id-it-encKeyPairTypes",
1387 NID_id_it_encKeyPairTypes,8,&(lvalues[2201]),0},
1388{"id-it-preferredSymmAlg","id-it-preferredSymmAlg",
1389 NID_id_it_preferredSymmAlg,8,&(lvalues[2209]),0},
1390{"id-it-caKeyUpdateInfo","id-it-caKeyUpdateInfo",
1391 NID_id_it_caKeyUpdateInfo,8,&(lvalues[2217]),0},
1392{"id-it-currentCRL","id-it-currentCRL",NID_id_it_currentCRL,8,
1393 &(lvalues[2225]),0},
1394{"id-it-unsupportedOIDs","id-it-unsupportedOIDs",
1395 NID_id_it_unsupportedOIDs,8,&(lvalues[2233]),0},
1396{"id-it-subscriptionRequest","id-it-subscriptionRequest",
1397 NID_id_it_subscriptionRequest,8,&(lvalues[2241]),0},
1398{"id-it-subscriptionResponse","id-it-subscriptionResponse",
1399 NID_id_it_subscriptionResponse,8,&(lvalues[2249]),0},
1400{"id-it-keyPairParamReq","id-it-keyPairParamReq",
1401 NID_id_it_keyPairParamReq,8,&(lvalues[2257]),0},
1402{"id-it-keyPairParamRep","id-it-keyPairParamRep",
1403 NID_id_it_keyPairParamRep,8,&(lvalues[2265]),0},
1404{"id-it-revPassphrase","id-it-revPassphrase",NID_id_it_revPassphrase,
1405 8,&(lvalues[2273]),0},
1406{"id-it-implicitConfirm","id-it-implicitConfirm",
1407 NID_id_it_implicitConfirm,8,&(lvalues[2281]),0},
1408{"id-it-confirmWaitTime","id-it-confirmWaitTime",
1409 NID_id_it_confirmWaitTime,8,&(lvalues[2289]),0},
1410{"id-it-origPKIMessage","id-it-origPKIMessage",
1411 NID_id_it_origPKIMessage,8,&(lvalues[2297]),0},
1412{"id-regCtrl","id-regCtrl",NID_id_regCtrl,8,&(lvalues[2305]),0},
1413{"id-regInfo","id-regInfo",NID_id_regInfo,8,&(lvalues[2313]),0},
1414{"id-regCtrl-regToken","id-regCtrl-regToken",NID_id_regCtrl_regToken,
1415 9,&(lvalues[2321]),0},
1416{"id-regCtrl-authenticator","id-regCtrl-authenticator",
1417 NID_id_regCtrl_authenticator,9,&(lvalues[2330]),0},
1418{"id-regCtrl-pkiPublicationInfo","id-regCtrl-pkiPublicationInfo",
1419 NID_id_regCtrl_pkiPublicationInfo,9,&(lvalues[2339]),0},
1420{"id-regCtrl-pkiArchiveOptions","id-regCtrl-pkiArchiveOptions",
1421 NID_id_regCtrl_pkiArchiveOptions,9,&(lvalues[2348]),0},
1422{"id-regCtrl-oldCertID","id-regCtrl-oldCertID",
1423 NID_id_regCtrl_oldCertID,9,&(lvalues[2357]),0},
1424{"id-regCtrl-protocolEncrKey","id-regCtrl-protocolEncrKey",
1425 NID_id_regCtrl_protocolEncrKey,9,&(lvalues[2366]),0},
1426{"id-regInfo-utf8Pairs","id-regInfo-utf8Pairs",
1427 NID_id_regInfo_utf8Pairs,9,&(lvalues[2375]),0},
1428{"id-regInfo-certReq","id-regInfo-certReq",NID_id_regInfo_certReq,9,
1429 &(lvalues[2384]),0},
1430{"id-alg-des40","id-alg-des40",NID_id_alg_des40,8,&(lvalues[2393]),0},
1431{"id-alg-noSignature","id-alg-noSignature",NID_id_alg_noSignature,8,
1432 &(lvalues[2401]),0},
1433{"id-alg-dh-sig-hmac-sha1","id-alg-dh-sig-hmac-sha1",
1434 NID_id_alg_dh_sig_hmac_sha1,8,&(lvalues[2409]),0},
1435{"id-alg-dh-pop","id-alg-dh-pop",NID_id_alg_dh_pop,8,&(lvalues[2417]),0},
1436{"id-cmc-statusInfo","id-cmc-statusInfo",NID_id_cmc_statusInfo,8,
1437 &(lvalues[2425]),0},
1438{"id-cmc-identification","id-cmc-identification",
1439 NID_id_cmc_identification,8,&(lvalues[2433]),0},
1440{"id-cmc-identityProof","id-cmc-identityProof",
1441 NID_id_cmc_identityProof,8,&(lvalues[2441]),0},
1442{"id-cmc-dataReturn","id-cmc-dataReturn",NID_id_cmc_dataReturn,8,
1443 &(lvalues[2449]),0},
1444{"id-cmc-transactionId","id-cmc-transactionId",
1445 NID_id_cmc_transactionId,8,&(lvalues[2457]),0},
1446{"id-cmc-senderNonce","id-cmc-senderNonce",NID_id_cmc_senderNonce,8,
1447 &(lvalues[2465]),0},
1448{"id-cmc-recipientNonce","id-cmc-recipientNonce",
1449 NID_id_cmc_recipientNonce,8,&(lvalues[2473]),0},
1450{"id-cmc-addExtensions","id-cmc-addExtensions",
1451 NID_id_cmc_addExtensions,8,&(lvalues[2481]),0},
1452{"id-cmc-encryptedPOP","id-cmc-encryptedPOP",NID_id_cmc_encryptedPOP,
1453 8,&(lvalues[2489]),0},
1454{"id-cmc-decryptedPOP","id-cmc-decryptedPOP",NID_id_cmc_decryptedPOP,
1455 8,&(lvalues[2497]),0},
1456{"id-cmc-lraPOPWitness","id-cmc-lraPOPWitness",
1457 NID_id_cmc_lraPOPWitness,8,&(lvalues[2505]),0},
1458{"id-cmc-getCert","id-cmc-getCert",NID_id_cmc_getCert,8,
1459 &(lvalues[2513]),0},
1460{"id-cmc-getCRL","id-cmc-getCRL",NID_id_cmc_getCRL,8,&(lvalues[2521]),0},
1461{"id-cmc-revokeRequest","id-cmc-revokeRequest",
1462 NID_id_cmc_revokeRequest,8,&(lvalues[2529]),0},
1463{"id-cmc-regInfo","id-cmc-regInfo",NID_id_cmc_regInfo,8,
1464 &(lvalues[2537]),0},
1465{"id-cmc-responseInfo","id-cmc-responseInfo",NID_id_cmc_responseInfo,
1466 8,&(lvalues[2545]),0},
1467{"id-cmc-queryPending","id-cmc-queryPending",NID_id_cmc_queryPending,
1468 8,&(lvalues[2553]),0},
1469{"id-cmc-popLinkRandom","id-cmc-popLinkRandom",
1470 NID_id_cmc_popLinkRandom,8,&(lvalues[2561]),0},
1471{"id-cmc-popLinkWitness","id-cmc-popLinkWitness",
1472 NID_id_cmc_popLinkWitness,8,&(lvalues[2569]),0},
1473{"id-cmc-confirmCertAcceptance","id-cmc-confirmCertAcceptance",
1474 NID_id_cmc_confirmCertAcceptance,8,&(lvalues[2577]),0},
1475{"id-on-personalData","id-on-personalData",NID_id_on_personalData,8,
1476 &(lvalues[2585]),0},
1477{"id-pda-dateOfBirth","id-pda-dateOfBirth",NID_id_pda_dateOfBirth,8,
1478 &(lvalues[2593]),0},
1479{"id-pda-placeOfBirth","id-pda-placeOfBirth",NID_id_pda_placeOfBirth,
1480 8,&(lvalues[2601]),0},
1481{NULL,NULL,NID_undef,0,NULL,0},
1482{"id-pda-gender","id-pda-gender",NID_id_pda_gender,8,&(lvalues[2609]),0},
1483{"id-pda-countryOfCitizenship","id-pda-countryOfCitizenship",
1484 NID_id_pda_countryOfCitizenship,8,&(lvalues[2617]),0},
1485{"id-pda-countryOfResidence","id-pda-countryOfResidence",
1486 NID_id_pda_countryOfResidence,8,&(lvalues[2625]),0},
1487{"id-aca-authenticationInfo","id-aca-authenticationInfo",
1488 NID_id_aca_authenticationInfo,8,&(lvalues[2633]),0},
1489{"id-aca-accessIdentity","id-aca-accessIdentity",
1490 NID_id_aca_accessIdentity,8,&(lvalues[2641]),0},
1491{"id-aca-chargingIdentity","id-aca-chargingIdentity",
1492 NID_id_aca_chargingIdentity,8,&(lvalues[2649]),0},
1493{"id-aca-group","id-aca-group",NID_id_aca_group,8,&(lvalues[2657]),0},
1494{"id-aca-role","id-aca-role",NID_id_aca_role,8,&(lvalues[2665]),0},
1495{"id-qcs-pkixQCSyntax-v1","id-qcs-pkixQCSyntax-v1",
1496 NID_id_qcs_pkixQCSyntax_v1,8,&(lvalues[2673]),0},
1497{"id-cct-crs","id-cct-crs",NID_id_cct_crs,8,&(lvalues[2681]),0},
1498{"id-cct-PKIData","id-cct-PKIData",NID_id_cct_PKIData,8,
1499 &(lvalues[2689]),0},
1500{"id-cct-PKIResponse","id-cct-PKIResponse",NID_id_cct_PKIResponse,8,
1501 &(lvalues[2697]),0},
1502{"ad_timestamping","AD Time Stamping",NID_ad_timeStamping,8,
1503 &(lvalues[2705]),0},
1504{"AD_DVCS","ad dvcs",NID_ad_dvcs,8,&(lvalues[2713]),0},
1505{"basicOCSPResponse","Basic OCSP Response",NID_id_pkix_OCSP_basic,9,
1506 &(lvalues[2721]),0},
1507{"Nonce","OCSP Nonce",NID_id_pkix_OCSP_Nonce,9,&(lvalues[2730]),0},
1508{"CrlID","OCSP CRL ID",NID_id_pkix_OCSP_CrlID,9,&(lvalues[2739]),0},
1509{"acceptableResponses","Acceptable OCSP Responses",
1510 NID_id_pkix_OCSP_acceptableResponses,9,&(lvalues[2748]),0},
1511{"noCheck","OCSP No Check",NID_id_pkix_OCSP_noCheck,9,&(lvalues[2757]),0},
1512{"archiveCutoff","OCSP Archive Cutoff",NID_id_pkix_OCSP_archiveCutoff,
1513 9,&(lvalues[2766]),0},
1514{"serviceLocator","OCSP Service Locator",
1515 NID_id_pkix_OCSP_serviceLocator,9,&(lvalues[2775]),0},
1516{"extendedStatus","Extended OCSP Status",
1517 NID_id_pkix_OCSP_extendedStatus,9,&(lvalues[2784]),0},
1518{"valid","valid",NID_id_pkix_OCSP_valid,9,&(lvalues[2793]),0},
1519{"path","path",NID_id_pkix_OCSP_path,9,&(lvalues[2802]),0},
1520{"trustRoot","Trust Root",NID_id_pkix_OCSP_trustRoot,9,
1521 &(lvalues[2811]),0},
1522{"algorithm","algorithm",NID_algorithm,4,&(lvalues[2820]),0},
1523{"rsaSignature","rsaSignature",NID_rsaSignature,5,&(lvalues[2824]),0},
1524{"X500algorithms","directory services - algorithms",
1525 NID_X500algorithms,2,&(lvalues[2829]),0},
1526{"ORG","org",NID_org,1,&(lvalues[2831]),0},
1527{"DOD","dod",NID_dod,2,&(lvalues[2832]),0},
1528{"IANA","iana",NID_iana,3,&(lvalues[2834]),0},
1529{"directory","Directory",NID_Directory,4,&(lvalues[2837]),0},
1530{"mgmt","Management",NID_Management,4,&(lvalues[2841]),0},
1531{"experimental","Experimental",NID_Experimental,4,&(lvalues[2845]),0},
1532{"private","Private",NID_Private,4,&(lvalues[2849]),0},
1533{"security","Security",NID_Security,4,&(lvalues[2853]),0},
1534{"snmpv2","SNMPv2",NID_SNMPv2,4,&(lvalues[2857]),0},
1535{"Mail","Mail",NID_Mail,4,&(lvalues[2861]),0},
1536{"enterprises","Enterprises",NID_Enterprises,5,&(lvalues[2865]),0},
1537{"dcobject","dcObject",NID_dcObject,9,&(lvalues[2870]),0},
1538{"DC","domainComponent",NID_domainComponent,10,&(lvalues[2879]),0},
1539{"domain","Domain",NID_Domain,10,&(lvalues[2889]),0},
1540{"NULL","NULL",NID_joint_iso_ccitt,1,&(lvalues[2899]),0},
1541{"selected-attribute-types","Selected Attribute Types",
1542 NID_selected_attribute_types,3,&(lvalues[2900]),0},
1543{"clearance","clearance",NID_clearance,4,&(lvalues[2903]),0},
1544{"RSA-MD4","md4WithRSAEncryption",NID_md4WithRSAEncryption,9,
1545 &(lvalues[2907]),0},
1546{"ac-proxying","ac-proxying",NID_ac_proxying,8,&(lvalues[2916]),0},
1547{"subjectInfoAccess","Subject Information Access",NID_sinfo_access,8,
1548 &(lvalues[2924]),0},
1549{"id-aca-encAttrs","id-aca-encAttrs",NID_id_aca_encAttrs,8,
1550 &(lvalues[2932]),0},
1551{"role","role",NID_role,3,&(lvalues[2940]),0},
1552{"policyConstraints","X509v3 Policy Constraints",
1553 NID_policy_constraints,3,&(lvalues[2943]),0},
1554{"targetInformation","X509v3 AC Targeting",NID_target_information,3,
1555 &(lvalues[2946]),0},
1556{"noRevAvail","X509v3 No Revocation Available",NID_no_rev_avail,3,
1557 &(lvalues[2949]),0},
1558{"NULL","NULL",NID_ccitt,1,&(lvalues[2952]),0},
1559{"ansi-X9-62","ANSI X9.62",NID_ansi_X9_62,5,&(lvalues[2953]),0},
1560{"prime-field","prime-field",NID_X9_62_prime_field,7,&(lvalues[2958]),0},
1561{"characteristic-two-field","characteristic-two-field",
1562 NID_X9_62_characteristic_two_field,7,&(lvalues[2965]),0},
1563{"id-ecPublicKey","id-ecPublicKey",NID_X9_62_id_ecPublicKey,7,
1564 &(lvalues[2972]),0},
1565{"prime192v1","prime192v1",NID_X9_62_prime192v1,8,&(lvalues[2979]),0},
1566{"prime192v2","prime192v2",NID_X9_62_prime192v2,8,&(lvalues[2987]),0},
1567{"prime192v3","prime192v3",NID_X9_62_prime192v3,8,&(lvalues[2995]),0},
1568{"prime239v1","prime239v1",NID_X9_62_prime239v1,8,&(lvalues[3003]),0},
1569{"prime239v2","prime239v2",NID_X9_62_prime239v2,8,&(lvalues[3011]),0},
1570{"prime239v3","prime239v3",NID_X9_62_prime239v3,8,&(lvalues[3019]),0},
1571{"prime256v1","prime256v1",NID_X9_62_prime256v1,8,&(lvalues[3027]),0},
1572{"ecdsa-with-SHA1","ecdsa-with-SHA1",NID_ecdsa_with_SHA1,7,
1573 &(lvalues[3035]),0},
1574{"CSPName","Microsoft CSP Name",NID_ms_csp_name,9,&(lvalues[3042]),0},
1575{"AES-128-ECB","aes-128-ecb",NID_aes_128_ecb,9,&(lvalues[3051]),0},
1576{"AES-128-CBC","aes-128-cbc",NID_aes_128_cbc,9,&(lvalues[3060]),0},
1577{"AES-128-OFB","aes-128-ofb",NID_aes_128_ofb128,9,&(lvalues[3069]),0},
1578{"AES-128-CFB","aes-128-cfb",NID_aes_128_cfb128,9,&(lvalues[3078]),0},
1579{"AES-192-ECB","aes-192-ecb",NID_aes_192_ecb,9,&(lvalues[3087]),0},
1580{"AES-192-CBC","aes-192-cbc",NID_aes_192_cbc,9,&(lvalues[3096]),0},
1581{"AES-192-OFB","aes-192-ofb",NID_aes_192_ofb128,9,&(lvalues[3105]),0},
1582{"AES-192-CFB","aes-192-cfb",NID_aes_192_cfb128,9,&(lvalues[3114]),0},
1583{"AES-256-ECB","aes-256-ecb",NID_aes_256_ecb,9,&(lvalues[3123]),0},
1584{"AES-256-CBC","aes-256-cbc",NID_aes_256_cbc,9,&(lvalues[3132]),0},
1585{"AES-256-OFB","aes-256-ofb",NID_aes_256_ofb128,9,&(lvalues[3141]),0},
1586{"AES-256-CFB","aes-256-cfb",NID_aes_256_cfb128,9,&(lvalues[3150]),0},
1587{"holdInstructionCode","Hold Instruction Code",
1588 NID_hold_instruction_code,3,&(lvalues[3159]),0},
1589{"holdInstructionNone","Hold Instruction None",
1590 NID_hold_instruction_none,7,&(lvalues[3162]),0},
1591{"holdInstructionCallIssuer","Hold Instruction Call Issuer",
1592 NID_hold_instruction_call_issuer,7,&(lvalues[3169]),0},
1593{"holdInstructionReject","Hold Instruction Reject",
1594 NID_hold_instruction_reject,7,&(lvalues[3176]),0},
1595{"data","data",NID_data,1,&(lvalues[3183]),0},
1596{"pss","pss",NID_pss,3,&(lvalues[3184]),0},
1597{"ucl","ucl",NID_ucl,7,&(lvalues[3187]),0},
1598{"pilot","pilot",NID_pilot,8,&(lvalues[3194]),0},
1599{"pilotAttributeType","pilotAttributeType",NID_pilotAttributeType,9,
1600 &(lvalues[3202]),0},
1601{"pilotAttributeSyntax","pilotAttributeSyntax",
1602 NID_pilotAttributeSyntax,9,&(lvalues[3211]),0},
1603{"pilotObjectClass","pilotObjectClass",NID_pilotObjectClass,9,
1604 &(lvalues[3220]),0},
1605{"pilotGroups","pilotGroups",NID_pilotGroups,9,&(lvalues[3229]),0},
1606{"iA5StringSyntax","iA5StringSyntax",NID_iA5StringSyntax,10,
1607 &(lvalues[3238]),0},
1608{"caseIgnoreIA5StringSyntax","caseIgnoreIA5StringSyntax",
1609 NID_caseIgnoreIA5StringSyntax,10,&(lvalues[3248]),0},
1610{"pilotObject","pilotObject",NID_pilotObject,10,&(lvalues[3258]),0},
1611{"pilotPerson","pilotPerson",NID_pilotPerson,10,&(lvalues[3268]),0},
1612{"account","account",NID_account,10,&(lvalues[3278]),0},
1613{"document","document",NID_document,10,&(lvalues[3288]),0},
1614{"room","room",NID_room,10,&(lvalues[3298]),0},
1615{"documentSeries","documentSeries",NID_documentSeries,10,
1616 &(lvalues[3308]),0},
1617{"rFC822localPart","rFC822localPart",NID_rFC822localPart,10,
1618 &(lvalues[3318]),0},
1619{"dNSDomain","dNSDomain",NID_dNSDomain,10,&(lvalues[3328]),0},
1620{"domainRelatedObject","domainRelatedObject",NID_domainRelatedObject,
1621 10,&(lvalues[3338]),0},
1622{"friendlyCountry","friendlyCountry",NID_friendlyCountry,10,
1623 &(lvalues[3348]),0},
1624{"simpleSecurityObject","simpleSecurityObject",
1625 NID_simpleSecurityObject,10,&(lvalues[3358]),0},
1626{"pilotOrganization","pilotOrganization",NID_pilotOrganization,10,
1627 &(lvalues[3368]),0},
1628{"pilotDSA","pilotDSA",NID_pilotDSA,10,&(lvalues[3378]),0},
1629{"qualityLabelledData","qualityLabelledData",NID_qualityLabelledData,
1630 10,&(lvalues[3388]),0},
1631{"UID","userId",NID_userId,10,&(lvalues[3398]),0},
1632{"textEncodedORAddress","textEncodedORAddress",
1633 NID_textEncodedORAddress,10,&(lvalues[3408]),0},
1634{"mail","rfc822Mailbox",NID_rfc822Mailbox,10,&(lvalues[3418]),0},
1635{"info","info",NID_info,10,&(lvalues[3428]),0},
1636{"favouriteDrink","favouriteDrink",NID_favouriteDrink,10,
1637 &(lvalues[3438]),0},
1638{"roomNumber","roomNumber",NID_roomNumber,10,&(lvalues[3448]),0},
1639{"photo","photo",NID_photo,10,&(lvalues[3458]),0},
1640{"userClass","userClass",NID_userClass,10,&(lvalues[3468]),0},
1641{"host","host",NID_host,10,&(lvalues[3478]),0},
1642{"manager","manager",NID_manager,10,&(lvalues[3488]),0},
1643{"documentIdentifier","documentIdentifier",NID_documentIdentifier,10,
1644 &(lvalues[3498]),0},
1645{"documentTitle","documentTitle",NID_documentTitle,10,&(lvalues[3508]),0},
1646{"documentVersion","documentVersion",NID_documentVersion,10,
1647 &(lvalues[3518]),0},
1648{"documentAuthor","documentAuthor",NID_documentAuthor,10,
1649 &(lvalues[3528]),0},
1650{"documentLocation","documentLocation",NID_documentLocation,10,
1651 &(lvalues[3538]),0},
1652{"homeTelephoneNumber","homeTelephoneNumber",NID_homeTelephoneNumber,
1653 10,&(lvalues[3548]),0},
1654{"secretary","secretary",NID_secretary,10,&(lvalues[3558]),0},
1655{"otherMailbox","otherMailbox",NID_otherMailbox,10,&(lvalues[3568]),0},
1656{"lastModifiedTime","lastModifiedTime",NID_lastModifiedTime,10,
1657 &(lvalues[3578]),0},
1658{"lastModifiedBy","lastModifiedBy",NID_lastModifiedBy,10,
1659 &(lvalues[3588]),0},
1660{"aRecord","aRecord",NID_aRecord,10,&(lvalues[3598]),0},
1661{"pilotAttributeType27","pilotAttributeType27",
1662 NID_pilotAttributeType27,10,&(lvalues[3608]),0},
1663{"mXRecord","mXRecord",NID_mXRecord,10,&(lvalues[3618]),0},
1664{"nSRecord","nSRecord",NID_nSRecord,10,&(lvalues[3628]),0},
1665{"sOARecord","sOARecord",NID_sOARecord,10,&(lvalues[3638]),0},
1666{"cNAMERecord","cNAMERecord",NID_cNAMERecord,10,&(lvalues[3648]),0},
1667{"associatedDomain","associatedDomain",NID_associatedDomain,10,
1668 &(lvalues[3658]),0},
1669{"associatedName","associatedName",NID_associatedName,10,
1670 &(lvalues[3668]),0},
1671{"homePostalAddress","homePostalAddress",NID_homePostalAddress,10,
1672 &(lvalues[3678]),0},
1673{"personalTitle","personalTitle",NID_personalTitle,10,&(lvalues[3688]),0},
1674{"mobileTelephoneNumber","mobileTelephoneNumber",
1675 NID_mobileTelephoneNumber,10,&(lvalues[3698]),0},
1676{"pagerTelephoneNumber","pagerTelephoneNumber",
1677 NID_pagerTelephoneNumber,10,&(lvalues[3708]),0},
1678{"friendlyCountryName","friendlyCountryName",NID_friendlyCountryName,
1679 10,&(lvalues[3718]),0},
1680{"organizationalStatus","organizationalStatus",
1681 NID_organizationalStatus,10,&(lvalues[3728]),0},
1682{"janetMailbox","janetMailbox",NID_janetMailbox,10,&(lvalues[3738]),0},
1683{"mailPreferenceOption","mailPreferenceOption",
1684 NID_mailPreferenceOption,10,&(lvalues[3748]),0},
1685{"buildingName","buildingName",NID_buildingName,10,&(lvalues[3758]),0},
1686{"dSAQuality","dSAQuality",NID_dSAQuality,10,&(lvalues[3768]),0},
1687{"singleLevelQuality","singleLevelQuality",NID_singleLevelQuality,10,
1688 &(lvalues[3778]),0},
1689{"subtreeMinimumQuality","subtreeMinimumQuality",
1690 NID_subtreeMinimumQuality,10,&(lvalues[3788]),0},
1691{"subtreeMaximumQuality","subtreeMaximumQuality",
1692 NID_subtreeMaximumQuality,10,&(lvalues[3798]),0},
1693{"personalSignature","personalSignature",NID_personalSignature,10,
1694 &(lvalues[3808]),0},
1695{"dITRedirect","dITRedirect",NID_dITRedirect,10,&(lvalues[3818]),0},
1696{"audio","audio",NID_audio,10,&(lvalues[3828]),0},
1697{"documentPublisher","documentPublisher",NID_documentPublisher,10,
1698 &(lvalues[3838]),0},
1699{"x500UniqueIdentifier","x500UniqueIdentifier",
1700 NID_x500UniqueIdentifier,3,&(lvalues[3848]),0},
1701{"mime-mhs","MIME MHS",NID_mime_mhs,5,&(lvalues[3851]),0},
1702{"mime-mhs-headings","mime-mhs-headings",NID_mime_mhs_headings,6,
1703 &(lvalues[3856]),0},
1704{"mime-mhs-bodies","mime-mhs-bodies",NID_mime_mhs_bodies,6,
1705 &(lvalues[3862]),0},
1706{"id-hex-partial-message","id-hex-partial-message",
1707 NID_id_hex_partial_message,7,&(lvalues[3868]),0},
1708{"id-hex-multipart-message","id-hex-multipart-message",
1709 NID_id_hex_multipart_message,7,&(lvalues[3875]),0},
1710{"generationQualifier","generationQualifier",NID_generationQualifier,
1711 3,&(lvalues[3882]),0},
1712{"pseudonym","pseudonym",NID_pseudonym,3,&(lvalues[3885]),0},
1713{NULL,NULL,NID_undef,0,NULL,0},
1714{"id-set","Secure Electronic Transactions",NID_id_set,2,
1715 &(lvalues[3888]),0},
1716{"set-ctype","content types",NID_set_ctype,3,&(lvalues[3890]),0},
1717{"set-msgExt","message extensions",NID_set_msgExt,3,&(lvalues[3893]),0},
1718{"set-attr","set-attr",NID_set_attr,3,&(lvalues[3896]),0},
1719{"set-policy","set-policy",NID_set_policy,3,&(lvalues[3899]),0},
1720{"set-certExt","certificate extensions",NID_set_certExt,3,
1721 &(lvalues[3902]),0},
1722{"set-brand","set-brand",NID_set_brand,3,&(lvalues[3905]),0},
1723{"setct-PANData","setct-PANData",NID_setct_PANData,4,&(lvalues[3908]),0},
1724{"setct-PANToken","setct-PANToken",NID_setct_PANToken,4,
1725 &(lvalues[3912]),0},
1726{"setct-PANOnly","setct-PANOnly",NID_setct_PANOnly,4,&(lvalues[3916]),0},
1727{"setct-OIData","setct-OIData",NID_setct_OIData,4,&(lvalues[3920]),0},
1728{"setct-PI","setct-PI",NID_setct_PI,4,&(lvalues[3924]),0},
1729{"setct-PIData","setct-PIData",NID_setct_PIData,4,&(lvalues[3928]),0},
1730{"setct-PIDataUnsigned","setct-PIDataUnsigned",
1731 NID_setct_PIDataUnsigned,4,&(lvalues[3932]),0},
1732{"setct-HODInput","setct-HODInput",NID_setct_HODInput,4,
1733 &(lvalues[3936]),0},
1734{"setct-AuthResBaggage","setct-AuthResBaggage",
1735 NID_setct_AuthResBaggage,4,&(lvalues[3940]),0},
1736{"setct-AuthRevReqBaggage","setct-AuthRevReqBaggage",
1737 NID_setct_AuthRevReqBaggage,4,&(lvalues[3944]),0},
1738{"setct-AuthRevResBaggage","setct-AuthRevResBaggage",
1739 NID_setct_AuthRevResBaggage,4,&(lvalues[3948]),0},
1740{"setct-CapTokenSeq","setct-CapTokenSeq",NID_setct_CapTokenSeq,4,
1741 &(lvalues[3952]),0},
1742{"setct-PInitResData","setct-PInitResData",NID_setct_PInitResData,4,
1743 &(lvalues[3956]),0},
1744{"setct-PI-TBS","setct-PI-TBS",NID_setct_PI_TBS,4,&(lvalues[3960]),0},
1745{"setct-PResData","setct-PResData",NID_setct_PResData,4,
1746 &(lvalues[3964]),0},
1747{"setct-AuthReqTBS","setct-AuthReqTBS",NID_setct_AuthReqTBS,4,
1748 &(lvalues[3968]),0},
1749{"setct-AuthResTBS","setct-AuthResTBS",NID_setct_AuthResTBS,4,
1750 &(lvalues[3972]),0},
1751{"setct-AuthResTBSX","setct-AuthResTBSX",NID_setct_AuthResTBSX,4,
1752 &(lvalues[3976]),0},
1753{"setct-AuthTokenTBS","setct-AuthTokenTBS",NID_setct_AuthTokenTBS,4,
1754 &(lvalues[3980]),0},
1755{"setct-CapTokenData","setct-CapTokenData",NID_setct_CapTokenData,4,
1756 &(lvalues[3984]),0},
1757{"setct-CapTokenTBS","setct-CapTokenTBS",NID_setct_CapTokenTBS,4,
1758 &(lvalues[3988]),0},
1759{"setct-AcqCardCodeMsg","setct-AcqCardCodeMsg",
1760 NID_setct_AcqCardCodeMsg,4,&(lvalues[3992]),0},
1761{"setct-AuthRevReqTBS","setct-AuthRevReqTBS",NID_setct_AuthRevReqTBS,
1762 4,&(lvalues[3996]),0},
1763{"setct-AuthRevResData","setct-AuthRevResData",
1764 NID_setct_AuthRevResData,4,&(lvalues[4000]),0},
1765{"setct-AuthRevResTBS","setct-AuthRevResTBS",NID_setct_AuthRevResTBS,
1766 4,&(lvalues[4004]),0},
1767{"setct-CapReqTBS","setct-CapReqTBS",NID_setct_CapReqTBS,4,
1768 &(lvalues[4008]),0},
1769{"setct-CapReqTBSX","setct-CapReqTBSX",NID_setct_CapReqTBSX,4,
1770 &(lvalues[4012]),0},
1771{"setct-CapResData","setct-CapResData",NID_setct_CapResData,4,
1772 &(lvalues[4016]),0},
1773{"setct-CapRevReqTBS","setct-CapRevReqTBS",NID_setct_CapRevReqTBS,4,
1774 &(lvalues[4020]),0},
1775{"setct-CapRevReqTBSX","setct-CapRevReqTBSX",NID_setct_CapRevReqTBSX,
1776 4,&(lvalues[4024]),0},
1777{"setct-CapRevResData","setct-CapRevResData",NID_setct_CapRevResData,
1778 4,&(lvalues[4028]),0},
1779{"setct-CredReqTBS","setct-CredReqTBS",NID_setct_CredReqTBS,4,
1780 &(lvalues[4032]),0},
1781{"setct-CredReqTBSX","setct-CredReqTBSX",NID_setct_CredReqTBSX,4,
1782 &(lvalues[4036]),0},
1783{"setct-CredResData","setct-CredResData",NID_setct_CredResData,4,
1784 &(lvalues[4040]),0},
1785{"setct-CredRevReqTBS","setct-CredRevReqTBS",NID_setct_CredRevReqTBS,
1786 4,&(lvalues[4044]),0},
1787{"setct-CredRevReqTBSX","setct-CredRevReqTBSX",
1788 NID_setct_CredRevReqTBSX,4,&(lvalues[4048]),0},
1789{"setct-CredRevResData","setct-CredRevResData",
1790 NID_setct_CredRevResData,4,&(lvalues[4052]),0},
1791{"setct-PCertReqData","setct-PCertReqData",NID_setct_PCertReqData,4,
1792 &(lvalues[4056]),0},
1793{"setct-PCertResTBS","setct-PCertResTBS",NID_setct_PCertResTBS,4,
1794 &(lvalues[4060]),0},
1795{"setct-BatchAdminReqData","setct-BatchAdminReqData",
1796 NID_setct_BatchAdminReqData,4,&(lvalues[4064]),0},
1797{"setct-BatchAdminResData","setct-BatchAdminResData",
1798 NID_setct_BatchAdminResData,4,&(lvalues[4068]),0},
1799{"setct-CardCInitResTBS","setct-CardCInitResTBS",
1800 NID_setct_CardCInitResTBS,4,&(lvalues[4072]),0},
1801{"setct-MeAqCInitResTBS","setct-MeAqCInitResTBS",
1802 NID_setct_MeAqCInitResTBS,4,&(lvalues[4076]),0},
1803{"setct-RegFormResTBS","setct-RegFormResTBS",NID_setct_RegFormResTBS,
1804 4,&(lvalues[4080]),0},
1805{"setct-CertReqData","setct-CertReqData",NID_setct_CertReqData,4,
1806 &(lvalues[4084]),0},
1807{"setct-CertReqTBS","setct-CertReqTBS",NID_setct_CertReqTBS,4,
1808 &(lvalues[4088]),0},
1809{"setct-CertResData","setct-CertResData",NID_setct_CertResData,4,
1810 &(lvalues[4092]),0},
1811{"setct-CertInqReqTBS","setct-CertInqReqTBS",NID_setct_CertInqReqTBS,
1812 4,&(lvalues[4096]),0},
1813{"setct-ErrorTBS","setct-ErrorTBS",NID_setct_ErrorTBS,4,
1814 &(lvalues[4100]),0},
1815{"setct-PIDualSignedTBE","setct-PIDualSignedTBE",
1816 NID_setct_PIDualSignedTBE,4,&(lvalues[4104]),0},
1817{"setct-PIUnsignedTBE","setct-PIUnsignedTBE",NID_setct_PIUnsignedTBE,
1818 4,&(lvalues[4108]),0},
1819{"setct-AuthReqTBE","setct-AuthReqTBE",NID_setct_AuthReqTBE,4,
1820 &(lvalues[4112]),0},
1821{"setct-AuthResTBE","setct-AuthResTBE",NID_setct_AuthResTBE,4,
1822 &(lvalues[4116]),0},
1823{"setct-AuthResTBEX","setct-AuthResTBEX",NID_setct_AuthResTBEX,4,
1824 &(lvalues[4120]),0},
1825{"setct-AuthTokenTBE","setct-AuthTokenTBE",NID_setct_AuthTokenTBE,4,
1826 &(lvalues[4124]),0},
1827{"setct-CapTokenTBE","setct-CapTokenTBE",NID_setct_CapTokenTBE,4,
1828 &(lvalues[4128]),0},
1829{"setct-CapTokenTBEX","setct-CapTokenTBEX",NID_setct_CapTokenTBEX,4,
1830 &(lvalues[4132]),0},
1831{"setct-AcqCardCodeMsgTBE","setct-AcqCardCodeMsgTBE",
1832 NID_setct_AcqCardCodeMsgTBE,4,&(lvalues[4136]),0},
1833{"setct-AuthRevReqTBE","setct-AuthRevReqTBE",NID_setct_AuthRevReqTBE,
1834 4,&(lvalues[4140]),0},
1835{"setct-AuthRevResTBE","setct-AuthRevResTBE",NID_setct_AuthRevResTBE,
1836 4,&(lvalues[4144]),0},
1837{"setct-AuthRevResTBEB","setct-AuthRevResTBEB",
1838 NID_setct_AuthRevResTBEB,4,&(lvalues[4148]),0},
1839{"setct-CapReqTBE","setct-CapReqTBE",NID_setct_CapReqTBE,4,
1840 &(lvalues[4152]),0},
1841{"setct-CapReqTBEX","setct-CapReqTBEX",NID_setct_CapReqTBEX,4,
1842 &(lvalues[4156]),0},
1843{"setct-CapResTBE","setct-CapResTBE",NID_setct_CapResTBE,4,
1844 &(lvalues[4160]),0},
1845{"setct-CapRevReqTBE","setct-CapRevReqTBE",NID_setct_CapRevReqTBE,4,
1846 &(lvalues[4164]),0},
1847{"setct-CapRevReqTBEX","setct-CapRevReqTBEX",NID_setct_CapRevReqTBEX,
1848 4,&(lvalues[4168]),0},
1849{"setct-CapRevResTBE","setct-CapRevResTBE",NID_setct_CapRevResTBE,4,
1850 &(lvalues[4172]),0},
1851{"setct-CredReqTBE","setct-CredReqTBE",NID_setct_CredReqTBE,4,
1852 &(lvalues[4176]),0},
1853{"setct-CredReqTBEX","setct-CredReqTBEX",NID_setct_CredReqTBEX,4,
1854 &(lvalues[4180]),0},
1855{"setct-CredResTBE","setct-CredResTBE",NID_setct_CredResTBE,4,
1856 &(lvalues[4184]),0},
1857{"setct-CredRevReqTBE","setct-CredRevReqTBE",NID_setct_CredRevReqTBE,
1858 4,&(lvalues[4188]),0},
1859{"setct-CredRevReqTBEX","setct-CredRevReqTBEX",
1860 NID_setct_CredRevReqTBEX,4,&(lvalues[4192]),0},
1861{"setct-CredRevResTBE","setct-CredRevResTBE",NID_setct_CredRevResTBE,
1862 4,&(lvalues[4196]),0},
1863{"setct-BatchAdminReqTBE","setct-BatchAdminReqTBE",
1864 NID_setct_BatchAdminReqTBE,4,&(lvalues[4200]),0},
1865{"setct-BatchAdminResTBE","setct-BatchAdminResTBE",
1866 NID_setct_BatchAdminResTBE,4,&(lvalues[4204]),0},
1867{"setct-RegFormReqTBE","setct-RegFormReqTBE",NID_setct_RegFormReqTBE,
1868 4,&(lvalues[4208]),0},
1869{"setct-CertReqTBE","setct-CertReqTBE",NID_setct_CertReqTBE,4,
1870 &(lvalues[4212]),0},
1871{"setct-CertReqTBEX","setct-CertReqTBEX",NID_setct_CertReqTBEX,4,
1872 &(lvalues[4216]),0},
1873{"setct-CertResTBE","setct-CertResTBE",NID_setct_CertResTBE,4,
1874 &(lvalues[4220]),0},
1875{"setct-CRLNotificationTBS","setct-CRLNotificationTBS",
1876 NID_setct_CRLNotificationTBS,4,&(lvalues[4224]),0},
1877{"setct-CRLNotificationResTBS","setct-CRLNotificationResTBS",
1878 NID_setct_CRLNotificationResTBS,4,&(lvalues[4228]),0},
1879{"setct-BCIDistributionTBS","setct-BCIDistributionTBS",
1880 NID_setct_BCIDistributionTBS,4,&(lvalues[4232]),0},
1881{"setext-genCrypt","generic cryptogram",NID_setext_genCrypt,4,
1882 &(lvalues[4236]),0},
1883{"setext-miAuth","merchant initiated auth",NID_setext_miAuth,4,
1884 &(lvalues[4240]),0},
1885{"setext-pinSecure","setext-pinSecure",NID_setext_pinSecure,4,
1886 &(lvalues[4244]),0},
1887{"setext-pinAny","setext-pinAny",NID_setext_pinAny,4,&(lvalues[4248]),0},
1888{"setext-track2","setext-track2",NID_setext_track2,4,&(lvalues[4252]),0},
1889{"setext-cv","additional verification",NID_setext_cv,4,
1890 &(lvalues[4256]),0},
1891{"set-policy-root","set-policy-root",NID_set_policy_root,4,
1892 &(lvalues[4260]),0},
1893{"setCext-hashedRoot","setCext-hashedRoot",NID_setCext_hashedRoot,4,
1894 &(lvalues[4264]),0},
1895{"setCext-certType","setCext-certType",NID_setCext_certType,4,
1896 &(lvalues[4268]),0},
1897{"setCext-merchData","setCext-merchData",NID_setCext_merchData,4,
1898 &(lvalues[4272]),0},
1899{"setCext-cCertRequired","setCext-cCertRequired",
1900 NID_setCext_cCertRequired,4,&(lvalues[4276]),0},
1901{"setCext-tunneling","setCext-tunneling",NID_setCext_tunneling,4,
1902 &(lvalues[4280]),0},
1903{"setCext-setExt","setCext-setExt",NID_setCext_setExt,4,
1904 &(lvalues[4284]),0},
1905{"setCext-setQualf","setCext-setQualf",NID_setCext_setQualf,4,
1906 &(lvalues[4288]),0},
1907{"setCext-PGWYcapabilities","setCext-PGWYcapabilities",
1908 NID_setCext_PGWYcapabilities,4,&(lvalues[4292]),0},
1909{"setCext-TokenIdentifier","setCext-TokenIdentifier",
1910 NID_setCext_TokenIdentifier,4,&(lvalues[4296]),0},
1911{"setCext-Track2Data","setCext-Track2Data",NID_setCext_Track2Data,4,
1912 &(lvalues[4300]),0},
1913{"setCext-TokenType","setCext-TokenType",NID_setCext_TokenType,4,
1914 &(lvalues[4304]),0},
1915{"setCext-IssuerCapabilities","setCext-IssuerCapabilities",
1916 NID_setCext_IssuerCapabilities,4,&(lvalues[4308]),0},
1917{"setAttr-Cert","setAttr-Cert",NID_setAttr_Cert,4,&(lvalues[4312]),0},
1918{"setAttr-PGWYcap","payment gateway capabilities",NID_setAttr_PGWYcap,
1919 4,&(lvalues[4316]),0},
1920{"setAttr-TokenType","setAttr-TokenType",NID_setAttr_TokenType,4,
1921 &(lvalues[4320]),0},
1922{"setAttr-IssCap","issuer capabilities",NID_setAttr_IssCap,4,
1923 &(lvalues[4324]),0},
1924{"set-rootKeyThumb","set-rootKeyThumb",NID_set_rootKeyThumb,5,
1925 &(lvalues[4328]),0},
1926{"set-addPolicy","set-addPolicy",NID_set_addPolicy,5,&(lvalues[4333]),0},
1927{"setAttr-Token-EMV","setAttr-Token-EMV",NID_setAttr_Token_EMV,5,
1928 &(lvalues[4338]),0},
1929{"setAttr-Token-B0Prime","setAttr-Token-B0Prime",
1930 NID_setAttr_Token_B0Prime,5,&(lvalues[4343]),0},
1931{"setAttr-IssCap-CVM","setAttr-IssCap-CVM",NID_setAttr_IssCap_CVM,5,
1932 &(lvalues[4348]),0},
1933{"setAttr-IssCap-T2","setAttr-IssCap-T2",NID_setAttr_IssCap_T2,5,
1934 &(lvalues[4353]),0},
1935{"setAttr-IssCap-Sig","setAttr-IssCap-Sig",NID_setAttr_IssCap_Sig,5,
1936 &(lvalues[4358]),0},
1937{"setAttr-GenCryptgrm","generate cryptogram",NID_setAttr_GenCryptgrm,
1938 6,&(lvalues[4363]),0},
1939{"setAttr-T2Enc","encrypted track 2",NID_setAttr_T2Enc,6,
1940 &(lvalues[4369]),0},
1941{"setAttr-T2cleartxt","cleartext track 2",NID_setAttr_T2cleartxt,6,
1942 &(lvalues[4375]),0},
1943{"setAttr-TokICCsig","ICC or token signature",NID_setAttr_TokICCsig,6,
1944 &(lvalues[4381]),0},
1945{"setAttr-SecDevSig","secure device signature",NID_setAttr_SecDevSig,
1946 6,&(lvalues[4387]),0},
1947{"set-brand-IATA-ATA","set-brand-IATA-ATA",NID_set_brand_IATA_ATA,4,
1948 &(lvalues[4393]),0},
1949{"set-brand-Diners","set-brand-Diners",NID_set_brand_Diners,4,
1950 &(lvalues[4397]),0},
1951{"set-brand-AmericanExpress","set-brand-AmericanExpress",
1952 NID_set_brand_AmericanExpress,4,&(lvalues[4401]),0},
1953{"set-brand-JCB","set-brand-JCB",NID_set_brand_JCB,4,&(lvalues[4405]),0},
1954{"set-brand-Visa","set-brand-Visa",NID_set_brand_Visa,4,
1955 &(lvalues[4409]),0},
1956{"set-brand-MasterCard","set-brand-MasterCard",
1957 NID_set_brand_MasterCard,4,&(lvalues[4413]),0},
1958{"set-brand-Novus","set-brand-Novus",NID_set_brand_Novus,5,
1959 &(lvalues[4417]),0},
1960{"DES-CDMF","des-cdmf",NID_des_cdmf,8,&(lvalues[4422]),0},
1961{"rsaOAEPEncryptionSET","rsaOAEPEncryptionSET",
1962 NID_rsaOAEPEncryptionSET,9,&(lvalues[4430]),0},
1963{"ITU-T","itu-t",NID_itu_t,1,&(lvalues[4439]),0},
1964{"JOINT-ISO-ITU-T","joint-iso-itu-t",NID_joint_iso_itu_t,1,
1965 &(lvalues[4440]),0},
1966{"international-organizations","International Organizations",
1967 NID_international_organizations,1,&(lvalues[4441]),0},
1968{"msSmartcardLogin","Microsoft Smartcardlogin",NID_ms_smartcard_login,
1969 10,&(lvalues[4442]),0},
1970{"msUPN","Microsoft Universal Principal Name",NID_ms_upn,10,
1971 &(lvalues[4452]),0},
1972{"AES-128-CFB1","aes-128-cfb1",NID_aes_128_cfb1,0,NULL,0},
1973{"AES-192-CFB1","aes-192-cfb1",NID_aes_192_cfb1,0,NULL,0},
1974{"AES-256-CFB1","aes-256-cfb1",NID_aes_256_cfb1,0,NULL,0},
1975{"AES-128-CFB8","aes-128-cfb8",NID_aes_128_cfb8,0,NULL,0},
1976{"AES-192-CFB8","aes-192-cfb8",NID_aes_192_cfb8,0,NULL,0},
1977{"AES-256-CFB8","aes-256-cfb8",NID_aes_256_cfb8,0,NULL,0},
1978{"DES-CFB1","des-cfb1",NID_des_cfb1,0,NULL,0},
1979{"DES-CFB8","des-cfb8",NID_des_cfb8,0,NULL,0},
1980{"DES-EDE3-CFB1","des-ede3-cfb1",NID_des_ede3_cfb1,0,NULL,0},
1981{"DES-EDE3-CFB8","des-ede3-cfb8",NID_des_ede3_cfb8,0,NULL,0},
1982{"street","streetAddress",NID_streetAddress,3,&(lvalues[4462]),0},
1983{"postalCode","postalCode",NID_postalCode,3,&(lvalues[4465]),0},
1984{"id-ppl","id-ppl",NID_id_ppl,7,&(lvalues[4468]),0},
1985{"proxyCertInfo","Proxy Certificate Information",NID_proxyCertInfo,8,
1986 &(lvalues[4475]),0},
1987{"id-ppl-anyLanguage","Any language",NID_id_ppl_anyLanguage,8,
1988 &(lvalues[4483]),0},
1989{"id-ppl-inheritAll","Inherit all",NID_id_ppl_inheritAll,8,
1990 &(lvalues[4491]),0},
1991{"nameConstraints","X509v3 Name Constraints",NID_name_constraints,3,
1992 &(lvalues[4499]),0},
1993{"id-ppl-independent","Independent",NID_Independent,8,&(lvalues[4502]),0},
1994{"RSA-SHA256","sha256WithRSAEncryption",NID_sha256WithRSAEncryption,9,
1995 &(lvalues[4510]),0},
1996{"RSA-SHA384","sha384WithRSAEncryption",NID_sha384WithRSAEncryption,9,
1997 &(lvalues[4519]),0},
1998{"RSA-SHA512","sha512WithRSAEncryption",NID_sha512WithRSAEncryption,9,
1999 &(lvalues[4528]),0},
2000{"RSA-SHA224","sha224WithRSAEncryption",NID_sha224WithRSAEncryption,9,
2001 &(lvalues[4537]),0},
2002{"SHA256","sha256",NID_sha256,9,&(lvalues[4546]),0},
2003{"SHA384","sha384",NID_sha384,9,&(lvalues[4555]),0},
2004{"SHA512","sha512",NID_sha512,9,&(lvalues[4564]),0},
2005{"SHA224","sha224",NID_sha224,9,&(lvalues[4573]),0},
2006{"identified-organization","identified-organization",
2007 NID_identified_organization,1,&(lvalues[4582]),0},
2008{"certicom-arc","certicom-arc",NID_certicom_arc,3,&(lvalues[4583]),0},
2009{"wap","wap",NID_wap,2,&(lvalues[4586]),0},
2010{"wap-wsg","wap-wsg",NID_wap_wsg,3,&(lvalues[4588]),0},
2011{"id-characteristic-two-basis","id-characteristic-two-basis",
2012 NID_X9_62_id_characteristic_two_basis,8,&(lvalues[4591]),0},
2013{"onBasis","onBasis",NID_X9_62_onBasis,9,&(lvalues[4599]),0},
2014{"tpBasis","tpBasis",NID_X9_62_tpBasis,9,&(lvalues[4608]),0},
2015{"ppBasis","ppBasis",NID_X9_62_ppBasis,9,&(lvalues[4617]),0},
2016{"c2pnb163v1","c2pnb163v1",NID_X9_62_c2pnb163v1,8,&(lvalues[4626]),0},
2017{"c2pnb163v2","c2pnb163v2",NID_X9_62_c2pnb163v2,8,&(lvalues[4634]),0},
2018{"c2pnb163v3","c2pnb163v3",NID_X9_62_c2pnb163v3,8,&(lvalues[4642]),0},
2019{"c2pnb176v1","c2pnb176v1",NID_X9_62_c2pnb176v1,8,&(lvalues[4650]),0},
2020{"c2tnb191v1","c2tnb191v1",NID_X9_62_c2tnb191v1,8,&(lvalues[4658]),0},
2021{"c2tnb191v2","c2tnb191v2",NID_X9_62_c2tnb191v2,8,&(lvalues[4666]),0},
2022{"c2tnb191v3","c2tnb191v3",NID_X9_62_c2tnb191v3,8,&(lvalues[4674]),0},
2023{"c2onb191v4","c2onb191v4",NID_X9_62_c2onb191v4,8,&(lvalues[4682]),0},
2024{"c2onb191v5","c2onb191v5",NID_X9_62_c2onb191v5,8,&(lvalues[4690]),0},
2025{"c2pnb208w1","c2pnb208w1",NID_X9_62_c2pnb208w1,8,&(lvalues[4698]),0},
2026{"c2tnb239v1","c2tnb239v1",NID_X9_62_c2tnb239v1,8,&(lvalues[4706]),0},
2027{"c2tnb239v2","c2tnb239v2",NID_X9_62_c2tnb239v2,8,&(lvalues[4714]),0},
2028{"c2tnb239v3","c2tnb239v3",NID_X9_62_c2tnb239v3,8,&(lvalues[4722]),0},
2029{"c2onb239v4","c2onb239v4",NID_X9_62_c2onb239v4,8,&(lvalues[4730]),0},
2030{"c2onb239v5","c2onb239v5",NID_X9_62_c2onb239v5,8,&(lvalues[4738]),0},
2031{"c2pnb272w1","c2pnb272w1",NID_X9_62_c2pnb272w1,8,&(lvalues[4746]),0},
2032{"c2pnb304w1","c2pnb304w1",NID_X9_62_c2pnb304w1,8,&(lvalues[4754]),0},
2033{"c2tnb359v1","c2tnb359v1",NID_X9_62_c2tnb359v1,8,&(lvalues[4762]),0},
2034{"c2pnb368w1","c2pnb368w1",NID_X9_62_c2pnb368w1,8,&(lvalues[4770]),0},
2035{"c2tnb431r1","c2tnb431r1",NID_X9_62_c2tnb431r1,8,&(lvalues[4778]),0},
2036{"secp112r1","secp112r1",NID_secp112r1,5,&(lvalues[4786]),0},
2037{"secp112r2","secp112r2",NID_secp112r2,5,&(lvalues[4791]),0},
2038{"secp128r1","secp128r1",NID_secp128r1,5,&(lvalues[4796]),0},
2039{"secp128r2","secp128r2",NID_secp128r2,5,&(lvalues[4801]),0},
2040{"secp160k1","secp160k1",NID_secp160k1,5,&(lvalues[4806]),0},
2041{"secp160r1","secp160r1",NID_secp160r1,5,&(lvalues[4811]),0},
2042{"secp160r2","secp160r2",NID_secp160r2,5,&(lvalues[4816]),0},
2043{"secp192k1","secp192k1",NID_secp192k1,5,&(lvalues[4821]),0},
2044{"secp224k1","secp224k1",NID_secp224k1,5,&(lvalues[4826]),0},
2045{"secp224r1","secp224r1",NID_secp224r1,5,&(lvalues[4831]),0},
2046{"secp256k1","secp256k1",NID_secp256k1,5,&(lvalues[4836]),0},
2047{"secp384r1","secp384r1",NID_secp384r1,5,&(lvalues[4841]),0},
2048{"secp521r1","secp521r1",NID_secp521r1,5,&(lvalues[4846]),0},
2049{"sect113r1","sect113r1",NID_sect113r1,5,&(lvalues[4851]),0},
2050{"sect113r2","sect113r2",NID_sect113r2,5,&(lvalues[4856]),0},
2051{"sect131r1","sect131r1",NID_sect131r1,5,&(lvalues[4861]),0},
2052{"sect131r2","sect131r2",NID_sect131r2,5,&(lvalues[4866]),0},
2053{"sect163k1","sect163k1",NID_sect163k1,5,&(lvalues[4871]),0},
2054{"sect163r1","sect163r1",NID_sect163r1,5,&(lvalues[4876]),0},
2055{"sect163r2","sect163r2",NID_sect163r2,5,&(lvalues[4881]),0},
2056{"sect193r1","sect193r1",NID_sect193r1,5,&(lvalues[4886]),0},
2057{"sect193r2","sect193r2",NID_sect193r2,5,&(lvalues[4891]),0},
2058{"sect233k1","sect233k1",NID_sect233k1,5,&(lvalues[4896]),0},
2059{"sect233r1","sect233r1",NID_sect233r1,5,&(lvalues[4901]),0},
2060{"sect239k1","sect239k1",NID_sect239k1,5,&(lvalues[4906]),0},
2061{"sect283k1","sect283k1",NID_sect283k1,5,&(lvalues[4911]),0},
2062{"sect283r1","sect283r1",NID_sect283r1,5,&(lvalues[4916]),0},
2063{"sect409k1","sect409k1",NID_sect409k1,5,&(lvalues[4921]),0},
2064{"sect409r1","sect409r1",NID_sect409r1,5,&(lvalues[4926]),0},
2065{"sect571k1","sect571k1",NID_sect571k1,5,&(lvalues[4931]),0},
2066{"sect571r1","sect571r1",NID_sect571r1,5,&(lvalues[4936]),0},
2067{"wap-wsg-idm-ecid-wtls1","wap-wsg-idm-ecid-wtls1",
2068 NID_wap_wsg_idm_ecid_wtls1,5,&(lvalues[4941]),0},
2069{"wap-wsg-idm-ecid-wtls3","wap-wsg-idm-ecid-wtls3",
2070 NID_wap_wsg_idm_ecid_wtls3,5,&(lvalues[4946]),0},
2071{"wap-wsg-idm-ecid-wtls4","wap-wsg-idm-ecid-wtls4",
2072 NID_wap_wsg_idm_ecid_wtls4,5,&(lvalues[4951]),0},
2073{"wap-wsg-idm-ecid-wtls5","wap-wsg-idm-ecid-wtls5",
2074 NID_wap_wsg_idm_ecid_wtls5,5,&(lvalues[4956]),0},
2075{"wap-wsg-idm-ecid-wtls6","wap-wsg-idm-ecid-wtls6",
2076 NID_wap_wsg_idm_ecid_wtls6,5,&(lvalues[4961]),0},
2077{"wap-wsg-idm-ecid-wtls7","wap-wsg-idm-ecid-wtls7",
2078 NID_wap_wsg_idm_ecid_wtls7,5,&(lvalues[4966]),0},
2079{"wap-wsg-idm-ecid-wtls8","wap-wsg-idm-ecid-wtls8",
2080 NID_wap_wsg_idm_ecid_wtls8,5,&(lvalues[4971]),0},
2081{"wap-wsg-idm-ecid-wtls9","wap-wsg-idm-ecid-wtls9",
2082 NID_wap_wsg_idm_ecid_wtls9,5,&(lvalues[4976]),0},
2083{"wap-wsg-idm-ecid-wtls10","wap-wsg-idm-ecid-wtls10",
2084 NID_wap_wsg_idm_ecid_wtls10,5,&(lvalues[4981]),0},
2085{"wap-wsg-idm-ecid-wtls11","wap-wsg-idm-ecid-wtls11",
2086 NID_wap_wsg_idm_ecid_wtls11,5,&(lvalues[4986]),0},
2087{"wap-wsg-idm-ecid-wtls12","wap-wsg-idm-ecid-wtls12",
2088 NID_wap_wsg_idm_ecid_wtls12,5,&(lvalues[4991]),0},
2089{"anyPolicy","X509v3 Any Policy",NID_any_policy,4,&(lvalues[4996]),0},
2090{"policyMappings","X509v3 Policy Mappings",NID_policy_mappings,3,
2091 &(lvalues[5000]),0},
2092{"inhibitAnyPolicy","X509v3 Inhibit Any Policy",
2093 NID_inhibit_any_policy,3,&(lvalues[5003]),0},
2094{"Oakley-EC2N-3","ipsec3",NID_ipsec3,0,NULL,0},
2095{"Oakley-EC2N-4","ipsec4",NID_ipsec4,0,NULL,0},
2096{"CAMELLIA-128-CBC","camellia-128-cbc",NID_camellia_128_cbc,11,
2097 &(lvalues[5006]),0},
2098{"CAMELLIA-192-CBC","camellia-192-cbc",NID_camellia_192_cbc,11,
2099 &(lvalues[5017]),0},
2100{"CAMELLIA-256-CBC","camellia-256-cbc",NID_camellia_256_cbc,11,
2101 &(lvalues[5028]),0},
2102{"CAMELLIA-128-ECB","camellia-128-ecb",NID_camellia_128_ecb,8,
2103 &(lvalues[5039]),0},
2104{"CAMELLIA-192-ECB","camellia-192-ecb",NID_camellia_192_ecb,8,
2105 &(lvalues[5047]),0},
2106{"CAMELLIA-256-ECB","camellia-256-ecb",NID_camellia_256_ecb,8,
2107 &(lvalues[5055]),0},
2108{"CAMELLIA-128-CFB","camellia-128-cfb",NID_camellia_128_cfb128,8,
2109 &(lvalues[5063]),0},
2110{"CAMELLIA-192-CFB","camellia-192-cfb",NID_camellia_192_cfb128,8,
2111 &(lvalues[5071]),0},
2112{"CAMELLIA-256-CFB","camellia-256-cfb",NID_camellia_256_cfb128,8,
2113 &(lvalues[5079]),0},
2114{"CAMELLIA-128-CFB1","camellia-128-cfb1",NID_camellia_128_cfb1,0,NULL,0},
2115{"CAMELLIA-192-CFB1","camellia-192-cfb1",NID_camellia_192_cfb1,0,NULL,0},
2116{"CAMELLIA-256-CFB1","camellia-256-cfb1",NID_camellia_256_cfb1,0,NULL,0},
2117{"CAMELLIA-128-CFB8","camellia-128-cfb8",NID_camellia_128_cfb8,0,NULL,0},
2118{"CAMELLIA-192-CFB8","camellia-192-cfb8",NID_camellia_192_cfb8,0,NULL,0},
2119{"CAMELLIA-256-CFB8","camellia-256-cfb8",NID_camellia_256_cfb8,0,NULL,0},
2120{"CAMELLIA-128-OFB","camellia-128-ofb",NID_camellia_128_ofb128,8,
2121 &(lvalues[5087]),0},
2122{"CAMELLIA-192-OFB","camellia-192-ofb",NID_camellia_192_ofb128,8,
2123 &(lvalues[5095]),0},
2124{"CAMELLIA-256-OFB","camellia-256-ofb",NID_camellia_256_ofb128,8,
2125 &(lvalues[5103]),0},
2126{"subjectDirectoryAttributes","X509v3 Subject Directory Attributes",
2127 NID_subject_directory_attributes,3,&(lvalues[5111]),0},
2128{"issuingDistributionPoint","X509v3 Issuing Distrubution Point",
2129 NID_issuing_distribution_point,3,&(lvalues[5114]),0},
2130{"certificateIssuer","X509v3 Certificate Issuer",
2131 NID_certificate_issuer,3,&(lvalues[5117]),0},
2132{NULL,NULL,NID_undef,0,NULL,0},
2133{"KISA","kisa",NID_kisa,6,&(lvalues[5120]),0},
2134{NULL,NULL,NID_undef,0,NULL,0},
2135{NULL,NULL,NID_undef,0,NULL,0},
2136{"SEED-ECB","seed-ecb",NID_seed_ecb,8,&(lvalues[5126]),0},
2137{"SEED-CBC","seed-cbc",NID_seed_cbc,8,&(lvalues[5134]),0},
2138{"SEED-OFB","seed-ofb",NID_seed_ofb128,8,&(lvalues[5142]),0},
2139{"SEED-CFB","seed-cfb",NID_seed_cfb128,8,&(lvalues[5150]),0},
2140{"HMAC-MD5","hmac-md5",NID_hmac_md5,8,&(lvalues[5158]),0},
2141{"HMAC-SHA1","hmac-sha1",NID_hmac_sha1,8,&(lvalues[5166]),0},
2142{"id-PasswordBasedMAC","password based MAC",NID_id_PasswordBasedMAC,9,
2143 &(lvalues[5174]),0},
2144{"id-DHBasedMac","Diffie-Hellman based MAC",NID_id_DHBasedMac,9,
2145 &(lvalues[5183]),0},
2146{"id-it-suppLangTags","id-it-suppLangTags",NID_id_it_suppLangTags,8,
2147 &(lvalues[5192]),0},
2148{"caRepository","CA Repository",NID_caRepository,8,&(lvalues[5200]),0},
2149{"id-smime-ct-compressedData","id-smime-ct-compressedData",
2150 NID_id_smime_ct_compressedData,11,&(lvalues[5208]),0},
2151{"id-ct-asciiTextWithCRLF","id-ct-asciiTextWithCRLF",
2152 NID_id_ct_asciiTextWithCRLF,11,&(lvalues[5219]),0},
2153{"id-aes128-wrap","id-aes128-wrap",NID_id_aes128_wrap,9,
2154 &(lvalues[5230]),0},
2155{"id-aes192-wrap","id-aes192-wrap",NID_id_aes192_wrap,9,
2156 &(lvalues[5239]),0},
2157{"id-aes256-wrap","id-aes256-wrap",NID_id_aes256_wrap,9,
2158 &(lvalues[5248]),0},
2159{"ecdsa-with-Recommended","ecdsa-with-Recommended",
2160 NID_ecdsa_with_Recommended,7,&(lvalues[5257]),0},
2161{"ecdsa-with-Specified","ecdsa-with-Specified",
2162 NID_ecdsa_with_Specified,7,&(lvalues[5264]),0},
2163{"ecdsa-with-SHA224","ecdsa-with-SHA224",NID_ecdsa_with_SHA224,8,
2164 &(lvalues[5271]),0},
2165{"ecdsa-with-SHA256","ecdsa-with-SHA256",NID_ecdsa_with_SHA256,8,
2166 &(lvalues[5279]),0},
2167{"ecdsa-with-SHA384","ecdsa-with-SHA384",NID_ecdsa_with_SHA384,8,
2168 &(lvalues[5287]),0},
2169{"ecdsa-with-SHA512","ecdsa-with-SHA512",NID_ecdsa_with_SHA512,8,
2170 &(lvalues[5295]),0},
2171{"hmacWithMD5","hmacWithMD5",NID_hmacWithMD5,8,&(lvalues[5303]),0},
2172{"hmacWithSHA224","hmacWithSHA224",NID_hmacWithSHA224,8,
2173 &(lvalues[5311]),0},
2174{"hmacWithSHA256","hmacWithSHA256",NID_hmacWithSHA256,8,
2175 &(lvalues[5319]),0},
2176{"hmacWithSHA384","hmacWithSHA384",NID_hmacWithSHA384,8,
2177 &(lvalues[5327]),0},
2178{"hmacWithSHA512","hmacWithSHA512",NID_hmacWithSHA512,8,
2179 &(lvalues[5335]),0},
2180{"dsa_with_SHA224","dsa_with_SHA224",NID_dsa_with_SHA224,9,
2181 &(lvalues[5343]),0},
2182{"dsa_with_SHA256","dsa_with_SHA256",NID_dsa_with_SHA256,9,
2183 &(lvalues[5352]),0},
2184{"whirlpool","whirlpool",NID_whirlpool,6,&(lvalues[5361]),0},
2185{"cryptopro","cryptopro",NID_cryptopro,5,&(lvalues[5367]),0},
2186{"cryptocom","cryptocom",NID_cryptocom,5,&(lvalues[5372]),0},
2187{"id-GostR3411-94-with-GostR3410-2001",
2188 "GOST R 34.11-94 with GOST R 34.10-2001",
2189 NID_id_GostR3411_94_with_GostR3410_2001,6,&(lvalues[5377]),0},
2190{"id-GostR3411-94-with-GostR3410-94",
2191 "GOST R 34.11-94 with GOST R 34.10-94",
2192 NID_id_GostR3411_94_with_GostR3410_94,6,&(lvalues[5383]),0},
2193{"md_gost94","GOST R 34.11-94",NID_id_GostR3411_94,6,&(lvalues[5389]),0},
2194{"id-HMACGostR3411-94","HMAC GOST 34.11-94",NID_id_HMACGostR3411_94,6,
2195 &(lvalues[5395]),0},
2196{"gost2001","GOST R 34.10-2001",NID_id_GostR3410_2001,6,
2197 &(lvalues[5401]),0},
2198{"gost94","GOST R 34.10-94",NID_id_GostR3410_94,6,&(lvalues[5407]),0},
2199{"gost89","GOST 28147-89",NID_id_Gost28147_89,6,&(lvalues[5413]),0},
2200{"gost89-cnt","gost89-cnt",NID_gost89_cnt,0,NULL,0},
2201{"gost-mac","GOST 28147-89 MAC",NID_id_Gost28147_89_MAC,6,
2202 &(lvalues[5419]),0},
2203{"prf-gostr3411-94","GOST R 34.11-94 PRF",NID_id_GostR3411_94_prf,6,
2204 &(lvalues[5425]),0},
2205{"id-GostR3410-2001DH","GOST R 34.10-2001 DH",NID_id_GostR3410_2001DH,
2206 6,&(lvalues[5431]),0},
2207{"id-GostR3410-94DH","GOST R 34.10-94 DH",NID_id_GostR3410_94DH,6,
2208 &(lvalues[5437]),0},
2209{"id-Gost28147-89-CryptoPro-KeyMeshing",
2210 "id-Gost28147-89-CryptoPro-KeyMeshing",
2211 NID_id_Gost28147_89_CryptoPro_KeyMeshing,7,&(lvalues[5443]),0},
2212{"id-Gost28147-89-None-KeyMeshing","id-Gost28147-89-None-KeyMeshing",
2213 NID_id_Gost28147_89_None_KeyMeshing,7,&(lvalues[5450]),0},
2214{"id-GostR3411-94-TestParamSet","id-GostR3411-94-TestParamSet",
2215 NID_id_GostR3411_94_TestParamSet,7,&(lvalues[5457]),0},
2216{"id-GostR3411-94-CryptoProParamSet",
2217 "id-GostR3411-94-CryptoProParamSet",
2218 NID_id_GostR3411_94_CryptoProParamSet,7,&(lvalues[5464]),0},
2219{"id-Gost28147-89-TestParamSet","id-Gost28147-89-TestParamSet",
2220 NID_id_Gost28147_89_TestParamSet,7,&(lvalues[5471]),0},
2221{"id-Gost28147-89-CryptoPro-A-ParamSet",
2222 "id-Gost28147-89-CryptoPro-A-ParamSet",
2223 NID_id_Gost28147_89_CryptoPro_A_ParamSet,7,&(lvalues[5478]),0},
2224{"id-Gost28147-89-CryptoPro-B-ParamSet",
2225 "id-Gost28147-89-CryptoPro-B-ParamSet",
2226 NID_id_Gost28147_89_CryptoPro_B_ParamSet,7,&(lvalues[5485]),0},
2227{"id-Gost28147-89-CryptoPro-C-ParamSet",
2228 "id-Gost28147-89-CryptoPro-C-ParamSet",
2229 NID_id_Gost28147_89_CryptoPro_C_ParamSet,7,&(lvalues[5492]),0},
2230{"id-Gost28147-89-CryptoPro-D-ParamSet",
2231 "id-Gost28147-89-CryptoPro-D-ParamSet",
2232 NID_id_Gost28147_89_CryptoPro_D_ParamSet,7,&(lvalues[5499]),0},
2233{"id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet",
2234 "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet",
2235 NID_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet,7,&(lvalues[5506]),
2236 0},
2237{"id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet",
2238 "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet",
2239 NID_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet,7,&(lvalues[5513]),
2240 0},
2241{"id-Gost28147-89-CryptoPro-RIC-1-ParamSet",
2242 "id-Gost28147-89-CryptoPro-RIC-1-ParamSet",
2243 NID_id_Gost28147_89_CryptoPro_RIC_1_ParamSet,7,&(lvalues[5520]),0},
2244{"id-GostR3410-94-TestParamSet","id-GostR3410-94-TestParamSet",
2245 NID_id_GostR3410_94_TestParamSet,7,&(lvalues[5527]),0},
2246{"id-GostR3410-94-CryptoPro-A-ParamSet",
2247 "id-GostR3410-94-CryptoPro-A-ParamSet",
2248 NID_id_GostR3410_94_CryptoPro_A_ParamSet,7,&(lvalues[5534]),0},
2249{"id-GostR3410-94-CryptoPro-B-ParamSet",
2250 "id-GostR3410-94-CryptoPro-B-ParamSet",
2251 NID_id_GostR3410_94_CryptoPro_B_ParamSet,7,&(lvalues[5541]),0},
2252{"id-GostR3410-94-CryptoPro-C-ParamSet",
2253 "id-GostR3410-94-CryptoPro-C-ParamSet",
2254 NID_id_GostR3410_94_CryptoPro_C_ParamSet,7,&(lvalues[5548]),0},
2255{"id-GostR3410-94-CryptoPro-D-ParamSet",
2256 "id-GostR3410-94-CryptoPro-D-ParamSet",
2257 NID_id_GostR3410_94_CryptoPro_D_ParamSet,7,&(lvalues[5555]),0},
2258{"id-GostR3410-94-CryptoPro-XchA-ParamSet",
2259 "id-GostR3410-94-CryptoPro-XchA-ParamSet",
2260 NID_id_GostR3410_94_CryptoPro_XchA_ParamSet,7,&(lvalues[5562]),0},
2261{"id-GostR3410-94-CryptoPro-XchB-ParamSet",
2262 "id-GostR3410-94-CryptoPro-XchB-ParamSet",
2263 NID_id_GostR3410_94_CryptoPro_XchB_ParamSet,7,&(lvalues[5569]),0},
2264{"id-GostR3410-94-CryptoPro-XchC-ParamSet",
2265 "id-GostR3410-94-CryptoPro-XchC-ParamSet",
2266 NID_id_GostR3410_94_CryptoPro_XchC_ParamSet,7,&(lvalues[5576]),0},
2267{"id-GostR3410-2001-TestParamSet","id-GostR3410-2001-TestParamSet",
2268 NID_id_GostR3410_2001_TestParamSet,7,&(lvalues[5583]),0},
2269{"id-GostR3410-2001-CryptoPro-A-ParamSet",
2270 "id-GostR3410-2001-CryptoPro-A-ParamSet",
2271 NID_id_GostR3410_2001_CryptoPro_A_ParamSet,7,&(lvalues[5590]),0},
2272{"id-GostR3410-2001-CryptoPro-B-ParamSet",
2273 "id-GostR3410-2001-CryptoPro-B-ParamSet",
2274 NID_id_GostR3410_2001_CryptoPro_B_ParamSet,7,&(lvalues[5597]),0},
2275{"id-GostR3410-2001-CryptoPro-C-ParamSet",
2276 "id-GostR3410-2001-CryptoPro-C-ParamSet",
2277 NID_id_GostR3410_2001_CryptoPro_C_ParamSet,7,&(lvalues[5604]),0},
2278{"id-GostR3410-2001-CryptoPro-XchA-ParamSet",
2279 "id-GostR3410-2001-CryptoPro-XchA-ParamSet",
2280 NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet,7,&(lvalues[5611]),0},
2281
2282{"id-GostR3410-2001-CryptoPro-XchB-ParamSet",
2283 "id-GostR3410-2001-CryptoPro-XchB-ParamSet",
2284 NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet,7,&(lvalues[5618]),0},
2285
2286{"id-GostR3410-94-a","id-GostR3410-94-a",NID_id_GostR3410_94_a,7,
2287 &(lvalues[5625]),0},
2288{"id-GostR3410-94-aBis","id-GostR3410-94-aBis",
2289 NID_id_GostR3410_94_aBis,7,&(lvalues[5632]),0},
2290{"id-GostR3410-94-b","id-GostR3410-94-b",NID_id_GostR3410_94_b,7,
2291 &(lvalues[5639]),0},
2292{"id-GostR3410-94-bBis","id-GostR3410-94-bBis",
2293 NID_id_GostR3410_94_bBis,7,&(lvalues[5646]),0},
2294{"id-Gost28147-89-cc","GOST 28147-89 Cryptocom ParamSet",
2295 NID_id_Gost28147_89_cc,8,&(lvalues[5653]),0},
2296{"gost94cc","GOST 34.10-94 Cryptocom",NID_id_GostR3410_94_cc,8,
2297 &(lvalues[5661]),0},
2298{"gost2001cc","GOST 34.10-2001 Cryptocom",NID_id_GostR3410_2001_cc,8,
2299 &(lvalues[5669]),0},
2300{"id-GostR3411-94-with-GostR3410-94-cc",
2301 "GOST R 34.11-94 with GOST R 34.10-94 Cryptocom",
2302 NID_id_GostR3411_94_with_GostR3410_94_cc,8,&(lvalues[5677]),0},
2303{"id-GostR3411-94-with-GostR3410-2001-cc",
2304 "GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom",
2305 NID_id_GostR3411_94_with_GostR3410_2001_cc,8,&(lvalues[5685]),0},
2306{"id-GostR3410-2001-ParamSet-cc",
2307 "GOST R 3410-2001 Parameter Set Cryptocom",
2308 NID_id_GostR3410_2001_ParamSet_cc,8,&(lvalues[5693]),0},
2309{"HMAC","hmac",NID_hmac,0,NULL,0},
2310{"LocalKeySet","Microsoft Local Key set",NID_LocalKeySet,9,
2311 &(lvalues[5701]),0},
2312{"freshestCRL","X509v3 Freshest CRL",NID_freshest_crl,3,
2313 &(lvalues[5710]),0},
2314{"id-on-permanentIdentifier","Permanent Identifier",
2315 NID_id_on_permanentIdentifier,8,&(lvalues[5713]),0},
2316{"searchGuide","searchGuide",NID_searchGuide,3,&(lvalues[5721]),0},
2317{"businessCategory","businessCategory",NID_businessCategory,3,
2318 &(lvalues[5724]),0},
2319{"postalAddress","postalAddress",NID_postalAddress,3,&(lvalues[5727]),0},
2320{"postOfficeBox","postOfficeBox",NID_postOfficeBox,3,&(lvalues[5730]),0},
2321{"physicalDeliveryOfficeName","physicalDeliveryOfficeName",
2322 NID_physicalDeliveryOfficeName,3,&(lvalues[5733]),0},
2323{"telephoneNumber","telephoneNumber",NID_telephoneNumber,3,
2324 &(lvalues[5736]),0},
2325{"telexNumber","telexNumber",NID_telexNumber,3,&(lvalues[5739]),0},
2326{"teletexTerminalIdentifier","teletexTerminalIdentifier",
2327 NID_teletexTerminalIdentifier,3,&(lvalues[5742]),0},
2328{"facsimileTelephoneNumber","facsimileTelephoneNumber",
2329 NID_facsimileTelephoneNumber,3,&(lvalues[5745]),0},
2330{"x121Address","x121Address",NID_x121Address,3,&(lvalues[5748]),0},
2331{"internationaliSDNNumber","internationaliSDNNumber",
2332 NID_internationaliSDNNumber,3,&(lvalues[5751]),0},
2333{"registeredAddress","registeredAddress",NID_registeredAddress,3,
2334 &(lvalues[5754]),0},
2335{"destinationIndicator","destinationIndicator",
2336 NID_destinationIndicator,3,&(lvalues[5757]),0},
2337{"preferredDeliveryMethod","preferredDeliveryMethod",
2338 NID_preferredDeliveryMethod,3,&(lvalues[5760]),0},
2339{"presentationAddress","presentationAddress",NID_presentationAddress,
2340 3,&(lvalues[5763]),0},
2341{"supportedApplicationContext","supportedApplicationContext",
2342 NID_supportedApplicationContext,3,&(lvalues[5766]),0},
2343{"member","member",NID_member,3,&(lvalues[5769]),0},
2344{"owner","owner",NID_owner,3,&(lvalues[5772]),0},
2345{"roleOccupant","roleOccupant",NID_roleOccupant,3,&(lvalues[5775]),0},
2346{"seeAlso","seeAlso",NID_seeAlso,3,&(lvalues[5778]),0},
2347{"userPassword","userPassword",NID_userPassword,3,&(lvalues[5781]),0},
2348{"userCertificate","userCertificate",NID_userCertificate,3,
2349 &(lvalues[5784]),0},
2350{"cACertificate","cACertificate",NID_cACertificate,3,&(lvalues[5787]),0},
2351{"authorityRevocationList","authorityRevocationList",
2352 NID_authorityRevocationList,3,&(lvalues[5790]),0},
2353{"certificateRevocationList","certificateRevocationList",
2354 NID_certificateRevocationList,3,&(lvalues[5793]),0},
2355{"crossCertificatePair","crossCertificatePair",
2356 NID_crossCertificatePair,3,&(lvalues[5796]),0},
2357{"enhancedSearchGuide","enhancedSearchGuide",NID_enhancedSearchGuide,
2358 3,&(lvalues[5799]),0},
2359{"protocolInformation","protocolInformation",NID_protocolInformation,
2360 3,&(lvalues[5802]),0},
2361{"distinguishedName","distinguishedName",NID_distinguishedName,3,
2362 &(lvalues[5805]),0},
2363{"uniqueMember","uniqueMember",NID_uniqueMember,3,&(lvalues[5808]),0},
2364{"houseIdentifier","houseIdentifier",NID_houseIdentifier,3,
2365 &(lvalues[5811]),0},
2366{"supportedAlgorithms","supportedAlgorithms",NID_supportedAlgorithms,
2367 3,&(lvalues[5814]),0},
2368{"deltaRevocationList","deltaRevocationList",NID_deltaRevocationList,
2369 3,&(lvalues[5817]),0},
2370{"dmdName","dmdName",NID_dmdName,3,&(lvalues[5820]),0},
2371{"id-alg-PWRI-KEK","id-alg-PWRI-KEK",NID_id_alg_PWRI_KEK,11,
2372 &(lvalues[5823]),0},
2373{"CMAC","cmac",NID_cmac,0,NULL,0},
2374{"id-aes128-GCM","aes-128-gcm",NID_aes_128_gcm,9,&(lvalues[5834]),0},
2375{"id-aes128-CCM","aes-128-ccm",NID_aes_128_ccm,9,&(lvalues[5843]),0},
2376{"id-aes128-wrap-pad","id-aes128-wrap-pad",NID_id_aes128_wrap_pad,9,
2377 &(lvalues[5852]),0},
2378{"id-aes192-GCM","aes-192-gcm",NID_aes_192_gcm,9,&(lvalues[5861]),0},
2379{"id-aes192-CCM","aes-192-ccm",NID_aes_192_ccm,9,&(lvalues[5870]),0},
2380{"id-aes192-wrap-pad","id-aes192-wrap-pad",NID_id_aes192_wrap_pad,9,
2381 &(lvalues[5879]),0},
2382{"id-aes256-GCM","aes-256-gcm",NID_aes_256_gcm,9,&(lvalues[5888]),0},
2383{"id-aes256-CCM","aes-256-ccm",NID_aes_256_ccm,9,&(lvalues[5897]),0},
2384{"id-aes256-wrap-pad","id-aes256-wrap-pad",NID_id_aes256_wrap_pad,9,
2385 &(lvalues[5906]),0},
2386{"AES-128-CTR","aes-128-ctr",NID_aes_128_ctr,0,NULL,0},
2387{"AES-192-CTR","aes-192-ctr",NID_aes_192_ctr,0,NULL,0},
2388{"AES-256-CTR","aes-256-ctr",NID_aes_256_ctr,0,NULL,0},
2389{"id-camellia128-wrap","id-camellia128-wrap",NID_id_camellia128_wrap,
2390 11,&(lvalues[5915]),0},
2391{"id-camellia192-wrap","id-camellia192-wrap",NID_id_camellia192_wrap,
2392 11,&(lvalues[5926]),0},
2393{"id-camellia256-wrap","id-camellia256-wrap",NID_id_camellia256_wrap,
2394 11,&(lvalues[5937]),0},
2395{"anyExtendedKeyUsage","Any Extended Key Usage",
2396 NID_anyExtendedKeyUsage,4,&(lvalues[5948]),0},
2397{"MGF1","mgf1",NID_mgf1,9,&(lvalues[5952]),0},
2398{"RSASSA-PSS","rsassaPss",NID_rsassaPss,9,&(lvalues[5961]),0},
2399{"AES-128-XTS","aes-128-xts",NID_aes_128_xts,0,NULL,0},
2400{"AES-256-XTS","aes-256-xts",NID_aes_256_xts,0,NULL,0},
2401{"RC4-HMAC-MD5","rc4-hmac-md5",NID_rc4_hmac_md5,0,NULL,0},
2402{"AES-128-CBC-HMAC-SHA1","aes-128-cbc-hmac-sha1",
2403 NID_aes_128_cbc_hmac_sha1,0,NULL,0},
2404{"AES-192-CBC-HMAC-SHA1","aes-192-cbc-hmac-sha1",
2405 NID_aes_192_cbc_hmac_sha1,0,NULL,0},
2406{"AES-256-CBC-HMAC-SHA1","aes-256-cbc-hmac-sha1",
2407 NID_aes_256_cbc_hmac_sha1,0,NULL,0},
2408{"RSAES-OAEP","rsaesOaep",NID_rsaesOaep,9,&(lvalues[5970]),0},
2409};
2410
2411static const unsigned int sn_objs[NUM_SN]={
2412364, /* "AD_DVCS" */
2413419, /* "AES-128-CBC" */
2414916, /* "AES-128-CBC-HMAC-SHA1" */
2415421, /* "AES-128-CFB" */
2416650, /* "AES-128-CFB1" */
2417653, /* "AES-128-CFB8" */
2418904, /* "AES-128-CTR" */
2419418, /* "AES-128-ECB" */
2420420, /* "AES-128-OFB" */
2421913, /* "AES-128-XTS" */
2422423, /* "AES-192-CBC" */
2423917, /* "AES-192-CBC-HMAC-SHA1" */
2424425, /* "AES-192-CFB" */
2425651, /* "AES-192-CFB1" */
2426654, /* "AES-192-CFB8" */
2427905, /* "AES-192-CTR" */
2428422, /* "AES-192-ECB" */
2429424, /* "AES-192-OFB" */
2430427, /* "AES-256-CBC" */
2431918, /* "AES-256-CBC-HMAC-SHA1" */
2432429, /* "AES-256-CFB" */
2433652, /* "AES-256-CFB1" */
2434655, /* "AES-256-CFB8" */
2435906, /* "AES-256-CTR" */
2436426, /* "AES-256-ECB" */
2437428, /* "AES-256-OFB" */
2438914, /* "AES-256-XTS" */
243991, /* "BF-CBC" */
244093, /* "BF-CFB" */
244192, /* "BF-ECB" */
244294, /* "BF-OFB" */
244314, /* "C" */
2444751, /* "CAMELLIA-128-CBC" */
2445757, /* "CAMELLIA-128-CFB" */
2446760, /* "CAMELLIA-128-CFB1" */
2447763, /* "CAMELLIA-128-CFB8" */
2448754, /* "CAMELLIA-128-ECB" */
2449766, /* "CAMELLIA-128-OFB" */
2450752, /* "CAMELLIA-192-CBC" */
2451758, /* "CAMELLIA-192-CFB" */
2452761, /* "CAMELLIA-192-CFB1" */
2453764, /* "CAMELLIA-192-CFB8" */
2454755, /* "CAMELLIA-192-ECB" */
2455767, /* "CAMELLIA-192-OFB" */
2456753, /* "CAMELLIA-256-CBC" */
2457759, /* "CAMELLIA-256-CFB" */
2458762, /* "CAMELLIA-256-CFB1" */
2459765, /* "CAMELLIA-256-CFB8" */
2460756, /* "CAMELLIA-256-ECB" */
2461768, /* "CAMELLIA-256-OFB" */
2462108, /* "CAST5-CBC" */
2463110, /* "CAST5-CFB" */
2464109, /* "CAST5-ECB" */
2465111, /* "CAST5-OFB" */
2466894, /* "CMAC" */
246713, /* "CN" */
2468141, /* "CRLReason" */
2469417, /* "CSPName" */
2470367, /* "CrlID" */
2471391, /* "DC" */
247231, /* "DES-CBC" */
2473643, /* "DES-CDMF" */
247430, /* "DES-CFB" */
2475656, /* "DES-CFB1" */
2476657, /* "DES-CFB8" */
247729, /* "DES-ECB" */
247832, /* "DES-EDE" */
247943, /* "DES-EDE-CBC" */
248060, /* "DES-EDE-CFB" */
248162, /* "DES-EDE-OFB" */
248233, /* "DES-EDE3" */
248344, /* "DES-EDE3-CBC" */
248461, /* "DES-EDE3-CFB" */
2485658, /* "DES-EDE3-CFB1" */
2486659, /* "DES-EDE3-CFB8" */
248763, /* "DES-EDE3-OFB" */
248845, /* "DES-OFB" */
248980, /* "DESX-CBC" */
2490380, /* "DOD" */
2491116, /* "DSA" */
249266, /* "DSA-SHA" */
2493113, /* "DSA-SHA1" */
249470, /* "DSA-SHA1-old" */
249567, /* "DSA-old" */
2496297, /* "DVCS" */
249799, /* "GN" */
2498855, /* "HMAC" */
2499780, /* "HMAC-MD5" */
2500781, /* "HMAC-SHA1" */
2501381, /* "IANA" */
250234, /* "IDEA-CBC" */
250335, /* "IDEA-CFB" */
250436, /* "IDEA-ECB" */
250546, /* "IDEA-OFB" */
2506181, /* "ISO" */
2507183, /* "ISO-US" */
2508645, /* "ITU-T" */
2509646, /* "JOINT-ISO-ITU-T" */
2510773, /* "KISA" */
251115, /* "L" */
2512856, /* "LocalKeySet" */
2513 3, /* "MD2" */
2514257, /* "MD4" */
2515 4, /* "MD5" */
2516114, /* "MD5-SHA1" */
251795, /* "MDC2" */
2518911, /* "MGF1" */
2519388, /* "Mail" */
2520393, /* "NULL" */
2521404, /* "NULL" */
252257, /* "Netscape" */
2523366, /* "Nonce" */
252417, /* "O" */
2525178, /* "OCSP" */
2526180, /* "OCSPSigning" */
2527379, /* "ORG" */
252818, /* "OU" */
2529749, /* "Oakley-EC2N-3" */
2530750, /* "Oakley-EC2N-4" */
2531 9, /* "PBE-MD2-DES" */
2532168, /* "PBE-MD2-RC2-64" */
253310, /* "PBE-MD5-DES" */
2534169, /* "PBE-MD5-RC2-64" */
2535147, /* "PBE-SHA1-2DES" */
2536146, /* "PBE-SHA1-3DES" */
2537170, /* "PBE-SHA1-DES" */
2538148, /* "PBE-SHA1-RC2-128" */
2539149, /* "PBE-SHA1-RC2-40" */
254068, /* "PBE-SHA1-RC2-64" */
2541144, /* "PBE-SHA1-RC4-128" */
2542145, /* "PBE-SHA1-RC4-40" */
2543161, /* "PBES2" */
254469, /* "PBKDF2" */
2545162, /* "PBMAC1" */
2546127, /* "PKIX" */
254798, /* "RC2-40-CBC" */
2548166, /* "RC2-64-CBC" */
254937, /* "RC2-CBC" */
255039, /* "RC2-CFB" */
255138, /* "RC2-ECB" */
255240, /* "RC2-OFB" */
2553 5, /* "RC4" */
255497, /* "RC4-40" */
2555915, /* "RC4-HMAC-MD5" */
2556120, /* "RC5-CBC" */
2557122, /* "RC5-CFB" */
2558121, /* "RC5-ECB" */
2559123, /* "RC5-OFB" */
2560117, /* "RIPEMD160" */
2561124, /* "RLE" */
256219, /* "RSA" */
2563 7, /* "RSA-MD2" */
2564396, /* "RSA-MD4" */
2565 8, /* "RSA-MD5" */
256696, /* "RSA-MDC2" */
2567104, /* "RSA-NP-MD5" */
2568119, /* "RSA-RIPEMD160" */
256942, /* "RSA-SHA" */
257065, /* "RSA-SHA1" */
2571115, /* "RSA-SHA1-2" */
2572671, /* "RSA-SHA224" */
2573668, /* "RSA-SHA256" */
2574669, /* "RSA-SHA384" */
2575670, /* "RSA-SHA512" */
2576919, /* "RSAES-OAEP" */
2577912, /* "RSASSA-PSS" */
2578777, /* "SEED-CBC" */
2579779, /* "SEED-CFB" */
2580776, /* "SEED-ECB" */
2581778, /* "SEED-OFB" */
258241, /* "SHA" */
258364, /* "SHA1" */
2584675, /* "SHA224" */
2585672, /* "SHA256" */
2586673, /* "SHA384" */
2587674, /* "SHA512" */
2588188, /* "SMIME" */
2589167, /* "SMIME-CAPS" */
2590100, /* "SN" */
259116, /* "ST" */
2592143, /* "SXNetID" */
2593458, /* "UID" */
2594 0, /* "UNDEF" */
259511, /* "X500" */
2596378, /* "X500algorithms" */
259712, /* "X509" */
2598184, /* "X9-57" */
2599185, /* "X9cm" */
2600125, /* "ZLIB" */
2601478, /* "aRecord" */
2602289, /* "aaControls" */
2603287, /* "ac-auditEntity" */
2604397, /* "ac-proxying" */
2605288, /* "ac-targeting" */
2606368, /* "acceptableResponses" */
2607446, /* "account" */
2608363, /* "ad_timestamping" */
2609376, /* "algorithm" */
2610405, /* "ansi-X9-62" */
2611910, /* "anyExtendedKeyUsage" */
2612746, /* "anyPolicy" */
2613370, /* "archiveCutoff" */
2614484, /* "associatedDomain" */
2615485, /* "associatedName" */
2616501, /* "audio" */
2617177, /* "authorityInfoAccess" */
261890, /* "authorityKeyIdentifier" */
2619882, /* "authorityRevocationList" */
262087, /* "basicConstraints" */
2621365, /* "basicOCSPResponse" */
2622285, /* "biometricInfo" */
2623494, /* "buildingName" */
2624860, /* "businessCategory" */
2625691, /* "c2onb191v4" */
2626692, /* "c2onb191v5" */
2627697, /* "c2onb239v4" */
2628698, /* "c2onb239v5" */
2629684, /* "c2pnb163v1" */
2630685, /* "c2pnb163v2" */
2631686, /* "c2pnb163v3" */
2632687, /* "c2pnb176v1" */
2633693, /* "c2pnb208w1" */
2634699, /* "c2pnb272w1" */
2635700, /* "c2pnb304w1" */
2636702, /* "c2pnb368w1" */
2637688, /* "c2tnb191v1" */
2638689, /* "c2tnb191v2" */
2639690, /* "c2tnb191v3" */
2640694, /* "c2tnb239v1" */
2641695, /* "c2tnb239v2" */
2642696, /* "c2tnb239v3" */
2643701, /* "c2tnb359v1" */
2644703, /* "c2tnb431r1" */
2645881, /* "cACertificate" */
2646483, /* "cNAMERecord" */
2647179, /* "caIssuers" */
2648785, /* "caRepository" */
2649443, /* "caseIgnoreIA5StringSyntax" */
2650152, /* "certBag" */
2651677, /* "certicom-arc" */
2652771, /* "certificateIssuer" */
265389, /* "certificatePolicies" */
2654883, /* "certificateRevocationList" */
265554, /* "challengePassword" */
2656407, /* "characteristic-two-field" */
2657395, /* "clearance" */
2658130, /* "clientAuth" */
2659131, /* "codeSigning" */
266050, /* "contentType" */
266153, /* "countersignature" */
2662153, /* "crlBag" */
2663103, /* "crlDistributionPoints" */
266488, /* "crlNumber" */
2665884, /* "crossCertificatePair" */
2666806, /* "cryptocom" */
2667805, /* "cryptopro" */
2668500, /* "dITRedirect" */
2669451, /* "dNSDomain" */
2670495, /* "dSAQuality" */
2671434, /* "data" */
2672390, /* "dcobject" */
2673140, /* "deltaCRL" */
2674891, /* "deltaRevocationList" */
2675107, /* "description" */
2676871, /* "destinationIndicator" */
267728, /* "dhKeyAgreement" */
2678382, /* "directory" */
2679887, /* "distinguishedName" */
2680892, /* "dmdName" */
2681174, /* "dnQualifier" */
2682447, /* "document" */
2683471, /* "documentAuthor" */
2684468, /* "documentIdentifier" */
2685472, /* "documentLocation" */
2686502, /* "documentPublisher" */
2687449, /* "documentSeries" */
2688469, /* "documentTitle" */
2689470, /* "documentVersion" */
2690392, /* "domain" */
2691452, /* "domainRelatedObject" */
2692802, /* "dsa_with_SHA224" */
2693803, /* "dsa_with_SHA256" */
2694791, /* "ecdsa-with-Recommended" */
2695416, /* "ecdsa-with-SHA1" */
2696793, /* "ecdsa-with-SHA224" */
2697794, /* "ecdsa-with-SHA256" */
2698795, /* "ecdsa-with-SHA384" */
2699796, /* "ecdsa-with-SHA512" */
2700792, /* "ecdsa-with-Specified" */
270148, /* "emailAddress" */
2702132, /* "emailProtection" */
2703885, /* "enhancedSearchGuide" */
2704389, /* "enterprises" */
2705384, /* "experimental" */
2706172, /* "extReq" */
270756, /* "extendedCertificateAttributes" */
2708126, /* "extendedKeyUsage" */
2709372, /* "extendedStatus" */
2710867, /* "facsimileTelephoneNumber" */
2711462, /* "favouriteDrink" */
2712857, /* "freshestCRL" */
2713453, /* "friendlyCountry" */
2714490, /* "friendlyCountryName" */
2715156, /* "friendlyName" */
2716509, /* "generationQualifier" */
2717815, /* "gost-mac" */
2718811, /* "gost2001" */
2719851, /* "gost2001cc" */
2720813, /* "gost89" */
2721814, /* "gost89-cnt" */
2722812, /* "gost94" */
2723850, /* "gost94cc" */
2724797, /* "hmacWithMD5" */
2725163, /* "hmacWithSHA1" */
2726798, /* "hmacWithSHA224" */
2727799, /* "hmacWithSHA256" */
2728800, /* "hmacWithSHA384" */
2729801, /* "hmacWithSHA512" */
2730432, /* "holdInstructionCallIssuer" */
2731430, /* "holdInstructionCode" */
2732431, /* "holdInstructionNone" */
2733433, /* "holdInstructionReject" */
2734486, /* "homePostalAddress" */
2735473, /* "homeTelephoneNumber" */
2736466, /* "host" */
2737889, /* "houseIdentifier" */
2738442, /* "iA5StringSyntax" */
2739783, /* "id-DHBasedMac" */
2740824, /* "id-Gost28147-89-CryptoPro-A-ParamSet" */
2741825, /* "id-Gost28147-89-CryptoPro-B-ParamSet" */
2742826, /* "id-Gost28147-89-CryptoPro-C-ParamSet" */
2743827, /* "id-Gost28147-89-CryptoPro-D-ParamSet" */
2744819, /* "id-Gost28147-89-CryptoPro-KeyMeshing" */
2745829, /* "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet" */
2746828, /* "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet" */
2747830, /* "id-Gost28147-89-CryptoPro-RIC-1-ParamSet" */
2748820, /* "id-Gost28147-89-None-KeyMeshing" */
2749823, /* "id-Gost28147-89-TestParamSet" */
2750849, /* "id-Gost28147-89-cc" */
2751840, /* "id-GostR3410-2001-CryptoPro-A-ParamSet" */
2752841, /* "id-GostR3410-2001-CryptoPro-B-ParamSet" */
2753842, /* "id-GostR3410-2001-CryptoPro-C-ParamSet" */
2754843, /* "id-GostR3410-2001-CryptoPro-XchA-ParamSet" */
2755844, /* "id-GostR3410-2001-CryptoPro-XchB-ParamSet" */
2756854, /* "id-GostR3410-2001-ParamSet-cc" */
2757839, /* "id-GostR3410-2001-TestParamSet" */
2758817, /* "id-GostR3410-2001DH" */
2759832, /* "id-GostR3410-94-CryptoPro-A-ParamSet" */
2760833, /* "id-GostR3410-94-CryptoPro-B-ParamSet" */
2761834, /* "id-GostR3410-94-CryptoPro-C-ParamSet" */
2762835, /* "id-GostR3410-94-CryptoPro-D-ParamSet" */
2763836, /* "id-GostR3410-94-CryptoPro-XchA-ParamSet" */
2764837, /* "id-GostR3410-94-CryptoPro-XchB-ParamSet" */
2765838, /* "id-GostR3410-94-CryptoPro-XchC-ParamSet" */
2766831, /* "id-GostR3410-94-TestParamSet" */
2767845, /* "id-GostR3410-94-a" */
2768846, /* "id-GostR3410-94-aBis" */
2769847, /* "id-GostR3410-94-b" */
2770848, /* "id-GostR3410-94-bBis" */
2771818, /* "id-GostR3410-94DH" */
2772822, /* "id-GostR3411-94-CryptoProParamSet" */
2773821, /* "id-GostR3411-94-TestParamSet" */
2774807, /* "id-GostR3411-94-with-GostR3410-2001" */
2775853, /* "id-GostR3411-94-with-GostR3410-2001-cc" */
2776808, /* "id-GostR3411-94-with-GostR3410-94" */
2777852, /* "id-GostR3411-94-with-GostR3410-94-cc" */
2778810, /* "id-HMACGostR3411-94" */
2779782, /* "id-PasswordBasedMAC" */
2780266, /* "id-aca" */
2781355, /* "id-aca-accessIdentity" */
2782354, /* "id-aca-authenticationInfo" */
2783356, /* "id-aca-chargingIdentity" */
2784399, /* "id-aca-encAttrs" */
2785357, /* "id-aca-group" */
2786358, /* "id-aca-role" */
2787176, /* "id-ad" */
2788896, /* "id-aes128-CCM" */
2789895, /* "id-aes128-GCM" */
2790788, /* "id-aes128-wrap" */
2791897, /* "id-aes128-wrap-pad" */
2792899, /* "id-aes192-CCM" */
2793898, /* "id-aes192-GCM" */
2794789, /* "id-aes192-wrap" */
2795900, /* "id-aes192-wrap-pad" */
2796902, /* "id-aes256-CCM" */
2797901, /* "id-aes256-GCM" */
2798790, /* "id-aes256-wrap" */
2799903, /* "id-aes256-wrap-pad" */
2800262, /* "id-alg" */
2801893, /* "id-alg-PWRI-KEK" */
2802323, /* "id-alg-des40" */
2803326, /* "id-alg-dh-pop" */
2804325, /* "id-alg-dh-sig-hmac-sha1" */
2805324, /* "id-alg-noSignature" */
2806907, /* "id-camellia128-wrap" */
2807908, /* "id-camellia192-wrap" */
2808909, /* "id-camellia256-wrap" */
2809268, /* "id-cct" */
2810361, /* "id-cct-PKIData" */
2811362, /* "id-cct-PKIResponse" */
2812360, /* "id-cct-crs" */
281381, /* "id-ce" */
2814680, /* "id-characteristic-two-basis" */
2815263, /* "id-cmc" */
2816334, /* "id-cmc-addExtensions" */
2817346, /* "id-cmc-confirmCertAcceptance" */
2818330, /* "id-cmc-dataReturn" */
2819336, /* "id-cmc-decryptedPOP" */
2820335, /* "id-cmc-encryptedPOP" */
2821339, /* "id-cmc-getCRL" */
2822338, /* "id-cmc-getCert" */
2823328, /* "id-cmc-identification" */
2824329, /* "id-cmc-identityProof" */
2825337, /* "id-cmc-lraPOPWitness" */
2826344, /* "id-cmc-popLinkRandom" */
2827345, /* "id-cmc-popLinkWitness" */
2828343, /* "id-cmc-queryPending" */
2829333, /* "id-cmc-recipientNonce" */
2830341, /* "id-cmc-regInfo" */
2831342, /* "id-cmc-responseInfo" */
2832340, /* "id-cmc-revokeRequest" */
2833332, /* "id-cmc-senderNonce" */
2834327, /* "id-cmc-statusInfo" */
2835331, /* "id-cmc-transactionId" */
2836787, /* "id-ct-asciiTextWithCRLF" */
2837408, /* "id-ecPublicKey" */
2838508, /* "id-hex-multipart-message" */
2839507, /* "id-hex-partial-message" */
2840260, /* "id-it" */
2841302, /* "id-it-caKeyUpdateInfo" */
2842298, /* "id-it-caProtEncCert" */
2843311, /* "id-it-confirmWaitTime" */
2844303, /* "id-it-currentCRL" */
2845300, /* "id-it-encKeyPairTypes" */
2846310, /* "id-it-implicitConfirm" */
2847308, /* "id-it-keyPairParamRep" */
2848307, /* "id-it-keyPairParamReq" */
2849312, /* "id-it-origPKIMessage" */
2850301, /* "id-it-preferredSymmAlg" */
2851309, /* "id-it-revPassphrase" */
2852299, /* "id-it-signKeyPairTypes" */
2853305, /* "id-it-subscriptionRequest" */
2854306, /* "id-it-subscriptionResponse" */
2855784, /* "id-it-suppLangTags" */
2856304, /* "id-it-unsupportedOIDs" */
2857128, /* "id-kp" */
2858280, /* "id-mod-attribute-cert" */
2859274, /* "id-mod-cmc" */
2860277, /* "id-mod-cmp" */
2861284, /* "id-mod-cmp2000" */
2862273, /* "id-mod-crmf" */
2863283, /* "id-mod-dvcs" */
2864275, /* "id-mod-kea-profile-88" */
2865276, /* "id-mod-kea-profile-93" */
2866282, /* "id-mod-ocsp" */
2867278, /* "id-mod-qualified-cert-88" */
2868279, /* "id-mod-qualified-cert-93" */
2869281, /* "id-mod-timestamp-protocol" */
2870264, /* "id-on" */
2871858, /* "id-on-permanentIdentifier" */
2872347, /* "id-on-personalData" */
2873265, /* "id-pda" */
2874352, /* "id-pda-countryOfCitizenship" */
2875353, /* "id-pda-countryOfResidence" */
2876348, /* "id-pda-dateOfBirth" */
2877351, /* "id-pda-gender" */
2878349, /* "id-pda-placeOfBirth" */
2879175, /* "id-pe" */
2880261, /* "id-pkip" */
2881258, /* "id-pkix-mod" */
2882269, /* "id-pkix1-explicit-88" */
2883271, /* "id-pkix1-explicit-93" */
2884270, /* "id-pkix1-implicit-88" */
2885272, /* "id-pkix1-implicit-93" */
2886662, /* "id-ppl" */
2887664, /* "id-ppl-anyLanguage" */
2888667, /* "id-ppl-independent" */
2889665, /* "id-ppl-inheritAll" */
2890267, /* "id-qcs" */
2891359, /* "id-qcs-pkixQCSyntax-v1" */
2892259, /* "id-qt" */
2893164, /* "id-qt-cps" */
2894165, /* "id-qt-unotice" */
2895313, /* "id-regCtrl" */
2896316, /* "id-regCtrl-authenticator" */
2897319, /* "id-regCtrl-oldCertID" */
2898318, /* "id-regCtrl-pkiArchiveOptions" */
2899317, /* "id-regCtrl-pkiPublicationInfo" */
2900320, /* "id-regCtrl-protocolEncrKey" */
2901315, /* "id-regCtrl-regToken" */
2902314, /* "id-regInfo" */
2903322, /* "id-regInfo-certReq" */
2904321, /* "id-regInfo-utf8Pairs" */
2905512, /* "id-set" */
2906191, /* "id-smime-aa" */
2907215, /* "id-smime-aa-contentHint" */
2908218, /* "id-smime-aa-contentIdentifier" */
2909221, /* "id-smime-aa-contentReference" */
2910240, /* "id-smime-aa-dvcs-dvc" */
2911217, /* "id-smime-aa-encapContentType" */
2912222, /* "id-smime-aa-encrypKeyPref" */
2913220, /* "id-smime-aa-equivalentLabels" */
2914232, /* "id-smime-aa-ets-CertificateRefs" */
2915233, /* "id-smime-aa-ets-RevocationRefs" */
2916238, /* "id-smime-aa-ets-archiveTimeStamp" */
2917237, /* "id-smime-aa-ets-certCRLTimestamp" */
2918234, /* "id-smime-aa-ets-certValues" */
2919227, /* "id-smime-aa-ets-commitmentType" */
2920231, /* "id-smime-aa-ets-contentTimestamp" */
2921236, /* "id-smime-aa-ets-escTimeStamp" */
2922230, /* "id-smime-aa-ets-otherSigCert" */
2923235, /* "id-smime-aa-ets-revocationValues" */
2924226, /* "id-smime-aa-ets-sigPolicyId" */
2925229, /* "id-smime-aa-ets-signerAttr" */
2926228, /* "id-smime-aa-ets-signerLocation" */
2927219, /* "id-smime-aa-macValue" */
2928214, /* "id-smime-aa-mlExpandHistory" */
2929216, /* "id-smime-aa-msgSigDigest" */
2930212, /* "id-smime-aa-receiptRequest" */
2931213, /* "id-smime-aa-securityLabel" */
2932239, /* "id-smime-aa-signatureType" */
2933223, /* "id-smime-aa-signingCertificate" */
2934224, /* "id-smime-aa-smimeEncryptCerts" */
2935225, /* "id-smime-aa-timeStampToken" */
2936192, /* "id-smime-alg" */
2937243, /* "id-smime-alg-3DESwrap" */
2938246, /* "id-smime-alg-CMS3DESwrap" */
2939247, /* "id-smime-alg-CMSRC2wrap" */
2940245, /* "id-smime-alg-ESDH" */
2941241, /* "id-smime-alg-ESDHwith3DES" */
2942242, /* "id-smime-alg-ESDHwithRC2" */
2943244, /* "id-smime-alg-RC2wrap" */
2944193, /* "id-smime-cd" */
2945248, /* "id-smime-cd-ldap" */
2946190, /* "id-smime-ct" */
2947210, /* "id-smime-ct-DVCSRequestData" */
2948211, /* "id-smime-ct-DVCSResponseData" */
2949208, /* "id-smime-ct-TDTInfo" */
2950207, /* "id-smime-ct-TSTInfo" */
2951205, /* "id-smime-ct-authData" */
2952786, /* "id-smime-ct-compressedData" */
2953209, /* "id-smime-ct-contentInfo" */
2954206, /* "id-smime-ct-publishCert" */
2955204, /* "id-smime-ct-receipt" */
2956195, /* "id-smime-cti" */
2957255, /* "id-smime-cti-ets-proofOfApproval" */
2958256, /* "id-smime-cti-ets-proofOfCreation" */
2959253, /* "id-smime-cti-ets-proofOfDelivery" */
2960251, /* "id-smime-cti-ets-proofOfOrigin" */
2961252, /* "id-smime-cti-ets-proofOfReceipt" */
2962254, /* "id-smime-cti-ets-proofOfSender" */
2963189, /* "id-smime-mod" */
2964196, /* "id-smime-mod-cms" */
2965197, /* "id-smime-mod-ess" */
2966202, /* "id-smime-mod-ets-eSigPolicy-88" */
2967203, /* "id-smime-mod-ets-eSigPolicy-97" */
2968200, /* "id-smime-mod-ets-eSignature-88" */
2969201, /* "id-smime-mod-ets-eSignature-97" */
2970199, /* "id-smime-mod-msg-v3" */
2971198, /* "id-smime-mod-oid" */
2972194, /* "id-smime-spq" */
2973250, /* "id-smime-spq-ets-sqt-unotice" */
2974249, /* "id-smime-spq-ets-sqt-uri" */
2975676, /* "identified-organization" */
2976461, /* "info" */
2977748, /* "inhibitAnyPolicy" */
2978101, /* "initials" */
2979647, /* "international-organizations" */
2980869, /* "internationaliSDNNumber" */
2981142, /* "invalidityDate" */
2982294, /* "ipsecEndSystem" */
2983295, /* "ipsecTunnel" */
2984296, /* "ipsecUser" */
298586, /* "issuerAltName" */
2986770, /* "issuingDistributionPoint" */
2987492, /* "janetMailbox" */
2988150, /* "keyBag" */
298983, /* "keyUsage" */
2990477, /* "lastModifiedBy" */
2991476, /* "lastModifiedTime" */
2992157, /* "localKeyID" */
2993480, /* "mXRecord" */
2994460, /* "mail" */
2995493, /* "mailPreferenceOption" */
2996467, /* "manager" */
2997809, /* "md_gost94" */
2998875, /* "member" */
2999182, /* "member-body" */
300051, /* "messageDigest" */
3001383, /* "mgmt" */
3002504, /* "mime-mhs" */
3003506, /* "mime-mhs-bodies" */
3004505, /* "mime-mhs-headings" */
3005488, /* "mobileTelephoneNumber" */
3006136, /* "msCTLSign" */
3007135, /* "msCodeCom" */
3008134, /* "msCodeInd" */
3009138, /* "msEFS" */
3010171, /* "msExtReq" */
3011137, /* "msSGC" */
3012648, /* "msSmartcardLogin" */
3013649, /* "msUPN" */
3014481, /* "nSRecord" */
3015173, /* "name" */
3016666, /* "nameConstraints" */
3017369, /* "noCheck" */
3018403, /* "noRevAvail" */
301972, /* "nsBaseUrl" */
302076, /* "nsCaPolicyUrl" */
302174, /* "nsCaRevocationUrl" */
302258, /* "nsCertExt" */
302379, /* "nsCertSequence" */
302471, /* "nsCertType" */
302578, /* "nsComment" */
302659, /* "nsDataType" */
302775, /* "nsRenewalUrl" */
302873, /* "nsRevocationUrl" */
3029139, /* "nsSGC" */
303077, /* "nsSslServerName" */
3031681, /* "onBasis" */
3032491, /* "organizationalStatus" */
3033475, /* "otherMailbox" */
3034876, /* "owner" */
3035489, /* "pagerTelephoneNumber" */
3036374, /* "path" */
3037112, /* "pbeWithMD5AndCast5CBC" */
3038499, /* "personalSignature" */
3039487, /* "personalTitle" */
3040464, /* "photo" */
3041863, /* "physicalDeliveryOfficeName" */
3042437, /* "pilot" */
3043439, /* "pilotAttributeSyntax" */
3044438, /* "pilotAttributeType" */
3045479, /* "pilotAttributeType27" */
3046456, /* "pilotDSA" */
3047441, /* "pilotGroups" */
3048444, /* "pilotObject" */
3049440, /* "pilotObjectClass" */
3050455, /* "pilotOrganization" */
3051445, /* "pilotPerson" */
3052 2, /* "pkcs" */
3053186, /* "pkcs1" */
305427, /* "pkcs3" */
3055187, /* "pkcs5" */
305620, /* "pkcs7" */
305721, /* "pkcs7-data" */
305825, /* "pkcs7-digestData" */
305926, /* "pkcs7-encryptedData" */
306023, /* "pkcs7-envelopedData" */
306124, /* "pkcs7-signedAndEnvelopedData" */
306222, /* "pkcs7-signedData" */
3063151, /* "pkcs8ShroudedKeyBag" */
306447, /* "pkcs9" */
3065401, /* "policyConstraints" */
3066747, /* "policyMappings" */
3067862, /* "postOfficeBox" */
3068861, /* "postalAddress" */
3069661, /* "postalCode" */
3070683, /* "ppBasis" */
3071872, /* "preferredDeliveryMethod" */
3072873, /* "presentationAddress" */
3073816, /* "prf-gostr3411-94" */
3074406, /* "prime-field" */
3075409, /* "prime192v1" */
3076410, /* "prime192v2" */
3077411, /* "prime192v3" */
3078412, /* "prime239v1" */
3079413, /* "prime239v2" */
3080414, /* "prime239v3" */
3081415, /* "prime256v1" */
3082385, /* "private" */
308384, /* "privateKeyUsagePeriod" */
3084886, /* "protocolInformation" */
3085663, /* "proxyCertInfo" */
3086510, /* "pseudonym" */
3087435, /* "pss" */
3088286, /* "qcStatements" */
3089457, /* "qualityLabelledData" */
3090450, /* "rFC822localPart" */
3091870, /* "registeredAddress" */
3092400, /* "role" */
3093877, /* "roleOccupant" */
3094448, /* "room" */
3095463, /* "roomNumber" */
3096 6, /* "rsaEncryption" */
3097644, /* "rsaOAEPEncryptionSET" */
3098377, /* "rsaSignature" */
3099 1, /* "rsadsi" */
3100482, /* "sOARecord" */
3101155, /* "safeContentsBag" */
3102291, /* "sbgp-autonomousSysNum" */
3103290, /* "sbgp-ipAddrBlock" */
3104292, /* "sbgp-routerIdentifier" */
3105159, /* "sdsiCertificate" */
3106859, /* "searchGuide" */
3107704, /* "secp112r1" */
3108705, /* "secp112r2" */
3109706, /* "secp128r1" */
3110707, /* "secp128r2" */
3111708, /* "secp160k1" */
3112709, /* "secp160r1" */
3113710, /* "secp160r2" */
3114711, /* "secp192k1" */
3115712, /* "secp224k1" */
3116713, /* "secp224r1" */
3117714, /* "secp256k1" */
3118715, /* "secp384r1" */
3119716, /* "secp521r1" */
3120154, /* "secretBag" */
3121474, /* "secretary" */
3122717, /* "sect113r1" */
3123718, /* "sect113r2" */
3124719, /* "sect131r1" */
3125720, /* "sect131r2" */
3126721, /* "sect163k1" */
3127722, /* "sect163r1" */
3128723, /* "sect163r2" */
3129724, /* "sect193r1" */
3130725, /* "sect193r2" */
3131726, /* "sect233k1" */
3132727, /* "sect233r1" */
3133728, /* "sect239k1" */
3134729, /* "sect283k1" */
3135730, /* "sect283r1" */
3136731, /* "sect409k1" */
3137732, /* "sect409r1" */
3138733, /* "sect571k1" */
3139734, /* "sect571r1" */
3140386, /* "security" */
3141878, /* "seeAlso" */
3142394, /* "selected-attribute-types" */
3143105, /* "serialNumber" */
3144129, /* "serverAuth" */
3145371, /* "serviceLocator" */
3146625, /* "set-addPolicy" */
3147515, /* "set-attr" */
3148518, /* "set-brand" */
3149638, /* "set-brand-AmericanExpress" */
3150637, /* "set-brand-Diners" */
3151636, /* "set-brand-IATA-ATA" */
3152639, /* "set-brand-JCB" */
3153641, /* "set-brand-MasterCard" */
3154642, /* "set-brand-Novus" */
3155640, /* "set-brand-Visa" */
3156517, /* "set-certExt" */
3157513, /* "set-ctype" */
3158514, /* "set-msgExt" */
3159516, /* "set-policy" */
3160607, /* "set-policy-root" */
3161624, /* "set-rootKeyThumb" */
3162620, /* "setAttr-Cert" */
3163631, /* "setAttr-GenCryptgrm" */
3164623, /* "setAttr-IssCap" */
3165628, /* "setAttr-IssCap-CVM" */
3166630, /* "setAttr-IssCap-Sig" */
3167629, /* "setAttr-IssCap-T2" */
3168621, /* "setAttr-PGWYcap" */
3169635, /* "setAttr-SecDevSig" */
3170632, /* "setAttr-T2Enc" */
3171633, /* "setAttr-T2cleartxt" */
3172634, /* "setAttr-TokICCsig" */
3173627, /* "setAttr-Token-B0Prime" */
3174626, /* "setAttr-Token-EMV" */
3175622, /* "setAttr-TokenType" */
3176619, /* "setCext-IssuerCapabilities" */
3177615, /* "setCext-PGWYcapabilities" */
3178616, /* "setCext-TokenIdentifier" */
3179618, /* "setCext-TokenType" */
3180617, /* "setCext-Track2Data" */
3181611, /* "setCext-cCertRequired" */
3182609, /* "setCext-certType" */
3183608, /* "setCext-hashedRoot" */
3184610, /* "setCext-merchData" */
3185613, /* "setCext-setExt" */
3186614, /* "setCext-setQualf" */
3187612, /* "setCext-tunneling" */
3188540, /* "setct-AcqCardCodeMsg" */
3189576, /* "setct-AcqCardCodeMsgTBE" */
3190570, /* "setct-AuthReqTBE" */
3191534, /* "setct-AuthReqTBS" */
3192527, /* "setct-AuthResBaggage" */
3193571, /* "setct-AuthResTBE" */
3194572, /* "setct-AuthResTBEX" */
3195535, /* "setct-AuthResTBS" */
3196536, /* "setct-AuthResTBSX" */
3197528, /* "setct-AuthRevReqBaggage" */
3198577, /* "setct-AuthRevReqTBE" */
3199541, /* "setct-AuthRevReqTBS" */
3200529, /* "setct-AuthRevResBaggage" */
3201542, /* "setct-AuthRevResData" */
3202578, /* "setct-AuthRevResTBE" */
3203579, /* "setct-AuthRevResTBEB" */
3204543, /* "setct-AuthRevResTBS" */
3205573, /* "setct-AuthTokenTBE" */
3206537, /* "setct-AuthTokenTBS" */
3207600, /* "setct-BCIDistributionTBS" */
3208558, /* "setct-BatchAdminReqData" */
3209592, /* "setct-BatchAdminReqTBE" */
3210559, /* "setct-BatchAdminResData" */
3211593, /* "setct-BatchAdminResTBE" */
3212599, /* "setct-CRLNotificationResTBS" */
3213598, /* "setct-CRLNotificationTBS" */
3214580, /* "setct-CapReqTBE" */
3215581, /* "setct-CapReqTBEX" */
3216544, /* "setct-CapReqTBS" */
3217545, /* "setct-CapReqTBSX" */
3218546, /* "setct-CapResData" */
3219582, /* "setct-CapResTBE" */
3220583, /* "setct-CapRevReqTBE" */
3221584, /* "setct-CapRevReqTBEX" */
3222547, /* "setct-CapRevReqTBS" */
3223548, /* "setct-CapRevReqTBSX" */
3224549, /* "setct-CapRevResData" */
3225585, /* "setct-CapRevResTBE" */
3226538, /* "setct-CapTokenData" */
3227530, /* "setct-CapTokenSeq" */
3228574, /* "setct-CapTokenTBE" */
3229575, /* "setct-CapTokenTBEX" */
3230539, /* "setct-CapTokenTBS" */
3231560, /* "setct-CardCInitResTBS" */
3232566, /* "setct-CertInqReqTBS" */
3233563, /* "setct-CertReqData" */
3234595, /* "setct-CertReqTBE" */
3235596, /* "setct-CertReqTBEX" */
3236564, /* "setct-CertReqTBS" */
3237565, /* "setct-CertResData" */
3238597, /* "setct-CertResTBE" */
3239586, /* "setct-CredReqTBE" */
3240587, /* "setct-CredReqTBEX" */
3241550, /* "setct-CredReqTBS" */
3242551, /* "setct-CredReqTBSX" */
3243552, /* "setct-CredResData" */
3244588, /* "setct-CredResTBE" */
3245589, /* "setct-CredRevReqTBE" */
3246590, /* "setct-CredRevReqTBEX" */
3247553, /* "setct-CredRevReqTBS" */
3248554, /* "setct-CredRevReqTBSX" */
3249555, /* "setct-CredRevResData" */
3250591, /* "setct-CredRevResTBE" */
3251567, /* "setct-ErrorTBS" */
3252526, /* "setct-HODInput" */
3253561, /* "setct-MeAqCInitResTBS" */
3254522, /* "setct-OIData" */
3255519, /* "setct-PANData" */
3256521, /* "setct-PANOnly" */
3257520, /* "setct-PANToken" */
3258556, /* "setct-PCertReqData" */
3259557, /* "setct-PCertResTBS" */
3260523, /* "setct-PI" */
3261532, /* "setct-PI-TBS" */
3262524, /* "setct-PIData" */
3263525, /* "setct-PIDataUnsigned" */
3264568, /* "setct-PIDualSignedTBE" */
3265569, /* "setct-PIUnsignedTBE" */
3266531, /* "setct-PInitResData" */
3267533, /* "setct-PResData" */
3268594, /* "setct-RegFormReqTBE" */
3269562, /* "setct-RegFormResTBS" */
3270606, /* "setext-cv" */
3271601, /* "setext-genCrypt" */
3272602, /* "setext-miAuth" */
3273604, /* "setext-pinAny" */
3274603, /* "setext-pinSecure" */
3275605, /* "setext-track2" */
327652, /* "signingTime" */
3277454, /* "simpleSecurityObject" */
3278496, /* "singleLevelQuality" */
3279387, /* "snmpv2" */
3280660, /* "street" */
328185, /* "subjectAltName" */
3282769, /* "subjectDirectoryAttributes" */
3283398, /* "subjectInfoAccess" */
328482, /* "subjectKeyIdentifier" */
3285498, /* "subtreeMaximumQuality" */
3286497, /* "subtreeMinimumQuality" */
3287890, /* "supportedAlgorithms" */
3288874, /* "supportedApplicationContext" */
3289402, /* "targetInformation" */
3290864, /* "telephoneNumber" */
3291866, /* "teletexTerminalIdentifier" */
3292865, /* "telexNumber" */
3293459, /* "textEncodedORAddress" */
3294293, /* "textNotice" */
3295133, /* "timeStamping" */
3296106, /* "title" */
3297682, /* "tpBasis" */
3298375, /* "trustRoot" */
3299436, /* "ucl" */
3300888, /* "uniqueMember" */
330155, /* "unstructuredAddress" */
330249, /* "unstructuredName" */
3303880, /* "userCertificate" */
3304465, /* "userClass" */
3305879, /* "userPassword" */
3306373, /* "valid" */
3307678, /* "wap" */
3308679, /* "wap-wsg" */
3309735, /* "wap-wsg-idm-ecid-wtls1" */
3310743, /* "wap-wsg-idm-ecid-wtls10" */
3311744, /* "wap-wsg-idm-ecid-wtls11" */
3312745, /* "wap-wsg-idm-ecid-wtls12" */
3313736, /* "wap-wsg-idm-ecid-wtls3" */
3314737, /* "wap-wsg-idm-ecid-wtls4" */
3315738, /* "wap-wsg-idm-ecid-wtls5" */
3316739, /* "wap-wsg-idm-ecid-wtls6" */
3317740, /* "wap-wsg-idm-ecid-wtls7" */
3318741, /* "wap-wsg-idm-ecid-wtls8" */
3319742, /* "wap-wsg-idm-ecid-wtls9" */
3320804, /* "whirlpool" */
3321868, /* "x121Address" */
3322503, /* "x500UniqueIdentifier" */
3323158, /* "x509Certificate" */
3324160, /* "x509Crl" */
3325};
3326
3327static const unsigned int ln_objs[NUM_LN]={
3328363, /* "AD Time Stamping" */
3329405, /* "ANSI X9.62" */
3330368, /* "Acceptable OCSP Responses" */
3331910, /* "Any Extended Key Usage" */
3332664, /* "Any language" */
3333177, /* "Authority Information Access" */
3334365, /* "Basic OCSP Response" */
3335285, /* "Biometric Info" */
3336179, /* "CA Issuers" */
3337785, /* "CA Repository" */
3338131, /* "Code Signing" */
3339783, /* "Diffie-Hellman based MAC" */
3340382, /* "Directory" */
3341392, /* "Domain" */
3342132, /* "E-mail Protection" */
3343389, /* "Enterprises" */
3344384, /* "Experimental" */
3345372, /* "Extended OCSP Status" */
3346172, /* "Extension Request" */
3347813, /* "GOST 28147-89" */
3348849, /* "GOST 28147-89 Cryptocom ParamSet" */
3349815, /* "GOST 28147-89 MAC" */
3350851, /* "GOST 34.10-2001 Cryptocom" */
3351850, /* "GOST 34.10-94 Cryptocom" */
3352811, /* "GOST R 34.10-2001" */
3353817, /* "GOST R 34.10-2001 DH" */
3354812, /* "GOST R 34.10-94" */
3355818, /* "GOST R 34.10-94 DH" */
3356809, /* "GOST R 34.11-94" */
3357816, /* "GOST R 34.11-94 PRF" */
3358807, /* "GOST R 34.11-94 with GOST R 34.10-2001" */
3359853, /* "GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom" */
3360808, /* "GOST R 34.11-94 with GOST R 34.10-94" */
3361852, /* "GOST R 34.11-94 with GOST R 34.10-94 Cryptocom" */
3362854, /* "GOST R 3410-2001 Parameter Set Cryptocom" */
3363810, /* "HMAC GOST 34.11-94" */
3364432, /* "Hold Instruction Call Issuer" */
3365430, /* "Hold Instruction Code" */
3366431, /* "Hold Instruction None" */
3367433, /* "Hold Instruction Reject" */
3368634, /* "ICC or token signature" */
3369294, /* "IPSec End System" */
3370295, /* "IPSec Tunnel" */
3371296, /* "IPSec User" */
3372182, /* "ISO Member Body" */
3373183, /* "ISO US Member Body" */
3374667, /* "Independent" */
3375665, /* "Inherit all" */
3376647, /* "International Organizations" */
3377142, /* "Invalidity Date" */
3378504, /* "MIME MHS" */
3379388, /* "Mail" */
3380383, /* "Management" */
3381417, /* "Microsoft CSP Name" */
3382135, /* "Microsoft Commercial Code Signing" */
3383138, /* "Microsoft Encrypted File System" */
3384171, /* "Microsoft Extension Request" */
3385134, /* "Microsoft Individual Code Signing" */
3386856, /* "Microsoft Local Key set" */
3387137, /* "Microsoft Server Gated Crypto" */
3388648, /* "Microsoft Smartcardlogin" */
3389136, /* "Microsoft Trust List Signing" */
3390649, /* "Microsoft Universal Principal Name" */
3391393, /* "NULL" */
3392404, /* "NULL" */
339372, /* "Netscape Base Url" */
339476, /* "Netscape CA Policy Url" */
339574, /* "Netscape CA Revocation Url" */
339671, /* "Netscape Cert Type" */
339758, /* "Netscape Certificate Extension" */
339879, /* "Netscape Certificate Sequence" */
339978, /* "Netscape Comment" */
340057, /* "Netscape Communications Corp." */
340159, /* "Netscape Data Type" */
340275, /* "Netscape Renewal Url" */
340373, /* "Netscape Revocation Url" */
340477, /* "Netscape SSL Server Name" */
3405139, /* "Netscape Server Gated Crypto" */
3406178, /* "OCSP" */
3407370, /* "OCSP Archive Cutoff" */
3408367, /* "OCSP CRL ID" */
3409369, /* "OCSP No Check" */
3410366, /* "OCSP Nonce" */
3411371, /* "OCSP Service Locator" */
3412180, /* "OCSP Signing" */
3413161, /* "PBES2" */
341469, /* "PBKDF2" */
3415162, /* "PBMAC1" */
3416127, /* "PKIX" */
3417858, /* "Permanent Identifier" */
3418164, /* "Policy Qualifier CPS" */
3419165, /* "Policy Qualifier User Notice" */
3420385, /* "Private" */
3421663, /* "Proxy Certificate Information" */
3422 1, /* "RSA Data Security, Inc." */
3423 2, /* "RSA Data Security, Inc. PKCS" */
3424188, /* "S/MIME" */
3425167, /* "S/MIME Capabilities" */
3426387, /* "SNMPv2" */
3427512, /* "Secure Electronic Transactions" */
3428386, /* "Security" */
3429394, /* "Selected Attribute Types" */
3430143, /* "Strong Extranet ID" */
3431398, /* "Subject Information Access" */
3432130, /* "TLS Web Client Authentication" */
3433129, /* "TLS Web Server Authentication" */
3434133, /* "Time Stamping" */
3435375, /* "Trust Root" */
343612, /* "X509" */
3437402, /* "X509v3 AC Targeting" */
3438746, /* "X509v3 Any Policy" */
343990, /* "X509v3 Authority Key Identifier" */
344087, /* "X509v3 Basic Constraints" */
3441103, /* "X509v3 CRL Distribution Points" */
344288, /* "X509v3 CRL Number" */
3443141, /* "X509v3 CRL Reason Code" */
3444771, /* "X509v3 Certificate Issuer" */
344589, /* "X509v3 Certificate Policies" */
3446140, /* "X509v3 Delta CRL Indicator" */
3447126, /* "X509v3 Extended Key Usage" */
3448857, /* "X509v3 Freshest CRL" */
3449748, /* "X509v3 Inhibit Any Policy" */
345086, /* "X509v3 Issuer Alternative Name" */
3451770, /* "X509v3 Issuing Distrubution Point" */
345283, /* "X509v3 Key Usage" */
3453666, /* "X509v3 Name Constraints" */
3454403, /* "X509v3 No Revocation Available" */
3455401, /* "X509v3 Policy Constraints" */
3456747, /* "X509v3 Policy Mappings" */
345784, /* "X509v3 Private Key Usage Period" */
345885, /* "X509v3 Subject Alternative Name" */
3459769, /* "X509v3 Subject Directory Attributes" */
346082, /* "X509v3 Subject Key Identifier" */
3461184, /* "X9.57" */
3462185, /* "X9.57 CM ?" */
3463478, /* "aRecord" */
3464289, /* "aaControls" */
3465287, /* "ac-auditEntity" */
3466397, /* "ac-proxying" */
3467288, /* "ac-targeting" */
3468446, /* "account" */
3469364, /* "ad dvcs" */
3470606, /* "additional verification" */
3471419, /* "aes-128-cbc" */
3472916, /* "aes-128-cbc-hmac-sha1" */
3473896, /* "aes-128-ccm" */
3474421, /* "aes-128-cfb" */
3475650, /* "aes-128-cfb1" */
3476653, /* "aes-128-cfb8" */
3477904, /* "aes-128-ctr" */
3478418, /* "aes-128-ecb" */
3479895, /* "aes-128-gcm" */
3480420, /* "aes-128-ofb" */
3481913, /* "aes-128-xts" */
3482423, /* "aes-192-cbc" */
3483917, /* "aes-192-cbc-hmac-sha1" */
3484899, /* "aes-192-ccm" */
3485425, /* "aes-192-cfb" */
3486651, /* "aes-192-cfb1" */
3487654, /* "aes-192-cfb8" */
3488905, /* "aes-192-ctr" */
3489422, /* "aes-192-ecb" */
3490898, /* "aes-192-gcm" */
3491424, /* "aes-192-ofb" */
3492427, /* "aes-256-cbc" */
3493918, /* "aes-256-cbc-hmac-sha1" */
3494902, /* "aes-256-ccm" */
3495429, /* "aes-256-cfb" */
3496652, /* "aes-256-cfb1" */
3497655, /* "aes-256-cfb8" */
3498906, /* "aes-256-ctr" */
3499426, /* "aes-256-ecb" */
3500901, /* "aes-256-gcm" */
3501428, /* "aes-256-ofb" */
3502914, /* "aes-256-xts" */
3503376, /* "algorithm" */
3504484, /* "associatedDomain" */
3505485, /* "associatedName" */
3506501, /* "audio" */
3507882, /* "authorityRevocationList" */
350891, /* "bf-cbc" */
350993, /* "bf-cfb" */
351092, /* "bf-ecb" */
351194, /* "bf-ofb" */
3512494, /* "buildingName" */
3513860, /* "businessCategory" */
3514691, /* "c2onb191v4" */
3515692, /* "c2onb191v5" */
3516697, /* "c2onb239v4" */
3517698, /* "c2onb239v5" */
3518684, /* "c2pnb163v1" */
3519685, /* "c2pnb163v2" */
3520686, /* "c2pnb163v3" */
3521687, /* "c2pnb176v1" */
3522693, /* "c2pnb208w1" */
3523699, /* "c2pnb272w1" */
3524700, /* "c2pnb304w1" */
3525702, /* "c2pnb368w1" */
3526688, /* "c2tnb191v1" */
3527689, /* "c2tnb191v2" */
3528690, /* "c2tnb191v3" */
3529694, /* "c2tnb239v1" */
3530695, /* "c2tnb239v2" */
3531696, /* "c2tnb239v3" */
3532701, /* "c2tnb359v1" */
3533703, /* "c2tnb431r1" */
3534881, /* "cACertificate" */
3535483, /* "cNAMERecord" */
3536751, /* "camellia-128-cbc" */
3537757, /* "camellia-128-cfb" */
3538760, /* "camellia-128-cfb1" */
3539763, /* "camellia-128-cfb8" */
3540754, /* "camellia-128-ecb" */
3541766, /* "camellia-128-ofb" */
3542752, /* "camellia-192-cbc" */
3543758, /* "camellia-192-cfb" */
3544761, /* "camellia-192-cfb1" */
3545764, /* "camellia-192-cfb8" */
3546755, /* "camellia-192-ecb" */
3547767, /* "camellia-192-ofb" */
3548753, /* "camellia-256-cbc" */
3549759, /* "camellia-256-cfb" */
3550762, /* "camellia-256-cfb1" */
3551765, /* "camellia-256-cfb8" */
3552756, /* "camellia-256-ecb" */
3553768, /* "camellia-256-ofb" */
3554443, /* "caseIgnoreIA5StringSyntax" */
3555108, /* "cast5-cbc" */
3556110, /* "cast5-cfb" */
3557109, /* "cast5-ecb" */
3558111, /* "cast5-ofb" */
3559152, /* "certBag" */
3560677, /* "certicom-arc" */
3561517, /* "certificate extensions" */
3562883, /* "certificateRevocationList" */
356354, /* "challengePassword" */
3564407, /* "characteristic-two-field" */
3565395, /* "clearance" */
3566633, /* "cleartext track 2" */
3567894, /* "cmac" */
356813, /* "commonName" */
3569513, /* "content types" */
357050, /* "contentType" */
357153, /* "countersignature" */
357214, /* "countryName" */
3573153, /* "crlBag" */
3574884, /* "crossCertificatePair" */
3575806, /* "cryptocom" */
3576805, /* "cryptopro" */
3577500, /* "dITRedirect" */
3578451, /* "dNSDomain" */
3579495, /* "dSAQuality" */
3580434, /* "data" */
3581390, /* "dcObject" */
3582891, /* "deltaRevocationList" */
358331, /* "des-cbc" */
3584643, /* "des-cdmf" */
358530, /* "des-cfb" */
3586656, /* "des-cfb1" */
3587657, /* "des-cfb8" */
358829, /* "des-ecb" */
358932, /* "des-ede" */
359043, /* "des-ede-cbc" */
359160, /* "des-ede-cfb" */
359262, /* "des-ede-ofb" */
359333, /* "des-ede3" */
359444, /* "des-ede3-cbc" */
359561, /* "des-ede3-cfb" */
3596658, /* "des-ede3-cfb1" */
3597659, /* "des-ede3-cfb8" */
359863, /* "des-ede3-ofb" */
359945, /* "des-ofb" */
3600107, /* "description" */
3601871, /* "destinationIndicator" */
360280, /* "desx-cbc" */
360328, /* "dhKeyAgreement" */
360411, /* "directory services (X.500)" */
3605378, /* "directory services - algorithms" */
3606887, /* "distinguishedName" */
3607892, /* "dmdName" */
3608174, /* "dnQualifier" */
3609447, /* "document" */
3610471, /* "documentAuthor" */
3611468, /* "documentIdentifier" */
3612472, /* "documentLocation" */
3613502, /* "documentPublisher" */
3614449, /* "documentSeries" */
3615469, /* "documentTitle" */
3616470, /* "documentVersion" */
3617380, /* "dod" */
3618391, /* "domainComponent" */
3619452, /* "domainRelatedObject" */
3620116, /* "dsaEncryption" */
362167, /* "dsaEncryption-old" */
362266, /* "dsaWithSHA" */
3623113, /* "dsaWithSHA1" */
362470, /* "dsaWithSHA1-old" */
3625802, /* "dsa_with_SHA224" */
3626803, /* "dsa_with_SHA256" */
3627297, /* "dvcs" */
3628791, /* "ecdsa-with-Recommended" */
3629416, /* "ecdsa-with-SHA1" */
3630793, /* "ecdsa-with-SHA224" */
3631794, /* "ecdsa-with-SHA256" */
3632795, /* "ecdsa-with-SHA384" */
3633796, /* "ecdsa-with-SHA512" */
3634792, /* "ecdsa-with-Specified" */
363548, /* "emailAddress" */
3636632, /* "encrypted track 2" */
3637885, /* "enhancedSearchGuide" */
363856, /* "extendedCertificateAttributes" */
3639867, /* "facsimileTelephoneNumber" */
3640462, /* "favouriteDrink" */
3641453, /* "friendlyCountry" */
3642490, /* "friendlyCountryName" */
3643156, /* "friendlyName" */
3644631, /* "generate cryptogram" */
3645509, /* "generationQualifier" */
3646601, /* "generic cryptogram" */
364799, /* "givenName" */
3648814, /* "gost89-cnt" */
3649855, /* "hmac" */
3650780, /* "hmac-md5" */
3651781, /* "hmac-sha1" */
3652797, /* "hmacWithMD5" */
3653163, /* "hmacWithSHA1" */
3654798, /* "hmacWithSHA224" */
3655799, /* "hmacWithSHA256" */
3656800, /* "hmacWithSHA384" */
3657801, /* "hmacWithSHA512" */
3658486, /* "homePostalAddress" */
3659473, /* "homeTelephoneNumber" */
3660466, /* "host" */
3661889, /* "houseIdentifier" */
3662442, /* "iA5StringSyntax" */
3663381, /* "iana" */
3664824, /* "id-Gost28147-89-CryptoPro-A-ParamSet" */
3665825, /* "id-Gost28147-89-CryptoPro-B-ParamSet" */
3666826, /* "id-Gost28147-89-CryptoPro-C-ParamSet" */
3667827, /* "id-Gost28147-89-CryptoPro-D-ParamSet" */
3668819, /* "id-Gost28147-89-CryptoPro-KeyMeshing" */
3669829, /* "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet" */
3670828, /* "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet" */
3671830, /* "id-Gost28147-89-CryptoPro-RIC-1-ParamSet" */
3672820, /* "id-Gost28147-89-None-KeyMeshing" */
3673823, /* "id-Gost28147-89-TestParamSet" */
3674840, /* "id-GostR3410-2001-CryptoPro-A-ParamSet" */
3675841, /* "id-GostR3410-2001-CryptoPro-B-ParamSet" */
3676842, /* "id-GostR3410-2001-CryptoPro-C-ParamSet" */
3677843, /* "id-GostR3410-2001-CryptoPro-XchA-ParamSet" */
3678844, /* "id-GostR3410-2001-CryptoPro-XchB-ParamSet" */
3679839, /* "id-GostR3410-2001-TestParamSet" */
3680832, /* "id-GostR3410-94-CryptoPro-A-ParamSet" */
3681833, /* "id-GostR3410-94-CryptoPro-B-ParamSet" */
3682834, /* "id-GostR3410-94-CryptoPro-C-ParamSet" */
3683835, /* "id-GostR3410-94-CryptoPro-D-ParamSet" */
3684836, /* "id-GostR3410-94-CryptoPro-XchA-ParamSet" */
3685837, /* "id-GostR3410-94-CryptoPro-XchB-ParamSet" */
3686838, /* "id-GostR3410-94-CryptoPro-XchC-ParamSet" */
3687831, /* "id-GostR3410-94-TestParamSet" */
3688845, /* "id-GostR3410-94-a" */
3689846, /* "id-GostR3410-94-aBis" */
3690847, /* "id-GostR3410-94-b" */
3691848, /* "id-GostR3410-94-bBis" */
3692822, /* "id-GostR3411-94-CryptoProParamSet" */
3693821, /* "id-GostR3411-94-TestParamSet" */
3694266, /* "id-aca" */
3695355, /* "id-aca-accessIdentity" */
3696354, /* "id-aca-authenticationInfo" */
3697356, /* "id-aca-chargingIdentity" */
3698399, /* "id-aca-encAttrs" */
3699357, /* "id-aca-group" */
3700358, /* "id-aca-role" */
3701176, /* "id-ad" */
3702788, /* "id-aes128-wrap" */
3703897, /* "id-aes128-wrap-pad" */
3704789, /* "id-aes192-wrap" */
3705900, /* "id-aes192-wrap-pad" */
3706790, /* "id-aes256-wrap" */
3707903, /* "id-aes256-wrap-pad" */
3708262, /* "id-alg" */
3709893, /* "id-alg-PWRI-KEK" */
3710323, /* "id-alg-des40" */
3711326, /* "id-alg-dh-pop" */
3712325, /* "id-alg-dh-sig-hmac-sha1" */
3713324, /* "id-alg-noSignature" */
3714907, /* "id-camellia128-wrap" */
3715908, /* "id-camellia192-wrap" */
3716909, /* "id-camellia256-wrap" */
3717268, /* "id-cct" */
3718361, /* "id-cct-PKIData" */
3719362, /* "id-cct-PKIResponse" */
3720360, /* "id-cct-crs" */
372181, /* "id-ce" */
3722680, /* "id-characteristic-two-basis" */
3723263, /* "id-cmc" */
3724334, /* "id-cmc-addExtensions" */
3725346, /* "id-cmc-confirmCertAcceptance" */
3726330, /* "id-cmc-dataReturn" */
3727336, /* "id-cmc-decryptedPOP" */
3728335, /* "id-cmc-encryptedPOP" */
3729339, /* "id-cmc-getCRL" */
3730338, /* "id-cmc-getCert" */
3731328, /* "id-cmc-identification" */
3732329, /* "id-cmc-identityProof" */
3733337, /* "id-cmc-lraPOPWitness" */
3734344, /* "id-cmc-popLinkRandom" */
3735345, /* "id-cmc-popLinkWitness" */
3736343, /* "id-cmc-queryPending" */
3737333, /* "id-cmc-recipientNonce" */
3738341, /* "id-cmc-regInfo" */
3739342, /* "id-cmc-responseInfo" */
3740340, /* "id-cmc-revokeRequest" */
3741332, /* "id-cmc-senderNonce" */
3742327, /* "id-cmc-statusInfo" */
3743331, /* "id-cmc-transactionId" */
3744787, /* "id-ct-asciiTextWithCRLF" */
3745408, /* "id-ecPublicKey" */
3746508, /* "id-hex-multipart-message" */
3747507, /* "id-hex-partial-message" */
3748260, /* "id-it" */
3749302, /* "id-it-caKeyUpdateInfo" */
3750298, /* "id-it-caProtEncCert" */
3751311, /* "id-it-confirmWaitTime" */
3752303, /* "id-it-currentCRL" */
3753300, /* "id-it-encKeyPairTypes" */
3754310, /* "id-it-implicitConfirm" */
3755308, /* "id-it-keyPairParamRep" */
3756307, /* "id-it-keyPairParamReq" */
3757312, /* "id-it-origPKIMessage" */
3758301, /* "id-it-preferredSymmAlg" */
3759309, /* "id-it-revPassphrase" */
3760299, /* "id-it-signKeyPairTypes" */
3761305, /* "id-it-subscriptionRequest" */
3762306, /* "id-it-subscriptionResponse" */
3763784, /* "id-it-suppLangTags" */
3764304, /* "id-it-unsupportedOIDs" */
3765128, /* "id-kp" */
3766280, /* "id-mod-attribute-cert" */
3767274, /* "id-mod-cmc" */
3768277, /* "id-mod-cmp" */
3769284, /* "id-mod-cmp2000" */
3770273, /* "id-mod-crmf" */
3771283, /* "id-mod-dvcs" */
3772275, /* "id-mod-kea-profile-88" */
3773276, /* "id-mod-kea-profile-93" */
3774282, /* "id-mod-ocsp" */
3775278, /* "id-mod-qualified-cert-88" */
3776279, /* "id-mod-qualified-cert-93" */
3777281, /* "id-mod-timestamp-protocol" */
3778264, /* "id-on" */
3779347, /* "id-on-personalData" */
3780265, /* "id-pda" */
3781352, /* "id-pda-countryOfCitizenship" */
3782353, /* "id-pda-countryOfResidence" */
3783348, /* "id-pda-dateOfBirth" */
3784351, /* "id-pda-gender" */
3785349, /* "id-pda-placeOfBirth" */
3786175, /* "id-pe" */
3787261, /* "id-pkip" */
3788258, /* "id-pkix-mod" */
3789269, /* "id-pkix1-explicit-88" */
3790271, /* "id-pkix1-explicit-93" */
3791270, /* "id-pkix1-implicit-88" */
3792272, /* "id-pkix1-implicit-93" */
3793662, /* "id-ppl" */
3794267, /* "id-qcs" */
3795359, /* "id-qcs-pkixQCSyntax-v1" */
3796259, /* "id-qt" */
3797313, /* "id-regCtrl" */
3798316, /* "id-regCtrl-authenticator" */
3799319, /* "id-regCtrl-oldCertID" */
3800318, /* "id-regCtrl-pkiArchiveOptions" */
3801317, /* "id-regCtrl-pkiPublicationInfo" */
3802320, /* "id-regCtrl-protocolEncrKey" */
3803315, /* "id-regCtrl-regToken" */
3804314, /* "id-regInfo" */
3805322, /* "id-regInfo-certReq" */
3806321, /* "id-regInfo-utf8Pairs" */
3807191, /* "id-smime-aa" */
3808215, /* "id-smime-aa-contentHint" */
3809218, /* "id-smime-aa-contentIdentifier" */
3810221, /* "id-smime-aa-contentReference" */
3811240, /* "id-smime-aa-dvcs-dvc" */
3812217, /* "id-smime-aa-encapContentType" */
3813222, /* "id-smime-aa-encrypKeyPref" */
3814220, /* "id-smime-aa-equivalentLabels" */
3815232, /* "id-smime-aa-ets-CertificateRefs" */
3816233, /* "id-smime-aa-ets-RevocationRefs" */
3817238, /* "id-smime-aa-ets-archiveTimeStamp" */
3818237, /* "id-smime-aa-ets-certCRLTimestamp" */
3819234, /* "id-smime-aa-ets-certValues" */
3820227, /* "id-smime-aa-ets-commitmentType" */
3821231, /* "id-smime-aa-ets-contentTimestamp" */
3822236, /* "id-smime-aa-ets-escTimeStamp" */
3823230, /* "id-smime-aa-ets-otherSigCert" */
3824235, /* "id-smime-aa-ets-revocationValues" */
3825226, /* "id-smime-aa-ets-sigPolicyId" */
3826229, /* "id-smime-aa-ets-signerAttr" */
3827228, /* "id-smime-aa-ets-signerLocation" */
3828219, /* "id-smime-aa-macValue" */
3829214, /* "id-smime-aa-mlExpandHistory" */
3830216, /* "id-smime-aa-msgSigDigest" */
3831212, /* "id-smime-aa-receiptRequest" */
3832213, /* "id-smime-aa-securityLabel" */
3833239, /* "id-smime-aa-signatureType" */
3834223, /* "id-smime-aa-signingCertificate" */
3835224, /* "id-smime-aa-smimeEncryptCerts" */
3836225, /* "id-smime-aa-timeStampToken" */
3837192, /* "id-smime-alg" */
3838243, /* "id-smime-alg-3DESwrap" */
3839246, /* "id-smime-alg-CMS3DESwrap" */
3840247, /* "id-smime-alg-CMSRC2wrap" */
3841245, /* "id-smime-alg-ESDH" */
3842241, /* "id-smime-alg-ESDHwith3DES" */
3843242, /* "id-smime-alg-ESDHwithRC2" */
3844244, /* "id-smime-alg-RC2wrap" */
3845193, /* "id-smime-cd" */
3846248, /* "id-smime-cd-ldap" */
3847190, /* "id-smime-ct" */
3848210, /* "id-smime-ct-DVCSRequestData" */
3849211, /* "id-smime-ct-DVCSResponseData" */
3850208, /* "id-smime-ct-TDTInfo" */
3851207, /* "id-smime-ct-TSTInfo" */
3852205, /* "id-smime-ct-authData" */
3853786, /* "id-smime-ct-compressedData" */
3854209, /* "id-smime-ct-contentInfo" */
3855206, /* "id-smime-ct-publishCert" */
3856204, /* "id-smime-ct-receipt" */
3857195, /* "id-smime-cti" */
3858255, /* "id-smime-cti-ets-proofOfApproval" */
3859256, /* "id-smime-cti-ets-proofOfCreation" */
3860253, /* "id-smime-cti-ets-proofOfDelivery" */
3861251, /* "id-smime-cti-ets-proofOfOrigin" */
3862252, /* "id-smime-cti-ets-proofOfReceipt" */
3863254, /* "id-smime-cti-ets-proofOfSender" */
3864189, /* "id-smime-mod" */
3865196, /* "id-smime-mod-cms" */
3866197, /* "id-smime-mod-ess" */
3867202, /* "id-smime-mod-ets-eSigPolicy-88" */
3868203, /* "id-smime-mod-ets-eSigPolicy-97" */
3869200, /* "id-smime-mod-ets-eSignature-88" */
3870201, /* "id-smime-mod-ets-eSignature-97" */
3871199, /* "id-smime-mod-msg-v3" */
3872198, /* "id-smime-mod-oid" */
3873194, /* "id-smime-spq" */
3874250, /* "id-smime-spq-ets-sqt-unotice" */
3875249, /* "id-smime-spq-ets-sqt-uri" */
387634, /* "idea-cbc" */
387735, /* "idea-cfb" */
387836, /* "idea-ecb" */
387946, /* "idea-ofb" */
3880676, /* "identified-organization" */
3881461, /* "info" */
3882101, /* "initials" */
3883869, /* "internationaliSDNNumber" */
3884749, /* "ipsec3" */
3885750, /* "ipsec4" */
3886181, /* "iso" */
3887623, /* "issuer capabilities" */
3888645, /* "itu-t" */
3889492, /* "janetMailbox" */
3890646, /* "joint-iso-itu-t" */
3891150, /* "keyBag" */
3892773, /* "kisa" */
3893477, /* "lastModifiedBy" */
3894476, /* "lastModifiedTime" */
3895157, /* "localKeyID" */
389615, /* "localityName" */
3897480, /* "mXRecord" */
3898493, /* "mailPreferenceOption" */
3899467, /* "manager" */
3900 3, /* "md2" */
3901 7, /* "md2WithRSAEncryption" */
3902257, /* "md4" */
3903396, /* "md4WithRSAEncryption" */
3904 4, /* "md5" */
3905114, /* "md5-sha1" */
3906104, /* "md5WithRSA" */
3907 8, /* "md5WithRSAEncryption" */
390895, /* "mdc2" */
390996, /* "mdc2WithRSA" */
3910875, /* "member" */
3911602, /* "merchant initiated auth" */
3912514, /* "message extensions" */
391351, /* "messageDigest" */
3914911, /* "mgf1" */
3915506, /* "mime-mhs-bodies" */
3916505, /* "mime-mhs-headings" */
3917488, /* "mobileTelephoneNumber" */
3918481, /* "nSRecord" */
3919173, /* "name" */
3920681, /* "onBasis" */
3921379, /* "org" */
392217, /* "organizationName" */
3923491, /* "organizationalStatus" */
392418, /* "organizationalUnitName" */
3925475, /* "otherMailbox" */
3926876, /* "owner" */
3927489, /* "pagerTelephoneNumber" */
3928782, /* "password based MAC" */
3929374, /* "path" */
3930621, /* "payment gateway capabilities" */
3931 9, /* "pbeWithMD2AndDES-CBC" */
3932168, /* "pbeWithMD2AndRC2-CBC" */
3933112, /* "pbeWithMD5AndCast5CBC" */
393410, /* "pbeWithMD5AndDES-CBC" */
3935169, /* "pbeWithMD5AndRC2-CBC" */
3936148, /* "pbeWithSHA1And128BitRC2-CBC" */
3937144, /* "pbeWithSHA1And128BitRC4" */
3938147, /* "pbeWithSHA1And2-KeyTripleDES-CBC" */
3939146, /* "pbeWithSHA1And3-KeyTripleDES-CBC" */
3940149, /* "pbeWithSHA1And40BitRC2-CBC" */
3941145, /* "pbeWithSHA1And40BitRC4" */
3942170, /* "pbeWithSHA1AndDES-CBC" */
394368, /* "pbeWithSHA1AndRC2-CBC" */
3944499, /* "personalSignature" */
3945487, /* "personalTitle" */
3946464, /* "photo" */
3947863, /* "physicalDeliveryOfficeName" */
3948437, /* "pilot" */
3949439, /* "pilotAttributeSyntax" */
3950438, /* "pilotAttributeType" */
3951479, /* "pilotAttributeType27" */
3952456, /* "pilotDSA" */
3953441, /* "pilotGroups" */
3954444, /* "pilotObject" */
3955440, /* "pilotObjectClass" */
3956455, /* "pilotOrganization" */
3957445, /* "pilotPerson" */
3958186, /* "pkcs1" */
395927, /* "pkcs3" */
3960187, /* "pkcs5" */
396120, /* "pkcs7" */
396221, /* "pkcs7-data" */
396325, /* "pkcs7-digestData" */
396426, /* "pkcs7-encryptedData" */
396523, /* "pkcs7-envelopedData" */
396624, /* "pkcs7-signedAndEnvelopedData" */
396722, /* "pkcs7-signedData" */
3968151, /* "pkcs8ShroudedKeyBag" */
396947, /* "pkcs9" */
3970862, /* "postOfficeBox" */
3971861, /* "postalAddress" */
3972661, /* "postalCode" */
3973683, /* "ppBasis" */
3974872, /* "preferredDeliveryMethod" */
3975873, /* "presentationAddress" */
3976406, /* "prime-field" */
3977409, /* "prime192v1" */
3978410, /* "prime192v2" */
3979411, /* "prime192v3" */
3980412, /* "prime239v1" */
3981413, /* "prime239v2" */
3982414, /* "prime239v3" */
3983415, /* "prime256v1" */
3984886, /* "protocolInformation" */
3985510, /* "pseudonym" */
3986435, /* "pss" */
3987286, /* "qcStatements" */
3988457, /* "qualityLabelledData" */
3989450, /* "rFC822localPart" */
399098, /* "rc2-40-cbc" */
3991166, /* "rc2-64-cbc" */
399237, /* "rc2-cbc" */
399339, /* "rc2-cfb" */
399438, /* "rc2-ecb" */
399540, /* "rc2-ofb" */
3996 5, /* "rc4" */
399797, /* "rc4-40" */
3998915, /* "rc4-hmac-md5" */
3999120, /* "rc5-cbc" */
4000122, /* "rc5-cfb" */
4001121, /* "rc5-ecb" */
4002123, /* "rc5-ofb" */
4003870, /* "registeredAddress" */
4004460, /* "rfc822Mailbox" */
4005117, /* "ripemd160" */
4006119, /* "ripemd160WithRSA" */
4007400, /* "role" */
4008877, /* "roleOccupant" */
4009448, /* "room" */
4010463, /* "roomNumber" */
401119, /* "rsa" */
4012 6, /* "rsaEncryption" */
4013644, /* "rsaOAEPEncryptionSET" */
4014377, /* "rsaSignature" */
4015919, /* "rsaesOaep" */
4016912, /* "rsassaPss" */
4017124, /* "run length compression" */
4018482, /* "sOARecord" */
4019155, /* "safeContentsBag" */
4020291, /* "sbgp-autonomousSysNum" */
4021290, /* "sbgp-ipAddrBlock" */
4022292, /* "sbgp-routerIdentifier" */
4023159, /* "sdsiCertificate" */
4024859, /* "searchGuide" */
4025704, /* "secp112r1" */
4026705, /* "secp112r2" */
4027706, /* "secp128r1" */
4028707, /* "secp128r2" */
4029708, /* "secp160k1" */
4030709, /* "secp160r1" */
4031710, /* "secp160r2" */
4032711, /* "secp192k1" */
4033712, /* "secp224k1" */
4034713, /* "secp224r1" */
4035714, /* "secp256k1" */
4036715, /* "secp384r1" */
4037716, /* "secp521r1" */
4038154, /* "secretBag" */
4039474, /* "secretary" */
4040717, /* "sect113r1" */
4041718, /* "sect113r2" */
4042719, /* "sect131r1" */
4043720, /* "sect131r2" */
4044721, /* "sect163k1" */
4045722, /* "sect163r1" */
4046723, /* "sect163r2" */
4047724, /* "sect193r1" */
4048725, /* "sect193r2" */
4049726, /* "sect233k1" */
4050727, /* "sect233r1" */
4051728, /* "sect239k1" */
4052729, /* "sect283k1" */
4053730, /* "sect283r1" */
4054731, /* "sect409k1" */
4055732, /* "sect409r1" */
4056733, /* "sect571k1" */
4057734, /* "sect571r1" */
4058635, /* "secure device signature" */
4059878, /* "seeAlso" */
4060777, /* "seed-cbc" */
4061779, /* "seed-cfb" */
4062776, /* "seed-ecb" */
4063778, /* "seed-ofb" */
4064105, /* "serialNumber" */
4065625, /* "set-addPolicy" */
4066515, /* "set-attr" */
4067518, /* "set-brand" */
4068638, /* "set-brand-AmericanExpress" */
4069637, /* "set-brand-Diners" */
4070636, /* "set-brand-IATA-ATA" */
4071639, /* "set-brand-JCB" */
4072641, /* "set-brand-MasterCard" */
4073642, /* "set-brand-Novus" */
4074640, /* "set-brand-Visa" */
4075516, /* "set-policy" */
4076607, /* "set-policy-root" */
4077624, /* "set-rootKeyThumb" */
4078620, /* "setAttr-Cert" */
4079628, /* "setAttr-IssCap-CVM" */
4080630, /* "setAttr-IssCap-Sig" */
4081629, /* "setAttr-IssCap-T2" */
4082627, /* "setAttr-Token-B0Prime" */
4083626, /* "setAttr-Token-EMV" */
4084622, /* "setAttr-TokenType" */
4085619, /* "setCext-IssuerCapabilities" */
4086615, /* "setCext-PGWYcapabilities" */
4087616, /* "setCext-TokenIdentifier" */
4088618, /* "setCext-TokenType" */
4089617, /* "setCext-Track2Data" */
4090611, /* "setCext-cCertRequired" */
4091609, /* "setCext-certType" */
4092608, /* "setCext-hashedRoot" */
4093610, /* "setCext-merchData" */
4094613, /* "setCext-setExt" */
4095614, /* "setCext-setQualf" */
4096612, /* "setCext-tunneling" */
4097540, /* "setct-AcqCardCodeMsg" */
4098576, /* "setct-AcqCardCodeMsgTBE" */
4099570, /* "setct-AuthReqTBE" */
4100534, /* "setct-AuthReqTBS" */
4101527, /* "setct-AuthResBaggage" */
4102571, /* "setct-AuthResTBE" */
4103572, /* "setct-AuthResTBEX" */
4104535, /* "setct-AuthResTBS" */
4105536, /* "setct-AuthResTBSX" */
4106528, /* "setct-AuthRevReqBaggage" */
4107577, /* "setct-AuthRevReqTBE" */
4108541, /* "setct-AuthRevReqTBS" */
4109529, /* "setct-AuthRevResBaggage" */
4110542, /* "setct-AuthRevResData" */
4111578, /* "setct-AuthRevResTBE" */
4112579, /* "setct-AuthRevResTBEB" */
4113543, /* "setct-AuthRevResTBS" */
4114573, /* "setct-AuthTokenTBE" */
4115537, /* "setct-AuthTokenTBS" */
4116600, /* "setct-BCIDistributionTBS" */
4117558, /* "setct-BatchAdminReqData" */
4118592, /* "setct-BatchAdminReqTBE" */
4119559, /* "setct-BatchAdminResData" */
4120593, /* "setct-BatchAdminResTBE" */
4121599, /* "setct-CRLNotificationResTBS" */
4122598, /* "setct-CRLNotificationTBS" */
4123580, /* "setct-CapReqTBE" */
4124581, /* "setct-CapReqTBEX" */
4125544, /* "setct-CapReqTBS" */
4126545, /* "setct-CapReqTBSX" */
4127546, /* "setct-CapResData" */
4128582, /* "setct-CapResTBE" */
4129583, /* "setct-CapRevReqTBE" */
4130584, /* "setct-CapRevReqTBEX" */
4131547, /* "setct-CapRevReqTBS" */
4132548, /* "setct-CapRevReqTBSX" */
4133549, /* "setct-CapRevResData" */
4134585, /* "setct-CapRevResTBE" */
4135538, /* "setct-CapTokenData" */
4136530, /* "setct-CapTokenSeq" */
4137574, /* "setct-CapTokenTBE" */
4138575, /* "setct-CapTokenTBEX" */
4139539, /* "setct-CapTokenTBS" */
4140560, /* "setct-CardCInitResTBS" */
4141566, /* "setct-CertInqReqTBS" */
4142563, /* "setct-CertReqData" */
4143595, /* "setct-CertReqTBE" */
4144596, /* "setct-CertReqTBEX" */
4145564, /* "setct-CertReqTBS" */
4146565, /* "setct-CertResData" */
4147597, /* "setct-CertResTBE" */
4148586, /* "setct-CredReqTBE" */
4149587, /* "setct-CredReqTBEX" */
4150550, /* "setct-CredReqTBS" */
4151551, /* "setct-CredReqTBSX" */
4152552, /* "setct-CredResData" */
4153588, /* "setct-CredResTBE" */
4154589, /* "setct-CredRevReqTBE" */
4155590, /* "setct-CredRevReqTBEX" */
4156553, /* "setct-CredRevReqTBS" */
4157554, /* "setct-CredRevReqTBSX" */
4158555, /* "setct-CredRevResData" */
4159591, /* "setct-CredRevResTBE" */
4160567, /* "setct-ErrorTBS" */
4161526, /* "setct-HODInput" */
4162561, /* "setct-MeAqCInitResTBS" */
4163522, /* "setct-OIData" */
4164519, /* "setct-PANData" */
4165521, /* "setct-PANOnly" */
4166520, /* "setct-PANToken" */
4167556, /* "setct-PCertReqData" */
4168557, /* "setct-PCertResTBS" */
4169523, /* "setct-PI" */
4170532, /* "setct-PI-TBS" */
4171524, /* "setct-PIData" */
4172525, /* "setct-PIDataUnsigned" */
4173568, /* "setct-PIDualSignedTBE" */
4174569, /* "setct-PIUnsignedTBE" */
4175531, /* "setct-PInitResData" */
4176533, /* "setct-PResData" */
4177594, /* "setct-RegFormReqTBE" */
4178562, /* "setct-RegFormResTBS" */
4179604, /* "setext-pinAny" */
4180603, /* "setext-pinSecure" */
4181605, /* "setext-track2" */
418241, /* "sha" */
418364, /* "sha1" */
4184115, /* "sha1WithRSA" */
418565, /* "sha1WithRSAEncryption" */
4186675, /* "sha224" */
4187671, /* "sha224WithRSAEncryption" */
4188672, /* "sha256" */
4189668, /* "sha256WithRSAEncryption" */
4190673, /* "sha384" */
4191669, /* "sha384WithRSAEncryption" */
4192674, /* "sha512" */
4193670, /* "sha512WithRSAEncryption" */
419442, /* "shaWithRSAEncryption" */
419552, /* "signingTime" */
4196454, /* "simpleSecurityObject" */
4197496, /* "singleLevelQuality" */
419816, /* "stateOrProvinceName" */
4199660, /* "streetAddress" */
4200498, /* "subtreeMaximumQuality" */
4201497, /* "subtreeMinimumQuality" */
4202890, /* "supportedAlgorithms" */
4203874, /* "supportedApplicationContext" */
4204100, /* "surname" */
4205864, /* "telephoneNumber" */
4206866, /* "teletexTerminalIdentifier" */
4207865, /* "telexNumber" */
4208459, /* "textEncodedORAddress" */
4209293, /* "textNotice" */
4210106, /* "title" */
4211682, /* "tpBasis" */
4212436, /* "ucl" */
4213 0, /* "undefined" */
4214888, /* "uniqueMember" */
421555, /* "unstructuredAddress" */
421649, /* "unstructuredName" */
4217880, /* "userCertificate" */
4218465, /* "userClass" */
4219458, /* "userId" */
4220879, /* "userPassword" */
4221373, /* "valid" */
4222678, /* "wap" */
4223679, /* "wap-wsg" */
4224735, /* "wap-wsg-idm-ecid-wtls1" */
4225743, /* "wap-wsg-idm-ecid-wtls10" */
4226744, /* "wap-wsg-idm-ecid-wtls11" */
4227745, /* "wap-wsg-idm-ecid-wtls12" */
4228736, /* "wap-wsg-idm-ecid-wtls3" */
4229737, /* "wap-wsg-idm-ecid-wtls4" */
4230738, /* "wap-wsg-idm-ecid-wtls5" */
4231739, /* "wap-wsg-idm-ecid-wtls6" */
4232740, /* "wap-wsg-idm-ecid-wtls7" */
4233741, /* "wap-wsg-idm-ecid-wtls8" */
4234742, /* "wap-wsg-idm-ecid-wtls9" */
4235804, /* "whirlpool" */
4236868, /* "x121Address" */
4237503, /* "x500UniqueIdentifier" */
4238158, /* "x509Certificate" */
4239160, /* "x509Crl" */
4240125, /* "zlib compression" */
4241};
4242
4243static const unsigned int obj_objs[NUM_OBJ]={
4244 0, /* OBJ_undef 0 */
4245393, /* OBJ_joint_iso_ccitt OBJ_joint_iso_itu_t */
4246404, /* OBJ_ccitt OBJ_itu_t */
4247645, /* OBJ_itu_t 0 */
4248434, /* OBJ_data 0 9 */
4249181, /* OBJ_iso 1 */
4250182, /* OBJ_member_body 1 2 */
4251379, /* OBJ_org 1 3 */
4252676, /* OBJ_identified_organization 1 3 */
4253646, /* OBJ_joint_iso_itu_t 2 */
425411, /* OBJ_X500 2 5 */
4255647, /* OBJ_international_organizations 2 23 */
4256380, /* OBJ_dod 1 3 6 */
425712, /* OBJ_X509 2 5 4 */
4258378, /* OBJ_X500algorithms 2 5 8 */
425981, /* OBJ_id_ce 2 5 29 */
4260512, /* OBJ_id_set 2 23 42 */
4261678, /* OBJ_wap 2 23 43 */
4262435, /* OBJ_pss 0 9 2342 */
4263183, /* OBJ_ISO_US 1 2 840 */
4264381, /* OBJ_iana 1 3 6 1 */
4265677, /* OBJ_certicom_arc 1 3 132 */
4266394, /* OBJ_selected_attribute_types 2 5 1 5 */
426713, /* OBJ_commonName 2 5 4 3 */
4268100, /* OBJ_surname 2 5 4 4 */
4269105, /* OBJ_serialNumber 2 5 4 5 */
427014, /* OBJ_countryName 2 5 4 6 */
427115, /* OBJ_localityName 2 5 4 7 */
427216, /* OBJ_stateOrProvinceName 2 5 4 8 */
4273660, /* OBJ_streetAddress 2 5 4 9 */
427417, /* OBJ_organizationName 2 5 4 10 */
427518, /* OBJ_organizationalUnitName 2 5 4 11 */
4276106, /* OBJ_title 2 5 4 12 */
4277107, /* OBJ_description 2 5 4 13 */
4278859, /* OBJ_searchGuide 2 5 4 14 */
4279860, /* OBJ_businessCategory 2 5 4 15 */
4280861, /* OBJ_postalAddress 2 5 4 16 */
4281661, /* OBJ_postalCode 2 5 4 17 */
4282862, /* OBJ_postOfficeBox 2 5 4 18 */
4283863, /* OBJ_physicalDeliveryOfficeName 2 5 4 19 */
4284864, /* OBJ_telephoneNumber 2 5 4 20 */
4285865, /* OBJ_telexNumber 2 5 4 21 */
4286866, /* OBJ_teletexTerminalIdentifier 2 5 4 22 */
4287867, /* OBJ_facsimileTelephoneNumber 2 5 4 23 */
4288868, /* OBJ_x121Address 2 5 4 24 */
4289869, /* OBJ_internationaliSDNNumber 2 5 4 25 */
4290870, /* OBJ_registeredAddress 2 5 4 26 */
4291871, /* OBJ_destinationIndicator 2 5 4 27 */
4292872, /* OBJ_preferredDeliveryMethod 2 5 4 28 */
4293873, /* OBJ_presentationAddress 2 5 4 29 */
4294874, /* OBJ_supportedApplicationContext 2 5 4 30 */
4295875, /* OBJ_member 2 5 4 31 */
4296876, /* OBJ_owner 2 5 4 32 */
4297877, /* OBJ_roleOccupant 2 5 4 33 */
4298878, /* OBJ_seeAlso 2 5 4 34 */
4299879, /* OBJ_userPassword 2 5 4 35 */
4300880, /* OBJ_userCertificate 2 5 4 36 */
4301881, /* OBJ_cACertificate 2 5 4 37 */
4302882, /* OBJ_authorityRevocationList 2 5 4 38 */
4303883, /* OBJ_certificateRevocationList 2 5 4 39 */
4304884, /* OBJ_crossCertificatePair 2 5 4 40 */
4305173, /* OBJ_name 2 5 4 41 */
430699, /* OBJ_givenName 2 5 4 42 */
4307101, /* OBJ_initials 2 5 4 43 */
4308509, /* OBJ_generationQualifier 2 5 4 44 */
4309503, /* OBJ_x500UniqueIdentifier 2 5 4 45 */
4310174, /* OBJ_dnQualifier 2 5 4 46 */
4311885, /* OBJ_enhancedSearchGuide 2 5 4 47 */
4312886, /* OBJ_protocolInformation 2 5 4 48 */
4313887, /* OBJ_distinguishedName 2 5 4 49 */
4314888, /* OBJ_uniqueMember 2 5 4 50 */
4315889, /* OBJ_houseIdentifier 2 5 4 51 */
4316890, /* OBJ_supportedAlgorithms 2 5 4 52 */
4317891, /* OBJ_deltaRevocationList 2 5 4 53 */
4318892, /* OBJ_dmdName 2 5 4 54 */
4319510, /* OBJ_pseudonym 2 5 4 65 */
4320400, /* OBJ_role 2 5 4 72 */
4321769, /* OBJ_subject_directory_attributes 2 5 29 9 */
432282, /* OBJ_subject_key_identifier 2 5 29 14 */
432383, /* OBJ_key_usage 2 5 29 15 */
432484, /* OBJ_private_key_usage_period 2 5 29 16 */
432585, /* OBJ_subject_alt_name 2 5 29 17 */
432686, /* OBJ_issuer_alt_name 2 5 29 18 */
432787, /* OBJ_basic_constraints 2 5 29 19 */
432888, /* OBJ_crl_number 2 5 29 20 */
4329141, /* OBJ_crl_reason 2 5 29 21 */
4330430, /* OBJ_hold_instruction_code 2 5 29 23 */
4331142, /* OBJ_invalidity_date 2 5 29 24 */
4332140, /* OBJ_delta_crl 2 5 29 27 */
4333770, /* OBJ_issuing_distribution_point 2 5 29 28 */
4334771, /* OBJ_certificate_issuer 2 5 29 29 */
4335666, /* OBJ_name_constraints 2 5 29 30 */
4336103, /* OBJ_crl_distribution_points 2 5 29 31 */
433789, /* OBJ_certificate_policies 2 5 29 32 */
4338747, /* OBJ_policy_mappings 2 5 29 33 */
433990, /* OBJ_authority_key_identifier 2 5 29 35 */
4340401, /* OBJ_policy_constraints 2 5 29 36 */
4341126, /* OBJ_ext_key_usage 2 5 29 37 */
4342857, /* OBJ_freshest_crl 2 5 29 46 */
4343748, /* OBJ_inhibit_any_policy 2 5 29 54 */
4344402, /* OBJ_target_information 2 5 29 55 */
4345403, /* OBJ_no_rev_avail 2 5 29 56 */
4346513, /* OBJ_set_ctype 2 23 42 0 */
4347514, /* OBJ_set_msgExt 2 23 42 1 */
4348515, /* OBJ_set_attr 2 23 42 3 */
4349516, /* OBJ_set_policy 2 23 42 5 */
4350517, /* OBJ_set_certExt 2 23 42 7 */
4351518, /* OBJ_set_brand 2 23 42 8 */
4352679, /* OBJ_wap_wsg 2 23 43 1 */
4353382, /* OBJ_Directory 1 3 6 1 1 */
4354383, /* OBJ_Management 1 3 6 1 2 */
4355384, /* OBJ_Experimental 1 3 6 1 3 */
4356385, /* OBJ_Private 1 3 6 1 4 */
4357386, /* OBJ_Security 1 3 6 1 5 */
4358387, /* OBJ_SNMPv2 1 3 6 1 6 */
4359388, /* OBJ_Mail 1 3 6 1 7 */
4360376, /* OBJ_algorithm 1 3 14 3 2 */
4361395, /* OBJ_clearance 2 5 1 5 55 */
436219, /* OBJ_rsa 2 5 8 1 1 */
436396, /* OBJ_mdc2WithRSA 2 5 8 3 100 */
436495, /* OBJ_mdc2 2 5 8 3 101 */
4365746, /* OBJ_any_policy 2 5 29 32 0 */
4366910, /* OBJ_anyExtendedKeyUsage 2 5 29 37 0 */
4367519, /* OBJ_setct_PANData 2 23 42 0 0 */
4368520, /* OBJ_setct_PANToken 2 23 42 0 1 */
4369521, /* OBJ_setct_PANOnly 2 23 42 0 2 */
4370522, /* OBJ_setct_OIData 2 23 42 0 3 */
4371523, /* OBJ_setct_PI 2 23 42 0 4 */
4372524, /* OBJ_setct_PIData 2 23 42 0 5 */
4373525, /* OBJ_setct_PIDataUnsigned 2 23 42 0 6 */
4374526, /* OBJ_setct_HODInput 2 23 42 0 7 */
4375527, /* OBJ_setct_AuthResBaggage 2 23 42 0 8 */
4376528, /* OBJ_setct_AuthRevReqBaggage 2 23 42 0 9 */
4377529, /* OBJ_setct_AuthRevResBaggage 2 23 42 0 10 */
4378530, /* OBJ_setct_CapTokenSeq 2 23 42 0 11 */
4379531, /* OBJ_setct_PInitResData 2 23 42 0 12 */
4380532, /* OBJ_setct_PI_TBS 2 23 42 0 13 */
4381533, /* OBJ_setct_PResData 2 23 42 0 14 */
4382534, /* OBJ_setct_AuthReqTBS 2 23 42 0 16 */
4383535, /* OBJ_setct_AuthResTBS 2 23 42 0 17 */
4384536, /* OBJ_setct_AuthResTBSX 2 23 42 0 18 */
4385537, /* OBJ_setct_AuthTokenTBS 2 23 42 0 19 */
4386538, /* OBJ_setct_CapTokenData 2 23 42 0 20 */
4387539, /* OBJ_setct_CapTokenTBS 2 23 42 0 21 */
4388540, /* OBJ_setct_AcqCardCodeMsg 2 23 42 0 22 */
4389541, /* OBJ_setct_AuthRevReqTBS 2 23 42 0 23 */
4390542, /* OBJ_setct_AuthRevResData 2 23 42 0 24 */
4391543, /* OBJ_setct_AuthRevResTBS 2 23 42 0 25 */
4392544, /* OBJ_setct_CapReqTBS 2 23 42 0 26 */
4393545, /* OBJ_setct_CapReqTBSX 2 23 42 0 27 */
4394546, /* OBJ_setct_CapResData 2 23 42 0 28 */
4395547, /* OBJ_setct_CapRevReqTBS 2 23 42 0 29 */
4396548, /* OBJ_setct_CapRevReqTBSX 2 23 42 0 30 */
4397549, /* OBJ_setct_CapRevResData 2 23 42 0 31 */
4398550, /* OBJ_setct_CredReqTBS 2 23 42 0 32 */
4399551, /* OBJ_setct_CredReqTBSX 2 23 42 0 33 */
4400552, /* OBJ_setct_CredResData 2 23 42 0 34 */
4401553, /* OBJ_setct_CredRevReqTBS 2 23 42 0 35 */
4402554, /* OBJ_setct_CredRevReqTBSX 2 23 42 0 36 */
4403555, /* OBJ_setct_CredRevResData 2 23 42 0 37 */
4404556, /* OBJ_setct_PCertReqData 2 23 42 0 38 */
4405557, /* OBJ_setct_PCertResTBS 2 23 42 0 39 */
4406558, /* OBJ_setct_BatchAdminReqData 2 23 42 0 40 */
4407559, /* OBJ_setct_BatchAdminResData 2 23 42 0 41 */
4408560, /* OBJ_setct_CardCInitResTBS 2 23 42 0 42 */
4409561, /* OBJ_setct_MeAqCInitResTBS 2 23 42 0 43 */
4410562, /* OBJ_setct_RegFormResTBS 2 23 42 0 44 */
4411563, /* OBJ_setct_CertReqData 2 23 42 0 45 */
4412564, /* OBJ_setct_CertReqTBS 2 23 42 0 46 */
4413565, /* OBJ_setct_CertResData 2 23 42 0 47 */
4414566, /* OBJ_setct_CertInqReqTBS 2 23 42 0 48 */
4415567, /* OBJ_setct_ErrorTBS 2 23 42 0 49 */
4416568, /* OBJ_setct_PIDualSignedTBE 2 23 42 0 50 */
4417569, /* OBJ_setct_PIUnsignedTBE 2 23 42 0 51 */
4418570, /* OBJ_setct_AuthReqTBE 2 23 42 0 52 */
4419571, /* OBJ_setct_AuthResTBE 2 23 42 0 53 */
4420572, /* OBJ_setct_AuthResTBEX 2 23 42 0 54 */
4421573, /* OBJ_setct_AuthTokenTBE 2 23 42 0 55 */
4422574, /* OBJ_setct_CapTokenTBE 2 23 42 0 56 */
4423575, /* OBJ_setct_CapTokenTBEX 2 23 42 0 57 */
4424576, /* OBJ_setct_AcqCardCodeMsgTBE 2 23 42 0 58 */
4425577, /* OBJ_setct_AuthRevReqTBE 2 23 42 0 59 */
4426578, /* OBJ_setct_AuthRevResTBE 2 23 42 0 60 */
4427579, /* OBJ_setct_AuthRevResTBEB 2 23 42 0 61 */
4428580, /* OBJ_setct_CapReqTBE 2 23 42 0 62 */
4429581, /* OBJ_setct_CapReqTBEX 2 23 42 0 63 */
4430582, /* OBJ_setct_CapResTBE 2 23 42 0 64 */
4431583, /* OBJ_setct_CapRevReqTBE 2 23 42 0 65 */
4432584, /* OBJ_setct_CapRevReqTBEX 2 23 42 0 66 */
4433585, /* OBJ_setct_CapRevResTBE 2 23 42 0 67 */
4434586, /* OBJ_setct_CredReqTBE 2 23 42 0 68 */
4435587, /* OBJ_setct_CredReqTBEX 2 23 42 0 69 */
4436588, /* OBJ_setct_CredResTBE 2 23 42 0 70 */
4437589, /* OBJ_setct_CredRevReqTBE 2 23 42 0 71 */
4438590, /* OBJ_setct_CredRevReqTBEX 2 23 42 0 72 */
4439591, /* OBJ_setct_CredRevResTBE 2 23 42 0 73 */
4440592, /* OBJ_setct_BatchAdminReqTBE 2 23 42 0 74 */
4441593, /* OBJ_setct_BatchAdminResTBE 2 23 42 0 75 */
4442594, /* OBJ_setct_RegFormReqTBE 2 23 42 0 76 */
4443595, /* OBJ_setct_CertReqTBE 2 23 42 0 77 */
4444596, /* OBJ_setct_CertReqTBEX 2 23 42 0 78 */
4445597, /* OBJ_setct_CertResTBE 2 23 42 0 79 */
4446598, /* OBJ_setct_CRLNotificationTBS 2 23 42 0 80 */
4447599, /* OBJ_setct_CRLNotificationResTBS 2 23 42 0 81 */
4448600, /* OBJ_setct_BCIDistributionTBS 2 23 42 0 82 */
4449601, /* OBJ_setext_genCrypt 2 23 42 1 1 */
4450602, /* OBJ_setext_miAuth 2 23 42 1 3 */
4451603, /* OBJ_setext_pinSecure 2 23 42 1 4 */
4452604, /* OBJ_setext_pinAny 2 23 42 1 5 */
4453605, /* OBJ_setext_track2 2 23 42 1 7 */
4454606, /* OBJ_setext_cv 2 23 42 1 8 */
4455620, /* OBJ_setAttr_Cert 2 23 42 3 0 */
4456621, /* OBJ_setAttr_PGWYcap 2 23 42 3 1 */
4457622, /* OBJ_setAttr_TokenType 2 23 42 3 2 */
4458623, /* OBJ_setAttr_IssCap 2 23 42 3 3 */
4459607, /* OBJ_set_policy_root 2 23 42 5 0 */
4460608, /* OBJ_setCext_hashedRoot 2 23 42 7 0 */
4461609, /* OBJ_setCext_certType 2 23 42 7 1 */
4462610, /* OBJ_setCext_merchData 2 23 42 7 2 */
4463611, /* OBJ_setCext_cCertRequired 2 23 42 7 3 */
4464612, /* OBJ_setCext_tunneling 2 23 42 7 4 */
4465613, /* OBJ_setCext_setExt 2 23 42 7 5 */
4466614, /* OBJ_setCext_setQualf 2 23 42 7 6 */
4467615, /* OBJ_setCext_PGWYcapabilities 2 23 42 7 7 */
4468616, /* OBJ_setCext_TokenIdentifier 2 23 42 7 8 */
4469617, /* OBJ_setCext_Track2Data 2 23 42 7 9 */
4470618, /* OBJ_setCext_TokenType 2 23 42 7 10 */
4471619, /* OBJ_setCext_IssuerCapabilities 2 23 42 7 11 */
4472636, /* OBJ_set_brand_IATA_ATA 2 23 42 8 1 */
4473640, /* OBJ_set_brand_Visa 2 23 42 8 4 */
4474641, /* OBJ_set_brand_MasterCard 2 23 42 8 5 */
4475637, /* OBJ_set_brand_Diners 2 23 42 8 30 */
4476638, /* OBJ_set_brand_AmericanExpress 2 23 42 8 34 */
4477639, /* OBJ_set_brand_JCB 2 23 42 8 35 */
4478805, /* OBJ_cryptopro 1 2 643 2 2 */
4479806, /* OBJ_cryptocom 1 2 643 2 9 */
4480184, /* OBJ_X9_57 1 2 840 10040 */
4481405, /* OBJ_ansi_X9_62 1 2 840 10045 */
4482389, /* OBJ_Enterprises 1 3 6 1 4 1 */
4483504, /* OBJ_mime_mhs 1 3 6 1 7 1 */
4484104, /* OBJ_md5WithRSA 1 3 14 3 2 3 */
448529, /* OBJ_des_ecb 1 3 14 3 2 6 */
448631, /* OBJ_des_cbc 1 3 14 3 2 7 */
448745, /* OBJ_des_ofb64 1 3 14 3 2 8 */
448830, /* OBJ_des_cfb64 1 3 14 3 2 9 */
4489377, /* OBJ_rsaSignature 1 3 14 3 2 11 */
449067, /* OBJ_dsa_2 1 3 14 3 2 12 */
449166, /* OBJ_dsaWithSHA 1 3 14 3 2 13 */
449242, /* OBJ_shaWithRSAEncryption 1 3 14 3 2 15 */
449332, /* OBJ_des_ede_ecb 1 3 14 3 2 17 */
449441, /* OBJ_sha 1 3 14 3 2 18 */
449564, /* OBJ_sha1 1 3 14 3 2 26 */
449670, /* OBJ_dsaWithSHA1_2 1 3 14 3 2 27 */
4497115, /* OBJ_sha1WithRSA 1 3 14 3 2 29 */
4498117, /* OBJ_ripemd160 1 3 36 3 2 1 */
4499143, /* OBJ_sxnet 1 3 101 1 4 1 */
4500721, /* OBJ_sect163k1 1 3 132 0 1 */
4501722, /* OBJ_sect163r1 1 3 132 0 2 */
4502728, /* OBJ_sect239k1 1 3 132 0 3 */
4503717, /* OBJ_sect113r1 1 3 132 0 4 */
4504718, /* OBJ_sect113r2 1 3 132 0 5 */
4505704, /* OBJ_secp112r1 1 3 132 0 6 */
4506705, /* OBJ_secp112r2 1 3 132 0 7 */
4507709, /* OBJ_secp160r1 1 3 132 0 8 */
4508708, /* OBJ_secp160k1 1 3 132 0 9 */
4509714, /* OBJ_secp256k1 1 3 132 0 10 */
4510723, /* OBJ_sect163r2 1 3 132 0 15 */
4511729, /* OBJ_sect283k1 1 3 132 0 16 */
4512730, /* OBJ_sect283r1 1 3 132 0 17 */
4513719, /* OBJ_sect131r1 1 3 132 0 22 */
4514720, /* OBJ_sect131r2 1 3 132 0 23 */
4515724, /* OBJ_sect193r1 1 3 132 0 24 */
4516725, /* OBJ_sect193r2 1 3 132 0 25 */
4517726, /* OBJ_sect233k1 1 3 132 0 26 */
4518727, /* OBJ_sect233r1 1 3 132 0 27 */
4519706, /* OBJ_secp128r1 1 3 132 0 28 */
4520707, /* OBJ_secp128r2 1 3 132 0 29 */
4521710, /* OBJ_secp160r2 1 3 132 0 30 */
4522711, /* OBJ_secp192k1 1 3 132 0 31 */
4523712, /* OBJ_secp224k1 1 3 132 0 32 */
4524713, /* OBJ_secp224r1 1 3 132 0 33 */
4525715, /* OBJ_secp384r1 1 3 132 0 34 */
4526716, /* OBJ_secp521r1 1 3 132 0 35 */
4527731, /* OBJ_sect409k1 1 3 132 0 36 */
4528732, /* OBJ_sect409r1 1 3 132 0 37 */
4529733, /* OBJ_sect571k1 1 3 132 0 38 */
4530734, /* OBJ_sect571r1 1 3 132 0 39 */
4531624, /* OBJ_set_rootKeyThumb 2 23 42 3 0 0 */
4532625, /* OBJ_set_addPolicy 2 23 42 3 0 1 */
4533626, /* OBJ_setAttr_Token_EMV 2 23 42 3 2 1 */
4534627, /* OBJ_setAttr_Token_B0Prime 2 23 42 3 2 2 */
4535628, /* OBJ_setAttr_IssCap_CVM 2 23 42 3 3 3 */
4536629, /* OBJ_setAttr_IssCap_T2 2 23 42 3 3 4 */
4537630, /* OBJ_setAttr_IssCap_Sig 2 23 42 3 3 5 */
4538642, /* OBJ_set_brand_Novus 2 23 42 8 6011 */
4539735, /* OBJ_wap_wsg_idm_ecid_wtls1 2 23 43 1 4 1 */
4540736, /* OBJ_wap_wsg_idm_ecid_wtls3 2 23 43 1 4 3 */
4541737, /* OBJ_wap_wsg_idm_ecid_wtls4 2 23 43 1 4 4 */
4542738, /* OBJ_wap_wsg_idm_ecid_wtls5 2 23 43 1 4 5 */
4543739, /* OBJ_wap_wsg_idm_ecid_wtls6 2 23 43 1 4 6 */
4544740, /* OBJ_wap_wsg_idm_ecid_wtls7 2 23 43 1 4 7 */
4545741, /* OBJ_wap_wsg_idm_ecid_wtls8 2 23 43 1 4 8 */
4546742, /* OBJ_wap_wsg_idm_ecid_wtls9 2 23 43 1 4 9 */
4547743, /* OBJ_wap_wsg_idm_ecid_wtls10 2 23 43 1 4 10 */
4548744, /* OBJ_wap_wsg_idm_ecid_wtls11 2 23 43 1 4 11 */
4549745, /* OBJ_wap_wsg_idm_ecid_wtls12 2 23 43 1 4 12 */
4550804, /* OBJ_whirlpool 1 0 10118 3 0 55 */
4551124, /* OBJ_rle_compression 1 1 1 1 666 1 */
4552773, /* OBJ_kisa 1 2 410 200004 */
4553807, /* OBJ_id_GostR3411_94_with_GostR3410_2001 1 2 643 2 2 3 */
4554808, /* OBJ_id_GostR3411_94_with_GostR3410_94 1 2 643 2 2 4 */
4555809, /* OBJ_id_GostR3411_94 1 2 643 2 2 9 */
4556810, /* OBJ_id_HMACGostR3411_94 1 2 643 2 2 10 */
4557811, /* OBJ_id_GostR3410_2001 1 2 643 2 2 19 */
4558812, /* OBJ_id_GostR3410_94 1 2 643 2 2 20 */
4559813, /* OBJ_id_Gost28147_89 1 2 643 2 2 21 */
4560815, /* OBJ_id_Gost28147_89_MAC 1 2 643 2 2 22 */
4561816, /* OBJ_id_GostR3411_94_prf 1 2 643 2 2 23 */
4562817, /* OBJ_id_GostR3410_2001DH 1 2 643 2 2 98 */
4563818, /* OBJ_id_GostR3410_94DH 1 2 643 2 2 99 */
4564 1, /* OBJ_rsadsi 1 2 840 113549 */
4565185, /* OBJ_X9cm 1 2 840 10040 4 */
4566127, /* OBJ_id_pkix 1 3 6 1 5 5 7 */
4567505, /* OBJ_mime_mhs_headings 1 3 6 1 7 1 1 */
4568506, /* OBJ_mime_mhs_bodies 1 3 6 1 7 1 2 */
4569119, /* OBJ_ripemd160WithRSA 1 3 36 3 3 1 2 */
4570631, /* OBJ_setAttr_GenCryptgrm 2 23 42 3 3 3 1 */
4571632, /* OBJ_setAttr_T2Enc 2 23 42 3 3 4 1 */
4572633, /* OBJ_setAttr_T2cleartxt 2 23 42 3 3 4 2 */
4573634, /* OBJ_setAttr_TokICCsig 2 23 42 3 3 5 1 */
4574635, /* OBJ_setAttr_SecDevSig 2 23 42 3 3 5 2 */
4575436, /* OBJ_ucl 0 9 2342 19200300 */
4576820, /* OBJ_id_Gost28147_89_None_KeyMeshing 1 2 643 2 2 14 0 */
4577819, /* OBJ_id_Gost28147_89_CryptoPro_KeyMeshing 1 2 643 2 2 14 1 */
4578845, /* OBJ_id_GostR3410_94_a 1 2 643 2 2 20 1 */
4579846, /* OBJ_id_GostR3410_94_aBis 1 2 643 2 2 20 2 */
4580847, /* OBJ_id_GostR3410_94_b 1 2 643 2 2 20 3 */
4581848, /* OBJ_id_GostR3410_94_bBis 1 2 643 2 2 20 4 */
4582821, /* OBJ_id_GostR3411_94_TestParamSet 1 2 643 2 2 30 0 */
4583822, /* OBJ_id_GostR3411_94_CryptoProParamSet 1 2 643 2 2 30 1 */
4584823, /* OBJ_id_Gost28147_89_TestParamSet 1 2 643 2 2 31 0 */
4585824, /* OBJ_id_Gost28147_89_CryptoPro_A_ParamSet 1 2 643 2 2 31 1 */
4586825, /* OBJ_id_Gost28147_89_CryptoPro_B_ParamSet 1 2 643 2 2 31 2 */
4587826, /* OBJ_id_Gost28147_89_CryptoPro_C_ParamSet 1 2 643 2 2 31 3 */
4588827, /* OBJ_id_Gost28147_89_CryptoPro_D_ParamSet 1 2 643 2 2 31 4 */
4589828, /* OBJ_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet 1 2 643 2 2 31 5 */
4590829, /* OBJ_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet 1 2 643 2 2 31 6 */
4591830, /* OBJ_id_Gost28147_89_CryptoPro_RIC_1_ParamSet 1 2 643 2 2 31 7 */
4592831, /* OBJ_id_GostR3410_94_TestParamSet 1 2 643 2 2 32 0 */
4593832, /* OBJ_id_GostR3410_94_CryptoPro_A_ParamSet 1 2 643 2 2 32 2 */
4594833, /* OBJ_id_GostR3410_94_CryptoPro_B_ParamSet 1 2 643 2 2 32 3 */
4595834, /* OBJ_id_GostR3410_94_CryptoPro_C_ParamSet 1 2 643 2 2 32 4 */
4596835, /* OBJ_id_GostR3410_94_CryptoPro_D_ParamSet 1 2 643 2 2 32 5 */
4597836, /* OBJ_id_GostR3410_94_CryptoPro_XchA_ParamSet 1 2 643 2 2 33 1 */
4598837, /* OBJ_id_GostR3410_94_CryptoPro_XchB_ParamSet 1 2 643 2 2 33 2 */
4599838, /* OBJ_id_GostR3410_94_CryptoPro_XchC_ParamSet 1 2 643 2 2 33 3 */
4600839, /* OBJ_id_GostR3410_2001_TestParamSet 1 2 643 2 2 35 0 */
4601840, /* OBJ_id_GostR3410_2001_CryptoPro_A_ParamSet 1 2 643 2 2 35 1 */
4602841, /* OBJ_id_GostR3410_2001_CryptoPro_B_ParamSet 1 2 643 2 2 35 2 */
4603842, /* OBJ_id_GostR3410_2001_CryptoPro_C_ParamSet 1 2 643 2 2 35 3 */
4604843, /* OBJ_id_GostR3410_2001_CryptoPro_XchA_ParamSet 1 2 643 2 2 36 0 */
4605844, /* OBJ_id_GostR3410_2001_CryptoPro_XchB_ParamSet 1 2 643 2 2 36 1 */
4606 2, /* OBJ_pkcs 1 2 840 113549 1 */
4607431, /* OBJ_hold_instruction_none 1 2 840 10040 2 1 */
4608432, /* OBJ_hold_instruction_call_issuer 1 2 840 10040 2 2 */
4609433, /* OBJ_hold_instruction_reject 1 2 840 10040 2 3 */
4610116, /* OBJ_dsa 1 2 840 10040 4 1 */
4611113, /* OBJ_dsaWithSHA1 1 2 840 10040 4 3 */
4612406, /* OBJ_X9_62_prime_field 1 2 840 10045 1 1 */
4613407, /* OBJ_X9_62_characteristic_two_field 1 2 840 10045 1 2 */
4614408, /* OBJ_X9_62_id_ecPublicKey 1 2 840 10045 2 1 */
4615416, /* OBJ_ecdsa_with_SHA1 1 2 840 10045 4 1 */
4616791, /* OBJ_ecdsa_with_Recommended 1 2 840 10045 4 2 */
4617792, /* OBJ_ecdsa_with_Specified 1 2 840 10045 4 3 */
4618258, /* OBJ_id_pkix_mod 1 3 6 1 5 5 7 0 */
4619175, /* OBJ_id_pe 1 3 6 1 5 5 7 1 */
4620259, /* OBJ_id_qt 1 3 6 1 5 5 7 2 */
4621128, /* OBJ_id_kp 1 3 6 1 5 5 7 3 */
4622260, /* OBJ_id_it 1 3 6 1 5 5 7 4 */
4623261, /* OBJ_id_pkip 1 3 6 1 5 5 7 5 */
4624262, /* OBJ_id_alg 1 3 6 1 5 5 7 6 */
4625263, /* OBJ_id_cmc 1 3 6 1 5 5 7 7 */
4626264, /* OBJ_id_on 1 3 6 1 5 5 7 8 */
4627265, /* OBJ_id_pda 1 3 6 1 5 5 7 9 */
4628266, /* OBJ_id_aca 1 3 6 1 5 5 7 10 */
4629267, /* OBJ_id_qcs 1 3 6 1 5 5 7 11 */
4630268, /* OBJ_id_cct 1 3 6 1 5 5 7 12 */
4631662, /* OBJ_id_ppl 1 3 6 1 5 5 7 21 */
4632176, /* OBJ_id_ad 1 3 6 1 5 5 7 48 */
4633507, /* OBJ_id_hex_partial_message 1 3 6 1 7 1 1 1 */
4634508, /* OBJ_id_hex_multipart_message 1 3 6 1 7 1 1 2 */
463557, /* OBJ_netscape 2 16 840 1 113730 */
4636754, /* OBJ_camellia_128_ecb 0 3 4401 5 3 1 9 1 */
4637766, /* OBJ_camellia_128_ofb128 0 3 4401 5 3 1 9 3 */
4638757, /* OBJ_camellia_128_cfb128 0 3 4401 5 3 1 9 4 */
4639755, /* OBJ_camellia_192_ecb 0 3 4401 5 3 1 9 21 */
4640767, /* OBJ_camellia_192_ofb128 0 3 4401 5 3 1 9 23 */
4641758, /* OBJ_camellia_192_cfb128 0 3 4401 5 3 1 9 24 */
4642756, /* OBJ_camellia_256_ecb 0 3 4401 5 3 1 9 41 */
4643768, /* OBJ_camellia_256_ofb128 0 3 4401 5 3 1 9 43 */
4644759, /* OBJ_camellia_256_cfb128 0 3 4401 5 3 1 9 44 */
4645437, /* OBJ_pilot 0 9 2342 19200300 100 */
4646776, /* OBJ_seed_ecb 1 2 410 200004 1 3 */
4647777, /* OBJ_seed_cbc 1 2 410 200004 1 4 */
4648779, /* OBJ_seed_cfb128 1 2 410 200004 1 5 */
4649778, /* OBJ_seed_ofb128 1 2 410 200004 1 6 */
4650852, /* OBJ_id_GostR3411_94_with_GostR3410_94_cc 1 2 643 2 9 1 3 3 */
4651853, /* OBJ_id_GostR3411_94_with_GostR3410_2001_cc 1 2 643 2 9 1 3 4 */
4652850, /* OBJ_id_GostR3410_94_cc 1 2 643 2 9 1 5 3 */
4653851, /* OBJ_id_GostR3410_2001_cc 1 2 643 2 9 1 5 4 */
4654849, /* OBJ_id_Gost28147_89_cc 1 2 643 2 9 1 6 1 */
4655854, /* OBJ_id_GostR3410_2001_ParamSet_cc 1 2 643 2 9 1 8 1 */
4656186, /* OBJ_pkcs1 1 2 840 113549 1 1 */
465727, /* OBJ_pkcs3 1 2 840 113549 1 3 */
4658187, /* OBJ_pkcs5 1 2 840 113549 1 5 */
465920, /* OBJ_pkcs7 1 2 840 113549 1 7 */
466047, /* OBJ_pkcs9 1 2 840 113549 1 9 */
4661 3, /* OBJ_md2 1 2 840 113549 2 2 */
4662257, /* OBJ_md4 1 2 840 113549 2 4 */
4663 4, /* OBJ_md5 1 2 840 113549 2 5 */
4664797, /* OBJ_hmacWithMD5 1 2 840 113549 2 6 */
4665163, /* OBJ_hmacWithSHA1 1 2 840 113549 2 7 */
4666798, /* OBJ_hmacWithSHA224 1 2 840 113549 2 8 */
4667799, /* OBJ_hmacWithSHA256 1 2 840 113549 2 9 */
4668800, /* OBJ_hmacWithSHA384 1 2 840 113549 2 10 */
4669801, /* OBJ_hmacWithSHA512 1 2 840 113549 2 11 */
467037, /* OBJ_rc2_cbc 1 2 840 113549 3 2 */
4671 5, /* OBJ_rc4 1 2 840 113549 3 4 */
467244, /* OBJ_des_ede3_cbc 1 2 840 113549 3 7 */
4673120, /* OBJ_rc5_cbc 1 2 840 113549 3 8 */
4674643, /* OBJ_des_cdmf 1 2 840 113549 3 10 */
4675680, /* OBJ_X9_62_id_characteristic_two_basis 1 2 840 10045 1 2 3 */
4676684, /* OBJ_X9_62_c2pnb163v1 1 2 840 10045 3 0 1 */
4677685, /* OBJ_X9_62_c2pnb163v2 1 2 840 10045 3 0 2 */
4678686, /* OBJ_X9_62_c2pnb163v3 1 2 840 10045 3 0 3 */
4679687, /* OBJ_X9_62_c2pnb176v1 1 2 840 10045 3 0 4 */
4680688, /* OBJ_X9_62_c2tnb191v1 1 2 840 10045 3 0 5 */
4681689, /* OBJ_X9_62_c2tnb191v2 1 2 840 10045 3 0 6 */
4682690, /* OBJ_X9_62_c2tnb191v3 1 2 840 10045 3 0 7 */
4683691, /* OBJ_X9_62_c2onb191v4 1 2 840 10045 3 0 8 */
4684692, /* OBJ_X9_62_c2onb191v5 1 2 840 10045 3 0 9 */
4685693, /* OBJ_X9_62_c2pnb208w1 1 2 840 10045 3 0 10 */
4686694, /* OBJ_X9_62_c2tnb239v1 1 2 840 10045 3 0 11 */
4687695, /* OBJ_X9_62_c2tnb239v2 1 2 840 10045 3 0 12 */
4688696, /* OBJ_X9_62_c2tnb239v3 1 2 840 10045 3 0 13 */
4689697, /* OBJ_X9_62_c2onb239v4 1 2 840 10045 3 0 14 */
4690698, /* OBJ_X9_62_c2onb239v5 1 2 840 10045 3 0 15 */
4691699, /* OBJ_X9_62_c2pnb272w1 1 2 840 10045 3 0 16 */
4692700, /* OBJ_X9_62_c2pnb304w1 1 2 840 10045 3 0 17 */
4693701, /* OBJ_X9_62_c2tnb359v1 1 2 840 10045 3 0 18 */
4694702, /* OBJ_X9_62_c2pnb368w1 1 2 840 10045 3 0 19 */
4695703, /* OBJ_X9_62_c2tnb431r1 1 2 840 10045 3 0 20 */
4696409, /* OBJ_X9_62_prime192v1 1 2 840 10045 3 1 1 */
4697410, /* OBJ_X9_62_prime192v2 1 2 840 10045 3 1 2 */
4698411, /* OBJ_X9_62_prime192v3 1 2 840 10045 3 1 3 */
4699412, /* OBJ_X9_62_prime239v1 1 2 840 10045 3 1 4 */
4700413, /* OBJ_X9_62_prime239v2 1 2 840 10045 3 1 5 */
4701414, /* OBJ_X9_62_prime239v3 1 2 840 10045 3 1 6 */
4702415, /* OBJ_X9_62_prime256v1 1 2 840 10045 3 1 7 */
4703793, /* OBJ_ecdsa_with_SHA224 1 2 840 10045 4 3 1 */
4704794, /* OBJ_ecdsa_with_SHA256 1 2 840 10045 4 3 2 */
4705795, /* OBJ_ecdsa_with_SHA384 1 2 840 10045 4 3 3 */
4706796, /* OBJ_ecdsa_with_SHA512 1 2 840 10045 4 3 4 */
4707269, /* OBJ_id_pkix1_explicit_88 1 3 6 1 5 5 7 0 1 */
4708270, /* OBJ_id_pkix1_implicit_88 1 3 6 1 5 5 7 0 2 */
4709271, /* OBJ_id_pkix1_explicit_93 1 3 6 1 5 5 7 0 3 */
4710272, /* OBJ_id_pkix1_implicit_93 1 3 6 1 5 5 7 0 4 */
4711273, /* OBJ_id_mod_crmf 1 3 6 1 5 5 7 0 5 */
4712274, /* OBJ_id_mod_cmc 1 3 6 1 5 5 7 0 6 */
4713275, /* OBJ_id_mod_kea_profile_88 1 3 6 1 5 5 7 0 7 */
4714276, /* OBJ_id_mod_kea_profile_93 1 3 6 1 5 5 7 0 8 */
4715277, /* OBJ_id_mod_cmp 1 3 6 1 5 5 7 0 9 */
4716278, /* OBJ_id_mod_qualified_cert_88 1 3 6 1 5 5 7 0 10 */
4717279, /* OBJ_id_mod_qualified_cert_93 1 3 6 1 5 5 7 0 11 */
4718280, /* OBJ_id_mod_attribute_cert 1 3 6 1 5 5 7 0 12 */
4719281, /* OBJ_id_mod_timestamp_protocol 1 3 6 1 5 5 7 0 13 */
4720282, /* OBJ_id_mod_ocsp 1 3 6 1 5 5 7 0 14 */
4721283, /* OBJ_id_mod_dvcs 1 3 6 1 5 5 7 0 15 */
4722284, /* OBJ_id_mod_cmp2000 1 3 6 1 5 5 7 0 16 */
4723177, /* OBJ_info_access 1 3 6 1 5 5 7 1 1 */
4724285, /* OBJ_biometricInfo 1 3 6 1 5 5 7 1 2 */
4725286, /* OBJ_qcStatements 1 3 6 1 5 5 7 1 3 */
4726287, /* OBJ_ac_auditEntity 1 3 6 1 5 5 7 1 4 */
4727288, /* OBJ_ac_targeting 1 3 6 1 5 5 7 1 5 */
4728289, /* OBJ_aaControls 1 3 6 1 5 5 7 1 6 */
4729290, /* OBJ_sbgp_ipAddrBlock 1 3 6 1 5 5 7 1 7 */
4730291, /* OBJ_sbgp_autonomousSysNum 1 3 6 1 5 5 7 1 8 */
4731292, /* OBJ_sbgp_routerIdentifier 1 3 6 1 5 5 7 1 9 */
4732397, /* OBJ_ac_proxying 1 3 6 1 5 5 7 1 10 */
4733398, /* OBJ_sinfo_access 1 3 6 1 5 5 7 1 11 */
4734663, /* OBJ_proxyCertInfo 1 3 6 1 5 5 7 1 14 */
4735164, /* OBJ_id_qt_cps 1 3 6 1 5 5 7 2 1 */
4736165, /* OBJ_id_qt_unotice 1 3 6 1 5 5 7 2 2 */
4737293, /* OBJ_textNotice 1 3 6 1 5 5 7 2 3 */
4738129, /* OBJ_server_auth 1 3 6 1 5 5 7 3 1 */
4739130, /* OBJ_client_auth 1 3 6 1 5 5 7 3 2 */
4740131, /* OBJ_code_sign 1 3 6 1 5 5 7 3 3 */
4741132, /* OBJ_email_protect 1 3 6 1 5 5 7 3 4 */
4742294, /* OBJ_ipsecEndSystem 1 3 6 1 5 5 7 3 5 */
4743295, /* OBJ_ipsecTunnel 1 3 6 1 5 5 7 3 6 */
4744296, /* OBJ_ipsecUser 1 3 6 1 5 5 7 3 7 */
4745133, /* OBJ_time_stamp 1 3 6 1 5 5 7 3 8 */
4746180, /* OBJ_OCSP_sign 1 3 6 1 5 5 7 3 9 */
4747297, /* OBJ_dvcs 1 3 6 1 5 5 7 3 10 */
4748298, /* OBJ_id_it_caProtEncCert 1 3 6 1 5 5 7 4 1 */
4749299, /* OBJ_id_it_signKeyPairTypes 1 3 6 1 5 5 7 4 2 */
4750300, /* OBJ_id_it_encKeyPairTypes 1 3 6 1 5 5 7 4 3 */
4751301, /* OBJ_id_it_preferredSymmAlg 1 3 6 1 5 5 7 4 4 */
4752302, /* OBJ_id_it_caKeyUpdateInfo 1 3 6 1 5 5 7 4 5 */
4753303, /* OBJ_id_it_currentCRL 1 3 6 1 5 5 7 4 6 */
4754304, /* OBJ_id_it_unsupportedOIDs 1 3 6 1 5 5 7 4 7 */
4755305, /* OBJ_id_it_subscriptionRequest 1 3 6 1 5 5 7 4 8 */
4756306, /* OBJ_id_it_subscriptionResponse 1 3 6 1 5 5 7 4 9 */
4757307, /* OBJ_id_it_keyPairParamReq 1 3 6 1 5 5 7 4 10 */
4758308, /* OBJ_id_it_keyPairParamRep 1 3 6 1 5 5 7 4 11 */
4759309, /* OBJ_id_it_revPassphrase 1 3 6 1 5 5 7 4 12 */
4760310, /* OBJ_id_it_implicitConfirm 1 3 6 1 5 5 7 4 13 */
4761311, /* OBJ_id_it_confirmWaitTime 1 3 6 1 5 5 7 4 14 */
4762312, /* OBJ_id_it_origPKIMessage 1 3 6 1 5 5 7 4 15 */
4763784, /* OBJ_id_it_suppLangTags 1 3 6 1 5 5 7 4 16 */
4764313, /* OBJ_id_regCtrl 1 3 6 1 5 5 7 5 1 */
4765314, /* OBJ_id_regInfo 1 3 6 1 5 5 7 5 2 */
4766323, /* OBJ_id_alg_des40 1 3 6 1 5 5 7 6 1 */
4767324, /* OBJ_id_alg_noSignature 1 3 6 1 5 5 7 6 2 */
4768325, /* OBJ_id_alg_dh_sig_hmac_sha1 1 3 6 1 5 5 7 6 3 */
4769326, /* OBJ_id_alg_dh_pop 1 3 6 1 5 5 7 6 4 */
4770327, /* OBJ_id_cmc_statusInfo 1 3 6 1 5 5 7 7 1 */
4771328, /* OBJ_id_cmc_identification 1 3 6 1 5 5 7 7 2 */
4772329, /* OBJ_id_cmc_identityProof 1 3 6 1 5 5 7 7 3 */
4773330, /* OBJ_id_cmc_dataReturn 1 3 6 1 5 5 7 7 4 */
4774331, /* OBJ_id_cmc_transactionId 1 3 6 1 5 5 7 7 5 */
4775332, /* OBJ_id_cmc_senderNonce 1 3 6 1 5 5 7 7 6 */
4776333, /* OBJ_id_cmc_recipientNonce 1 3 6 1 5 5 7 7 7 */
4777334, /* OBJ_id_cmc_addExtensions 1 3 6 1 5 5 7 7 8 */
4778335, /* OBJ_id_cmc_encryptedPOP 1 3 6 1 5 5 7 7 9 */
4779336, /* OBJ_id_cmc_decryptedPOP 1 3 6 1 5 5 7 7 10 */
4780337, /* OBJ_id_cmc_lraPOPWitness 1 3 6 1 5 5 7 7 11 */
4781338, /* OBJ_id_cmc_getCert 1 3 6 1 5 5 7 7 15 */
4782339, /* OBJ_id_cmc_getCRL 1 3 6 1 5 5 7 7 16 */
4783340, /* OBJ_id_cmc_revokeRequest 1 3 6 1 5 5 7 7 17 */
4784341, /* OBJ_id_cmc_regInfo 1 3 6 1 5 5 7 7 18 */
4785342, /* OBJ_id_cmc_responseInfo 1 3 6 1 5 5 7 7 19 */
4786343, /* OBJ_id_cmc_queryPending 1 3 6 1 5 5 7 7 21 */
4787344, /* OBJ_id_cmc_popLinkRandom 1 3 6 1 5 5 7 7 22 */
4788345, /* OBJ_id_cmc_popLinkWitness 1 3 6 1 5 5 7 7 23 */
4789346, /* OBJ_id_cmc_confirmCertAcceptance 1 3 6 1 5 5 7 7 24 */
4790347, /* OBJ_id_on_personalData 1 3 6 1 5 5 7 8 1 */
4791858, /* OBJ_id_on_permanentIdentifier 1 3 6 1 5 5 7 8 3 */
4792348, /* OBJ_id_pda_dateOfBirth 1 3 6 1 5 5 7 9 1 */
4793349, /* OBJ_id_pda_placeOfBirth 1 3 6 1 5 5 7 9 2 */
4794351, /* OBJ_id_pda_gender 1 3 6 1 5 5 7 9 3 */
4795352, /* OBJ_id_pda_countryOfCitizenship 1 3 6 1 5 5 7 9 4 */
4796353, /* OBJ_id_pda_countryOfResidence 1 3 6 1 5 5 7 9 5 */
4797354, /* OBJ_id_aca_authenticationInfo 1 3 6 1 5 5 7 10 1 */
4798355, /* OBJ_id_aca_accessIdentity 1 3 6 1 5 5 7 10 2 */
4799356, /* OBJ_id_aca_chargingIdentity 1 3 6 1 5 5 7 10 3 */
4800357, /* OBJ_id_aca_group 1 3 6 1 5 5 7 10 4 */
4801358, /* OBJ_id_aca_role 1 3 6 1 5 5 7 10 5 */
4802399, /* OBJ_id_aca_encAttrs 1 3 6 1 5 5 7 10 6 */
4803359, /* OBJ_id_qcs_pkixQCSyntax_v1 1 3 6 1 5 5 7 11 1 */
4804360, /* OBJ_id_cct_crs 1 3 6 1 5 5 7 12 1 */
4805361, /* OBJ_id_cct_PKIData 1 3 6 1 5 5 7 12 2 */
4806362, /* OBJ_id_cct_PKIResponse 1 3 6 1 5 5 7 12 3 */
4807664, /* OBJ_id_ppl_anyLanguage 1 3 6 1 5 5 7 21 0 */
4808665, /* OBJ_id_ppl_inheritAll 1 3 6 1 5 5 7 21 1 */
4809667, /* OBJ_Independent 1 3 6 1 5 5 7 21 2 */
4810178, /* OBJ_ad_OCSP 1 3 6 1 5 5 7 48 1 */
4811179, /* OBJ_ad_ca_issuers 1 3 6 1 5 5 7 48 2 */
4812363, /* OBJ_ad_timeStamping 1 3 6 1 5 5 7 48 3 */
4813364, /* OBJ_ad_dvcs 1 3 6 1 5 5 7 48 4 */
4814785, /* OBJ_caRepository 1 3 6 1 5 5 7 48 5 */
4815780, /* OBJ_hmac_md5 1 3 6 1 5 5 8 1 1 */
4816781, /* OBJ_hmac_sha1 1 3 6 1 5 5 8 1 2 */
481758, /* OBJ_netscape_cert_extension 2 16 840 1 113730 1 */
481859, /* OBJ_netscape_data_type 2 16 840 1 113730 2 */
4819438, /* OBJ_pilotAttributeType 0 9 2342 19200300 100 1 */
4820439, /* OBJ_pilotAttributeSyntax 0 9 2342 19200300 100 3 */
4821440, /* OBJ_pilotObjectClass 0 9 2342 19200300 100 4 */
4822441, /* OBJ_pilotGroups 0 9 2342 19200300 100 10 */
4823108, /* OBJ_cast5_cbc 1 2 840 113533 7 66 10 */
4824112, /* OBJ_pbeWithMD5AndCast5_CBC 1 2 840 113533 7 66 12 */
4825782, /* OBJ_id_PasswordBasedMAC 1 2 840 113533 7 66 13 */
4826783, /* OBJ_id_DHBasedMac 1 2 840 113533 7 66 30 */
4827 6, /* OBJ_rsaEncryption 1 2 840 113549 1 1 1 */
4828 7, /* OBJ_md2WithRSAEncryption 1 2 840 113549 1 1 2 */
4829396, /* OBJ_md4WithRSAEncryption 1 2 840 113549 1 1 3 */
4830 8, /* OBJ_md5WithRSAEncryption 1 2 840 113549 1 1 4 */
483165, /* OBJ_sha1WithRSAEncryption 1 2 840 113549 1 1 5 */
4832644, /* OBJ_rsaOAEPEncryptionSET 1 2 840 113549 1 1 6 */
4833919, /* OBJ_rsaesOaep 1 2 840 113549 1 1 7 */
4834911, /* OBJ_mgf1 1 2 840 113549 1 1 8 */
4835912, /* OBJ_rsassaPss 1 2 840 113549 1 1 10 */
4836668, /* OBJ_sha256WithRSAEncryption 1 2 840 113549 1 1 11 */
4837669, /* OBJ_sha384WithRSAEncryption 1 2 840 113549 1 1 12 */
4838670, /* OBJ_sha512WithRSAEncryption 1 2 840 113549 1 1 13 */
4839671, /* OBJ_sha224WithRSAEncryption 1 2 840 113549 1 1 14 */
484028, /* OBJ_dhKeyAgreement 1 2 840 113549 1 3 1 */
4841 9, /* OBJ_pbeWithMD2AndDES_CBC 1 2 840 113549 1 5 1 */
484210, /* OBJ_pbeWithMD5AndDES_CBC 1 2 840 113549 1 5 3 */
4843168, /* OBJ_pbeWithMD2AndRC2_CBC 1 2 840 113549 1 5 4 */
4844169, /* OBJ_pbeWithMD5AndRC2_CBC 1 2 840 113549 1 5 6 */
4845170, /* OBJ_pbeWithSHA1AndDES_CBC 1 2 840 113549 1 5 10 */
484668, /* OBJ_pbeWithSHA1AndRC2_CBC 1 2 840 113549 1 5 11 */
484769, /* OBJ_id_pbkdf2 1 2 840 113549 1 5 12 */
4848161, /* OBJ_pbes2 1 2 840 113549 1 5 13 */
4849162, /* OBJ_pbmac1 1 2 840 113549 1 5 14 */
485021, /* OBJ_pkcs7_data 1 2 840 113549 1 7 1 */
485122, /* OBJ_pkcs7_signed 1 2 840 113549 1 7 2 */
485223, /* OBJ_pkcs7_enveloped 1 2 840 113549 1 7 3 */
485324, /* OBJ_pkcs7_signedAndEnveloped 1 2 840 113549 1 7 4 */
485425, /* OBJ_pkcs7_digest 1 2 840 113549 1 7 5 */
485526, /* OBJ_pkcs7_encrypted 1 2 840 113549 1 7 6 */
485648, /* OBJ_pkcs9_emailAddress 1 2 840 113549 1 9 1 */
485749, /* OBJ_pkcs9_unstructuredName 1 2 840 113549 1 9 2 */
485850, /* OBJ_pkcs9_contentType 1 2 840 113549 1 9 3 */
485951, /* OBJ_pkcs9_messageDigest 1 2 840 113549 1 9 4 */
486052, /* OBJ_pkcs9_signingTime 1 2 840 113549 1 9 5 */
486153, /* OBJ_pkcs9_countersignature 1 2 840 113549 1 9 6 */
486254, /* OBJ_pkcs9_challengePassword 1 2 840 113549 1 9 7 */
486355, /* OBJ_pkcs9_unstructuredAddress 1 2 840 113549 1 9 8 */
486456, /* OBJ_pkcs9_extCertAttributes 1 2 840 113549 1 9 9 */
4865172, /* OBJ_ext_req 1 2 840 113549 1 9 14 */
4866167, /* OBJ_SMIMECapabilities 1 2 840 113549 1 9 15 */
4867188, /* OBJ_SMIME 1 2 840 113549 1 9 16 */
4868156, /* OBJ_friendlyName 1 2 840 113549 1 9 20 */
4869157, /* OBJ_localKeyID 1 2 840 113549 1 9 21 */
4870681, /* OBJ_X9_62_onBasis 1 2 840 10045 1 2 3 1 */
4871682, /* OBJ_X9_62_tpBasis 1 2 840 10045 1 2 3 2 */
4872683, /* OBJ_X9_62_ppBasis 1 2 840 10045 1 2 3 3 */
4873417, /* OBJ_ms_csp_name 1 3 6 1 4 1 311 17 1 */
4874856, /* OBJ_LocalKeySet 1 3 6 1 4 1 311 17 2 */
4875390, /* OBJ_dcObject 1 3 6 1 4 1 1466 344 */
487691, /* OBJ_bf_cbc 1 3 6 1 4 1 3029 1 2 */
4877315, /* OBJ_id_regCtrl_regToken 1 3 6 1 5 5 7 5 1 1 */
4878316, /* OBJ_id_regCtrl_authenticator 1 3 6 1 5 5 7 5 1 2 */
4879317, /* OBJ_id_regCtrl_pkiPublicationInfo 1 3 6 1 5 5 7 5 1 3 */
4880318, /* OBJ_id_regCtrl_pkiArchiveOptions 1 3 6 1 5 5 7 5 1 4 */
4881319, /* OBJ_id_regCtrl_oldCertID 1 3 6 1 5 5 7 5 1 5 */
4882320, /* OBJ_id_regCtrl_protocolEncrKey 1 3 6 1 5 5 7 5 1 6 */
4883321, /* OBJ_id_regInfo_utf8Pairs 1 3 6 1 5 5 7 5 2 1 */
4884322, /* OBJ_id_regInfo_certReq 1 3 6 1 5 5 7 5 2 2 */
4885365, /* OBJ_id_pkix_OCSP_basic 1 3 6 1 5 5 7 48 1 1 */
4886366, /* OBJ_id_pkix_OCSP_Nonce 1 3 6 1 5 5 7 48 1 2 */
4887367, /* OBJ_id_pkix_OCSP_CrlID 1 3 6 1 5 5 7 48 1 3 */
4888368, /* OBJ_id_pkix_OCSP_acceptableResponses 1 3 6 1 5 5 7 48 1 4 */
4889369, /* OBJ_id_pkix_OCSP_noCheck 1 3 6 1 5 5 7 48 1 5 */
4890370, /* OBJ_id_pkix_OCSP_archiveCutoff 1 3 6 1 5 5 7 48 1 6 */
4891371, /* OBJ_id_pkix_OCSP_serviceLocator 1 3 6 1 5 5 7 48 1 7 */
4892372, /* OBJ_id_pkix_OCSP_extendedStatus 1 3 6 1 5 5 7 48 1 8 */
4893373, /* OBJ_id_pkix_OCSP_valid 1 3 6 1 5 5 7 48 1 9 */
4894374, /* OBJ_id_pkix_OCSP_path 1 3 6 1 5 5 7 48 1 10 */
4895375, /* OBJ_id_pkix_OCSP_trustRoot 1 3 6 1 5 5 7 48 1 11 */
4896418, /* OBJ_aes_128_ecb 2 16 840 1 101 3 4 1 1 */
4897419, /* OBJ_aes_128_cbc 2 16 840 1 101 3 4 1 2 */
4898420, /* OBJ_aes_128_ofb128 2 16 840 1 101 3 4 1 3 */
4899421, /* OBJ_aes_128_cfb128 2 16 840 1 101 3 4 1 4 */
4900788, /* OBJ_id_aes128_wrap 2 16 840 1 101 3 4 1 5 */
4901895, /* OBJ_aes_128_gcm 2 16 840 1 101 3 4 1 6 */
4902896, /* OBJ_aes_128_ccm 2 16 840 1 101 3 4 1 7 */
4903897, /* OBJ_id_aes128_wrap_pad 2 16 840 1 101 3 4 1 8 */
4904422, /* OBJ_aes_192_ecb 2 16 840 1 101 3 4 1 21 */
4905423, /* OBJ_aes_192_cbc 2 16 840 1 101 3 4 1 22 */
4906424, /* OBJ_aes_192_ofb128 2 16 840 1 101 3 4 1 23 */
4907425, /* OBJ_aes_192_cfb128 2 16 840 1 101 3 4 1 24 */
4908789, /* OBJ_id_aes192_wrap 2 16 840 1 101 3 4 1 25 */
4909898, /* OBJ_aes_192_gcm 2 16 840 1 101 3 4 1 26 */
4910899, /* OBJ_aes_192_ccm 2 16 840 1 101 3 4 1 27 */
4911900, /* OBJ_id_aes192_wrap_pad 2 16 840 1 101 3 4 1 28 */
4912426, /* OBJ_aes_256_ecb 2 16 840 1 101 3 4 1 41 */
4913427, /* OBJ_aes_256_cbc 2 16 840 1 101 3 4 1 42 */
4914428, /* OBJ_aes_256_ofb128 2 16 840 1 101 3 4 1 43 */
4915429, /* OBJ_aes_256_cfb128 2 16 840 1 101 3 4 1 44 */
4916790, /* OBJ_id_aes256_wrap 2 16 840 1 101 3 4 1 45 */
4917901, /* OBJ_aes_256_gcm 2 16 840 1 101 3 4 1 46 */
4918902, /* OBJ_aes_256_ccm 2 16 840 1 101 3 4 1 47 */
4919903, /* OBJ_id_aes256_wrap_pad 2 16 840 1 101 3 4 1 48 */
4920672, /* OBJ_sha256 2 16 840 1 101 3 4 2 1 */
4921673, /* OBJ_sha384 2 16 840 1 101 3 4 2 2 */
4922674, /* OBJ_sha512 2 16 840 1 101 3 4 2 3 */
4923675, /* OBJ_sha224 2 16 840 1 101 3 4 2 4 */
4924802, /* OBJ_dsa_with_SHA224 2 16 840 1 101 3 4 3 1 */
4925803, /* OBJ_dsa_with_SHA256 2 16 840 1 101 3 4 3 2 */
492671, /* OBJ_netscape_cert_type 2 16 840 1 113730 1 1 */
492772, /* OBJ_netscape_base_url 2 16 840 1 113730 1 2 */
492873, /* OBJ_netscape_revocation_url 2 16 840 1 113730 1 3 */
492974, /* OBJ_netscape_ca_revocation_url 2 16 840 1 113730 1 4 */
493075, /* OBJ_netscape_renewal_url 2 16 840 1 113730 1 7 */
493176, /* OBJ_netscape_ca_policy_url 2 16 840 1 113730 1 8 */
493277, /* OBJ_netscape_ssl_server_name 2 16 840 1 113730 1 12 */
493378, /* OBJ_netscape_comment 2 16 840 1 113730 1 13 */
493479, /* OBJ_netscape_cert_sequence 2 16 840 1 113730 2 5 */
4935139, /* OBJ_ns_sgc 2 16 840 1 113730 4 1 */
4936458, /* OBJ_userId 0 9 2342 19200300 100 1 1 */
4937459, /* OBJ_textEncodedORAddress 0 9 2342 19200300 100 1 2 */
4938460, /* OBJ_rfc822Mailbox 0 9 2342 19200300 100 1 3 */
4939461, /* OBJ_info 0 9 2342 19200300 100 1 4 */
4940462, /* OBJ_favouriteDrink 0 9 2342 19200300 100 1 5 */
4941463, /* OBJ_roomNumber 0 9 2342 19200300 100 1 6 */
4942464, /* OBJ_photo 0 9 2342 19200300 100 1 7 */
4943465, /* OBJ_userClass 0 9 2342 19200300 100 1 8 */
4944466, /* OBJ_host 0 9 2342 19200300 100 1 9 */
4945467, /* OBJ_manager 0 9 2342 19200300 100 1 10 */
4946468, /* OBJ_documentIdentifier 0 9 2342 19200300 100 1 11 */
4947469, /* OBJ_documentTitle 0 9 2342 19200300 100 1 12 */
4948470, /* OBJ_documentVersion 0 9 2342 19200300 100 1 13 */
4949471, /* OBJ_documentAuthor 0 9 2342 19200300 100 1 14 */
4950472, /* OBJ_documentLocation 0 9 2342 19200300 100 1 15 */
4951473, /* OBJ_homeTelephoneNumber 0 9 2342 19200300 100 1 20 */
4952474, /* OBJ_secretary 0 9 2342 19200300 100 1 21 */
4953475, /* OBJ_otherMailbox 0 9 2342 19200300 100 1 22 */
4954476, /* OBJ_lastModifiedTime 0 9 2342 19200300 100 1 23 */
4955477, /* OBJ_lastModifiedBy 0 9 2342 19200300 100 1 24 */
4956391, /* OBJ_domainComponent 0 9 2342 19200300 100 1 25 */
4957478, /* OBJ_aRecord 0 9 2342 19200300 100 1 26 */
4958479, /* OBJ_pilotAttributeType27 0 9 2342 19200300 100 1 27 */
4959480, /* OBJ_mXRecord 0 9 2342 19200300 100 1 28 */
4960481, /* OBJ_nSRecord 0 9 2342 19200300 100 1 29 */
4961482, /* OBJ_sOARecord 0 9 2342 19200300 100 1 30 */
4962483, /* OBJ_cNAMERecord 0 9 2342 19200300 100 1 31 */
4963484, /* OBJ_associatedDomain 0 9 2342 19200300 100 1 37 */
4964485, /* OBJ_associatedName 0 9 2342 19200300 100 1 38 */
4965486, /* OBJ_homePostalAddress 0 9 2342 19200300 100 1 39 */
4966487, /* OBJ_personalTitle 0 9 2342 19200300 100 1 40 */
4967488, /* OBJ_mobileTelephoneNumber 0 9 2342 19200300 100 1 41 */
4968489, /* OBJ_pagerTelephoneNumber 0 9 2342 19200300 100 1 42 */
4969490, /* OBJ_friendlyCountryName 0 9 2342 19200300 100 1 43 */
4970491, /* OBJ_organizationalStatus 0 9 2342 19200300 100 1 45 */
4971492, /* OBJ_janetMailbox 0 9 2342 19200300 100 1 46 */
4972493, /* OBJ_mailPreferenceOption 0 9 2342 19200300 100 1 47 */
4973494, /* OBJ_buildingName 0 9 2342 19200300 100 1 48 */
4974495, /* OBJ_dSAQuality 0 9 2342 19200300 100 1 49 */
4975496, /* OBJ_singleLevelQuality 0 9 2342 19200300 100 1 50 */
4976497, /* OBJ_subtreeMinimumQuality 0 9 2342 19200300 100 1 51 */
4977498, /* OBJ_subtreeMaximumQuality 0 9 2342 19200300 100 1 52 */
4978499, /* OBJ_personalSignature 0 9 2342 19200300 100 1 53 */
4979500, /* OBJ_dITRedirect 0 9 2342 19200300 100 1 54 */
4980501, /* OBJ_audio 0 9 2342 19200300 100 1 55 */
4981502, /* OBJ_documentPublisher 0 9 2342 19200300 100 1 56 */
4982442, /* OBJ_iA5StringSyntax 0 9 2342 19200300 100 3 4 */
4983443, /* OBJ_caseIgnoreIA5StringSyntax 0 9 2342 19200300 100 3 5 */
4984444, /* OBJ_pilotObject 0 9 2342 19200300 100 4 3 */
4985445, /* OBJ_pilotPerson 0 9 2342 19200300 100 4 4 */
4986446, /* OBJ_account 0 9 2342 19200300 100 4 5 */
4987447, /* OBJ_document 0 9 2342 19200300 100 4 6 */
4988448, /* OBJ_room 0 9 2342 19200300 100 4 7 */
4989449, /* OBJ_documentSeries 0 9 2342 19200300 100 4 9 */
4990392, /* OBJ_Domain 0 9 2342 19200300 100 4 13 */
4991450, /* OBJ_rFC822localPart 0 9 2342 19200300 100 4 14 */
4992451, /* OBJ_dNSDomain 0 9 2342 19200300 100 4 15 */
4993452, /* OBJ_domainRelatedObject 0 9 2342 19200300 100 4 17 */
4994453, /* OBJ_friendlyCountry 0 9 2342 19200300 100 4 18 */
4995454, /* OBJ_simpleSecurityObject 0 9 2342 19200300 100 4 19 */
4996455, /* OBJ_pilotOrganization 0 9 2342 19200300 100 4 20 */
4997456, /* OBJ_pilotDSA 0 9 2342 19200300 100 4 21 */
4998457, /* OBJ_qualityLabelledData 0 9 2342 19200300 100 4 22 */
4999189, /* OBJ_id_smime_mod 1 2 840 113549 1 9 16 0 */
5000190, /* OBJ_id_smime_ct 1 2 840 113549 1 9 16 1 */
5001191, /* OBJ_id_smime_aa 1 2 840 113549 1 9 16 2 */
5002192, /* OBJ_id_smime_alg 1 2 840 113549 1 9 16 3 */
5003193, /* OBJ_id_smime_cd 1 2 840 113549 1 9 16 4 */
5004194, /* OBJ_id_smime_spq 1 2 840 113549 1 9 16 5 */
5005195, /* OBJ_id_smime_cti 1 2 840 113549 1 9 16 6 */
5006158, /* OBJ_x509Certificate 1 2 840 113549 1 9 22 1 */
5007159, /* OBJ_sdsiCertificate 1 2 840 113549 1 9 22 2 */
5008160, /* OBJ_x509Crl 1 2 840 113549 1 9 23 1 */
5009144, /* OBJ_pbe_WithSHA1And128BitRC4 1 2 840 113549 1 12 1 1 */
5010145, /* OBJ_pbe_WithSHA1And40BitRC4 1 2 840 113549 1 12 1 2 */
5011146, /* OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC 1 2 840 113549 1 12 1 3 */
5012147, /* OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC 1 2 840 113549 1 12 1 4 */
5013148, /* OBJ_pbe_WithSHA1And128BitRC2_CBC 1 2 840 113549 1 12 1 5 */
5014149, /* OBJ_pbe_WithSHA1And40BitRC2_CBC 1 2 840 113549 1 12 1 6 */
5015171, /* OBJ_ms_ext_req 1 3 6 1 4 1 311 2 1 14 */
5016134, /* OBJ_ms_code_ind 1 3 6 1 4 1 311 2 1 21 */
5017135, /* OBJ_ms_code_com 1 3 6 1 4 1 311 2 1 22 */
5018136, /* OBJ_ms_ctl_sign 1 3 6 1 4 1 311 10 3 1 */
5019137, /* OBJ_ms_sgc 1 3 6 1 4 1 311 10 3 3 */
5020138, /* OBJ_ms_efs 1 3 6 1 4 1 311 10 3 4 */
5021648, /* OBJ_ms_smartcard_login 1 3 6 1 4 1 311 20 2 2 */
5022649, /* OBJ_ms_upn 1 3 6 1 4 1 311 20 2 3 */
5023751, /* OBJ_camellia_128_cbc 1 2 392 200011 61 1 1 1 2 */
5024752, /* OBJ_camellia_192_cbc 1 2 392 200011 61 1 1 1 3 */
5025753, /* OBJ_camellia_256_cbc 1 2 392 200011 61 1 1 1 4 */
5026907, /* OBJ_id_camellia128_wrap 1 2 392 200011 61 1 1 3 2 */
5027908, /* OBJ_id_camellia192_wrap 1 2 392 200011 61 1 1 3 3 */
5028909, /* OBJ_id_camellia256_wrap 1 2 392 200011 61 1 1 3 4 */
5029196, /* OBJ_id_smime_mod_cms 1 2 840 113549 1 9 16 0 1 */
5030197, /* OBJ_id_smime_mod_ess 1 2 840 113549 1 9 16 0 2 */
5031198, /* OBJ_id_smime_mod_oid 1 2 840 113549 1 9 16 0 3 */
5032199, /* OBJ_id_smime_mod_msg_v3 1 2 840 113549 1 9 16 0 4 */
5033200, /* OBJ_id_smime_mod_ets_eSignature_88 1 2 840 113549 1 9 16 0 5 */
5034201, /* OBJ_id_smime_mod_ets_eSignature_97 1 2 840 113549 1 9 16 0 6 */
5035202, /* OBJ_id_smime_mod_ets_eSigPolicy_88 1 2 840 113549 1 9 16 0 7 */
5036203, /* OBJ_id_smime_mod_ets_eSigPolicy_97 1 2 840 113549 1 9 16 0 8 */
5037204, /* OBJ_id_smime_ct_receipt 1 2 840 113549 1 9 16 1 1 */
5038205, /* OBJ_id_smime_ct_authData 1 2 840 113549 1 9 16 1 2 */
5039206, /* OBJ_id_smime_ct_publishCert 1 2 840 113549 1 9 16 1 3 */
5040207, /* OBJ_id_smime_ct_TSTInfo 1 2 840 113549 1 9 16 1 4 */
5041208, /* OBJ_id_smime_ct_TDTInfo 1 2 840 113549 1 9 16 1 5 */
5042209, /* OBJ_id_smime_ct_contentInfo 1 2 840 113549 1 9 16 1 6 */
5043210, /* OBJ_id_smime_ct_DVCSRequestData 1 2 840 113549 1 9 16 1 7 */
5044211, /* OBJ_id_smime_ct_DVCSResponseData 1 2 840 113549 1 9 16 1 8 */
5045786, /* OBJ_id_smime_ct_compressedData 1 2 840 113549 1 9 16 1 9 */
5046787, /* OBJ_id_ct_asciiTextWithCRLF 1 2 840 113549 1 9 16 1 27 */
5047212, /* OBJ_id_smime_aa_receiptRequest 1 2 840 113549 1 9 16 2 1 */
5048213, /* OBJ_id_smime_aa_securityLabel 1 2 840 113549 1 9 16 2 2 */
5049214, /* OBJ_id_smime_aa_mlExpandHistory 1 2 840 113549 1 9 16 2 3 */
5050215, /* OBJ_id_smime_aa_contentHint 1 2 840 113549 1 9 16 2 4 */
5051216, /* OBJ_id_smime_aa_msgSigDigest 1 2 840 113549 1 9 16 2 5 */
5052217, /* OBJ_id_smime_aa_encapContentType 1 2 840 113549 1 9 16 2 6 */
5053218, /* OBJ_id_smime_aa_contentIdentifier 1 2 840 113549 1 9 16 2 7 */
5054219, /* OBJ_id_smime_aa_macValue 1 2 840 113549 1 9 16 2 8 */
5055220, /* OBJ_id_smime_aa_equivalentLabels 1 2 840 113549 1 9 16 2 9 */
5056221, /* OBJ_id_smime_aa_contentReference 1 2 840 113549 1 9 16 2 10 */
5057222, /* OBJ_id_smime_aa_encrypKeyPref 1 2 840 113549 1 9 16 2 11 */
5058223, /* OBJ_id_smime_aa_signingCertificate 1 2 840 113549 1 9 16 2 12 */
5059224, /* OBJ_id_smime_aa_smimeEncryptCerts 1 2 840 113549 1 9 16 2 13 */
5060225, /* OBJ_id_smime_aa_timeStampToken 1 2 840 113549 1 9 16 2 14 */
5061226, /* OBJ_id_smime_aa_ets_sigPolicyId 1 2 840 113549 1 9 16 2 15 */
5062227, /* OBJ_id_smime_aa_ets_commitmentType 1 2 840 113549 1 9 16 2 16 */
5063228, /* OBJ_id_smime_aa_ets_signerLocation 1 2 840 113549 1 9 16 2 17 */
5064229, /* OBJ_id_smime_aa_ets_signerAttr 1 2 840 113549 1 9 16 2 18 */
5065230, /* OBJ_id_smime_aa_ets_otherSigCert 1 2 840 113549 1 9 16 2 19 */
5066231, /* OBJ_id_smime_aa_ets_contentTimestamp 1 2 840 113549 1 9 16 2 20 */
5067232, /* OBJ_id_smime_aa_ets_CertificateRefs 1 2 840 113549 1 9 16 2 21 */
5068233, /* OBJ_id_smime_aa_ets_RevocationRefs 1 2 840 113549 1 9 16 2 22 */
5069234, /* OBJ_id_smime_aa_ets_certValues 1 2 840 113549 1 9 16 2 23 */
5070235, /* OBJ_id_smime_aa_ets_revocationValues 1 2 840 113549 1 9 16 2 24 */
5071236, /* OBJ_id_smime_aa_ets_escTimeStamp 1 2 840 113549 1 9 16 2 25 */
5072237, /* OBJ_id_smime_aa_ets_certCRLTimestamp 1 2 840 113549 1 9 16 2 26 */
5073238, /* OBJ_id_smime_aa_ets_archiveTimeStamp 1 2 840 113549 1 9 16 2 27 */
5074239, /* OBJ_id_smime_aa_signatureType 1 2 840 113549 1 9 16 2 28 */
5075240, /* OBJ_id_smime_aa_dvcs_dvc 1 2 840 113549 1 9 16 2 29 */
5076241, /* OBJ_id_smime_alg_ESDHwith3DES 1 2 840 113549 1 9 16 3 1 */
5077242, /* OBJ_id_smime_alg_ESDHwithRC2 1 2 840 113549 1 9 16 3 2 */
5078243, /* OBJ_id_smime_alg_3DESwrap 1 2 840 113549 1 9 16 3 3 */
5079244, /* OBJ_id_smime_alg_RC2wrap 1 2 840 113549 1 9 16 3 4 */
5080245, /* OBJ_id_smime_alg_ESDH 1 2 840 113549 1 9 16 3 5 */
5081246, /* OBJ_id_smime_alg_CMS3DESwrap 1 2 840 113549 1 9 16 3 6 */
5082247, /* OBJ_id_smime_alg_CMSRC2wrap 1 2 840 113549 1 9 16 3 7 */
5083125, /* OBJ_zlib_compression 1 2 840 113549 1 9 16 3 8 */
5084893, /* OBJ_id_alg_PWRI_KEK 1 2 840 113549 1 9 16 3 9 */
5085248, /* OBJ_id_smime_cd_ldap 1 2 840 113549 1 9 16 4 1 */
5086249, /* OBJ_id_smime_spq_ets_sqt_uri 1 2 840 113549 1 9 16 5 1 */
5087250, /* OBJ_id_smime_spq_ets_sqt_unotice 1 2 840 113549 1 9 16 5 2 */
5088251, /* OBJ_id_smime_cti_ets_proofOfOrigin 1 2 840 113549 1 9 16 6 1 */
5089252, /* OBJ_id_smime_cti_ets_proofOfReceipt 1 2 840 113549 1 9 16 6 2 */
5090253, /* OBJ_id_smime_cti_ets_proofOfDelivery 1 2 840 113549 1 9 16 6 3 */
5091254, /* OBJ_id_smime_cti_ets_proofOfSender 1 2 840 113549 1 9 16 6 4 */
5092255, /* OBJ_id_smime_cti_ets_proofOfApproval 1 2 840 113549 1 9 16 6 5 */
5093256, /* OBJ_id_smime_cti_ets_proofOfCreation 1 2 840 113549 1 9 16 6 6 */
5094150, /* OBJ_keyBag 1 2 840 113549 1 12 10 1 1 */
5095151, /* OBJ_pkcs8ShroudedKeyBag 1 2 840 113549 1 12 10 1 2 */
5096152, /* OBJ_certBag 1 2 840 113549 1 12 10 1 3 */
5097153, /* OBJ_crlBag 1 2 840 113549 1 12 10 1 4 */
5098154, /* OBJ_secretBag 1 2 840 113549 1 12 10 1 5 */
5099155, /* OBJ_safeContentsBag 1 2 840 113549 1 12 10 1 6 */
510034, /* OBJ_idea_cbc 1 3 6 1 4 1 188 7 1 1 2 */
5101};
5102
diff --git a/src/lib/libcrypto/objects/obj_dat.pl b/src/lib/libcrypto/objects/obj_dat.pl
new file mode 100644
index 0000000000..c67f71c327
--- /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
5use integer;
6
7sub 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
23sub 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
45open (IN,"$ARGV[0]") || die "Can't open input file $ARGV[0]";
46open (OUT,">$ARGV[1]") || die "Can't open output file $ARGV[1]";
47
48while (<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 }
83close 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
93for ($i=0; $i<$n; $i++)
94 {
95 if (!defined($nid{$i}))
96 {
97 push(@out,"{NULL,NULL,NID_undef,0,NULL,0},\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,0";
142 }
143 $out.="},\n";
144 push(@out,$out);
145 }
146 }
147
148@a=grep(defined($sn{$nid{$_}}),0 .. $n);
149foreach (sort { $sn{$nid{$a}} cmp $sn{$nid{$b}} } @a)
150 {
151 push(@sn,sprintf("%2d,\t/* \"$sn{$nid{$_}}\" */\n",$_));
152 }
153
154@a=grep(defined($ln{$nid{$_}}),0 .. $n);
155foreach (sort { $ln{$nid{$a}} cmp $ln{$nid{$b}} } @a)
156 {
157 push(@ln,sprintf("%2d,\t/* \"$ln{$nid{$_}}\" */\n",$_));
158 }
159
160@a=grep(defined($obj{$nid{$_}}),0 .. $n);
161foreach (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("%2d,\t/* %-32s %s */\n",$_,$m,$v));
168 }
169
170print 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
235EOF
236
237printf OUT "#define NUM_NID %d\n",$n;
238printf OUT "#define NUM_SN %d\n",$#sn+1;
239printf OUT "#define NUM_LN %d\n",$#ln+1;
240printf OUT "#define NUM_OBJ %d\n\n",$#ob+1;
241
242printf OUT "static const unsigned char lvalues[%d]={\n",$lvalues+1;
243print OUT @lvalues;
244print OUT "};\n\n";
245
246printf OUT "static const ASN1_OBJECT nid_objs[NUM_NID]={\n";
247foreach (@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 }
268print OUT "};\n\n";
269
270printf OUT "static const unsigned int sn_objs[NUM_SN]={\n";
271print OUT @sn;
272print OUT "};\n\n";
273
274printf OUT "static const unsigned int ln_objs[NUM_LN]={\n";
275print OUT @ln;
276print OUT "};\n\n";
277
278printf OUT "static const unsigned int obj_objs[NUM_OBJ]={\n";
279print OUT @ob;
280print OUT "};\n\n";
281
282close OUT;
283
284sub 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..2e7a034c3f
--- /dev/null
+++ b/src/lib/libcrypto/objects/obj_err.c
@@ -0,0 +1,102 @@
1/* crypto/objects/obj_err.c */
2/* ====================================================================
3 * Copyright (c) 1999-2006 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
71static 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
83static 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
92void ERR_load_OBJ_strings(void)
93 {
94#ifndef OPENSSL_NO_ERR
95
96 if (ERR_func_error_string(OBJ_str_functs[0].error) == NULL)
97 {
98 ERR_load_strings(0,OBJ_str_functs);
99 ERR_load_strings(0,OBJ_str_reasons);
100 }
101#endif
102 }
diff --git a/src/lib/libcrypto/objects/obj_lib.c b/src/lib/libcrypto/objects/obj_lib.c
new file mode 100644
index 0000000000..23e9d48cdf
--- /dev/null
+++ b/src/lib/libcrypto/objects/obj_lib.c
@@ -0,0 +1,129 @@
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
65ASN1_OBJECT *OBJ_dup(const ASN1_OBJECT *o)
66 {
67 ASN1_OBJECT *r;
68 int i;
69 char *ln=NULL,*sn=NULL;
70 unsigned char *data=NULL;
71
72 if (o == NULL) return(NULL);
73 if (!(o->flags & ASN1_OBJECT_FLAG_DYNAMIC))
74 return((ASN1_OBJECT *)o); /* XXX: ugh! Why? What kind of
75 duplication is this??? */
76
77 r=ASN1_OBJECT_new();
78 if (r == NULL)
79 {
80 OBJerr(OBJ_F_OBJ_DUP,ERR_R_ASN1_LIB);
81 return(NULL);
82 }
83 data=OPENSSL_malloc(o->length);
84 if (data == NULL)
85 goto err;
86 if (o->data != NULL)
87 memcpy(data,o->data,o->length);
88 /* once data attached to object it remains const */
89 r->data = data;
90 r->length=o->length;
91 r->nid=o->nid;
92 r->ln=r->sn=NULL;
93 if (o->ln != NULL)
94 {
95 i=strlen(o->ln)+1;
96 ln=OPENSSL_malloc(i);
97 if (ln == NULL) goto err;
98 memcpy(ln,o->ln,i);
99 r->ln=ln;
100 }
101
102 if (o->sn != NULL)
103 {
104 i=strlen(o->sn)+1;
105 sn=OPENSSL_malloc(i);
106 if (sn == NULL) goto err;
107 memcpy(sn,o->sn,i);
108 r->sn=sn;
109 }
110 r->flags=o->flags|(ASN1_OBJECT_FLAG_DYNAMIC|
111 ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|ASN1_OBJECT_FLAG_DYNAMIC_DATA);
112 return(r);
113err:
114 OBJerr(OBJ_F_OBJ_DUP,ERR_R_MALLOC_FAILURE);
115 if (ln != NULL) OPENSSL_free(ln);
116 if (sn != NULL) OPENSSL_free(sn);
117 if (data != NULL) OPENSSL_free(data);
118 if (r != NULL) OPENSSL_free(r);
119 return(NULL);
120 }
121
122int OBJ_cmp(const ASN1_OBJECT *a, const ASN1_OBJECT *b)
123 {
124 int ret;
125
126 ret=(a->length-b->length);
127 if (ret) return(ret);
128 return(memcmp(a->data,b->data,a->length));
129 }
diff --git a/src/lib/libcrypto/objects/obj_mac.h b/src/lib/libcrypto/objects/obj_mac.h
deleted file mode 100644
index b5ea7cdab4..0000000000
--- a/src/lib/libcrypto/objects/obj_mac.h
+++ /dev/null
@@ -1,4032 +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,1L
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 SN_ecdsa_with_Recommended "ecdsa-with-Recommended"
319#define NID_ecdsa_with_Recommended 791
320#define OBJ_ecdsa_with_Recommended OBJ_X9_62_id_ecSigType,2L
321
322#define SN_ecdsa_with_Specified "ecdsa-with-Specified"
323#define NID_ecdsa_with_Specified 792
324#define OBJ_ecdsa_with_Specified OBJ_X9_62_id_ecSigType,3L
325
326#define SN_ecdsa_with_SHA224 "ecdsa-with-SHA224"
327#define NID_ecdsa_with_SHA224 793
328#define OBJ_ecdsa_with_SHA224 OBJ_ecdsa_with_Specified,1L
329
330#define SN_ecdsa_with_SHA256 "ecdsa-with-SHA256"
331#define NID_ecdsa_with_SHA256 794
332#define OBJ_ecdsa_with_SHA256 OBJ_ecdsa_with_Specified,2L
333
334#define SN_ecdsa_with_SHA384 "ecdsa-with-SHA384"
335#define NID_ecdsa_with_SHA384 795
336#define OBJ_ecdsa_with_SHA384 OBJ_ecdsa_with_Specified,3L
337
338#define SN_ecdsa_with_SHA512 "ecdsa-with-SHA512"
339#define NID_ecdsa_with_SHA512 796
340#define OBJ_ecdsa_with_SHA512 OBJ_ecdsa_with_Specified,4L
341
342#define OBJ_secg_ellipticCurve OBJ_certicom_arc,0L
343
344#define SN_secp112r1 "secp112r1"
345#define NID_secp112r1 704
346#define OBJ_secp112r1 OBJ_secg_ellipticCurve,6L
347
348#define SN_secp112r2 "secp112r2"
349#define NID_secp112r2 705
350#define OBJ_secp112r2 OBJ_secg_ellipticCurve,7L
351
352#define SN_secp128r1 "secp128r1"
353#define NID_secp128r1 706
354#define OBJ_secp128r1 OBJ_secg_ellipticCurve,28L
355
356#define SN_secp128r2 "secp128r2"
357#define NID_secp128r2 707
358#define OBJ_secp128r2 OBJ_secg_ellipticCurve,29L
359
360#define SN_secp160k1 "secp160k1"
361#define NID_secp160k1 708
362#define OBJ_secp160k1 OBJ_secg_ellipticCurve,9L
363
364#define SN_secp160r1 "secp160r1"
365#define NID_secp160r1 709
366#define OBJ_secp160r1 OBJ_secg_ellipticCurve,8L
367
368#define SN_secp160r2 "secp160r2"
369#define NID_secp160r2 710
370#define OBJ_secp160r2 OBJ_secg_ellipticCurve,30L
371
372#define SN_secp192k1 "secp192k1"
373#define NID_secp192k1 711
374#define OBJ_secp192k1 OBJ_secg_ellipticCurve,31L
375
376#define SN_secp224k1 "secp224k1"
377#define NID_secp224k1 712
378#define OBJ_secp224k1 OBJ_secg_ellipticCurve,32L
379
380#define SN_secp224r1 "secp224r1"
381#define NID_secp224r1 713
382#define OBJ_secp224r1 OBJ_secg_ellipticCurve,33L
383
384#define SN_secp256k1 "secp256k1"
385#define NID_secp256k1 714
386#define OBJ_secp256k1 OBJ_secg_ellipticCurve,10L
387
388#define SN_secp384r1 "secp384r1"
389#define NID_secp384r1 715
390#define OBJ_secp384r1 OBJ_secg_ellipticCurve,34L
391
392#define SN_secp521r1 "secp521r1"
393#define NID_secp521r1 716
394#define OBJ_secp521r1 OBJ_secg_ellipticCurve,35L
395
396#define SN_sect113r1 "sect113r1"
397#define NID_sect113r1 717
398#define OBJ_sect113r1 OBJ_secg_ellipticCurve,4L
399
400#define SN_sect113r2 "sect113r2"
401#define NID_sect113r2 718
402#define OBJ_sect113r2 OBJ_secg_ellipticCurve,5L
403
404#define SN_sect131r1 "sect131r1"
405#define NID_sect131r1 719
406#define OBJ_sect131r1 OBJ_secg_ellipticCurve,22L
407
408#define SN_sect131r2 "sect131r2"
409#define NID_sect131r2 720
410#define OBJ_sect131r2 OBJ_secg_ellipticCurve,23L
411
412#define SN_sect163k1 "sect163k1"
413#define NID_sect163k1 721
414#define OBJ_sect163k1 OBJ_secg_ellipticCurve,1L
415
416#define SN_sect163r1 "sect163r1"
417#define NID_sect163r1 722
418#define OBJ_sect163r1 OBJ_secg_ellipticCurve,2L
419
420#define SN_sect163r2 "sect163r2"
421#define NID_sect163r2 723
422#define OBJ_sect163r2 OBJ_secg_ellipticCurve,15L
423
424#define SN_sect193r1 "sect193r1"
425#define NID_sect193r1 724
426#define OBJ_sect193r1 OBJ_secg_ellipticCurve,24L
427
428#define SN_sect193r2 "sect193r2"
429#define NID_sect193r2 725
430#define OBJ_sect193r2 OBJ_secg_ellipticCurve,25L
431
432#define SN_sect233k1 "sect233k1"
433#define NID_sect233k1 726
434#define OBJ_sect233k1 OBJ_secg_ellipticCurve,26L
435
436#define SN_sect233r1 "sect233r1"
437#define NID_sect233r1 727
438#define OBJ_sect233r1 OBJ_secg_ellipticCurve,27L
439
440#define SN_sect239k1 "sect239k1"
441#define NID_sect239k1 728
442#define OBJ_sect239k1 OBJ_secg_ellipticCurve,3L
443
444#define SN_sect283k1 "sect283k1"
445#define NID_sect283k1 729
446#define OBJ_sect283k1 OBJ_secg_ellipticCurve,16L
447
448#define SN_sect283r1 "sect283r1"
449#define NID_sect283r1 730
450#define OBJ_sect283r1 OBJ_secg_ellipticCurve,17L
451
452#define SN_sect409k1 "sect409k1"
453#define NID_sect409k1 731
454#define OBJ_sect409k1 OBJ_secg_ellipticCurve,36L
455
456#define SN_sect409r1 "sect409r1"
457#define NID_sect409r1 732
458#define OBJ_sect409r1 OBJ_secg_ellipticCurve,37L
459
460#define SN_sect571k1 "sect571k1"
461#define NID_sect571k1 733
462#define OBJ_sect571k1 OBJ_secg_ellipticCurve,38L
463
464#define SN_sect571r1 "sect571r1"
465#define NID_sect571r1 734
466#define OBJ_sect571r1 OBJ_secg_ellipticCurve,39L
467
468#define OBJ_wap_wsg_idm_ecid OBJ_wap_wsg,4L
469
470#define SN_wap_wsg_idm_ecid_wtls1 "wap-wsg-idm-ecid-wtls1"
471#define NID_wap_wsg_idm_ecid_wtls1 735
472#define OBJ_wap_wsg_idm_ecid_wtls1 OBJ_wap_wsg_idm_ecid,1L
473
474#define SN_wap_wsg_idm_ecid_wtls3 "wap-wsg-idm-ecid-wtls3"
475#define NID_wap_wsg_idm_ecid_wtls3 736
476#define OBJ_wap_wsg_idm_ecid_wtls3 OBJ_wap_wsg_idm_ecid,3L
477
478#define SN_wap_wsg_idm_ecid_wtls4 "wap-wsg-idm-ecid-wtls4"
479#define NID_wap_wsg_idm_ecid_wtls4 737
480#define OBJ_wap_wsg_idm_ecid_wtls4 OBJ_wap_wsg_idm_ecid,4L
481
482#define SN_wap_wsg_idm_ecid_wtls5 "wap-wsg-idm-ecid-wtls5"
483#define NID_wap_wsg_idm_ecid_wtls5 738
484#define OBJ_wap_wsg_idm_ecid_wtls5 OBJ_wap_wsg_idm_ecid,5L
485
486#define SN_wap_wsg_idm_ecid_wtls6 "wap-wsg-idm-ecid-wtls6"
487#define NID_wap_wsg_idm_ecid_wtls6 739
488#define OBJ_wap_wsg_idm_ecid_wtls6 OBJ_wap_wsg_idm_ecid,6L
489
490#define SN_wap_wsg_idm_ecid_wtls7 "wap-wsg-idm-ecid-wtls7"
491#define NID_wap_wsg_idm_ecid_wtls7 740
492#define OBJ_wap_wsg_idm_ecid_wtls7 OBJ_wap_wsg_idm_ecid,7L
493
494#define SN_wap_wsg_idm_ecid_wtls8 "wap-wsg-idm-ecid-wtls8"
495#define NID_wap_wsg_idm_ecid_wtls8 741
496#define OBJ_wap_wsg_idm_ecid_wtls8 OBJ_wap_wsg_idm_ecid,8L
497
498#define SN_wap_wsg_idm_ecid_wtls9 "wap-wsg-idm-ecid-wtls9"
499#define NID_wap_wsg_idm_ecid_wtls9 742
500#define OBJ_wap_wsg_idm_ecid_wtls9 OBJ_wap_wsg_idm_ecid,9L
501
502#define SN_wap_wsg_idm_ecid_wtls10 "wap-wsg-idm-ecid-wtls10"
503#define NID_wap_wsg_idm_ecid_wtls10 743
504#define OBJ_wap_wsg_idm_ecid_wtls10 OBJ_wap_wsg_idm_ecid,10L
505
506#define SN_wap_wsg_idm_ecid_wtls11 "wap-wsg-idm-ecid-wtls11"
507#define NID_wap_wsg_idm_ecid_wtls11 744
508#define OBJ_wap_wsg_idm_ecid_wtls11 OBJ_wap_wsg_idm_ecid,11L
509
510#define SN_wap_wsg_idm_ecid_wtls12 "wap-wsg-idm-ecid-wtls12"
511#define NID_wap_wsg_idm_ecid_wtls12 745
512#define OBJ_wap_wsg_idm_ecid_wtls12 OBJ_wap_wsg_idm_ecid,12L
513
514#define SN_cast5_cbc "CAST5-CBC"
515#define LN_cast5_cbc "cast5-cbc"
516#define NID_cast5_cbc 108
517#define OBJ_cast5_cbc OBJ_ISO_US,113533L,7L,66L,10L
518
519#define SN_cast5_ecb "CAST5-ECB"
520#define LN_cast5_ecb "cast5-ecb"
521#define NID_cast5_ecb 109
522
523#define SN_cast5_cfb64 "CAST5-CFB"
524#define LN_cast5_cfb64 "cast5-cfb"
525#define NID_cast5_cfb64 110
526
527#define SN_cast5_ofb64 "CAST5-OFB"
528#define LN_cast5_ofb64 "cast5-ofb"
529#define NID_cast5_ofb64 111
530
531#define LN_pbeWithMD5AndCast5_CBC "pbeWithMD5AndCast5CBC"
532#define NID_pbeWithMD5AndCast5_CBC 112
533#define OBJ_pbeWithMD5AndCast5_CBC OBJ_ISO_US,113533L,7L,66L,12L
534
535#define SN_id_PasswordBasedMAC "id-PasswordBasedMAC"
536#define LN_id_PasswordBasedMAC "password based MAC"
537#define NID_id_PasswordBasedMAC 782
538#define OBJ_id_PasswordBasedMAC OBJ_ISO_US,113533L,7L,66L,13L
539
540#define SN_id_DHBasedMac "id-DHBasedMac"
541#define LN_id_DHBasedMac "Diffie-Hellman based MAC"
542#define NID_id_DHBasedMac 783
543#define OBJ_id_DHBasedMac OBJ_ISO_US,113533L,7L,66L,30L
544
545#define SN_rsadsi "rsadsi"
546#define LN_rsadsi "RSA Data Security, Inc."
547#define NID_rsadsi 1
548#define OBJ_rsadsi OBJ_ISO_US,113549L
549
550#define SN_pkcs "pkcs"
551#define LN_pkcs "RSA Data Security, Inc. PKCS"
552#define NID_pkcs 2
553#define OBJ_pkcs OBJ_rsadsi,1L
554
555#define SN_pkcs1 "pkcs1"
556#define NID_pkcs1 186
557#define OBJ_pkcs1 OBJ_pkcs,1L
558
559#define LN_rsaEncryption "rsaEncryption"
560#define NID_rsaEncryption 6
561#define OBJ_rsaEncryption OBJ_pkcs1,1L
562
563#define SN_md2WithRSAEncryption "RSA-MD2"
564#define LN_md2WithRSAEncryption "md2WithRSAEncryption"
565#define NID_md2WithRSAEncryption 7
566#define OBJ_md2WithRSAEncryption OBJ_pkcs1,2L
567
568#define SN_md4WithRSAEncryption "RSA-MD4"
569#define LN_md4WithRSAEncryption "md4WithRSAEncryption"
570#define NID_md4WithRSAEncryption 396
571#define OBJ_md4WithRSAEncryption OBJ_pkcs1,3L
572
573#define SN_md5WithRSAEncryption "RSA-MD5"
574#define LN_md5WithRSAEncryption "md5WithRSAEncryption"
575#define NID_md5WithRSAEncryption 8
576#define OBJ_md5WithRSAEncryption OBJ_pkcs1,4L
577
578#define SN_sha1WithRSAEncryption "RSA-SHA1"
579#define LN_sha1WithRSAEncryption "sha1WithRSAEncryption"
580#define NID_sha1WithRSAEncryption 65
581#define OBJ_sha1WithRSAEncryption OBJ_pkcs1,5L
582
583#define SN_rsaesOaep "RSAES-OAEP"
584#define LN_rsaesOaep "rsaesOaep"
585#define NID_rsaesOaep 919
586#define OBJ_rsaesOaep OBJ_pkcs1,7L
587
588#define SN_mgf1 "MGF1"
589#define LN_mgf1 "mgf1"
590#define NID_mgf1 911
591#define OBJ_mgf1 OBJ_pkcs1,8L
592
593#define SN_rsassaPss "RSASSA-PSS"
594#define LN_rsassaPss "rsassaPss"
595#define NID_rsassaPss 912
596#define OBJ_rsassaPss OBJ_pkcs1,10L
597
598#define SN_sha256WithRSAEncryption "RSA-SHA256"
599#define LN_sha256WithRSAEncryption "sha256WithRSAEncryption"
600#define NID_sha256WithRSAEncryption 668
601#define OBJ_sha256WithRSAEncryption OBJ_pkcs1,11L
602
603#define SN_sha384WithRSAEncryption "RSA-SHA384"
604#define LN_sha384WithRSAEncryption "sha384WithRSAEncryption"
605#define NID_sha384WithRSAEncryption 669
606#define OBJ_sha384WithRSAEncryption OBJ_pkcs1,12L
607
608#define SN_sha512WithRSAEncryption "RSA-SHA512"
609#define LN_sha512WithRSAEncryption "sha512WithRSAEncryption"
610#define NID_sha512WithRSAEncryption 670
611#define OBJ_sha512WithRSAEncryption OBJ_pkcs1,13L
612
613#define SN_sha224WithRSAEncryption "RSA-SHA224"
614#define LN_sha224WithRSAEncryption "sha224WithRSAEncryption"
615#define NID_sha224WithRSAEncryption 671
616#define OBJ_sha224WithRSAEncryption OBJ_pkcs1,14L
617
618#define SN_pkcs3 "pkcs3"
619#define NID_pkcs3 27
620#define OBJ_pkcs3 OBJ_pkcs,3L
621
622#define LN_dhKeyAgreement "dhKeyAgreement"
623#define NID_dhKeyAgreement 28
624#define OBJ_dhKeyAgreement OBJ_pkcs3,1L
625
626#define SN_pkcs5 "pkcs5"
627#define NID_pkcs5 187
628#define OBJ_pkcs5 OBJ_pkcs,5L
629
630#define SN_pbeWithMD2AndDES_CBC "PBE-MD2-DES"
631#define LN_pbeWithMD2AndDES_CBC "pbeWithMD2AndDES-CBC"
632#define NID_pbeWithMD2AndDES_CBC 9
633#define OBJ_pbeWithMD2AndDES_CBC OBJ_pkcs5,1L
634
635#define SN_pbeWithMD5AndDES_CBC "PBE-MD5-DES"
636#define LN_pbeWithMD5AndDES_CBC "pbeWithMD5AndDES-CBC"
637#define NID_pbeWithMD5AndDES_CBC 10
638#define OBJ_pbeWithMD5AndDES_CBC OBJ_pkcs5,3L
639
640#define SN_pbeWithMD2AndRC2_CBC "PBE-MD2-RC2-64"
641#define LN_pbeWithMD2AndRC2_CBC "pbeWithMD2AndRC2-CBC"
642#define NID_pbeWithMD2AndRC2_CBC 168
643#define OBJ_pbeWithMD2AndRC2_CBC OBJ_pkcs5,4L
644
645#define SN_pbeWithMD5AndRC2_CBC "PBE-MD5-RC2-64"
646#define LN_pbeWithMD5AndRC2_CBC "pbeWithMD5AndRC2-CBC"
647#define NID_pbeWithMD5AndRC2_CBC 169
648#define OBJ_pbeWithMD5AndRC2_CBC OBJ_pkcs5,6L
649
650#define SN_pbeWithSHA1AndDES_CBC "PBE-SHA1-DES"
651#define LN_pbeWithSHA1AndDES_CBC "pbeWithSHA1AndDES-CBC"
652#define NID_pbeWithSHA1AndDES_CBC 170
653#define OBJ_pbeWithSHA1AndDES_CBC OBJ_pkcs5,10L
654
655#define SN_pbeWithSHA1AndRC2_CBC "PBE-SHA1-RC2-64"
656#define LN_pbeWithSHA1AndRC2_CBC "pbeWithSHA1AndRC2-CBC"
657#define NID_pbeWithSHA1AndRC2_CBC 68
658#define OBJ_pbeWithSHA1AndRC2_CBC OBJ_pkcs5,11L
659
660#define LN_id_pbkdf2 "PBKDF2"
661#define NID_id_pbkdf2 69
662#define OBJ_id_pbkdf2 OBJ_pkcs5,12L
663
664#define LN_pbes2 "PBES2"
665#define NID_pbes2 161
666#define OBJ_pbes2 OBJ_pkcs5,13L
667
668#define LN_pbmac1 "PBMAC1"
669#define NID_pbmac1 162
670#define OBJ_pbmac1 OBJ_pkcs5,14L
671
672#define SN_pkcs7 "pkcs7"
673#define NID_pkcs7 20
674#define OBJ_pkcs7 OBJ_pkcs,7L
675
676#define LN_pkcs7_data "pkcs7-data"
677#define NID_pkcs7_data 21
678#define OBJ_pkcs7_data OBJ_pkcs7,1L
679
680#define LN_pkcs7_signed "pkcs7-signedData"
681#define NID_pkcs7_signed 22
682#define OBJ_pkcs7_signed OBJ_pkcs7,2L
683
684#define LN_pkcs7_enveloped "pkcs7-envelopedData"
685#define NID_pkcs7_enveloped 23
686#define OBJ_pkcs7_enveloped OBJ_pkcs7,3L
687
688#define LN_pkcs7_signedAndEnveloped "pkcs7-signedAndEnvelopedData"
689#define NID_pkcs7_signedAndEnveloped 24
690#define OBJ_pkcs7_signedAndEnveloped OBJ_pkcs7,4L
691
692#define LN_pkcs7_digest "pkcs7-digestData"
693#define NID_pkcs7_digest 25
694#define OBJ_pkcs7_digest OBJ_pkcs7,5L
695
696#define LN_pkcs7_encrypted "pkcs7-encryptedData"
697#define NID_pkcs7_encrypted 26
698#define OBJ_pkcs7_encrypted OBJ_pkcs7,6L
699
700#define SN_pkcs9 "pkcs9"
701#define NID_pkcs9 47
702#define OBJ_pkcs9 OBJ_pkcs,9L
703
704#define LN_pkcs9_emailAddress "emailAddress"
705#define NID_pkcs9_emailAddress 48
706#define OBJ_pkcs9_emailAddress OBJ_pkcs9,1L
707
708#define LN_pkcs9_unstructuredName "unstructuredName"
709#define NID_pkcs9_unstructuredName 49
710#define OBJ_pkcs9_unstructuredName OBJ_pkcs9,2L
711
712#define LN_pkcs9_contentType "contentType"
713#define NID_pkcs9_contentType 50
714#define OBJ_pkcs9_contentType OBJ_pkcs9,3L
715
716#define LN_pkcs9_messageDigest "messageDigest"
717#define NID_pkcs9_messageDigest 51
718#define OBJ_pkcs9_messageDigest OBJ_pkcs9,4L
719
720#define LN_pkcs9_signingTime "signingTime"
721#define NID_pkcs9_signingTime 52
722#define OBJ_pkcs9_signingTime OBJ_pkcs9,5L
723
724#define LN_pkcs9_countersignature "countersignature"
725#define NID_pkcs9_countersignature 53
726#define OBJ_pkcs9_countersignature OBJ_pkcs9,6L
727
728#define LN_pkcs9_challengePassword "challengePassword"
729#define NID_pkcs9_challengePassword 54
730#define OBJ_pkcs9_challengePassword OBJ_pkcs9,7L
731
732#define LN_pkcs9_unstructuredAddress "unstructuredAddress"
733#define NID_pkcs9_unstructuredAddress 55
734#define OBJ_pkcs9_unstructuredAddress OBJ_pkcs9,8L
735
736#define LN_pkcs9_extCertAttributes "extendedCertificateAttributes"
737#define NID_pkcs9_extCertAttributes 56
738#define OBJ_pkcs9_extCertAttributes OBJ_pkcs9,9L
739
740#define SN_ext_req "extReq"
741#define LN_ext_req "Extension Request"
742#define NID_ext_req 172
743#define OBJ_ext_req OBJ_pkcs9,14L
744
745#define SN_SMIMECapabilities "SMIME-CAPS"
746#define LN_SMIMECapabilities "S/MIME Capabilities"
747#define NID_SMIMECapabilities 167
748#define OBJ_SMIMECapabilities OBJ_pkcs9,15L
749
750#define SN_SMIME "SMIME"
751#define LN_SMIME "S/MIME"
752#define NID_SMIME 188
753#define OBJ_SMIME OBJ_pkcs9,16L
754
755#define SN_id_smime_mod "id-smime-mod"
756#define NID_id_smime_mod 189
757#define OBJ_id_smime_mod OBJ_SMIME,0L
758
759#define SN_id_smime_ct "id-smime-ct"
760#define NID_id_smime_ct 190
761#define OBJ_id_smime_ct OBJ_SMIME,1L
762
763#define SN_id_smime_aa "id-smime-aa"
764#define NID_id_smime_aa 191
765#define OBJ_id_smime_aa OBJ_SMIME,2L
766
767#define SN_id_smime_alg "id-smime-alg"
768#define NID_id_smime_alg 192
769#define OBJ_id_smime_alg OBJ_SMIME,3L
770
771#define SN_id_smime_cd "id-smime-cd"
772#define NID_id_smime_cd 193
773#define OBJ_id_smime_cd OBJ_SMIME,4L
774
775#define SN_id_smime_spq "id-smime-spq"
776#define NID_id_smime_spq 194
777#define OBJ_id_smime_spq OBJ_SMIME,5L
778
779#define SN_id_smime_cti "id-smime-cti"
780#define NID_id_smime_cti 195
781#define OBJ_id_smime_cti OBJ_SMIME,6L
782
783#define SN_id_smime_mod_cms "id-smime-mod-cms"
784#define NID_id_smime_mod_cms 196
785#define OBJ_id_smime_mod_cms OBJ_id_smime_mod,1L
786
787#define SN_id_smime_mod_ess "id-smime-mod-ess"
788#define NID_id_smime_mod_ess 197
789#define OBJ_id_smime_mod_ess OBJ_id_smime_mod,2L
790
791#define SN_id_smime_mod_oid "id-smime-mod-oid"
792#define NID_id_smime_mod_oid 198
793#define OBJ_id_smime_mod_oid OBJ_id_smime_mod,3L
794
795#define SN_id_smime_mod_msg_v3 "id-smime-mod-msg-v3"
796#define NID_id_smime_mod_msg_v3 199
797#define OBJ_id_smime_mod_msg_v3 OBJ_id_smime_mod,4L
798
799#define SN_id_smime_mod_ets_eSignature_88 "id-smime-mod-ets-eSignature-88"
800#define NID_id_smime_mod_ets_eSignature_88 200
801#define OBJ_id_smime_mod_ets_eSignature_88 OBJ_id_smime_mod,5L
802
803#define SN_id_smime_mod_ets_eSignature_97 "id-smime-mod-ets-eSignature-97"
804#define NID_id_smime_mod_ets_eSignature_97 201
805#define OBJ_id_smime_mod_ets_eSignature_97 OBJ_id_smime_mod,6L
806
807#define SN_id_smime_mod_ets_eSigPolicy_88 "id-smime-mod-ets-eSigPolicy-88"
808#define NID_id_smime_mod_ets_eSigPolicy_88 202
809#define OBJ_id_smime_mod_ets_eSigPolicy_88 OBJ_id_smime_mod,7L
810
811#define SN_id_smime_mod_ets_eSigPolicy_97 "id-smime-mod-ets-eSigPolicy-97"
812#define NID_id_smime_mod_ets_eSigPolicy_97 203
813#define OBJ_id_smime_mod_ets_eSigPolicy_97 OBJ_id_smime_mod,8L
814
815#define SN_id_smime_ct_receipt "id-smime-ct-receipt"
816#define NID_id_smime_ct_receipt 204
817#define OBJ_id_smime_ct_receipt OBJ_id_smime_ct,1L
818
819#define SN_id_smime_ct_authData "id-smime-ct-authData"
820#define NID_id_smime_ct_authData 205
821#define OBJ_id_smime_ct_authData OBJ_id_smime_ct,2L
822
823#define SN_id_smime_ct_publishCert "id-smime-ct-publishCert"
824#define NID_id_smime_ct_publishCert 206
825#define OBJ_id_smime_ct_publishCert OBJ_id_smime_ct,3L
826
827#define SN_id_smime_ct_TSTInfo "id-smime-ct-TSTInfo"
828#define NID_id_smime_ct_TSTInfo 207
829#define OBJ_id_smime_ct_TSTInfo OBJ_id_smime_ct,4L
830
831#define SN_id_smime_ct_TDTInfo "id-smime-ct-TDTInfo"
832#define NID_id_smime_ct_TDTInfo 208
833#define OBJ_id_smime_ct_TDTInfo OBJ_id_smime_ct,5L
834
835#define SN_id_smime_ct_contentInfo "id-smime-ct-contentInfo"
836#define NID_id_smime_ct_contentInfo 209
837#define OBJ_id_smime_ct_contentInfo OBJ_id_smime_ct,6L
838
839#define SN_id_smime_ct_DVCSRequestData "id-smime-ct-DVCSRequestData"
840#define NID_id_smime_ct_DVCSRequestData 210
841#define OBJ_id_smime_ct_DVCSRequestData OBJ_id_smime_ct,7L
842
843#define SN_id_smime_ct_DVCSResponseData "id-smime-ct-DVCSResponseData"
844#define NID_id_smime_ct_DVCSResponseData 211
845#define OBJ_id_smime_ct_DVCSResponseData OBJ_id_smime_ct,8L
846
847#define SN_id_smime_ct_compressedData "id-smime-ct-compressedData"
848#define NID_id_smime_ct_compressedData 786
849#define OBJ_id_smime_ct_compressedData OBJ_id_smime_ct,9L
850
851#define SN_id_ct_asciiTextWithCRLF "id-ct-asciiTextWithCRLF"
852#define NID_id_ct_asciiTextWithCRLF 787
853#define OBJ_id_ct_asciiTextWithCRLF OBJ_id_smime_ct,27L
854
855#define SN_id_smime_aa_receiptRequest "id-smime-aa-receiptRequest"
856#define NID_id_smime_aa_receiptRequest 212
857#define OBJ_id_smime_aa_receiptRequest OBJ_id_smime_aa,1L
858
859#define SN_id_smime_aa_securityLabel "id-smime-aa-securityLabel"
860#define NID_id_smime_aa_securityLabel 213
861#define OBJ_id_smime_aa_securityLabel OBJ_id_smime_aa,2L
862
863#define SN_id_smime_aa_mlExpandHistory "id-smime-aa-mlExpandHistory"
864#define NID_id_smime_aa_mlExpandHistory 214
865#define OBJ_id_smime_aa_mlExpandHistory OBJ_id_smime_aa,3L
866
867#define SN_id_smime_aa_contentHint "id-smime-aa-contentHint"
868#define NID_id_smime_aa_contentHint 215
869#define OBJ_id_smime_aa_contentHint OBJ_id_smime_aa,4L
870
871#define SN_id_smime_aa_msgSigDigest "id-smime-aa-msgSigDigest"
872#define NID_id_smime_aa_msgSigDigest 216
873#define OBJ_id_smime_aa_msgSigDigest OBJ_id_smime_aa,5L
874
875#define SN_id_smime_aa_encapContentType "id-smime-aa-encapContentType"
876#define NID_id_smime_aa_encapContentType 217
877#define OBJ_id_smime_aa_encapContentType OBJ_id_smime_aa,6L
878
879#define SN_id_smime_aa_contentIdentifier "id-smime-aa-contentIdentifier"
880#define NID_id_smime_aa_contentIdentifier 218
881#define OBJ_id_smime_aa_contentIdentifier OBJ_id_smime_aa,7L
882
883#define SN_id_smime_aa_macValue "id-smime-aa-macValue"
884#define NID_id_smime_aa_macValue 219
885#define OBJ_id_smime_aa_macValue OBJ_id_smime_aa,8L
886
887#define SN_id_smime_aa_equivalentLabels "id-smime-aa-equivalentLabels"
888#define NID_id_smime_aa_equivalentLabels 220
889#define OBJ_id_smime_aa_equivalentLabels OBJ_id_smime_aa,9L
890
891#define SN_id_smime_aa_contentReference "id-smime-aa-contentReference"
892#define NID_id_smime_aa_contentReference 221
893#define OBJ_id_smime_aa_contentReference OBJ_id_smime_aa,10L
894
895#define SN_id_smime_aa_encrypKeyPref "id-smime-aa-encrypKeyPref"
896#define NID_id_smime_aa_encrypKeyPref 222
897#define OBJ_id_smime_aa_encrypKeyPref OBJ_id_smime_aa,11L
898
899#define SN_id_smime_aa_signingCertificate "id-smime-aa-signingCertificate"
900#define NID_id_smime_aa_signingCertificate 223
901#define OBJ_id_smime_aa_signingCertificate OBJ_id_smime_aa,12L
902
903#define SN_id_smime_aa_smimeEncryptCerts "id-smime-aa-smimeEncryptCerts"
904#define NID_id_smime_aa_smimeEncryptCerts 224
905#define OBJ_id_smime_aa_smimeEncryptCerts OBJ_id_smime_aa,13L
906
907#define SN_id_smime_aa_timeStampToken "id-smime-aa-timeStampToken"
908#define NID_id_smime_aa_timeStampToken 225
909#define OBJ_id_smime_aa_timeStampToken OBJ_id_smime_aa,14L
910
911#define SN_id_smime_aa_ets_sigPolicyId "id-smime-aa-ets-sigPolicyId"
912#define NID_id_smime_aa_ets_sigPolicyId 226
913#define OBJ_id_smime_aa_ets_sigPolicyId OBJ_id_smime_aa,15L
914
915#define SN_id_smime_aa_ets_commitmentType "id-smime-aa-ets-commitmentType"
916#define NID_id_smime_aa_ets_commitmentType 227
917#define OBJ_id_smime_aa_ets_commitmentType OBJ_id_smime_aa,16L
918
919#define SN_id_smime_aa_ets_signerLocation "id-smime-aa-ets-signerLocation"
920#define NID_id_smime_aa_ets_signerLocation 228
921#define OBJ_id_smime_aa_ets_signerLocation OBJ_id_smime_aa,17L
922
923#define SN_id_smime_aa_ets_signerAttr "id-smime-aa-ets-signerAttr"
924#define NID_id_smime_aa_ets_signerAttr 229
925#define OBJ_id_smime_aa_ets_signerAttr OBJ_id_smime_aa,18L
926
927#define SN_id_smime_aa_ets_otherSigCert "id-smime-aa-ets-otherSigCert"
928#define NID_id_smime_aa_ets_otherSigCert 230
929#define OBJ_id_smime_aa_ets_otherSigCert OBJ_id_smime_aa,19L
930
931#define SN_id_smime_aa_ets_contentTimestamp "id-smime-aa-ets-contentTimestamp"
932#define NID_id_smime_aa_ets_contentTimestamp 231
933#define OBJ_id_smime_aa_ets_contentTimestamp OBJ_id_smime_aa,20L
934
935#define SN_id_smime_aa_ets_CertificateRefs "id-smime-aa-ets-CertificateRefs"
936#define NID_id_smime_aa_ets_CertificateRefs 232
937#define OBJ_id_smime_aa_ets_CertificateRefs OBJ_id_smime_aa,21L
938
939#define SN_id_smime_aa_ets_RevocationRefs "id-smime-aa-ets-RevocationRefs"
940#define NID_id_smime_aa_ets_RevocationRefs 233
941#define OBJ_id_smime_aa_ets_RevocationRefs OBJ_id_smime_aa,22L
942
943#define SN_id_smime_aa_ets_certValues "id-smime-aa-ets-certValues"
944#define NID_id_smime_aa_ets_certValues 234
945#define OBJ_id_smime_aa_ets_certValues OBJ_id_smime_aa,23L
946
947#define SN_id_smime_aa_ets_revocationValues "id-smime-aa-ets-revocationValues"
948#define NID_id_smime_aa_ets_revocationValues 235
949#define OBJ_id_smime_aa_ets_revocationValues OBJ_id_smime_aa,24L
950
951#define SN_id_smime_aa_ets_escTimeStamp "id-smime-aa-ets-escTimeStamp"
952#define NID_id_smime_aa_ets_escTimeStamp 236
953#define OBJ_id_smime_aa_ets_escTimeStamp OBJ_id_smime_aa,25L
954
955#define SN_id_smime_aa_ets_certCRLTimestamp "id-smime-aa-ets-certCRLTimestamp"
956#define NID_id_smime_aa_ets_certCRLTimestamp 237
957#define OBJ_id_smime_aa_ets_certCRLTimestamp OBJ_id_smime_aa,26L
958
959#define SN_id_smime_aa_ets_archiveTimeStamp "id-smime-aa-ets-archiveTimeStamp"
960#define NID_id_smime_aa_ets_archiveTimeStamp 238
961#define OBJ_id_smime_aa_ets_archiveTimeStamp OBJ_id_smime_aa,27L
962
963#define SN_id_smime_aa_signatureType "id-smime-aa-signatureType"
964#define NID_id_smime_aa_signatureType 239
965#define OBJ_id_smime_aa_signatureType OBJ_id_smime_aa,28L
966
967#define SN_id_smime_aa_dvcs_dvc "id-smime-aa-dvcs-dvc"
968#define NID_id_smime_aa_dvcs_dvc 240
969#define OBJ_id_smime_aa_dvcs_dvc OBJ_id_smime_aa,29L
970
971#define SN_id_smime_alg_ESDHwith3DES "id-smime-alg-ESDHwith3DES"
972#define NID_id_smime_alg_ESDHwith3DES 241
973#define OBJ_id_smime_alg_ESDHwith3DES OBJ_id_smime_alg,1L
974
975#define SN_id_smime_alg_ESDHwithRC2 "id-smime-alg-ESDHwithRC2"
976#define NID_id_smime_alg_ESDHwithRC2 242
977#define OBJ_id_smime_alg_ESDHwithRC2 OBJ_id_smime_alg,2L
978
979#define SN_id_smime_alg_3DESwrap "id-smime-alg-3DESwrap"
980#define NID_id_smime_alg_3DESwrap 243
981#define OBJ_id_smime_alg_3DESwrap OBJ_id_smime_alg,3L
982
983#define SN_id_smime_alg_RC2wrap "id-smime-alg-RC2wrap"
984#define NID_id_smime_alg_RC2wrap 244
985#define OBJ_id_smime_alg_RC2wrap OBJ_id_smime_alg,4L
986
987#define SN_id_smime_alg_ESDH "id-smime-alg-ESDH"
988#define NID_id_smime_alg_ESDH 245
989#define OBJ_id_smime_alg_ESDH OBJ_id_smime_alg,5L
990
991#define SN_id_smime_alg_CMS3DESwrap "id-smime-alg-CMS3DESwrap"
992#define NID_id_smime_alg_CMS3DESwrap 246
993#define OBJ_id_smime_alg_CMS3DESwrap OBJ_id_smime_alg,6L
994
995#define SN_id_smime_alg_CMSRC2wrap "id-smime-alg-CMSRC2wrap"
996#define NID_id_smime_alg_CMSRC2wrap 247
997#define OBJ_id_smime_alg_CMSRC2wrap OBJ_id_smime_alg,7L
998
999#define SN_id_alg_PWRI_KEK "id-alg-PWRI-KEK"
1000#define NID_id_alg_PWRI_KEK 893
1001#define OBJ_id_alg_PWRI_KEK OBJ_id_smime_alg,9L
1002
1003#define SN_id_smime_cd_ldap "id-smime-cd-ldap"
1004#define NID_id_smime_cd_ldap 248
1005#define OBJ_id_smime_cd_ldap OBJ_id_smime_cd,1L
1006
1007#define SN_id_smime_spq_ets_sqt_uri "id-smime-spq-ets-sqt-uri"
1008#define NID_id_smime_spq_ets_sqt_uri 249
1009#define OBJ_id_smime_spq_ets_sqt_uri OBJ_id_smime_spq,1L
1010
1011#define SN_id_smime_spq_ets_sqt_unotice "id-smime-spq-ets-sqt-unotice"
1012#define NID_id_smime_spq_ets_sqt_unotice 250
1013#define OBJ_id_smime_spq_ets_sqt_unotice OBJ_id_smime_spq,2L
1014
1015#define SN_id_smime_cti_ets_proofOfOrigin "id-smime-cti-ets-proofOfOrigin"
1016#define NID_id_smime_cti_ets_proofOfOrigin 251
1017#define OBJ_id_smime_cti_ets_proofOfOrigin OBJ_id_smime_cti,1L
1018
1019#define SN_id_smime_cti_ets_proofOfReceipt "id-smime-cti-ets-proofOfReceipt"
1020#define NID_id_smime_cti_ets_proofOfReceipt 252
1021#define OBJ_id_smime_cti_ets_proofOfReceipt OBJ_id_smime_cti,2L
1022
1023#define SN_id_smime_cti_ets_proofOfDelivery "id-smime-cti-ets-proofOfDelivery"
1024#define NID_id_smime_cti_ets_proofOfDelivery 253
1025#define OBJ_id_smime_cti_ets_proofOfDelivery OBJ_id_smime_cti,3L
1026
1027#define SN_id_smime_cti_ets_proofOfSender "id-smime-cti-ets-proofOfSender"
1028#define NID_id_smime_cti_ets_proofOfSender 254
1029#define OBJ_id_smime_cti_ets_proofOfSender OBJ_id_smime_cti,4L
1030
1031#define SN_id_smime_cti_ets_proofOfApproval "id-smime-cti-ets-proofOfApproval"
1032#define NID_id_smime_cti_ets_proofOfApproval 255
1033#define OBJ_id_smime_cti_ets_proofOfApproval OBJ_id_smime_cti,5L
1034
1035#define SN_id_smime_cti_ets_proofOfCreation "id-smime-cti-ets-proofOfCreation"
1036#define NID_id_smime_cti_ets_proofOfCreation 256
1037#define OBJ_id_smime_cti_ets_proofOfCreation OBJ_id_smime_cti,6L
1038
1039#define LN_friendlyName "friendlyName"
1040#define NID_friendlyName 156
1041#define OBJ_friendlyName OBJ_pkcs9,20L
1042
1043#define LN_localKeyID "localKeyID"
1044#define NID_localKeyID 157
1045#define OBJ_localKeyID OBJ_pkcs9,21L
1046
1047#define SN_ms_csp_name "CSPName"
1048#define LN_ms_csp_name "Microsoft CSP Name"
1049#define NID_ms_csp_name 417
1050#define OBJ_ms_csp_name 1L,3L,6L,1L,4L,1L,311L,17L,1L
1051
1052#define SN_LocalKeySet "LocalKeySet"
1053#define LN_LocalKeySet "Microsoft Local Key set"
1054#define NID_LocalKeySet 856
1055#define OBJ_LocalKeySet 1L,3L,6L,1L,4L,1L,311L,17L,2L
1056
1057#define OBJ_certTypes OBJ_pkcs9,22L
1058
1059#define LN_x509Certificate "x509Certificate"
1060#define NID_x509Certificate 158
1061#define OBJ_x509Certificate OBJ_certTypes,1L
1062
1063#define LN_sdsiCertificate "sdsiCertificate"
1064#define NID_sdsiCertificate 159
1065#define OBJ_sdsiCertificate OBJ_certTypes,2L
1066
1067#define OBJ_crlTypes OBJ_pkcs9,23L
1068
1069#define LN_x509Crl "x509Crl"
1070#define NID_x509Crl 160
1071#define OBJ_x509Crl OBJ_crlTypes,1L
1072
1073#define OBJ_pkcs12 OBJ_pkcs,12L
1074
1075#define OBJ_pkcs12_pbeids OBJ_pkcs12,1L
1076
1077#define SN_pbe_WithSHA1And128BitRC4 "PBE-SHA1-RC4-128"
1078#define LN_pbe_WithSHA1And128BitRC4 "pbeWithSHA1And128BitRC4"
1079#define NID_pbe_WithSHA1And128BitRC4 144
1080#define OBJ_pbe_WithSHA1And128BitRC4 OBJ_pkcs12_pbeids,1L
1081
1082#define SN_pbe_WithSHA1And40BitRC4 "PBE-SHA1-RC4-40"
1083#define LN_pbe_WithSHA1And40BitRC4 "pbeWithSHA1And40BitRC4"
1084#define NID_pbe_WithSHA1And40BitRC4 145
1085#define OBJ_pbe_WithSHA1And40BitRC4 OBJ_pkcs12_pbeids,2L
1086
1087#define SN_pbe_WithSHA1And3_Key_TripleDES_CBC "PBE-SHA1-3DES"
1088#define LN_pbe_WithSHA1And3_Key_TripleDES_CBC "pbeWithSHA1And3-KeyTripleDES-CBC"
1089#define NID_pbe_WithSHA1And3_Key_TripleDES_CBC 146
1090#define OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC OBJ_pkcs12_pbeids,3L
1091
1092#define SN_pbe_WithSHA1And2_Key_TripleDES_CBC "PBE-SHA1-2DES"
1093#define LN_pbe_WithSHA1And2_Key_TripleDES_CBC "pbeWithSHA1And2-KeyTripleDES-CBC"
1094#define NID_pbe_WithSHA1And2_Key_TripleDES_CBC 147
1095#define OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC OBJ_pkcs12_pbeids,4L
1096
1097#define SN_pbe_WithSHA1And128BitRC2_CBC "PBE-SHA1-RC2-128"
1098#define LN_pbe_WithSHA1And128BitRC2_CBC "pbeWithSHA1And128BitRC2-CBC"
1099#define NID_pbe_WithSHA1And128BitRC2_CBC 148
1100#define OBJ_pbe_WithSHA1And128BitRC2_CBC OBJ_pkcs12_pbeids,5L
1101
1102#define SN_pbe_WithSHA1And40BitRC2_CBC "PBE-SHA1-RC2-40"
1103#define LN_pbe_WithSHA1And40BitRC2_CBC "pbeWithSHA1And40BitRC2-CBC"
1104#define NID_pbe_WithSHA1And40BitRC2_CBC 149
1105#define OBJ_pbe_WithSHA1And40BitRC2_CBC OBJ_pkcs12_pbeids,6L
1106
1107#define OBJ_pkcs12_Version1 OBJ_pkcs12,10L
1108
1109#define OBJ_pkcs12_BagIds OBJ_pkcs12_Version1,1L
1110
1111#define LN_keyBag "keyBag"
1112#define NID_keyBag 150
1113#define OBJ_keyBag OBJ_pkcs12_BagIds,1L
1114
1115#define LN_pkcs8ShroudedKeyBag "pkcs8ShroudedKeyBag"
1116#define NID_pkcs8ShroudedKeyBag 151
1117#define OBJ_pkcs8ShroudedKeyBag OBJ_pkcs12_BagIds,2L
1118
1119#define LN_certBag "certBag"
1120#define NID_certBag 152
1121#define OBJ_certBag OBJ_pkcs12_BagIds,3L
1122
1123#define LN_crlBag "crlBag"
1124#define NID_crlBag 153
1125#define OBJ_crlBag OBJ_pkcs12_BagIds,4L
1126
1127#define LN_secretBag "secretBag"
1128#define NID_secretBag 154
1129#define OBJ_secretBag OBJ_pkcs12_BagIds,5L
1130
1131#define LN_safeContentsBag "safeContentsBag"
1132#define NID_safeContentsBag 155
1133#define OBJ_safeContentsBag OBJ_pkcs12_BagIds,6L
1134
1135#define SN_md2 "MD2"
1136#define LN_md2 "md2"
1137#define NID_md2 3
1138#define OBJ_md2 OBJ_rsadsi,2L,2L
1139
1140#define SN_md4 "MD4"
1141#define LN_md4 "md4"
1142#define NID_md4 257
1143#define OBJ_md4 OBJ_rsadsi,2L,4L
1144
1145#define SN_md5 "MD5"
1146#define LN_md5 "md5"
1147#define NID_md5 4
1148#define OBJ_md5 OBJ_rsadsi,2L,5L
1149
1150#define SN_md5_sha1 "MD5-SHA1"
1151#define LN_md5_sha1 "md5-sha1"
1152#define NID_md5_sha1 114
1153
1154#define LN_hmacWithMD5 "hmacWithMD5"
1155#define NID_hmacWithMD5 797
1156#define OBJ_hmacWithMD5 OBJ_rsadsi,2L,6L
1157
1158#define LN_hmacWithSHA1 "hmacWithSHA1"
1159#define NID_hmacWithSHA1 163
1160#define OBJ_hmacWithSHA1 OBJ_rsadsi,2L,7L
1161
1162#define LN_hmacWithSHA224 "hmacWithSHA224"
1163#define NID_hmacWithSHA224 798
1164#define OBJ_hmacWithSHA224 OBJ_rsadsi,2L,8L
1165
1166#define LN_hmacWithSHA256 "hmacWithSHA256"
1167#define NID_hmacWithSHA256 799
1168#define OBJ_hmacWithSHA256 OBJ_rsadsi,2L,9L
1169
1170#define LN_hmacWithSHA384 "hmacWithSHA384"
1171#define NID_hmacWithSHA384 800
1172#define OBJ_hmacWithSHA384 OBJ_rsadsi,2L,10L
1173
1174#define LN_hmacWithSHA512 "hmacWithSHA512"
1175#define NID_hmacWithSHA512 801
1176#define OBJ_hmacWithSHA512 OBJ_rsadsi,2L,11L
1177
1178#define SN_rc2_cbc "RC2-CBC"
1179#define LN_rc2_cbc "rc2-cbc"
1180#define NID_rc2_cbc 37
1181#define OBJ_rc2_cbc OBJ_rsadsi,3L,2L
1182
1183#define SN_rc2_ecb "RC2-ECB"
1184#define LN_rc2_ecb "rc2-ecb"
1185#define NID_rc2_ecb 38
1186
1187#define SN_rc2_cfb64 "RC2-CFB"
1188#define LN_rc2_cfb64 "rc2-cfb"
1189#define NID_rc2_cfb64 39
1190
1191#define SN_rc2_ofb64 "RC2-OFB"
1192#define LN_rc2_ofb64 "rc2-ofb"
1193#define NID_rc2_ofb64 40
1194
1195#define SN_rc2_40_cbc "RC2-40-CBC"
1196#define LN_rc2_40_cbc "rc2-40-cbc"
1197#define NID_rc2_40_cbc 98
1198
1199#define SN_rc2_64_cbc "RC2-64-CBC"
1200#define LN_rc2_64_cbc "rc2-64-cbc"
1201#define NID_rc2_64_cbc 166
1202
1203#define SN_rc4 "RC4"
1204#define LN_rc4 "rc4"
1205#define NID_rc4 5
1206#define OBJ_rc4 OBJ_rsadsi,3L,4L
1207
1208#define SN_rc4_40 "RC4-40"
1209#define LN_rc4_40 "rc4-40"
1210#define NID_rc4_40 97
1211
1212#define SN_des_ede3_cbc "DES-EDE3-CBC"
1213#define LN_des_ede3_cbc "des-ede3-cbc"
1214#define NID_des_ede3_cbc 44
1215#define OBJ_des_ede3_cbc OBJ_rsadsi,3L,7L
1216
1217#define SN_rc5_cbc "RC5-CBC"
1218#define LN_rc5_cbc "rc5-cbc"
1219#define NID_rc5_cbc 120
1220#define OBJ_rc5_cbc OBJ_rsadsi,3L,8L
1221
1222#define SN_rc5_ecb "RC5-ECB"
1223#define LN_rc5_ecb "rc5-ecb"
1224#define NID_rc5_ecb 121
1225
1226#define SN_rc5_cfb64 "RC5-CFB"
1227#define LN_rc5_cfb64 "rc5-cfb"
1228#define NID_rc5_cfb64 122
1229
1230#define SN_rc5_ofb64 "RC5-OFB"
1231#define LN_rc5_ofb64 "rc5-ofb"
1232#define NID_rc5_ofb64 123
1233
1234#define SN_ms_ext_req "msExtReq"
1235#define LN_ms_ext_req "Microsoft Extension Request"
1236#define NID_ms_ext_req 171
1237#define OBJ_ms_ext_req 1L,3L,6L,1L,4L,1L,311L,2L,1L,14L
1238
1239#define SN_ms_code_ind "msCodeInd"
1240#define LN_ms_code_ind "Microsoft Individual Code Signing"
1241#define NID_ms_code_ind 134
1242#define OBJ_ms_code_ind 1L,3L,6L,1L,4L,1L,311L,2L,1L,21L
1243
1244#define SN_ms_code_com "msCodeCom"
1245#define LN_ms_code_com "Microsoft Commercial Code Signing"
1246#define NID_ms_code_com 135
1247#define OBJ_ms_code_com 1L,3L,6L,1L,4L,1L,311L,2L,1L,22L
1248
1249#define SN_ms_ctl_sign "msCTLSign"
1250#define LN_ms_ctl_sign "Microsoft Trust List Signing"
1251#define NID_ms_ctl_sign 136
1252#define OBJ_ms_ctl_sign 1L,3L,6L,1L,4L,1L,311L,10L,3L,1L
1253
1254#define SN_ms_sgc "msSGC"
1255#define LN_ms_sgc "Microsoft Server Gated Crypto"
1256#define NID_ms_sgc 137
1257#define OBJ_ms_sgc 1L,3L,6L,1L,4L,1L,311L,10L,3L,3L
1258
1259#define SN_ms_efs "msEFS"
1260#define LN_ms_efs "Microsoft Encrypted File System"
1261#define NID_ms_efs 138
1262#define OBJ_ms_efs 1L,3L,6L,1L,4L,1L,311L,10L,3L,4L
1263
1264#define SN_ms_smartcard_login "msSmartcardLogin"
1265#define LN_ms_smartcard_login "Microsoft Smartcardlogin"
1266#define NID_ms_smartcard_login 648
1267#define OBJ_ms_smartcard_login 1L,3L,6L,1L,4L,1L,311L,20L,2L,2L
1268
1269#define SN_ms_upn "msUPN"
1270#define LN_ms_upn "Microsoft Universal Principal Name"
1271#define NID_ms_upn 649
1272#define OBJ_ms_upn 1L,3L,6L,1L,4L,1L,311L,20L,2L,3L
1273
1274#define SN_idea_cbc "IDEA-CBC"
1275#define LN_idea_cbc "idea-cbc"
1276#define NID_idea_cbc 34
1277#define OBJ_idea_cbc 1L,3L,6L,1L,4L,1L,188L,7L,1L,1L,2L
1278
1279#define SN_idea_ecb "IDEA-ECB"
1280#define LN_idea_ecb "idea-ecb"
1281#define NID_idea_ecb 36
1282
1283#define SN_idea_cfb64 "IDEA-CFB"
1284#define LN_idea_cfb64 "idea-cfb"
1285#define NID_idea_cfb64 35
1286
1287#define SN_idea_ofb64 "IDEA-OFB"
1288#define LN_idea_ofb64 "idea-ofb"
1289#define NID_idea_ofb64 46
1290
1291#define SN_bf_cbc "BF-CBC"
1292#define LN_bf_cbc "bf-cbc"
1293#define NID_bf_cbc 91
1294#define OBJ_bf_cbc 1L,3L,6L,1L,4L,1L,3029L,1L,2L
1295
1296#define SN_bf_ecb "BF-ECB"
1297#define LN_bf_ecb "bf-ecb"
1298#define NID_bf_ecb 92
1299
1300#define SN_bf_cfb64 "BF-CFB"
1301#define LN_bf_cfb64 "bf-cfb"
1302#define NID_bf_cfb64 93
1303
1304#define SN_bf_ofb64 "BF-OFB"
1305#define LN_bf_ofb64 "bf-ofb"
1306#define NID_bf_ofb64 94
1307
1308#define SN_id_pkix "PKIX"
1309#define NID_id_pkix 127
1310#define OBJ_id_pkix 1L,3L,6L,1L,5L,5L,7L
1311
1312#define SN_id_pkix_mod "id-pkix-mod"
1313#define NID_id_pkix_mod 258
1314#define OBJ_id_pkix_mod OBJ_id_pkix,0L
1315
1316#define SN_id_pe "id-pe"
1317#define NID_id_pe 175
1318#define OBJ_id_pe OBJ_id_pkix,1L
1319
1320#define SN_id_qt "id-qt"
1321#define NID_id_qt 259
1322#define OBJ_id_qt OBJ_id_pkix,2L
1323
1324#define SN_id_kp "id-kp"
1325#define NID_id_kp 128
1326#define OBJ_id_kp OBJ_id_pkix,3L
1327
1328#define SN_id_it "id-it"
1329#define NID_id_it 260
1330#define OBJ_id_it OBJ_id_pkix,4L
1331
1332#define SN_id_pkip "id-pkip"
1333#define NID_id_pkip 261
1334#define OBJ_id_pkip OBJ_id_pkix,5L
1335
1336#define SN_id_alg "id-alg"
1337#define NID_id_alg 262
1338#define OBJ_id_alg OBJ_id_pkix,6L
1339
1340#define SN_id_cmc "id-cmc"
1341#define NID_id_cmc 263
1342#define OBJ_id_cmc OBJ_id_pkix,7L
1343
1344#define SN_id_on "id-on"
1345#define NID_id_on 264
1346#define OBJ_id_on OBJ_id_pkix,8L
1347
1348#define SN_id_pda "id-pda"
1349#define NID_id_pda 265
1350#define OBJ_id_pda OBJ_id_pkix,9L
1351
1352#define SN_id_aca "id-aca"
1353#define NID_id_aca 266
1354#define OBJ_id_aca OBJ_id_pkix,10L
1355
1356#define SN_id_qcs "id-qcs"
1357#define NID_id_qcs 267
1358#define OBJ_id_qcs OBJ_id_pkix,11L
1359
1360#define SN_id_cct "id-cct"
1361#define NID_id_cct 268
1362#define OBJ_id_cct OBJ_id_pkix,12L
1363
1364#define SN_id_ppl "id-ppl"
1365#define NID_id_ppl 662
1366#define OBJ_id_ppl OBJ_id_pkix,21L
1367
1368#define SN_id_ad "id-ad"
1369#define NID_id_ad 176
1370#define OBJ_id_ad OBJ_id_pkix,48L
1371
1372#define SN_id_pkix1_explicit_88 "id-pkix1-explicit-88"
1373#define NID_id_pkix1_explicit_88 269
1374#define OBJ_id_pkix1_explicit_88 OBJ_id_pkix_mod,1L
1375
1376#define SN_id_pkix1_implicit_88 "id-pkix1-implicit-88"
1377#define NID_id_pkix1_implicit_88 270
1378#define OBJ_id_pkix1_implicit_88 OBJ_id_pkix_mod,2L
1379
1380#define SN_id_pkix1_explicit_93 "id-pkix1-explicit-93"
1381#define NID_id_pkix1_explicit_93 271
1382#define OBJ_id_pkix1_explicit_93 OBJ_id_pkix_mod,3L
1383
1384#define SN_id_pkix1_implicit_93 "id-pkix1-implicit-93"
1385#define NID_id_pkix1_implicit_93 272
1386#define OBJ_id_pkix1_implicit_93 OBJ_id_pkix_mod,4L
1387
1388#define SN_id_mod_crmf "id-mod-crmf"
1389#define NID_id_mod_crmf 273
1390#define OBJ_id_mod_crmf OBJ_id_pkix_mod,5L
1391
1392#define SN_id_mod_cmc "id-mod-cmc"
1393#define NID_id_mod_cmc 274
1394#define OBJ_id_mod_cmc OBJ_id_pkix_mod,6L
1395
1396#define SN_id_mod_kea_profile_88 "id-mod-kea-profile-88"
1397#define NID_id_mod_kea_profile_88 275
1398#define OBJ_id_mod_kea_profile_88 OBJ_id_pkix_mod,7L
1399
1400#define SN_id_mod_kea_profile_93 "id-mod-kea-profile-93"
1401#define NID_id_mod_kea_profile_93 276
1402#define OBJ_id_mod_kea_profile_93 OBJ_id_pkix_mod,8L
1403
1404#define SN_id_mod_cmp "id-mod-cmp"
1405#define NID_id_mod_cmp 277
1406#define OBJ_id_mod_cmp OBJ_id_pkix_mod,9L
1407
1408#define SN_id_mod_qualified_cert_88 "id-mod-qualified-cert-88"
1409#define NID_id_mod_qualified_cert_88 278
1410#define OBJ_id_mod_qualified_cert_88 OBJ_id_pkix_mod,10L
1411
1412#define SN_id_mod_qualified_cert_93 "id-mod-qualified-cert-93"
1413#define NID_id_mod_qualified_cert_93 279
1414#define OBJ_id_mod_qualified_cert_93 OBJ_id_pkix_mod,11L
1415
1416#define SN_id_mod_attribute_cert "id-mod-attribute-cert"
1417#define NID_id_mod_attribute_cert 280
1418#define OBJ_id_mod_attribute_cert OBJ_id_pkix_mod,12L
1419
1420#define SN_id_mod_timestamp_protocol "id-mod-timestamp-protocol"
1421#define NID_id_mod_timestamp_protocol 281
1422#define OBJ_id_mod_timestamp_protocol OBJ_id_pkix_mod,13L
1423
1424#define SN_id_mod_ocsp "id-mod-ocsp"
1425#define NID_id_mod_ocsp 282
1426#define OBJ_id_mod_ocsp OBJ_id_pkix_mod,14L
1427
1428#define SN_id_mod_dvcs "id-mod-dvcs"
1429#define NID_id_mod_dvcs 283
1430#define OBJ_id_mod_dvcs OBJ_id_pkix_mod,15L
1431
1432#define SN_id_mod_cmp2000 "id-mod-cmp2000"
1433#define NID_id_mod_cmp2000 284
1434#define OBJ_id_mod_cmp2000 OBJ_id_pkix_mod,16L
1435
1436#define SN_info_access "authorityInfoAccess"
1437#define LN_info_access "Authority Information Access"
1438#define NID_info_access 177
1439#define OBJ_info_access OBJ_id_pe,1L
1440
1441#define SN_biometricInfo "biometricInfo"
1442#define LN_biometricInfo "Biometric Info"
1443#define NID_biometricInfo 285
1444#define OBJ_biometricInfo OBJ_id_pe,2L
1445
1446#define SN_qcStatements "qcStatements"
1447#define NID_qcStatements 286
1448#define OBJ_qcStatements OBJ_id_pe,3L
1449
1450#define SN_ac_auditEntity "ac-auditEntity"
1451#define NID_ac_auditEntity 287
1452#define OBJ_ac_auditEntity OBJ_id_pe,4L
1453
1454#define SN_ac_targeting "ac-targeting"
1455#define NID_ac_targeting 288
1456#define OBJ_ac_targeting OBJ_id_pe,5L
1457
1458#define SN_aaControls "aaControls"
1459#define NID_aaControls 289
1460#define OBJ_aaControls OBJ_id_pe,6L
1461
1462#define SN_sbgp_ipAddrBlock "sbgp-ipAddrBlock"
1463#define NID_sbgp_ipAddrBlock 290
1464#define OBJ_sbgp_ipAddrBlock OBJ_id_pe,7L
1465
1466#define SN_sbgp_autonomousSysNum "sbgp-autonomousSysNum"
1467#define NID_sbgp_autonomousSysNum 291
1468#define OBJ_sbgp_autonomousSysNum OBJ_id_pe,8L
1469
1470#define SN_sbgp_routerIdentifier "sbgp-routerIdentifier"
1471#define NID_sbgp_routerIdentifier 292
1472#define OBJ_sbgp_routerIdentifier OBJ_id_pe,9L
1473
1474#define SN_ac_proxying "ac-proxying"
1475#define NID_ac_proxying 397
1476#define OBJ_ac_proxying OBJ_id_pe,10L
1477
1478#define SN_sinfo_access "subjectInfoAccess"
1479#define LN_sinfo_access "Subject Information Access"
1480#define NID_sinfo_access 398
1481#define OBJ_sinfo_access OBJ_id_pe,11L
1482
1483#define SN_proxyCertInfo "proxyCertInfo"
1484#define LN_proxyCertInfo "Proxy Certificate Information"
1485#define NID_proxyCertInfo 663
1486#define OBJ_proxyCertInfo OBJ_id_pe,14L
1487
1488#define SN_id_qt_cps "id-qt-cps"
1489#define LN_id_qt_cps "Policy Qualifier CPS"
1490#define NID_id_qt_cps 164
1491#define OBJ_id_qt_cps OBJ_id_qt,1L
1492
1493#define SN_id_qt_unotice "id-qt-unotice"
1494#define LN_id_qt_unotice "Policy Qualifier User Notice"
1495#define NID_id_qt_unotice 165
1496#define OBJ_id_qt_unotice OBJ_id_qt,2L
1497
1498#define SN_textNotice "textNotice"
1499#define NID_textNotice 293
1500#define OBJ_textNotice OBJ_id_qt,3L
1501
1502#define SN_server_auth "serverAuth"
1503#define LN_server_auth "TLS Web Server Authentication"
1504#define NID_server_auth 129
1505#define OBJ_server_auth OBJ_id_kp,1L
1506
1507#define SN_client_auth "clientAuth"
1508#define LN_client_auth "TLS Web Client Authentication"
1509#define NID_client_auth 130
1510#define OBJ_client_auth OBJ_id_kp,2L
1511
1512#define SN_code_sign "codeSigning"
1513#define LN_code_sign "Code Signing"
1514#define NID_code_sign 131
1515#define OBJ_code_sign OBJ_id_kp,3L
1516
1517#define SN_email_protect "emailProtection"
1518#define LN_email_protect "E-mail Protection"
1519#define NID_email_protect 132
1520#define OBJ_email_protect OBJ_id_kp,4L
1521
1522#define SN_ipsecEndSystem "ipsecEndSystem"
1523#define LN_ipsecEndSystem "IPSec End System"
1524#define NID_ipsecEndSystem 294
1525#define OBJ_ipsecEndSystem OBJ_id_kp,5L
1526
1527#define SN_ipsecTunnel "ipsecTunnel"
1528#define LN_ipsecTunnel "IPSec Tunnel"
1529#define NID_ipsecTunnel 295
1530#define OBJ_ipsecTunnel OBJ_id_kp,6L
1531
1532#define SN_ipsecUser "ipsecUser"
1533#define LN_ipsecUser "IPSec User"
1534#define NID_ipsecUser 296
1535#define OBJ_ipsecUser OBJ_id_kp,7L
1536
1537#define SN_time_stamp "timeStamping"
1538#define LN_time_stamp "Time Stamping"
1539#define NID_time_stamp 133
1540#define OBJ_time_stamp OBJ_id_kp,8L
1541
1542#define SN_OCSP_sign "OCSPSigning"
1543#define LN_OCSP_sign "OCSP Signing"
1544#define NID_OCSP_sign 180
1545#define OBJ_OCSP_sign OBJ_id_kp,9L
1546
1547#define SN_dvcs "DVCS"
1548#define LN_dvcs "dvcs"
1549#define NID_dvcs 297
1550#define OBJ_dvcs OBJ_id_kp,10L
1551
1552#define SN_id_it_caProtEncCert "id-it-caProtEncCert"
1553#define NID_id_it_caProtEncCert 298
1554#define OBJ_id_it_caProtEncCert OBJ_id_it,1L
1555
1556#define SN_id_it_signKeyPairTypes "id-it-signKeyPairTypes"
1557#define NID_id_it_signKeyPairTypes 299
1558#define OBJ_id_it_signKeyPairTypes OBJ_id_it,2L
1559
1560#define SN_id_it_encKeyPairTypes "id-it-encKeyPairTypes"
1561#define NID_id_it_encKeyPairTypes 300
1562#define OBJ_id_it_encKeyPairTypes OBJ_id_it,3L
1563
1564#define SN_id_it_preferredSymmAlg "id-it-preferredSymmAlg"
1565#define NID_id_it_preferredSymmAlg 301
1566#define OBJ_id_it_preferredSymmAlg OBJ_id_it,4L
1567
1568#define SN_id_it_caKeyUpdateInfo "id-it-caKeyUpdateInfo"
1569#define NID_id_it_caKeyUpdateInfo 302
1570#define OBJ_id_it_caKeyUpdateInfo OBJ_id_it,5L
1571
1572#define SN_id_it_currentCRL "id-it-currentCRL"
1573#define NID_id_it_currentCRL 303
1574#define OBJ_id_it_currentCRL OBJ_id_it,6L
1575
1576#define SN_id_it_unsupportedOIDs "id-it-unsupportedOIDs"
1577#define NID_id_it_unsupportedOIDs 304
1578#define OBJ_id_it_unsupportedOIDs OBJ_id_it,7L
1579
1580#define SN_id_it_subscriptionRequest "id-it-subscriptionRequest"
1581#define NID_id_it_subscriptionRequest 305
1582#define OBJ_id_it_subscriptionRequest OBJ_id_it,8L
1583
1584#define SN_id_it_subscriptionResponse "id-it-subscriptionResponse"
1585#define NID_id_it_subscriptionResponse 306
1586#define OBJ_id_it_subscriptionResponse OBJ_id_it,9L
1587
1588#define SN_id_it_keyPairParamReq "id-it-keyPairParamReq"
1589#define NID_id_it_keyPairParamReq 307
1590#define OBJ_id_it_keyPairParamReq OBJ_id_it,10L
1591
1592#define SN_id_it_keyPairParamRep "id-it-keyPairParamRep"
1593#define NID_id_it_keyPairParamRep 308
1594#define OBJ_id_it_keyPairParamRep OBJ_id_it,11L
1595
1596#define SN_id_it_revPassphrase "id-it-revPassphrase"
1597#define NID_id_it_revPassphrase 309
1598#define OBJ_id_it_revPassphrase OBJ_id_it,12L
1599
1600#define SN_id_it_implicitConfirm "id-it-implicitConfirm"
1601#define NID_id_it_implicitConfirm 310
1602#define OBJ_id_it_implicitConfirm OBJ_id_it,13L
1603
1604#define SN_id_it_confirmWaitTime "id-it-confirmWaitTime"
1605#define NID_id_it_confirmWaitTime 311
1606#define OBJ_id_it_confirmWaitTime OBJ_id_it,14L
1607
1608#define SN_id_it_origPKIMessage "id-it-origPKIMessage"
1609#define NID_id_it_origPKIMessage 312
1610#define OBJ_id_it_origPKIMessage OBJ_id_it,15L
1611
1612#define SN_id_it_suppLangTags "id-it-suppLangTags"
1613#define NID_id_it_suppLangTags 784
1614#define OBJ_id_it_suppLangTags OBJ_id_it,16L
1615
1616#define SN_id_regCtrl "id-regCtrl"
1617#define NID_id_regCtrl 313
1618#define OBJ_id_regCtrl OBJ_id_pkip,1L
1619
1620#define SN_id_regInfo "id-regInfo"
1621#define NID_id_regInfo 314
1622#define OBJ_id_regInfo OBJ_id_pkip,2L
1623
1624#define SN_id_regCtrl_regToken "id-regCtrl-regToken"
1625#define NID_id_regCtrl_regToken 315
1626#define OBJ_id_regCtrl_regToken OBJ_id_regCtrl,1L
1627
1628#define SN_id_regCtrl_authenticator "id-regCtrl-authenticator"
1629#define NID_id_regCtrl_authenticator 316
1630#define OBJ_id_regCtrl_authenticator OBJ_id_regCtrl,2L
1631
1632#define SN_id_regCtrl_pkiPublicationInfo "id-regCtrl-pkiPublicationInfo"
1633#define NID_id_regCtrl_pkiPublicationInfo 317
1634#define OBJ_id_regCtrl_pkiPublicationInfo OBJ_id_regCtrl,3L
1635
1636#define SN_id_regCtrl_pkiArchiveOptions "id-regCtrl-pkiArchiveOptions"
1637#define NID_id_regCtrl_pkiArchiveOptions 318
1638#define OBJ_id_regCtrl_pkiArchiveOptions OBJ_id_regCtrl,4L
1639
1640#define SN_id_regCtrl_oldCertID "id-regCtrl-oldCertID"
1641#define NID_id_regCtrl_oldCertID 319
1642#define OBJ_id_regCtrl_oldCertID OBJ_id_regCtrl,5L
1643
1644#define SN_id_regCtrl_protocolEncrKey "id-regCtrl-protocolEncrKey"
1645#define NID_id_regCtrl_protocolEncrKey 320
1646#define OBJ_id_regCtrl_protocolEncrKey OBJ_id_regCtrl,6L
1647
1648#define SN_id_regInfo_utf8Pairs "id-regInfo-utf8Pairs"
1649#define NID_id_regInfo_utf8Pairs 321
1650#define OBJ_id_regInfo_utf8Pairs OBJ_id_regInfo,1L
1651
1652#define SN_id_regInfo_certReq "id-regInfo-certReq"
1653#define NID_id_regInfo_certReq 322
1654#define OBJ_id_regInfo_certReq OBJ_id_regInfo,2L
1655
1656#define SN_id_alg_des40 "id-alg-des40"
1657#define NID_id_alg_des40 323
1658#define OBJ_id_alg_des40 OBJ_id_alg,1L
1659
1660#define SN_id_alg_noSignature "id-alg-noSignature"
1661#define NID_id_alg_noSignature 324
1662#define OBJ_id_alg_noSignature OBJ_id_alg,2L
1663
1664#define SN_id_alg_dh_sig_hmac_sha1 "id-alg-dh-sig-hmac-sha1"
1665#define NID_id_alg_dh_sig_hmac_sha1 325
1666#define OBJ_id_alg_dh_sig_hmac_sha1 OBJ_id_alg,3L
1667
1668#define SN_id_alg_dh_pop "id-alg-dh-pop"
1669#define NID_id_alg_dh_pop 326
1670#define OBJ_id_alg_dh_pop OBJ_id_alg,4L
1671
1672#define SN_id_cmc_statusInfo "id-cmc-statusInfo"
1673#define NID_id_cmc_statusInfo 327
1674#define OBJ_id_cmc_statusInfo OBJ_id_cmc,1L
1675
1676#define SN_id_cmc_identification "id-cmc-identification"
1677#define NID_id_cmc_identification 328
1678#define OBJ_id_cmc_identification OBJ_id_cmc,2L
1679
1680#define SN_id_cmc_identityProof "id-cmc-identityProof"
1681#define NID_id_cmc_identityProof 329
1682#define OBJ_id_cmc_identityProof OBJ_id_cmc,3L
1683
1684#define SN_id_cmc_dataReturn "id-cmc-dataReturn"
1685#define NID_id_cmc_dataReturn 330
1686#define OBJ_id_cmc_dataReturn OBJ_id_cmc,4L
1687
1688#define SN_id_cmc_transactionId "id-cmc-transactionId"
1689#define NID_id_cmc_transactionId 331
1690#define OBJ_id_cmc_transactionId OBJ_id_cmc,5L
1691
1692#define SN_id_cmc_senderNonce "id-cmc-senderNonce"
1693#define NID_id_cmc_senderNonce 332
1694#define OBJ_id_cmc_senderNonce OBJ_id_cmc,6L
1695
1696#define SN_id_cmc_recipientNonce "id-cmc-recipientNonce"
1697#define NID_id_cmc_recipientNonce 333
1698#define OBJ_id_cmc_recipientNonce OBJ_id_cmc,7L
1699
1700#define SN_id_cmc_addExtensions "id-cmc-addExtensions"
1701#define NID_id_cmc_addExtensions 334
1702#define OBJ_id_cmc_addExtensions OBJ_id_cmc,8L
1703
1704#define SN_id_cmc_encryptedPOP "id-cmc-encryptedPOP"
1705#define NID_id_cmc_encryptedPOP 335
1706#define OBJ_id_cmc_encryptedPOP OBJ_id_cmc,9L
1707
1708#define SN_id_cmc_decryptedPOP "id-cmc-decryptedPOP"
1709#define NID_id_cmc_decryptedPOP 336
1710#define OBJ_id_cmc_decryptedPOP OBJ_id_cmc,10L
1711
1712#define SN_id_cmc_lraPOPWitness "id-cmc-lraPOPWitness"
1713#define NID_id_cmc_lraPOPWitness 337
1714#define OBJ_id_cmc_lraPOPWitness OBJ_id_cmc,11L
1715
1716#define SN_id_cmc_getCert "id-cmc-getCert"
1717#define NID_id_cmc_getCert 338
1718#define OBJ_id_cmc_getCert OBJ_id_cmc,15L
1719
1720#define SN_id_cmc_getCRL "id-cmc-getCRL"
1721#define NID_id_cmc_getCRL 339
1722#define OBJ_id_cmc_getCRL OBJ_id_cmc,16L
1723
1724#define SN_id_cmc_revokeRequest "id-cmc-revokeRequest"
1725#define NID_id_cmc_revokeRequest 340
1726#define OBJ_id_cmc_revokeRequest OBJ_id_cmc,17L
1727
1728#define SN_id_cmc_regInfo "id-cmc-regInfo"
1729#define NID_id_cmc_regInfo 341
1730#define OBJ_id_cmc_regInfo OBJ_id_cmc,18L
1731
1732#define SN_id_cmc_responseInfo "id-cmc-responseInfo"
1733#define NID_id_cmc_responseInfo 342
1734#define OBJ_id_cmc_responseInfo OBJ_id_cmc,19L
1735
1736#define SN_id_cmc_queryPending "id-cmc-queryPending"
1737#define NID_id_cmc_queryPending 343
1738#define OBJ_id_cmc_queryPending OBJ_id_cmc,21L
1739
1740#define SN_id_cmc_popLinkRandom "id-cmc-popLinkRandom"
1741#define NID_id_cmc_popLinkRandom 344
1742#define OBJ_id_cmc_popLinkRandom OBJ_id_cmc,22L
1743
1744#define SN_id_cmc_popLinkWitness "id-cmc-popLinkWitness"
1745#define NID_id_cmc_popLinkWitness 345
1746#define OBJ_id_cmc_popLinkWitness OBJ_id_cmc,23L
1747
1748#define SN_id_cmc_confirmCertAcceptance "id-cmc-confirmCertAcceptance"
1749#define NID_id_cmc_confirmCertAcceptance 346
1750#define OBJ_id_cmc_confirmCertAcceptance OBJ_id_cmc,24L
1751
1752#define SN_id_on_personalData "id-on-personalData"
1753#define NID_id_on_personalData 347
1754#define OBJ_id_on_personalData OBJ_id_on,1L
1755
1756#define SN_id_on_permanentIdentifier "id-on-permanentIdentifier"
1757#define LN_id_on_permanentIdentifier "Permanent Identifier"
1758#define NID_id_on_permanentIdentifier 858
1759#define OBJ_id_on_permanentIdentifier OBJ_id_on,3L
1760
1761#define SN_id_pda_dateOfBirth "id-pda-dateOfBirth"
1762#define NID_id_pda_dateOfBirth 348
1763#define OBJ_id_pda_dateOfBirth OBJ_id_pda,1L
1764
1765#define SN_id_pda_placeOfBirth "id-pda-placeOfBirth"
1766#define NID_id_pda_placeOfBirth 349
1767#define OBJ_id_pda_placeOfBirth OBJ_id_pda,2L
1768
1769#define SN_id_pda_gender "id-pda-gender"
1770#define NID_id_pda_gender 351
1771#define OBJ_id_pda_gender OBJ_id_pda,3L
1772
1773#define SN_id_pda_countryOfCitizenship "id-pda-countryOfCitizenship"
1774#define NID_id_pda_countryOfCitizenship 352
1775#define OBJ_id_pda_countryOfCitizenship OBJ_id_pda,4L
1776
1777#define SN_id_pda_countryOfResidence "id-pda-countryOfResidence"
1778#define NID_id_pda_countryOfResidence 353
1779#define OBJ_id_pda_countryOfResidence OBJ_id_pda,5L
1780
1781#define SN_id_aca_authenticationInfo "id-aca-authenticationInfo"
1782#define NID_id_aca_authenticationInfo 354
1783#define OBJ_id_aca_authenticationInfo OBJ_id_aca,1L
1784
1785#define SN_id_aca_accessIdentity "id-aca-accessIdentity"
1786#define NID_id_aca_accessIdentity 355
1787#define OBJ_id_aca_accessIdentity OBJ_id_aca,2L
1788
1789#define SN_id_aca_chargingIdentity "id-aca-chargingIdentity"
1790#define NID_id_aca_chargingIdentity 356
1791#define OBJ_id_aca_chargingIdentity OBJ_id_aca,3L
1792
1793#define SN_id_aca_group "id-aca-group"
1794#define NID_id_aca_group 357
1795#define OBJ_id_aca_group OBJ_id_aca,4L
1796
1797#define SN_id_aca_role "id-aca-role"
1798#define NID_id_aca_role 358
1799#define OBJ_id_aca_role OBJ_id_aca,5L
1800
1801#define SN_id_aca_encAttrs "id-aca-encAttrs"
1802#define NID_id_aca_encAttrs 399
1803#define OBJ_id_aca_encAttrs OBJ_id_aca,6L
1804
1805#define SN_id_qcs_pkixQCSyntax_v1 "id-qcs-pkixQCSyntax-v1"
1806#define NID_id_qcs_pkixQCSyntax_v1 359
1807#define OBJ_id_qcs_pkixQCSyntax_v1 OBJ_id_qcs,1L
1808
1809#define SN_id_cct_crs "id-cct-crs"
1810#define NID_id_cct_crs 360
1811#define OBJ_id_cct_crs OBJ_id_cct,1L
1812
1813#define SN_id_cct_PKIData "id-cct-PKIData"
1814#define NID_id_cct_PKIData 361
1815#define OBJ_id_cct_PKIData OBJ_id_cct,2L
1816
1817#define SN_id_cct_PKIResponse "id-cct-PKIResponse"
1818#define NID_id_cct_PKIResponse 362
1819#define OBJ_id_cct_PKIResponse OBJ_id_cct,3L
1820
1821#define SN_id_ppl_anyLanguage "id-ppl-anyLanguage"
1822#define LN_id_ppl_anyLanguage "Any language"
1823#define NID_id_ppl_anyLanguage 664
1824#define OBJ_id_ppl_anyLanguage OBJ_id_ppl,0L
1825
1826#define SN_id_ppl_inheritAll "id-ppl-inheritAll"
1827#define LN_id_ppl_inheritAll "Inherit all"
1828#define NID_id_ppl_inheritAll 665
1829#define OBJ_id_ppl_inheritAll OBJ_id_ppl,1L
1830
1831#define SN_Independent "id-ppl-independent"
1832#define LN_Independent "Independent"
1833#define NID_Independent 667
1834#define OBJ_Independent OBJ_id_ppl,2L
1835
1836#define SN_ad_OCSP "OCSP"
1837#define LN_ad_OCSP "OCSP"
1838#define NID_ad_OCSP 178
1839#define OBJ_ad_OCSP OBJ_id_ad,1L
1840
1841#define SN_ad_ca_issuers "caIssuers"
1842#define LN_ad_ca_issuers "CA Issuers"
1843#define NID_ad_ca_issuers 179
1844#define OBJ_ad_ca_issuers OBJ_id_ad,2L
1845
1846#define SN_ad_timeStamping "ad_timestamping"
1847#define LN_ad_timeStamping "AD Time Stamping"
1848#define NID_ad_timeStamping 363
1849#define OBJ_ad_timeStamping OBJ_id_ad,3L
1850
1851#define SN_ad_dvcs "AD_DVCS"
1852#define LN_ad_dvcs "ad dvcs"
1853#define NID_ad_dvcs 364
1854#define OBJ_ad_dvcs OBJ_id_ad,4L
1855
1856#define SN_caRepository "caRepository"
1857#define LN_caRepository "CA Repository"
1858#define NID_caRepository 785
1859#define OBJ_caRepository OBJ_id_ad,5L
1860
1861#define OBJ_id_pkix_OCSP OBJ_ad_OCSP
1862
1863#define SN_id_pkix_OCSP_basic "basicOCSPResponse"
1864#define LN_id_pkix_OCSP_basic "Basic OCSP Response"
1865#define NID_id_pkix_OCSP_basic 365
1866#define OBJ_id_pkix_OCSP_basic OBJ_id_pkix_OCSP,1L
1867
1868#define SN_id_pkix_OCSP_Nonce "Nonce"
1869#define LN_id_pkix_OCSP_Nonce "OCSP Nonce"
1870#define NID_id_pkix_OCSP_Nonce 366
1871#define OBJ_id_pkix_OCSP_Nonce OBJ_id_pkix_OCSP,2L
1872
1873#define SN_id_pkix_OCSP_CrlID "CrlID"
1874#define LN_id_pkix_OCSP_CrlID "OCSP CRL ID"
1875#define NID_id_pkix_OCSP_CrlID 367
1876#define OBJ_id_pkix_OCSP_CrlID OBJ_id_pkix_OCSP,3L
1877
1878#define SN_id_pkix_OCSP_acceptableResponses "acceptableResponses"
1879#define LN_id_pkix_OCSP_acceptableResponses "Acceptable OCSP Responses"
1880#define NID_id_pkix_OCSP_acceptableResponses 368
1881#define OBJ_id_pkix_OCSP_acceptableResponses OBJ_id_pkix_OCSP,4L
1882
1883#define SN_id_pkix_OCSP_noCheck "noCheck"
1884#define LN_id_pkix_OCSP_noCheck "OCSP No Check"
1885#define NID_id_pkix_OCSP_noCheck 369
1886#define OBJ_id_pkix_OCSP_noCheck OBJ_id_pkix_OCSP,5L
1887
1888#define SN_id_pkix_OCSP_archiveCutoff "archiveCutoff"
1889#define LN_id_pkix_OCSP_archiveCutoff "OCSP Archive Cutoff"
1890#define NID_id_pkix_OCSP_archiveCutoff 370
1891#define OBJ_id_pkix_OCSP_archiveCutoff OBJ_id_pkix_OCSP,6L
1892
1893#define SN_id_pkix_OCSP_serviceLocator "serviceLocator"
1894#define LN_id_pkix_OCSP_serviceLocator "OCSP Service Locator"
1895#define NID_id_pkix_OCSP_serviceLocator 371
1896#define OBJ_id_pkix_OCSP_serviceLocator OBJ_id_pkix_OCSP,7L
1897
1898#define SN_id_pkix_OCSP_extendedStatus "extendedStatus"
1899#define LN_id_pkix_OCSP_extendedStatus "Extended OCSP Status"
1900#define NID_id_pkix_OCSP_extendedStatus 372
1901#define OBJ_id_pkix_OCSP_extendedStatus OBJ_id_pkix_OCSP,8L
1902
1903#define SN_id_pkix_OCSP_valid "valid"
1904#define NID_id_pkix_OCSP_valid 373
1905#define OBJ_id_pkix_OCSP_valid OBJ_id_pkix_OCSP,9L
1906
1907#define SN_id_pkix_OCSP_path "path"
1908#define NID_id_pkix_OCSP_path 374
1909#define OBJ_id_pkix_OCSP_path OBJ_id_pkix_OCSP,10L
1910
1911#define SN_id_pkix_OCSP_trustRoot "trustRoot"
1912#define LN_id_pkix_OCSP_trustRoot "Trust Root"
1913#define NID_id_pkix_OCSP_trustRoot 375
1914#define OBJ_id_pkix_OCSP_trustRoot OBJ_id_pkix_OCSP,11L
1915
1916#define SN_algorithm "algorithm"
1917#define LN_algorithm "algorithm"
1918#define NID_algorithm 376
1919#define OBJ_algorithm 1L,3L,14L,3L,2L
1920
1921#define SN_md5WithRSA "RSA-NP-MD5"
1922#define LN_md5WithRSA "md5WithRSA"
1923#define NID_md5WithRSA 104
1924#define OBJ_md5WithRSA OBJ_algorithm,3L
1925
1926#define SN_des_ecb "DES-ECB"
1927#define LN_des_ecb "des-ecb"
1928#define NID_des_ecb 29
1929#define OBJ_des_ecb OBJ_algorithm,6L
1930
1931#define SN_des_cbc "DES-CBC"
1932#define LN_des_cbc "des-cbc"
1933#define NID_des_cbc 31
1934#define OBJ_des_cbc OBJ_algorithm,7L
1935
1936#define SN_des_ofb64 "DES-OFB"
1937#define LN_des_ofb64 "des-ofb"
1938#define NID_des_ofb64 45
1939#define OBJ_des_ofb64 OBJ_algorithm,8L
1940
1941#define SN_des_cfb64 "DES-CFB"
1942#define LN_des_cfb64 "des-cfb"
1943#define NID_des_cfb64 30
1944#define OBJ_des_cfb64 OBJ_algorithm,9L
1945
1946#define SN_rsaSignature "rsaSignature"
1947#define NID_rsaSignature 377
1948#define OBJ_rsaSignature OBJ_algorithm,11L
1949
1950#define SN_dsa_2 "DSA-old"
1951#define LN_dsa_2 "dsaEncryption-old"
1952#define NID_dsa_2 67
1953#define OBJ_dsa_2 OBJ_algorithm,12L
1954
1955#define SN_dsaWithSHA "DSA-SHA"
1956#define LN_dsaWithSHA "dsaWithSHA"
1957#define NID_dsaWithSHA 66
1958#define OBJ_dsaWithSHA OBJ_algorithm,13L
1959
1960#define SN_shaWithRSAEncryption "RSA-SHA"
1961#define LN_shaWithRSAEncryption "shaWithRSAEncryption"
1962#define NID_shaWithRSAEncryption 42
1963#define OBJ_shaWithRSAEncryption OBJ_algorithm,15L
1964
1965#define SN_des_ede_ecb "DES-EDE"
1966#define LN_des_ede_ecb "des-ede"
1967#define NID_des_ede_ecb 32
1968#define OBJ_des_ede_ecb OBJ_algorithm,17L
1969
1970#define SN_des_ede3_ecb "DES-EDE3"
1971#define LN_des_ede3_ecb "des-ede3"
1972#define NID_des_ede3_ecb 33
1973
1974#define SN_des_ede_cbc "DES-EDE-CBC"
1975#define LN_des_ede_cbc "des-ede-cbc"
1976#define NID_des_ede_cbc 43
1977
1978#define SN_des_ede_cfb64 "DES-EDE-CFB"
1979#define LN_des_ede_cfb64 "des-ede-cfb"
1980#define NID_des_ede_cfb64 60
1981
1982#define SN_des_ede3_cfb64 "DES-EDE3-CFB"
1983#define LN_des_ede3_cfb64 "des-ede3-cfb"
1984#define NID_des_ede3_cfb64 61
1985
1986#define SN_des_ede_ofb64 "DES-EDE-OFB"
1987#define LN_des_ede_ofb64 "des-ede-ofb"
1988#define NID_des_ede_ofb64 62
1989
1990#define SN_des_ede3_ofb64 "DES-EDE3-OFB"
1991#define LN_des_ede3_ofb64 "des-ede3-ofb"
1992#define NID_des_ede3_ofb64 63
1993
1994#define SN_desx_cbc "DESX-CBC"
1995#define LN_desx_cbc "desx-cbc"
1996#define NID_desx_cbc 80
1997
1998#define SN_sha "SHA"
1999#define LN_sha "sha"
2000#define NID_sha 41
2001#define OBJ_sha OBJ_algorithm,18L
2002
2003#define SN_sha1 "SHA1"
2004#define LN_sha1 "sha1"
2005#define NID_sha1 64
2006#define OBJ_sha1 OBJ_algorithm,26L
2007
2008#define SN_dsaWithSHA1_2 "DSA-SHA1-old"
2009#define LN_dsaWithSHA1_2 "dsaWithSHA1-old"
2010#define NID_dsaWithSHA1_2 70
2011#define OBJ_dsaWithSHA1_2 OBJ_algorithm,27L
2012
2013#define SN_sha1WithRSA "RSA-SHA1-2"
2014#define LN_sha1WithRSA "sha1WithRSA"
2015#define NID_sha1WithRSA 115
2016#define OBJ_sha1WithRSA OBJ_algorithm,29L
2017
2018#define SN_ripemd160 "RIPEMD160"
2019#define LN_ripemd160 "ripemd160"
2020#define NID_ripemd160 117
2021#define OBJ_ripemd160 1L,3L,36L,3L,2L,1L
2022
2023#define SN_ripemd160WithRSA "RSA-RIPEMD160"
2024#define LN_ripemd160WithRSA "ripemd160WithRSA"
2025#define NID_ripemd160WithRSA 119
2026#define OBJ_ripemd160WithRSA 1L,3L,36L,3L,3L,1L,2L
2027
2028#define SN_sxnet "SXNetID"
2029#define LN_sxnet "Strong Extranet ID"
2030#define NID_sxnet 143
2031#define OBJ_sxnet 1L,3L,101L,1L,4L,1L
2032
2033#define SN_X500 "X500"
2034#define LN_X500 "directory services (X.500)"
2035#define NID_X500 11
2036#define OBJ_X500 2L,5L
2037
2038#define SN_X509 "X509"
2039#define NID_X509 12
2040#define OBJ_X509 OBJ_X500,4L
2041
2042#define SN_commonName "CN"
2043#define LN_commonName "commonName"
2044#define NID_commonName 13
2045#define OBJ_commonName OBJ_X509,3L
2046
2047#define SN_surname "SN"
2048#define LN_surname "surname"
2049#define NID_surname 100
2050#define OBJ_surname OBJ_X509,4L
2051
2052#define LN_serialNumber "serialNumber"
2053#define NID_serialNumber 105
2054#define OBJ_serialNumber OBJ_X509,5L
2055
2056#define SN_countryName "C"
2057#define LN_countryName "countryName"
2058#define NID_countryName 14
2059#define OBJ_countryName OBJ_X509,6L
2060
2061#define SN_localityName "L"
2062#define LN_localityName "localityName"
2063#define NID_localityName 15
2064#define OBJ_localityName OBJ_X509,7L
2065
2066#define SN_stateOrProvinceName "ST"
2067#define LN_stateOrProvinceName "stateOrProvinceName"
2068#define NID_stateOrProvinceName 16
2069#define OBJ_stateOrProvinceName OBJ_X509,8L
2070
2071#define SN_streetAddress "street"
2072#define LN_streetAddress "streetAddress"
2073#define NID_streetAddress 660
2074#define OBJ_streetAddress OBJ_X509,9L
2075
2076#define SN_organizationName "O"
2077#define LN_organizationName "organizationName"
2078#define NID_organizationName 17
2079#define OBJ_organizationName OBJ_X509,10L
2080
2081#define SN_organizationalUnitName "OU"
2082#define LN_organizationalUnitName "organizationalUnitName"
2083#define NID_organizationalUnitName 18
2084#define OBJ_organizationalUnitName OBJ_X509,11L
2085
2086#define SN_title "title"
2087#define LN_title "title"
2088#define NID_title 106
2089#define OBJ_title OBJ_X509,12L
2090
2091#define LN_description "description"
2092#define NID_description 107
2093#define OBJ_description OBJ_X509,13L
2094
2095#define LN_searchGuide "searchGuide"
2096#define NID_searchGuide 859
2097#define OBJ_searchGuide OBJ_X509,14L
2098
2099#define LN_businessCategory "businessCategory"
2100#define NID_businessCategory 860
2101#define OBJ_businessCategory OBJ_X509,15L
2102
2103#define LN_postalAddress "postalAddress"
2104#define NID_postalAddress 861
2105#define OBJ_postalAddress OBJ_X509,16L
2106
2107#define LN_postalCode "postalCode"
2108#define NID_postalCode 661
2109#define OBJ_postalCode OBJ_X509,17L
2110
2111#define LN_postOfficeBox "postOfficeBox"
2112#define NID_postOfficeBox 862
2113#define OBJ_postOfficeBox OBJ_X509,18L
2114
2115#define LN_physicalDeliveryOfficeName "physicalDeliveryOfficeName"
2116#define NID_physicalDeliveryOfficeName 863
2117#define OBJ_physicalDeliveryOfficeName OBJ_X509,19L
2118
2119#define LN_telephoneNumber "telephoneNumber"
2120#define NID_telephoneNumber 864
2121#define OBJ_telephoneNumber OBJ_X509,20L
2122
2123#define LN_telexNumber "telexNumber"
2124#define NID_telexNumber 865
2125#define OBJ_telexNumber OBJ_X509,21L
2126
2127#define LN_teletexTerminalIdentifier "teletexTerminalIdentifier"
2128#define NID_teletexTerminalIdentifier 866
2129#define OBJ_teletexTerminalIdentifier OBJ_X509,22L
2130
2131#define LN_facsimileTelephoneNumber "facsimileTelephoneNumber"
2132#define NID_facsimileTelephoneNumber 867
2133#define OBJ_facsimileTelephoneNumber OBJ_X509,23L
2134
2135#define LN_x121Address "x121Address"
2136#define NID_x121Address 868
2137#define OBJ_x121Address OBJ_X509,24L
2138
2139#define LN_internationaliSDNNumber "internationaliSDNNumber"
2140#define NID_internationaliSDNNumber 869
2141#define OBJ_internationaliSDNNumber OBJ_X509,25L
2142
2143#define LN_registeredAddress "registeredAddress"
2144#define NID_registeredAddress 870
2145#define OBJ_registeredAddress OBJ_X509,26L
2146
2147#define LN_destinationIndicator "destinationIndicator"
2148#define NID_destinationIndicator 871
2149#define OBJ_destinationIndicator OBJ_X509,27L
2150
2151#define LN_preferredDeliveryMethod "preferredDeliveryMethod"
2152#define NID_preferredDeliveryMethod 872
2153#define OBJ_preferredDeliveryMethod OBJ_X509,28L
2154
2155#define LN_presentationAddress "presentationAddress"
2156#define NID_presentationAddress 873
2157#define OBJ_presentationAddress OBJ_X509,29L
2158
2159#define LN_supportedApplicationContext "supportedApplicationContext"
2160#define NID_supportedApplicationContext 874
2161#define OBJ_supportedApplicationContext OBJ_X509,30L
2162
2163#define SN_member "member"
2164#define NID_member 875
2165#define OBJ_member OBJ_X509,31L
2166
2167#define SN_owner "owner"
2168#define NID_owner 876
2169#define OBJ_owner OBJ_X509,32L
2170
2171#define LN_roleOccupant "roleOccupant"
2172#define NID_roleOccupant 877
2173#define OBJ_roleOccupant OBJ_X509,33L
2174
2175#define SN_seeAlso "seeAlso"
2176#define NID_seeAlso 878
2177#define OBJ_seeAlso OBJ_X509,34L
2178
2179#define LN_userPassword "userPassword"
2180#define NID_userPassword 879
2181#define OBJ_userPassword OBJ_X509,35L
2182
2183#define LN_userCertificate "userCertificate"
2184#define NID_userCertificate 880
2185#define OBJ_userCertificate OBJ_X509,36L
2186
2187#define LN_cACertificate "cACertificate"
2188#define NID_cACertificate 881
2189#define OBJ_cACertificate OBJ_X509,37L
2190
2191#define LN_authorityRevocationList "authorityRevocationList"
2192#define NID_authorityRevocationList 882
2193#define OBJ_authorityRevocationList OBJ_X509,38L
2194
2195#define LN_certificateRevocationList "certificateRevocationList"
2196#define NID_certificateRevocationList 883
2197#define OBJ_certificateRevocationList OBJ_X509,39L
2198
2199#define LN_crossCertificatePair "crossCertificatePair"
2200#define NID_crossCertificatePair 884
2201#define OBJ_crossCertificatePair OBJ_X509,40L
2202
2203#define SN_name "name"
2204#define LN_name "name"
2205#define NID_name 173
2206#define OBJ_name OBJ_X509,41L
2207
2208#define SN_givenName "GN"
2209#define LN_givenName "givenName"
2210#define NID_givenName 99
2211#define OBJ_givenName OBJ_X509,42L
2212
2213#define SN_initials "initials"
2214#define LN_initials "initials"
2215#define NID_initials 101
2216#define OBJ_initials OBJ_X509,43L
2217
2218#define LN_generationQualifier "generationQualifier"
2219#define NID_generationQualifier 509
2220#define OBJ_generationQualifier OBJ_X509,44L
2221
2222#define LN_x500UniqueIdentifier "x500UniqueIdentifier"
2223#define NID_x500UniqueIdentifier 503
2224#define OBJ_x500UniqueIdentifier OBJ_X509,45L
2225
2226#define SN_dnQualifier "dnQualifier"
2227#define LN_dnQualifier "dnQualifier"
2228#define NID_dnQualifier 174
2229#define OBJ_dnQualifier OBJ_X509,46L
2230
2231#define LN_enhancedSearchGuide "enhancedSearchGuide"
2232#define NID_enhancedSearchGuide 885
2233#define OBJ_enhancedSearchGuide OBJ_X509,47L
2234
2235#define LN_protocolInformation "protocolInformation"
2236#define NID_protocolInformation 886
2237#define OBJ_protocolInformation OBJ_X509,48L
2238
2239#define LN_distinguishedName "distinguishedName"
2240#define NID_distinguishedName 887
2241#define OBJ_distinguishedName OBJ_X509,49L
2242
2243#define LN_uniqueMember "uniqueMember"
2244#define NID_uniqueMember 888
2245#define OBJ_uniqueMember OBJ_X509,50L
2246
2247#define LN_houseIdentifier "houseIdentifier"
2248#define NID_houseIdentifier 889
2249#define OBJ_houseIdentifier OBJ_X509,51L
2250
2251#define LN_supportedAlgorithms "supportedAlgorithms"
2252#define NID_supportedAlgorithms 890
2253#define OBJ_supportedAlgorithms OBJ_X509,52L
2254
2255#define LN_deltaRevocationList "deltaRevocationList"
2256#define NID_deltaRevocationList 891
2257#define OBJ_deltaRevocationList OBJ_X509,53L
2258
2259#define SN_dmdName "dmdName"
2260#define NID_dmdName 892
2261#define OBJ_dmdName OBJ_X509,54L
2262
2263#define LN_pseudonym "pseudonym"
2264#define NID_pseudonym 510
2265#define OBJ_pseudonym OBJ_X509,65L
2266
2267#define SN_role "role"
2268#define LN_role "role"
2269#define NID_role 400
2270#define OBJ_role OBJ_X509,72L
2271
2272#define SN_X500algorithms "X500algorithms"
2273#define LN_X500algorithms "directory services - algorithms"
2274#define NID_X500algorithms 378
2275#define OBJ_X500algorithms OBJ_X500,8L
2276
2277#define SN_rsa "RSA"
2278#define LN_rsa "rsa"
2279#define NID_rsa 19
2280#define OBJ_rsa OBJ_X500algorithms,1L,1L
2281
2282#define SN_mdc2WithRSA "RSA-MDC2"
2283#define LN_mdc2WithRSA "mdc2WithRSA"
2284#define NID_mdc2WithRSA 96
2285#define OBJ_mdc2WithRSA OBJ_X500algorithms,3L,100L
2286
2287#define SN_mdc2 "MDC2"
2288#define LN_mdc2 "mdc2"
2289#define NID_mdc2 95
2290#define OBJ_mdc2 OBJ_X500algorithms,3L,101L
2291
2292#define SN_id_ce "id-ce"
2293#define NID_id_ce 81
2294#define OBJ_id_ce OBJ_X500,29L
2295
2296#define SN_subject_directory_attributes "subjectDirectoryAttributes"
2297#define LN_subject_directory_attributes "X509v3 Subject Directory Attributes"
2298#define NID_subject_directory_attributes 769
2299#define OBJ_subject_directory_attributes OBJ_id_ce,9L
2300
2301#define SN_subject_key_identifier "subjectKeyIdentifier"
2302#define LN_subject_key_identifier "X509v3 Subject Key Identifier"
2303#define NID_subject_key_identifier 82
2304#define OBJ_subject_key_identifier OBJ_id_ce,14L
2305
2306#define SN_key_usage "keyUsage"
2307#define LN_key_usage "X509v3 Key Usage"
2308#define NID_key_usage 83
2309#define OBJ_key_usage OBJ_id_ce,15L
2310
2311#define SN_private_key_usage_period "privateKeyUsagePeriod"
2312#define LN_private_key_usage_period "X509v3 Private Key Usage Period"
2313#define NID_private_key_usage_period 84
2314#define OBJ_private_key_usage_period OBJ_id_ce,16L
2315
2316#define SN_subject_alt_name "subjectAltName"
2317#define LN_subject_alt_name "X509v3 Subject Alternative Name"
2318#define NID_subject_alt_name 85
2319#define OBJ_subject_alt_name OBJ_id_ce,17L
2320
2321#define SN_issuer_alt_name "issuerAltName"
2322#define LN_issuer_alt_name "X509v3 Issuer Alternative Name"
2323#define NID_issuer_alt_name 86
2324#define OBJ_issuer_alt_name OBJ_id_ce,18L
2325
2326#define SN_basic_constraints "basicConstraints"
2327#define LN_basic_constraints "X509v3 Basic Constraints"
2328#define NID_basic_constraints 87
2329#define OBJ_basic_constraints OBJ_id_ce,19L
2330
2331#define SN_crl_number "crlNumber"
2332#define LN_crl_number "X509v3 CRL Number"
2333#define NID_crl_number 88
2334#define OBJ_crl_number OBJ_id_ce,20L
2335
2336#define SN_crl_reason "CRLReason"
2337#define LN_crl_reason "X509v3 CRL Reason Code"
2338#define NID_crl_reason 141
2339#define OBJ_crl_reason OBJ_id_ce,21L
2340
2341#define SN_invalidity_date "invalidityDate"
2342#define LN_invalidity_date "Invalidity Date"
2343#define NID_invalidity_date 142
2344#define OBJ_invalidity_date OBJ_id_ce,24L
2345
2346#define SN_delta_crl "deltaCRL"
2347#define LN_delta_crl "X509v3 Delta CRL Indicator"
2348#define NID_delta_crl 140
2349#define OBJ_delta_crl OBJ_id_ce,27L
2350
2351#define SN_issuing_distribution_point "issuingDistributionPoint"
2352#define LN_issuing_distribution_point "X509v3 Issuing Distrubution Point"
2353#define NID_issuing_distribution_point 770
2354#define OBJ_issuing_distribution_point OBJ_id_ce,28L
2355
2356#define SN_certificate_issuer "certificateIssuer"
2357#define LN_certificate_issuer "X509v3 Certificate Issuer"
2358#define NID_certificate_issuer 771
2359#define OBJ_certificate_issuer OBJ_id_ce,29L
2360
2361#define SN_name_constraints "nameConstraints"
2362#define LN_name_constraints "X509v3 Name Constraints"
2363#define NID_name_constraints 666
2364#define OBJ_name_constraints OBJ_id_ce,30L
2365
2366#define SN_crl_distribution_points "crlDistributionPoints"
2367#define LN_crl_distribution_points "X509v3 CRL Distribution Points"
2368#define NID_crl_distribution_points 103
2369#define OBJ_crl_distribution_points OBJ_id_ce,31L
2370
2371#define SN_certificate_policies "certificatePolicies"
2372#define LN_certificate_policies "X509v3 Certificate Policies"
2373#define NID_certificate_policies 89
2374#define OBJ_certificate_policies OBJ_id_ce,32L
2375
2376#define SN_any_policy "anyPolicy"
2377#define LN_any_policy "X509v3 Any Policy"
2378#define NID_any_policy 746
2379#define OBJ_any_policy OBJ_certificate_policies,0L
2380
2381#define SN_policy_mappings "policyMappings"
2382#define LN_policy_mappings "X509v3 Policy Mappings"
2383#define NID_policy_mappings 747
2384#define OBJ_policy_mappings OBJ_id_ce,33L
2385
2386#define SN_authority_key_identifier "authorityKeyIdentifier"
2387#define LN_authority_key_identifier "X509v3 Authority Key Identifier"
2388#define NID_authority_key_identifier 90
2389#define OBJ_authority_key_identifier OBJ_id_ce,35L
2390
2391#define SN_policy_constraints "policyConstraints"
2392#define LN_policy_constraints "X509v3 Policy Constraints"
2393#define NID_policy_constraints 401
2394#define OBJ_policy_constraints OBJ_id_ce,36L
2395
2396#define SN_ext_key_usage "extendedKeyUsage"
2397#define LN_ext_key_usage "X509v3 Extended Key Usage"
2398#define NID_ext_key_usage 126
2399#define OBJ_ext_key_usage OBJ_id_ce,37L
2400
2401#define SN_freshest_crl "freshestCRL"
2402#define LN_freshest_crl "X509v3 Freshest CRL"
2403#define NID_freshest_crl 857
2404#define OBJ_freshest_crl OBJ_id_ce,46L
2405
2406#define SN_inhibit_any_policy "inhibitAnyPolicy"
2407#define LN_inhibit_any_policy "X509v3 Inhibit Any Policy"
2408#define NID_inhibit_any_policy 748
2409#define OBJ_inhibit_any_policy OBJ_id_ce,54L
2410
2411#define SN_target_information "targetInformation"
2412#define LN_target_information "X509v3 AC Targeting"
2413#define NID_target_information 402
2414#define OBJ_target_information OBJ_id_ce,55L
2415
2416#define SN_no_rev_avail "noRevAvail"
2417#define LN_no_rev_avail "X509v3 No Revocation Available"
2418#define NID_no_rev_avail 403
2419#define OBJ_no_rev_avail OBJ_id_ce,56L
2420
2421#define SN_anyExtendedKeyUsage "anyExtendedKeyUsage"
2422#define LN_anyExtendedKeyUsage "Any Extended Key Usage"
2423#define NID_anyExtendedKeyUsage 910
2424#define OBJ_anyExtendedKeyUsage OBJ_ext_key_usage,0L
2425
2426#define SN_netscape "Netscape"
2427#define LN_netscape "Netscape Communications Corp."
2428#define NID_netscape 57
2429#define OBJ_netscape 2L,16L,840L,1L,113730L
2430
2431#define SN_netscape_cert_extension "nsCertExt"
2432#define LN_netscape_cert_extension "Netscape Certificate Extension"
2433#define NID_netscape_cert_extension 58
2434#define OBJ_netscape_cert_extension OBJ_netscape,1L
2435
2436#define SN_netscape_data_type "nsDataType"
2437#define LN_netscape_data_type "Netscape Data Type"
2438#define NID_netscape_data_type 59
2439#define OBJ_netscape_data_type OBJ_netscape,2L
2440
2441#define SN_netscape_cert_type "nsCertType"
2442#define LN_netscape_cert_type "Netscape Cert Type"
2443#define NID_netscape_cert_type 71
2444#define OBJ_netscape_cert_type OBJ_netscape_cert_extension,1L
2445
2446#define SN_netscape_base_url "nsBaseUrl"
2447#define LN_netscape_base_url "Netscape Base Url"
2448#define NID_netscape_base_url 72
2449#define OBJ_netscape_base_url OBJ_netscape_cert_extension,2L
2450
2451#define SN_netscape_revocation_url "nsRevocationUrl"
2452#define LN_netscape_revocation_url "Netscape Revocation Url"
2453#define NID_netscape_revocation_url 73
2454#define OBJ_netscape_revocation_url OBJ_netscape_cert_extension,3L
2455
2456#define SN_netscape_ca_revocation_url "nsCaRevocationUrl"
2457#define LN_netscape_ca_revocation_url "Netscape CA Revocation Url"
2458#define NID_netscape_ca_revocation_url 74
2459#define OBJ_netscape_ca_revocation_url OBJ_netscape_cert_extension,4L
2460
2461#define SN_netscape_renewal_url "nsRenewalUrl"
2462#define LN_netscape_renewal_url "Netscape Renewal Url"
2463#define NID_netscape_renewal_url 75
2464#define OBJ_netscape_renewal_url OBJ_netscape_cert_extension,7L
2465
2466#define SN_netscape_ca_policy_url "nsCaPolicyUrl"
2467#define LN_netscape_ca_policy_url "Netscape CA Policy Url"
2468#define NID_netscape_ca_policy_url 76
2469#define OBJ_netscape_ca_policy_url OBJ_netscape_cert_extension,8L
2470
2471#define SN_netscape_ssl_server_name "nsSslServerName"
2472#define LN_netscape_ssl_server_name "Netscape SSL Server Name"
2473#define NID_netscape_ssl_server_name 77
2474#define OBJ_netscape_ssl_server_name OBJ_netscape_cert_extension,12L
2475
2476#define SN_netscape_comment "nsComment"
2477#define LN_netscape_comment "Netscape Comment"
2478#define NID_netscape_comment 78
2479#define OBJ_netscape_comment OBJ_netscape_cert_extension,13L
2480
2481#define SN_netscape_cert_sequence "nsCertSequence"
2482#define LN_netscape_cert_sequence "Netscape Certificate Sequence"
2483#define NID_netscape_cert_sequence 79
2484#define OBJ_netscape_cert_sequence OBJ_netscape_data_type,5L
2485
2486#define SN_ns_sgc "nsSGC"
2487#define LN_ns_sgc "Netscape Server Gated Crypto"
2488#define NID_ns_sgc 139
2489#define OBJ_ns_sgc OBJ_netscape,4L,1L
2490
2491#define SN_org "ORG"
2492#define LN_org "org"
2493#define NID_org 379
2494#define OBJ_org OBJ_iso,3L
2495
2496#define SN_dod "DOD"
2497#define LN_dod "dod"
2498#define NID_dod 380
2499#define OBJ_dod OBJ_org,6L
2500
2501#define SN_iana "IANA"
2502#define LN_iana "iana"
2503#define NID_iana 381
2504#define OBJ_iana OBJ_dod,1L
2505
2506#define OBJ_internet OBJ_iana
2507
2508#define SN_Directory "directory"
2509#define LN_Directory "Directory"
2510#define NID_Directory 382
2511#define OBJ_Directory OBJ_internet,1L
2512
2513#define SN_Management "mgmt"
2514#define LN_Management "Management"
2515#define NID_Management 383
2516#define OBJ_Management OBJ_internet,2L
2517
2518#define SN_Experimental "experimental"
2519#define LN_Experimental "Experimental"
2520#define NID_Experimental 384
2521#define OBJ_Experimental OBJ_internet,3L
2522
2523#define SN_Private "private"
2524#define LN_Private "Private"
2525#define NID_Private 385
2526#define OBJ_Private OBJ_internet,4L
2527
2528#define SN_Security "security"
2529#define LN_Security "Security"
2530#define NID_Security 386
2531#define OBJ_Security OBJ_internet,5L
2532
2533#define SN_SNMPv2 "snmpv2"
2534#define LN_SNMPv2 "SNMPv2"
2535#define NID_SNMPv2 387
2536#define OBJ_SNMPv2 OBJ_internet,6L
2537
2538#define LN_Mail "Mail"
2539#define NID_Mail 388
2540#define OBJ_Mail OBJ_internet,7L
2541
2542#define SN_Enterprises "enterprises"
2543#define LN_Enterprises "Enterprises"
2544#define NID_Enterprises 389
2545#define OBJ_Enterprises OBJ_Private,1L
2546
2547#define SN_dcObject "dcobject"
2548#define LN_dcObject "dcObject"
2549#define NID_dcObject 390
2550#define OBJ_dcObject OBJ_Enterprises,1466L,344L
2551
2552#define SN_mime_mhs "mime-mhs"
2553#define LN_mime_mhs "MIME MHS"
2554#define NID_mime_mhs 504
2555#define OBJ_mime_mhs OBJ_Mail,1L
2556
2557#define SN_mime_mhs_headings "mime-mhs-headings"
2558#define LN_mime_mhs_headings "mime-mhs-headings"
2559#define NID_mime_mhs_headings 505
2560#define OBJ_mime_mhs_headings OBJ_mime_mhs,1L
2561
2562#define SN_mime_mhs_bodies "mime-mhs-bodies"
2563#define LN_mime_mhs_bodies "mime-mhs-bodies"
2564#define NID_mime_mhs_bodies 506
2565#define OBJ_mime_mhs_bodies OBJ_mime_mhs,2L
2566
2567#define SN_id_hex_partial_message "id-hex-partial-message"
2568#define LN_id_hex_partial_message "id-hex-partial-message"
2569#define NID_id_hex_partial_message 507
2570#define OBJ_id_hex_partial_message OBJ_mime_mhs_headings,1L
2571
2572#define SN_id_hex_multipart_message "id-hex-multipart-message"
2573#define LN_id_hex_multipart_message "id-hex-multipart-message"
2574#define NID_id_hex_multipart_message 508
2575#define OBJ_id_hex_multipart_message OBJ_mime_mhs_headings,2L
2576
2577#define SN_rle_compression "RLE"
2578#define LN_rle_compression "run length compression"
2579#define NID_rle_compression 124
2580#define OBJ_rle_compression 1L,1L,1L,1L,666L,1L
2581
2582#define SN_zlib_compression "ZLIB"
2583#define LN_zlib_compression "zlib compression"
2584#define NID_zlib_compression 125
2585#define OBJ_zlib_compression OBJ_id_smime_alg,8L
2586
2587#define OBJ_csor 2L,16L,840L,1L,101L,3L
2588
2589#define OBJ_nistAlgorithms OBJ_csor,4L
2590
2591#define OBJ_aes OBJ_nistAlgorithms,1L
2592
2593#define SN_aes_128_ecb "AES-128-ECB"
2594#define LN_aes_128_ecb "aes-128-ecb"
2595#define NID_aes_128_ecb 418
2596#define OBJ_aes_128_ecb OBJ_aes,1L
2597
2598#define SN_aes_128_cbc "AES-128-CBC"
2599#define LN_aes_128_cbc "aes-128-cbc"
2600#define NID_aes_128_cbc 419
2601#define OBJ_aes_128_cbc OBJ_aes,2L
2602
2603#define SN_aes_128_ofb128 "AES-128-OFB"
2604#define LN_aes_128_ofb128 "aes-128-ofb"
2605#define NID_aes_128_ofb128 420
2606#define OBJ_aes_128_ofb128 OBJ_aes,3L
2607
2608#define SN_aes_128_cfb128 "AES-128-CFB"
2609#define LN_aes_128_cfb128 "aes-128-cfb"
2610#define NID_aes_128_cfb128 421
2611#define OBJ_aes_128_cfb128 OBJ_aes,4L
2612
2613#define SN_id_aes128_wrap "id-aes128-wrap"
2614#define NID_id_aes128_wrap 788
2615#define OBJ_id_aes128_wrap OBJ_aes,5L
2616
2617#define SN_aes_128_gcm "id-aes128-GCM"
2618#define LN_aes_128_gcm "aes-128-gcm"
2619#define NID_aes_128_gcm 895
2620#define OBJ_aes_128_gcm OBJ_aes,6L
2621
2622#define SN_aes_128_ccm "id-aes128-CCM"
2623#define LN_aes_128_ccm "aes-128-ccm"
2624#define NID_aes_128_ccm 896
2625#define OBJ_aes_128_ccm OBJ_aes,7L
2626
2627#define SN_id_aes128_wrap_pad "id-aes128-wrap-pad"
2628#define NID_id_aes128_wrap_pad 897
2629#define OBJ_id_aes128_wrap_pad OBJ_aes,8L
2630
2631#define SN_aes_192_ecb "AES-192-ECB"
2632#define LN_aes_192_ecb "aes-192-ecb"
2633#define NID_aes_192_ecb 422
2634#define OBJ_aes_192_ecb OBJ_aes,21L
2635
2636#define SN_aes_192_cbc "AES-192-CBC"
2637#define LN_aes_192_cbc "aes-192-cbc"
2638#define NID_aes_192_cbc 423
2639#define OBJ_aes_192_cbc OBJ_aes,22L
2640
2641#define SN_aes_192_ofb128 "AES-192-OFB"
2642#define LN_aes_192_ofb128 "aes-192-ofb"
2643#define NID_aes_192_ofb128 424
2644#define OBJ_aes_192_ofb128 OBJ_aes,23L
2645
2646#define SN_aes_192_cfb128 "AES-192-CFB"
2647#define LN_aes_192_cfb128 "aes-192-cfb"
2648#define NID_aes_192_cfb128 425
2649#define OBJ_aes_192_cfb128 OBJ_aes,24L
2650
2651#define SN_id_aes192_wrap "id-aes192-wrap"
2652#define NID_id_aes192_wrap 789
2653#define OBJ_id_aes192_wrap OBJ_aes,25L
2654
2655#define SN_aes_192_gcm "id-aes192-GCM"
2656#define LN_aes_192_gcm "aes-192-gcm"
2657#define NID_aes_192_gcm 898
2658#define OBJ_aes_192_gcm OBJ_aes,26L
2659
2660#define SN_aes_192_ccm "id-aes192-CCM"
2661#define LN_aes_192_ccm "aes-192-ccm"
2662#define NID_aes_192_ccm 899
2663#define OBJ_aes_192_ccm OBJ_aes,27L
2664
2665#define SN_id_aes192_wrap_pad "id-aes192-wrap-pad"
2666#define NID_id_aes192_wrap_pad 900
2667#define OBJ_id_aes192_wrap_pad OBJ_aes,28L
2668
2669#define SN_aes_256_ecb "AES-256-ECB"
2670#define LN_aes_256_ecb "aes-256-ecb"
2671#define NID_aes_256_ecb 426
2672#define OBJ_aes_256_ecb OBJ_aes,41L
2673
2674#define SN_aes_256_cbc "AES-256-CBC"
2675#define LN_aes_256_cbc "aes-256-cbc"
2676#define NID_aes_256_cbc 427
2677#define OBJ_aes_256_cbc OBJ_aes,42L
2678
2679#define SN_aes_256_ofb128 "AES-256-OFB"
2680#define LN_aes_256_ofb128 "aes-256-ofb"
2681#define NID_aes_256_ofb128 428
2682#define OBJ_aes_256_ofb128 OBJ_aes,43L
2683
2684#define SN_aes_256_cfb128 "AES-256-CFB"
2685#define LN_aes_256_cfb128 "aes-256-cfb"
2686#define NID_aes_256_cfb128 429
2687#define OBJ_aes_256_cfb128 OBJ_aes,44L
2688
2689#define SN_id_aes256_wrap "id-aes256-wrap"
2690#define NID_id_aes256_wrap 790
2691#define OBJ_id_aes256_wrap OBJ_aes,45L
2692
2693#define SN_aes_256_gcm "id-aes256-GCM"
2694#define LN_aes_256_gcm "aes-256-gcm"
2695#define NID_aes_256_gcm 901
2696#define OBJ_aes_256_gcm OBJ_aes,46L
2697
2698#define SN_aes_256_ccm "id-aes256-CCM"
2699#define LN_aes_256_ccm "aes-256-ccm"
2700#define NID_aes_256_ccm 902
2701#define OBJ_aes_256_ccm OBJ_aes,47L
2702
2703#define SN_id_aes256_wrap_pad "id-aes256-wrap-pad"
2704#define NID_id_aes256_wrap_pad 903
2705#define OBJ_id_aes256_wrap_pad OBJ_aes,48L
2706
2707#define SN_aes_128_cfb1 "AES-128-CFB1"
2708#define LN_aes_128_cfb1 "aes-128-cfb1"
2709#define NID_aes_128_cfb1 650
2710
2711#define SN_aes_192_cfb1 "AES-192-CFB1"
2712#define LN_aes_192_cfb1 "aes-192-cfb1"
2713#define NID_aes_192_cfb1 651
2714
2715#define SN_aes_256_cfb1 "AES-256-CFB1"
2716#define LN_aes_256_cfb1 "aes-256-cfb1"
2717#define NID_aes_256_cfb1 652
2718
2719#define SN_aes_128_cfb8 "AES-128-CFB8"
2720#define LN_aes_128_cfb8 "aes-128-cfb8"
2721#define NID_aes_128_cfb8 653
2722
2723#define SN_aes_192_cfb8 "AES-192-CFB8"
2724#define LN_aes_192_cfb8 "aes-192-cfb8"
2725#define NID_aes_192_cfb8 654
2726
2727#define SN_aes_256_cfb8 "AES-256-CFB8"
2728#define LN_aes_256_cfb8 "aes-256-cfb8"
2729#define NID_aes_256_cfb8 655
2730
2731#define SN_aes_128_ctr "AES-128-CTR"
2732#define LN_aes_128_ctr "aes-128-ctr"
2733#define NID_aes_128_ctr 904
2734
2735#define SN_aes_192_ctr "AES-192-CTR"
2736#define LN_aes_192_ctr "aes-192-ctr"
2737#define NID_aes_192_ctr 905
2738
2739#define SN_aes_256_ctr "AES-256-CTR"
2740#define LN_aes_256_ctr "aes-256-ctr"
2741#define NID_aes_256_ctr 906
2742
2743#define SN_aes_128_xts "AES-128-XTS"
2744#define LN_aes_128_xts "aes-128-xts"
2745#define NID_aes_128_xts 913
2746
2747#define SN_aes_256_xts "AES-256-XTS"
2748#define LN_aes_256_xts "aes-256-xts"
2749#define NID_aes_256_xts 914
2750
2751#define SN_des_cfb1 "DES-CFB1"
2752#define LN_des_cfb1 "des-cfb1"
2753#define NID_des_cfb1 656
2754
2755#define SN_des_cfb8 "DES-CFB8"
2756#define LN_des_cfb8 "des-cfb8"
2757#define NID_des_cfb8 657
2758
2759#define SN_des_ede3_cfb1 "DES-EDE3-CFB1"
2760#define LN_des_ede3_cfb1 "des-ede3-cfb1"
2761#define NID_des_ede3_cfb1 658
2762
2763#define SN_des_ede3_cfb8 "DES-EDE3-CFB8"
2764#define LN_des_ede3_cfb8 "des-ede3-cfb8"
2765#define NID_des_ede3_cfb8 659
2766
2767#define OBJ_nist_hashalgs OBJ_nistAlgorithms,2L
2768
2769#define SN_sha256 "SHA256"
2770#define LN_sha256 "sha256"
2771#define NID_sha256 672
2772#define OBJ_sha256 OBJ_nist_hashalgs,1L
2773
2774#define SN_sha384 "SHA384"
2775#define LN_sha384 "sha384"
2776#define NID_sha384 673
2777#define OBJ_sha384 OBJ_nist_hashalgs,2L
2778
2779#define SN_sha512 "SHA512"
2780#define LN_sha512 "sha512"
2781#define NID_sha512 674
2782#define OBJ_sha512 OBJ_nist_hashalgs,3L
2783
2784#define SN_sha224 "SHA224"
2785#define LN_sha224 "sha224"
2786#define NID_sha224 675
2787#define OBJ_sha224 OBJ_nist_hashalgs,4L
2788
2789#define OBJ_dsa_with_sha2 OBJ_nistAlgorithms,3L
2790
2791#define SN_dsa_with_SHA224 "dsa_with_SHA224"
2792#define NID_dsa_with_SHA224 802
2793#define OBJ_dsa_with_SHA224 OBJ_dsa_with_sha2,1L
2794
2795#define SN_dsa_with_SHA256 "dsa_with_SHA256"
2796#define NID_dsa_with_SHA256 803
2797#define OBJ_dsa_with_SHA256 OBJ_dsa_with_sha2,2L
2798
2799#define SN_hold_instruction_code "holdInstructionCode"
2800#define LN_hold_instruction_code "Hold Instruction Code"
2801#define NID_hold_instruction_code 430
2802#define OBJ_hold_instruction_code OBJ_id_ce,23L
2803
2804#define OBJ_holdInstruction OBJ_X9_57,2L
2805
2806#define SN_hold_instruction_none "holdInstructionNone"
2807#define LN_hold_instruction_none "Hold Instruction None"
2808#define NID_hold_instruction_none 431
2809#define OBJ_hold_instruction_none OBJ_holdInstruction,1L
2810
2811#define SN_hold_instruction_call_issuer "holdInstructionCallIssuer"
2812#define LN_hold_instruction_call_issuer "Hold Instruction Call Issuer"
2813#define NID_hold_instruction_call_issuer 432
2814#define OBJ_hold_instruction_call_issuer OBJ_holdInstruction,2L
2815
2816#define SN_hold_instruction_reject "holdInstructionReject"
2817#define LN_hold_instruction_reject "Hold Instruction Reject"
2818#define NID_hold_instruction_reject 433
2819#define OBJ_hold_instruction_reject OBJ_holdInstruction,3L
2820
2821#define SN_data "data"
2822#define NID_data 434
2823#define OBJ_data OBJ_itu_t,9L
2824
2825#define SN_pss "pss"
2826#define NID_pss 435
2827#define OBJ_pss OBJ_data,2342L
2828
2829#define SN_ucl "ucl"
2830#define NID_ucl 436
2831#define OBJ_ucl OBJ_pss,19200300L
2832
2833#define SN_pilot "pilot"
2834#define NID_pilot 437
2835#define OBJ_pilot OBJ_ucl,100L
2836
2837#define LN_pilotAttributeType "pilotAttributeType"
2838#define NID_pilotAttributeType 438
2839#define OBJ_pilotAttributeType OBJ_pilot,1L
2840
2841#define LN_pilotAttributeSyntax "pilotAttributeSyntax"
2842#define NID_pilotAttributeSyntax 439
2843#define OBJ_pilotAttributeSyntax OBJ_pilot,3L
2844
2845#define LN_pilotObjectClass "pilotObjectClass"
2846#define NID_pilotObjectClass 440
2847#define OBJ_pilotObjectClass OBJ_pilot,4L
2848
2849#define LN_pilotGroups "pilotGroups"
2850#define NID_pilotGroups 441
2851#define OBJ_pilotGroups OBJ_pilot,10L
2852
2853#define LN_iA5StringSyntax "iA5StringSyntax"
2854#define NID_iA5StringSyntax 442
2855#define OBJ_iA5StringSyntax OBJ_pilotAttributeSyntax,4L
2856
2857#define LN_caseIgnoreIA5StringSyntax "caseIgnoreIA5StringSyntax"
2858#define NID_caseIgnoreIA5StringSyntax 443
2859#define OBJ_caseIgnoreIA5StringSyntax OBJ_pilotAttributeSyntax,5L
2860
2861#define LN_pilotObject "pilotObject"
2862#define NID_pilotObject 444
2863#define OBJ_pilotObject OBJ_pilotObjectClass,3L
2864
2865#define LN_pilotPerson "pilotPerson"
2866#define NID_pilotPerson 445
2867#define OBJ_pilotPerson OBJ_pilotObjectClass,4L
2868
2869#define SN_account "account"
2870#define NID_account 446
2871#define OBJ_account OBJ_pilotObjectClass,5L
2872
2873#define SN_document "document"
2874#define NID_document 447
2875#define OBJ_document OBJ_pilotObjectClass,6L
2876
2877#define SN_room "room"
2878#define NID_room 448
2879#define OBJ_room OBJ_pilotObjectClass,7L
2880
2881#define LN_documentSeries "documentSeries"
2882#define NID_documentSeries 449
2883#define OBJ_documentSeries OBJ_pilotObjectClass,9L
2884
2885#define SN_Domain "domain"
2886#define LN_Domain "Domain"
2887#define NID_Domain 392
2888#define OBJ_Domain OBJ_pilotObjectClass,13L
2889
2890#define LN_rFC822localPart "rFC822localPart"
2891#define NID_rFC822localPart 450
2892#define OBJ_rFC822localPart OBJ_pilotObjectClass,14L
2893
2894#define LN_dNSDomain "dNSDomain"
2895#define NID_dNSDomain 451
2896#define OBJ_dNSDomain OBJ_pilotObjectClass,15L
2897
2898#define LN_domainRelatedObject "domainRelatedObject"
2899#define NID_domainRelatedObject 452
2900#define OBJ_domainRelatedObject OBJ_pilotObjectClass,17L
2901
2902#define LN_friendlyCountry "friendlyCountry"
2903#define NID_friendlyCountry 453
2904#define OBJ_friendlyCountry OBJ_pilotObjectClass,18L
2905
2906#define LN_simpleSecurityObject "simpleSecurityObject"
2907#define NID_simpleSecurityObject 454
2908#define OBJ_simpleSecurityObject OBJ_pilotObjectClass,19L
2909
2910#define LN_pilotOrganization "pilotOrganization"
2911#define NID_pilotOrganization 455
2912#define OBJ_pilotOrganization OBJ_pilotObjectClass,20L
2913
2914#define LN_pilotDSA "pilotDSA"
2915#define NID_pilotDSA 456
2916#define OBJ_pilotDSA OBJ_pilotObjectClass,21L
2917
2918#define LN_qualityLabelledData "qualityLabelledData"
2919#define NID_qualityLabelledData 457
2920#define OBJ_qualityLabelledData OBJ_pilotObjectClass,22L
2921
2922#define SN_userId "UID"
2923#define LN_userId "userId"
2924#define NID_userId 458
2925#define OBJ_userId OBJ_pilotAttributeType,1L
2926
2927#define LN_textEncodedORAddress "textEncodedORAddress"
2928#define NID_textEncodedORAddress 459
2929#define OBJ_textEncodedORAddress OBJ_pilotAttributeType,2L
2930
2931#define SN_rfc822Mailbox "mail"
2932#define LN_rfc822Mailbox "rfc822Mailbox"
2933#define NID_rfc822Mailbox 460
2934#define OBJ_rfc822Mailbox OBJ_pilotAttributeType,3L
2935
2936#define SN_info "info"
2937#define NID_info 461
2938#define OBJ_info OBJ_pilotAttributeType,4L
2939
2940#define LN_favouriteDrink "favouriteDrink"
2941#define NID_favouriteDrink 462
2942#define OBJ_favouriteDrink OBJ_pilotAttributeType,5L
2943
2944#define LN_roomNumber "roomNumber"
2945#define NID_roomNumber 463
2946#define OBJ_roomNumber OBJ_pilotAttributeType,6L
2947
2948#define SN_photo "photo"
2949#define NID_photo 464
2950#define OBJ_photo OBJ_pilotAttributeType,7L
2951
2952#define LN_userClass "userClass"
2953#define NID_userClass 465
2954#define OBJ_userClass OBJ_pilotAttributeType,8L
2955
2956#define SN_host "host"
2957#define NID_host 466
2958#define OBJ_host OBJ_pilotAttributeType,9L
2959
2960#define SN_manager "manager"
2961#define NID_manager 467
2962#define OBJ_manager OBJ_pilotAttributeType,10L
2963
2964#define LN_documentIdentifier "documentIdentifier"
2965#define NID_documentIdentifier 468
2966#define OBJ_documentIdentifier OBJ_pilotAttributeType,11L
2967
2968#define LN_documentTitle "documentTitle"
2969#define NID_documentTitle 469
2970#define OBJ_documentTitle OBJ_pilotAttributeType,12L
2971
2972#define LN_documentVersion "documentVersion"
2973#define NID_documentVersion 470
2974#define OBJ_documentVersion OBJ_pilotAttributeType,13L
2975
2976#define LN_documentAuthor "documentAuthor"
2977#define NID_documentAuthor 471
2978#define OBJ_documentAuthor OBJ_pilotAttributeType,14L
2979
2980#define LN_documentLocation "documentLocation"
2981#define NID_documentLocation 472
2982#define OBJ_documentLocation OBJ_pilotAttributeType,15L
2983
2984#define LN_homeTelephoneNumber "homeTelephoneNumber"
2985#define NID_homeTelephoneNumber 473
2986#define OBJ_homeTelephoneNumber OBJ_pilotAttributeType,20L
2987
2988#define SN_secretary "secretary"
2989#define NID_secretary 474
2990#define OBJ_secretary OBJ_pilotAttributeType,21L
2991
2992#define LN_otherMailbox "otherMailbox"
2993#define NID_otherMailbox 475
2994#define OBJ_otherMailbox OBJ_pilotAttributeType,22L
2995
2996#define LN_lastModifiedTime "lastModifiedTime"
2997#define NID_lastModifiedTime 476
2998#define OBJ_lastModifiedTime OBJ_pilotAttributeType,23L
2999
3000#define LN_lastModifiedBy "lastModifiedBy"
3001#define NID_lastModifiedBy 477
3002#define OBJ_lastModifiedBy OBJ_pilotAttributeType,24L
3003
3004#define SN_domainComponent "DC"
3005#define LN_domainComponent "domainComponent"
3006#define NID_domainComponent 391
3007#define OBJ_domainComponent OBJ_pilotAttributeType,25L
3008
3009#define LN_aRecord "aRecord"
3010#define NID_aRecord 478
3011#define OBJ_aRecord OBJ_pilotAttributeType,26L
3012
3013#define LN_pilotAttributeType27 "pilotAttributeType27"
3014#define NID_pilotAttributeType27 479
3015#define OBJ_pilotAttributeType27 OBJ_pilotAttributeType,27L
3016
3017#define LN_mXRecord "mXRecord"
3018#define NID_mXRecord 480
3019#define OBJ_mXRecord OBJ_pilotAttributeType,28L
3020
3021#define LN_nSRecord "nSRecord"
3022#define NID_nSRecord 481
3023#define OBJ_nSRecord OBJ_pilotAttributeType,29L
3024
3025#define LN_sOARecord "sOARecord"
3026#define NID_sOARecord 482
3027#define OBJ_sOARecord OBJ_pilotAttributeType,30L
3028
3029#define LN_cNAMERecord "cNAMERecord"
3030#define NID_cNAMERecord 483
3031#define OBJ_cNAMERecord OBJ_pilotAttributeType,31L
3032
3033#define LN_associatedDomain "associatedDomain"
3034#define NID_associatedDomain 484
3035#define OBJ_associatedDomain OBJ_pilotAttributeType,37L
3036
3037#define LN_associatedName "associatedName"
3038#define NID_associatedName 485
3039#define OBJ_associatedName OBJ_pilotAttributeType,38L
3040
3041#define LN_homePostalAddress "homePostalAddress"
3042#define NID_homePostalAddress 486
3043#define OBJ_homePostalAddress OBJ_pilotAttributeType,39L
3044
3045#define LN_personalTitle "personalTitle"
3046#define NID_personalTitle 487
3047#define OBJ_personalTitle OBJ_pilotAttributeType,40L
3048
3049#define LN_mobileTelephoneNumber "mobileTelephoneNumber"
3050#define NID_mobileTelephoneNumber 488
3051#define OBJ_mobileTelephoneNumber OBJ_pilotAttributeType,41L
3052
3053#define LN_pagerTelephoneNumber "pagerTelephoneNumber"
3054#define NID_pagerTelephoneNumber 489
3055#define OBJ_pagerTelephoneNumber OBJ_pilotAttributeType,42L
3056
3057#define LN_friendlyCountryName "friendlyCountryName"
3058#define NID_friendlyCountryName 490
3059#define OBJ_friendlyCountryName OBJ_pilotAttributeType,43L
3060
3061#define LN_organizationalStatus "organizationalStatus"
3062#define NID_organizationalStatus 491
3063#define OBJ_organizationalStatus OBJ_pilotAttributeType,45L
3064
3065#define LN_janetMailbox "janetMailbox"
3066#define NID_janetMailbox 492
3067#define OBJ_janetMailbox OBJ_pilotAttributeType,46L
3068
3069#define LN_mailPreferenceOption "mailPreferenceOption"
3070#define NID_mailPreferenceOption 493
3071#define OBJ_mailPreferenceOption OBJ_pilotAttributeType,47L
3072
3073#define LN_buildingName "buildingName"
3074#define NID_buildingName 494
3075#define OBJ_buildingName OBJ_pilotAttributeType,48L
3076
3077#define LN_dSAQuality "dSAQuality"
3078#define NID_dSAQuality 495
3079#define OBJ_dSAQuality OBJ_pilotAttributeType,49L
3080
3081#define LN_singleLevelQuality "singleLevelQuality"
3082#define NID_singleLevelQuality 496
3083#define OBJ_singleLevelQuality OBJ_pilotAttributeType,50L
3084
3085#define LN_subtreeMinimumQuality "subtreeMinimumQuality"
3086#define NID_subtreeMinimumQuality 497
3087#define OBJ_subtreeMinimumQuality OBJ_pilotAttributeType,51L
3088
3089#define LN_subtreeMaximumQuality "subtreeMaximumQuality"
3090#define NID_subtreeMaximumQuality 498
3091#define OBJ_subtreeMaximumQuality OBJ_pilotAttributeType,52L
3092
3093#define LN_personalSignature "personalSignature"
3094#define NID_personalSignature 499
3095#define OBJ_personalSignature OBJ_pilotAttributeType,53L
3096
3097#define LN_dITRedirect "dITRedirect"
3098#define NID_dITRedirect 500
3099#define OBJ_dITRedirect OBJ_pilotAttributeType,54L
3100
3101#define SN_audio "audio"
3102#define NID_audio 501
3103#define OBJ_audio OBJ_pilotAttributeType,55L
3104
3105#define LN_documentPublisher "documentPublisher"
3106#define NID_documentPublisher 502
3107#define OBJ_documentPublisher OBJ_pilotAttributeType,56L
3108
3109#define SN_id_set "id-set"
3110#define LN_id_set "Secure Electronic Transactions"
3111#define NID_id_set 512
3112#define OBJ_id_set OBJ_international_organizations,42L
3113
3114#define SN_set_ctype "set-ctype"
3115#define LN_set_ctype "content types"
3116#define NID_set_ctype 513
3117#define OBJ_set_ctype OBJ_id_set,0L
3118
3119#define SN_set_msgExt "set-msgExt"
3120#define LN_set_msgExt "message extensions"
3121#define NID_set_msgExt 514
3122#define OBJ_set_msgExt OBJ_id_set,1L
3123
3124#define SN_set_attr "set-attr"
3125#define NID_set_attr 515
3126#define OBJ_set_attr OBJ_id_set,3L
3127
3128#define SN_set_policy "set-policy"
3129#define NID_set_policy 516
3130#define OBJ_set_policy OBJ_id_set,5L
3131
3132#define SN_set_certExt "set-certExt"
3133#define LN_set_certExt "certificate extensions"
3134#define NID_set_certExt 517
3135#define OBJ_set_certExt OBJ_id_set,7L
3136
3137#define SN_set_brand "set-brand"
3138#define NID_set_brand 518
3139#define OBJ_set_brand OBJ_id_set,8L
3140
3141#define SN_setct_PANData "setct-PANData"
3142#define NID_setct_PANData 519
3143#define OBJ_setct_PANData OBJ_set_ctype,0L
3144
3145#define SN_setct_PANToken "setct-PANToken"
3146#define NID_setct_PANToken 520
3147#define OBJ_setct_PANToken OBJ_set_ctype,1L
3148
3149#define SN_setct_PANOnly "setct-PANOnly"
3150#define NID_setct_PANOnly 521
3151#define OBJ_setct_PANOnly OBJ_set_ctype,2L
3152
3153#define SN_setct_OIData "setct-OIData"
3154#define NID_setct_OIData 522
3155#define OBJ_setct_OIData OBJ_set_ctype,3L
3156
3157#define SN_setct_PI "setct-PI"
3158#define NID_setct_PI 523
3159#define OBJ_setct_PI OBJ_set_ctype,4L
3160
3161#define SN_setct_PIData "setct-PIData"
3162#define NID_setct_PIData 524
3163#define OBJ_setct_PIData OBJ_set_ctype,5L
3164
3165#define SN_setct_PIDataUnsigned "setct-PIDataUnsigned"
3166#define NID_setct_PIDataUnsigned 525
3167#define OBJ_setct_PIDataUnsigned OBJ_set_ctype,6L
3168
3169#define SN_setct_HODInput "setct-HODInput"
3170#define NID_setct_HODInput 526
3171#define OBJ_setct_HODInput OBJ_set_ctype,7L
3172
3173#define SN_setct_AuthResBaggage "setct-AuthResBaggage"
3174#define NID_setct_AuthResBaggage 527
3175#define OBJ_setct_AuthResBaggage OBJ_set_ctype,8L
3176
3177#define SN_setct_AuthRevReqBaggage "setct-AuthRevReqBaggage"
3178#define NID_setct_AuthRevReqBaggage 528
3179#define OBJ_setct_AuthRevReqBaggage OBJ_set_ctype,9L
3180
3181#define SN_setct_AuthRevResBaggage "setct-AuthRevResBaggage"
3182#define NID_setct_AuthRevResBaggage 529
3183#define OBJ_setct_AuthRevResBaggage OBJ_set_ctype,10L
3184
3185#define SN_setct_CapTokenSeq "setct-CapTokenSeq"
3186#define NID_setct_CapTokenSeq 530
3187#define OBJ_setct_CapTokenSeq OBJ_set_ctype,11L
3188
3189#define SN_setct_PInitResData "setct-PInitResData"
3190#define NID_setct_PInitResData 531
3191#define OBJ_setct_PInitResData OBJ_set_ctype,12L
3192
3193#define SN_setct_PI_TBS "setct-PI-TBS"
3194#define NID_setct_PI_TBS 532
3195#define OBJ_setct_PI_TBS OBJ_set_ctype,13L
3196
3197#define SN_setct_PResData "setct-PResData"
3198#define NID_setct_PResData 533
3199#define OBJ_setct_PResData OBJ_set_ctype,14L
3200
3201#define SN_setct_AuthReqTBS "setct-AuthReqTBS"
3202#define NID_setct_AuthReqTBS 534
3203#define OBJ_setct_AuthReqTBS OBJ_set_ctype,16L
3204
3205#define SN_setct_AuthResTBS "setct-AuthResTBS"
3206#define NID_setct_AuthResTBS 535
3207#define OBJ_setct_AuthResTBS OBJ_set_ctype,17L
3208
3209#define SN_setct_AuthResTBSX "setct-AuthResTBSX"
3210#define NID_setct_AuthResTBSX 536
3211#define OBJ_setct_AuthResTBSX OBJ_set_ctype,18L
3212
3213#define SN_setct_AuthTokenTBS "setct-AuthTokenTBS"
3214#define NID_setct_AuthTokenTBS 537
3215#define OBJ_setct_AuthTokenTBS OBJ_set_ctype,19L
3216
3217#define SN_setct_CapTokenData "setct-CapTokenData"
3218#define NID_setct_CapTokenData 538
3219#define OBJ_setct_CapTokenData OBJ_set_ctype,20L
3220
3221#define SN_setct_CapTokenTBS "setct-CapTokenTBS"
3222#define NID_setct_CapTokenTBS 539
3223#define OBJ_setct_CapTokenTBS OBJ_set_ctype,21L
3224
3225#define SN_setct_AcqCardCodeMsg "setct-AcqCardCodeMsg"
3226#define NID_setct_AcqCardCodeMsg 540
3227#define OBJ_setct_AcqCardCodeMsg OBJ_set_ctype,22L
3228
3229#define SN_setct_AuthRevReqTBS "setct-AuthRevReqTBS"
3230#define NID_setct_AuthRevReqTBS 541
3231#define OBJ_setct_AuthRevReqTBS OBJ_set_ctype,23L
3232
3233#define SN_setct_AuthRevResData "setct-AuthRevResData"
3234#define NID_setct_AuthRevResData 542
3235#define OBJ_setct_AuthRevResData OBJ_set_ctype,24L
3236
3237#define SN_setct_AuthRevResTBS "setct-AuthRevResTBS"
3238#define NID_setct_AuthRevResTBS 543
3239#define OBJ_setct_AuthRevResTBS OBJ_set_ctype,25L
3240
3241#define SN_setct_CapReqTBS "setct-CapReqTBS"
3242#define NID_setct_CapReqTBS 544
3243#define OBJ_setct_CapReqTBS OBJ_set_ctype,26L
3244
3245#define SN_setct_CapReqTBSX "setct-CapReqTBSX"
3246#define NID_setct_CapReqTBSX 545
3247#define OBJ_setct_CapReqTBSX OBJ_set_ctype,27L
3248
3249#define SN_setct_CapResData "setct-CapResData"
3250#define NID_setct_CapResData 546
3251#define OBJ_setct_CapResData OBJ_set_ctype,28L
3252
3253#define SN_setct_CapRevReqTBS "setct-CapRevReqTBS"
3254#define NID_setct_CapRevReqTBS 547
3255#define OBJ_setct_CapRevReqTBS OBJ_set_ctype,29L
3256
3257#define SN_setct_CapRevReqTBSX "setct-CapRevReqTBSX"
3258#define NID_setct_CapRevReqTBSX 548
3259#define OBJ_setct_CapRevReqTBSX OBJ_set_ctype,30L
3260
3261#define SN_setct_CapRevResData "setct-CapRevResData"
3262#define NID_setct_CapRevResData 549
3263#define OBJ_setct_CapRevResData OBJ_set_ctype,31L
3264
3265#define SN_setct_CredReqTBS "setct-CredReqTBS"
3266#define NID_setct_CredReqTBS 550
3267#define OBJ_setct_CredReqTBS OBJ_set_ctype,32L
3268
3269#define SN_setct_CredReqTBSX "setct-CredReqTBSX"
3270#define NID_setct_CredReqTBSX 551
3271#define OBJ_setct_CredReqTBSX OBJ_set_ctype,33L
3272
3273#define SN_setct_CredResData "setct-CredResData"
3274#define NID_setct_CredResData 552
3275#define OBJ_setct_CredResData OBJ_set_ctype,34L
3276
3277#define SN_setct_CredRevReqTBS "setct-CredRevReqTBS"
3278#define NID_setct_CredRevReqTBS 553
3279#define OBJ_setct_CredRevReqTBS OBJ_set_ctype,35L
3280
3281#define SN_setct_CredRevReqTBSX "setct-CredRevReqTBSX"
3282#define NID_setct_CredRevReqTBSX 554
3283#define OBJ_setct_CredRevReqTBSX OBJ_set_ctype,36L
3284
3285#define SN_setct_CredRevResData "setct-CredRevResData"
3286#define NID_setct_CredRevResData 555
3287#define OBJ_setct_CredRevResData OBJ_set_ctype,37L
3288
3289#define SN_setct_PCertReqData "setct-PCertReqData"
3290#define NID_setct_PCertReqData 556
3291#define OBJ_setct_PCertReqData OBJ_set_ctype,38L
3292
3293#define SN_setct_PCertResTBS "setct-PCertResTBS"
3294#define NID_setct_PCertResTBS 557
3295#define OBJ_setct_PCertResTBS OBJ_set_ctype,39L
3296
3297#define SN_setct_BatchAdminReqData "setct-BatchAdminReqData"
3298#define NID_setct_BatchAdminReqData 558
3299#define OBJ_setct_BatchAdminReqData OBJ_set_ctype,40L
3300
3301#define SN_setct_BatchAdminResData "setct-BatchAdminResData"
3302#define NID_setct_BatchAdminResData 559
3303#define OBJ_setct_BatchAdminResData OBJ_set_ctype,41L
3304
3305#define SN_setct_CardCInitResTBS "setct-CardCInitResTBS"
3306#define NID_setct_CardCInitResTBS 560
3307#define OBJ_setct_CardCInitResTBS OBJ_set_ctype,42L
3308
3309#define SN_setct_MeAqCInitResTBS "setct-MeAqCInitResTBS"
3310#define NID_setct_MeAqCInitResTBS 561
3311#define OBJ_setct_MeAqCInitResTBS OBJ_set_ctype,43L
3312
3313#define SN_setct_RegFormResTBS "setct-RegFormResTBS"
3314#define NID_setct_RegFormResTBS 562
3315#define OBJ_setct_RegFormResTBS OBJ_set_ctype,44L
3316
3317#define SN_setct_CertReqData "setct-CertReqData"
3318#define NID_setct_CertReqData 563
3319#define OBJ_setct_CertReqData OBJ_set_ctype,45L
3320
3321#define SN_setct_CertReqTBS "setct-CertReqTBS"
3322#define NID_setct_CertReqTBS 564
3323#define OBJ_setct_CertReqTBS OBJ_set_ctype,46L
3324
3325#define SN_setct_CertResData "setct-CertResData"
3326#define NID_setct_CertResData 565
3327#define OBJ_setct_CertResData OBJ_set_ctype,47L
3328
3329#define SN_setct_CertInqReqTBS "setct-CertInqReqTBS"
3330#define NID_setct_CertInqReqTBS 566
3331#define OBJ_setct_CertInqReqTBS OBJ_set_ctype,48L
3332
3333#define SN_setct_ErrorTBS "setct-ErrorTBS"
3334#define NID_setct_ErrorTBS 567
3335#define OBJ_setct_ErrorTBS OBJ_set_ctype,49L
3336
3337#define SN_setct_PIDualSignedTBE "setct-PIDualSignedTBE"
3338#define NID_setct_PIDualSignedTBE 568
3339#define OBJ_setct_PIDualSignedTBE OBJ_set_ctype,50L
3340
3341#define SN_setct_PIUnsignedTBE "setct-PIUnsignedTBE"
3342#define NID_setct_PIUnsignedTBE 569
3343#define OBJ_setct_PIUnsignedTBE OBJ_set_ctype,51L
3344
3345#define SN_setct_AuthReqTBE "setct-AuthReqTBE"
3346#define NID_setct_AuthReqTBE 570
3347#define OBJ_setct_AuthReqTBE OBJ_set_ctype,52L
3348
3349#define SN_setct_AuthResTBE "setct-AuthResTBE"
3350#define NID_setct_AuthResTBE 571
3351#define OBJ_setct_AuthResTBE OBJ_set_ctype,53L
3352
3353#define SN_setct_AuthResTBEX "setct-AuthResTBEX"
3354#define NID_setct_AuthResTBEX 572
3355#define OBJ_setct_AuthResTBEX OBJ_set_ctype,54L
3356
3357#define SN_setct_AuthTokenTBE "setct-AuthTokenTBE"
3358#define NID_setct_AuthTokenTBE 573
3359#define OBJ_setct_AuthTokenTBE OBJ_set_ctype,55L
3360
3361#define SN_setct_CapTokenTBE "setct-CapTokenTBE"
3362#define NID_setct_CapTokenTBE 574
3363#define OBJ_setct_CapTokenTBE OBJ_set_ctype,56L
3364
3365#define SN_setct_CapTokenTBEX "setct-CapTokenTBEX"
3366#define NID_setct_CapTokenTBEX 575
3367#define OBJ_setct_CapTokenTBEX OBJ_set_ctype,57L
3368
3369#define SN_setct_AcqCardCodeMsgTBE "setct-AcqCardCodeMsgTBE"
3370#define NID_setct_AcqCardCodeMsgTBE 576
3371#define OBJ_setct_AcqCardCodeMsgTBE OBJ_set_ctype,58L
3372
3373#define SN_setct_AuthRevReqTBE "setct-AuthRevReqTBE"
3374#define NID_setct_AuthRevReqTBE 577
3375#define OBJ_setct_AuthRevReqTBE OBJ_set_ctype,59L
3376
3377#define SN_setct_AuthRevResTBE "setct-AuthRevResTBE"
3378#define NID_setct_AuthRevResTBE 578
3379#define OBJ_setct_AuthRevResTBE OBJ_set_ctype,60L
3380
3381#define SN_setct_AuthRevResTBEB "setct-AuthRevResTBEB"
3382#define NID_setct_AuthRevResTBEB 579
3383#define OBJ_setct_AuthRevResTBEB OBJ_set_ctype,61L
3384
3385#define SN_setct_CapReqTBE "setct-CapReqTBE"
3386#define NID_setct_CapReqTBE 580
3387#define OBJ_setct_CapReqTBE OBJ_set_ctype,62L
3388
3389#define SN_setct_CapReqTBEX "setct-CapReqTBEX"
3390#define NID_setct_CapReqTBEX 581
3391#define OBJ_setct_CapReqTBEX OBJ_set_ctype,63L
3392
3393#define SN_setct_CapResTBE "setct-CapResTBE"
3394#define NID_setct_CapResTBE 582
3395#define OBJ_setct_CapResTBE OBJ_set_ctype,64L
3396
3397#define SN_setct_CapRevReqTBE "setct-CapRevReqTBE"
3398#define NID_setct_CapRevReqTBE 583
3399#define OBJ_setct_CapRevReqTBE OBJ_set_ctype,65L
3400
3401#define SN_setct_CapRevReqTBEX "setct-CapRevReqTBEX"
3402#define NID_setct_CapRevReqTBEX 584
3403#define OBJ_setct_CapRevReqTBEX OBJ_set_ctype,66L
3404
3405#define SN_setct_CapRevResTBE "setct-CapRevResTBE"
3406#define NID_setct_CapRevResTBE 585
3407#define OBJ_setct_CapRevResTBE OBJ_set_ctype,67L
3408
3409#define SN_setct_CredReqTBE "setct-CredReqTBE"
3410#define NID_setct_CredReqTBE 586
3411#define OBJ_setct_CredReqTBE OBJ_set_ctype,68L
3412
3413#define SN_setct_CredReqTBEX "setct-CredReqTBEX"
3414#define NID_setct_CredReqTBEX 587
3415#define OBJ_setct_CredReqTBEX OBJ_set_ctype,69L
3416
3417#define SN_setct_CredResTBE "setct-CredResTBE"
3418#define NID_setct_CredResTBE 588
3419#define OBJ_setct_CredResTBE OBJ_set_ctype,70L
3420
3421#define SN_setct_CredRevReqTBE "setct-CredRevReqTBE"
3422#define NID_setct_CredRevReqTBE 589
3423#define OBJ_setct_CredRevReqTBE OBJ_set_ctype,71L
3424
3425#define SN_setct_CredRevReqTBEX "setct-CredRevReqTBEX"
3426#define NID_setct_CredRevReqTBEX 590
3427#define OBJ_setct_CredRevReqTBEX OBJ_set_ctype,72L
3428
3429#define SN_setct_CredRevResTBE "setct-CredRevResTBE"
3430#define NID_setct_CredRevResTBE 591
3431#define OBJ_setct_CredRevResTBE OBJ_set_ctype,73L
3432
3433#define SN_setct_BatchAdminReqTBE "setct-BatchAdminReqTBE"
3434#define NID_setct_BatchAdminReqTBE 592
3435#define OBJ_setct_BatchAdminReqTBE OBJ_set_ctype,74L
3436
3437#define SN_setct_BatchAdminResTBE "setct-BatchAdminResTBE"
3438#define NID_setct_BatchAdminResTBE 593
3439#define OBJ_setct_BatchAdminResTBE OBJ_set_ctype,75L
3440
3441#define SN_setct_RegFormReqTBE "setct-RegFormReqTBE"
3442#define NID_setct_RegFormReqTBE 594
3443#define OBJ_setct_RegFormReqTBE OBJ_set_ctype,76L
3444
3445#define SN_setct_CertReqTBE "setct-CertReqTBE"
3446#define NID_setct_CertReqTBE 595
3447#define OBJ_setct_CertReqTBE OBJ_set_ctype,77L
3448
3449#define SN_setct_CertReqTBEX "setct-CertReqTBEX"
3450#define NID_setct_CertReqTBEX 596
3451#define OBJ_setct_CertReqTBEX OBJ_set_ctype,78L
3452
3453#define SN_setct_CertResTBE "setct-CertResTBE"
3454#define NID_setct_CertResTBE 597
3455#define OBJ_setct_CertResTBE OBJ_set_ctype,79L
3456
3457#define SN_setct_CRLNotificationTBS "setct-CRLNotificationTBS"
3458#define NID_setct_CRLNotificationTBS 598
3459#define OBJ_setct_CRLNotificationTBS OBJ_set_ctype,80L
3460
3461#define SN_setct_CRLNotificationResTBS "setct-CRLNotificationResTBS"
3462#define NID_setct_CRLNotificationResTBS 599
3463#define OBJ_setct_CRLNotificationResTBS OBJ_set_ctype,81L
3464
3465#define SN_setct_BCIDistributionTBS "setct-BCIDistributionTBS"
3466#define NID_setct_BCIDistributionTBS 600
3467#define OBJ_setct_BCIDistributionTBS OBJ_set_ctype,82L
3468
3469#define SN_setext_genCrypt "setext-genCrypt"
3470#define LN_setext_genCrypt "generic cryptogram"
3471#define NID_setext_genCrypt 601
3472#define OBJ_setext_genCrypt OBJ_set_msgExt,1L
3473
3474#define SN_setext_miAuth "setext-miAuth"
3475#define LN_setext_miAuth "merchant initiated auth"
3476#define NID_setext_miAuth 602
3477#define OBJ_setext_miAuth OBJ_set_msgExt,3L
3478
3479#define SN_setext_pinSecure "setext-pinSecure"
3480#define NID_setext_pinSecure 603
3481#define OBJ_setext_pinSecure OBJ_set_msgExt,4L
3482
3483#define SN_setext_pinAny "setext-pinAny"
3484#define NID_setext_pinAny 604
3485#define OBJ_setext_pinAny OBJ_set_msgExt,5L
3486
3487#define SN_setext_track2 "setext-track2"
3488#define NID_setext_track2 605
3489#define OBJ_setext_track2 OBJ_set_msgExt,7L
3490
3491#define SN_setext_cv "setext-cv"
3492#define LN_setext_cv "additional verification"
3493#define NID_setext_cv 606
3494#define OBJ_setext_cv OBJ_set_msgExt,8L
3495
3496#define SN_set_policy_root "set-policy-root"
3497#define NID_set_policy_root 607
3498#define OBJ_set_policy_root OBJ_set_policy,0L
3499
3500#define SN_setCext_hashedRoot "setCext-hashedRoot"
3501#define NID_setCext_hashedRoot 608
3502#define OBJ_setCext_hashedRoot OBJ_set_certExt,0L
3503
3504#define SN_setCext_certType "setCext-certType"
3505#define NID_setCext_certType 609
3506#define OBJ_setCext_certType OBJ_set_certExt,1L
3507
3508#define SN_setCext_merchData "setCext-merchData"
3509#define NID_setCext_merchData 610
3510#define OBJ_setCext_merchData OBJ_set_certExt,2L
3511
3512#define SN_setCext_cCertRequired "setCext-cCertRequired"
3513#define NID_setCext_cCertRequired 611
3514#define OBJ_setCext_cCertRequired OBJ_set_certExt,3L
3515
3516#define SN_setCext_tunneling "setCext-tunneling"
3517#define NID_setCext_tunneling 612
3518#define OBJ_setCext_tunneling OBJ_set_certExt,4L
3519
3520#define SN_setCext_setExt "setCext-setExt"
3521#define NID_setCext_setExt 613
3522#define OBJ_setCext_setExt OBJ_set_certExt,5L
3523
3524#define SN_setCext_setQualf "setCext-setQualf"
3525#define NID_setCext_setQualf 614
3526#define OBJ_setCext_setQualf OBJ_set_certExt,6L
3527
3528#define SN_setCext_PGWYcapabilities "setCext-PGWYcapabilities"
3529#define NID_setCext_PGWYcapabilities 615
3530#define OBJ_setCext_PGWYcapabilities OBJ_set_certExt,7L
3531
3532#define SN_setCext_TokenIdentifier "setCext-TokenIdentifier"
3533#define NID_setCext_TokenIdentifier 616
3534#define OBJ_setCext_TokenIdentifier OBJ_set_certExt,8L
3535
3536#define SN_setCext_Track2Data "setCext-Track2Data"
3537#define NID_setCext_Track2Data 617
3538#define OBJ_setCext_Track2Data OBJ_set_certExt,9L
3539
3540#define SN_setCext_TokenType "setCext-TokenType"
3541#define NID_setCext_TokenType 618
3542#define OBJ_setCext_TokenType OBJ_set_certExt,10L
3543
3544#define SN_setCext_IssuerCapabilities "setCext-IssuerCapabilities"
3545#define NID_setCext_IssuerCapabilities 619
3546#define OBJ_setCext_IssuerCapabilities OBJ_set_certExt,11L
3547
3548#define SN_setAttr_Cert "setAttr-Cert"
3549#define NID_setAttr_Cert 620
3550#define OBJ_setAttr_Cert OBJ_set_attr,0L
3551
3552#define SN_setAttr_PGWYcap "setAttr-PGWYcap"
3553#define LN_setAttr_PGWYcap "payment gateway capabilities"
3554#define NID_setAttr_PGWYcap 621
3555#define OBJ_setAttr_PGWYcap OBJ_set_attr,1L
3556
3557#define SN_setAttr_TokenType "setAttr-TokenType"
3558#define NID_setAttr_TokenType 622
3559#define OBJ_setAttr_TokenType OBJ_set_attr,2L
3560
3561#define SN_setAttr_IssCap "setAttr-IssCap"
3562#define LN_setAttr_IssCap "issuer capabilities"
3563#define NID_setAttr_IssCap 623
3564#define OBJ_setAttr_IssCap OBJ_set_attr,3L
3565
3566#define SN_set_rootKeyThumb "set-rootKeyThumb"
3567#define NID_set_rootKeyThumb 624
3568#define OBJ_set_rootKeyThumb OBJ_setAttr_Cert,0L
3569
3570#define SN_set_addPolicy "set-addPolicy"
3571#define NID_set_addPolicy 625
3572#define OBJ_set_addPolicy OBJ_setAttr_Cert,1L
3573
3574#define SN_setAttr_Token_EMV "setAttr-Token-EMV"
3575#define NID_setAttr_Token_EMV 626
3576#define OBJ_setAttr_Token_EMV OBJ_setAttr_TokenType,1L
3577
3578#define SN_setAttr_Token_B0Prime "setAttr-Token-B0Prime"
3579#define NID_setAttr_Token_B0Prime 627
3580#define OBJ_setAttr_Token_B0Prime OBJ_setAttr_TokenType,2L
3581
3582#define SN_setAttr_IssCap_CVM "setAttr-IssCap-CVM"
3583#define NID_setAttr_IssCap_CVM 628
3584#define OBJ_setAttr_IssCap_CVM OBJ_setAttr_IssCap,3L
3585
3586#define SN_setAttr_IssCap_T2 "setAttr-IssCap-T2"
3587#define NID_setAttr_IssCap_T2 629
3588#define OBJ_setAttr_IssCap_T2 OBJ_setAttr_IssCap,4L
3589
3590#define SN_setAttr_IssCap_Sig "setAttr-IssCap-Sig"
3591#define NID_setAttr_IssCap_Sig 630
3592#define OBJ_setAttr_IssCap_Sig OBJ_setAttr_IssCap,5L
3593
3594#define SN_setAttr_GenCryptgrm "setAttr-GenCryptgrm"
3595#define LN_setAttr_GenCryptgrm "generate cryptogram"
3596#define NID_setAttr_GenCryptgrm 631
3597#define OBJ_setAttr_GenCryptgrm OBJ_setAttr_IssCap_CVM,1L
3598
3599#define SN_setAttr_T2Enc "setAttr-T2Enc"
3600#define LN_setAttr_T2Enc "encrypted track 2"
3601#define NID_setAttr_T2Enc 632
3602#define OBJ_setAttr_T2Enc OBJ_setAttr_IssCap_T2,1L
3603
3604#define SN_setAttr_T2cleartxt "setAttr-T2cleartxt"
3605#define LN_setAttr_T2cleartxt "cleartext track 2"
3606#define NID_setAttr_T2cleartxt 633
3607#define OBJ_setAttr_T2cleartxt OBJ_setAttr_IssCap_T2,2L
3608
3609#define SN_setAttr_TokICCsig "setAttr-TokICCsig"
3610#define LN_setAttr_TokICCsig "ICC or token signature"
3611#define NID_setAttr_TokICCsig 634
3612#define OBJ_setAttr_TokICCsig OBJ_setAttr_IssCap_Sig,1L
3613
3614#define SN_setAttr_SecDevSig "setAttr-SecDevSig"
3615#define LN_setAttr_SecDevSig "secure device signature"
3616#define NID_setAttr_SecDevSig 635
3617#define OBJ_setAttr_SecDevSig OBJ_setAttr_IssCap_Sig,2L
3618
3619#define SN_set_brand_IATA_ATA "set-brand-IATA-ATA"
3620#define NID_set_brand_IATA_ATA 636
3621#define OBJ_set_brand_IATA_ATA OBJ_set_brand,1L
3622
3623#define SN_set_brand_Diners "set-brand-Diners"
3624#define NID_set_brand_Diners 637
3625#define OBJ_set_brand_Diners OBJ_set_brand,30L
3626
3627#define SN_set_brand_AmericanExpress "set-brand-AmericanExpress"
3628#define NID_set_brand_AmericanExpress 638
3629#define OBJ_set_brand_AmericanExpress OBJ_set_brand,34L
3630
3631#define SN_set_brand_JCB "set-brand-JCB"
3632#define NID_set_brand_JCB 639
3633#define OBJ_set_brand_JCB OBJ_set_brand,35L
3634
3635#define SN_set_brand_Visa "set-brand-Visa"
3636#define NID_set_brand_Visa 640
3637#define OBJ_set_brand_Visa OBJ_set_brand,4L
3638
3639#define SN_set_brand_MasterCard "set-brand-MasterCard"
3640#define NID_set_brand_MasterCard 641
3641#define OBJ_set_brand_MasterCard OBJ_set_brand,5L
3642
3643#define SN_set_brand_Novus "set-brand-Novus"
3644#define NID_set_brand_Novus 642
3645#define OBJ_set_brand_Novus OBJ_set_brand,6011L
3646
3647#define SN_des_cdmf "DES-CDMF"
3648#define LN_des_cdmf "des-cdmf"
3649#define NID_des_cdmf 643
3650#define OBJ_des_cdmf OBJ_rsadsi,3L,10L
3651
3652#define SN_rsaOAEPEncryptionSET "rsaOAEPEncryptionSET"
3653#define NID_rsaOAEPEncryptionSET 644
3654#define OBJ_rsaOAEPEncryptionSET OBJ_rsadsi,1L,1L,6L
3655
3656#define SN_ipsec3 "Oakley-EC2N-3"
3657#define LN_ipsec3 "ipsec3"
3658#define NID_ipsec3 749
3659
3660#define SN_ipsec4 "Oakley-EC2N-4"
3661#define LN_ipsec4 "ipsec4"
3662#define NID_ipsec4 750
3663
3664#define SN_whirlpool "whirlpool"
3665#define NID_whirlpool 804
3666#define OBJ_whirlpool OBJ_iso,0L,10118L,3L,0L,55L
3667
3668#define SN_cryptopro "cryptopro"
3669#define NID_cryptopro 805
3670#define OBJ_cryptopro OBJ_member_body,643L,2L,2L
3671
3672#define SN_cryptocom "cryptocom"
3673#define NID_cryptocom 806
3674#define OBJ_cryptocom OBJ_member_body,643L,2L,9L
3675
3676#define SN_id_GostR3411_94_with_GostR3410_2001 "id-GostR3411-94-with-GostR3410-2001"
3677#define LN_id_GostR3411_94_with_GostR3410_2001 "GOST R 34.11-94 with GOST R 34.10-2001"
3678#define NID_id_GostR3411_94_with_GostR3410_2001 807
3679#define OBJ_id_GostR3411_94_with_GostR3410_2001 OBJ_cryptopro,3L
3680
3681#define SN_id_GostR3411_94_with_GostR3410_94 "id-GostR3411-94-with-GostR3410-94"
3682#define LN_id_GostR3411_94_with_GostR3410_94 "GOST R 34.11-94 with GOST R 34.10-94"
3683#define NID_id_GostR3411_94_with_GostR3410_94 808
3684#define OBJ_id_GostR3411_94_with_GostR3410_94 OBJ_cryptopro,4L
3685
3686#define SN_id_GostR3411_94 "md_gost94"
3687#define LN_id_GostR3411_94 "GOST R 34.11-94"
3688#define NID_id_GostR3411_94 809
3689#define OBJ_id_GostR3411_94 OBJ_cryptopro,9L
3690
3691#define SN_id_HMACGostR3411_94 "id-HMACGostR3411-94"
3692#define LN_id_HMACGostR3411_94 "HMAC GOST 34.11-94"
3693#define NID_id_HMACGostR3411_94 810
3694#define OBJ_id_HMACGostR3411_94 OBJ_cryptopro,10L
3695
3696#define SN_id_GostR3410_2001 "gost2001"
3697#define LN_id_GostR3410_2001 "GOST R 34.10-2001"
3698#define NID_id_GostR3410_2001 811
3699#define OBJ_id_GostR3410_2001 OBJ_cryptopro,19L
3700
3701#define SN_id_GostR3410_94 "gost94"
3702#define LN_id_GostR3410_94 "GOST R 34.10-94"
3703#define NID_id_GostR3410_94 812
3704#define OBJ_id_GostR3410_94 OBJ_cryptopro,20L
3705
3706#define SN_id_Gost28147_89 "gost89"
3707#define LN_id_Gost28147_89 "GOST 28147-89"
3708#define NID_id_Gost28147_89 813
3709#define OBJ_id_Gost28147_89 OBJ_cryptopro,21L
3710
3711#define SN_gost89_cnt "gost89-cnt"
3712#define NID_gost89_cnt 814
3713
3714#define SN_id_Gost28147_89_MAC "gost-mac"
3715#define LN_id_Gost28147_89_MAC "GOST 28147-89 MAC"
3716#define NID_id_Gost28147_89_MAC 815
3717#define OBJ_id_Gost28147_89_MAC OBJ_cryptopro,22L
3718
3719#define SN_id_GostR3411_94_prf "prf-gostr3411-94"
3720#define LN_id_GostR3411_94_prf "GOST R 34.11-94 PRF"
3721#define NID_id_GostR3411_94_prf 816
3722#define OBJ_id_GostR3411_94_prf OBJ_cryptopro,23L
3723
3724#define SN_id_GostR3410_2001DH "id-GostR3410-2001DH"
3725#define LN_id_GostR3410_2001DH "GOST R 34.10-2001 DH"
3726#define NID_id_GostR3410_2001DH 817
3727#define OBJ_id_GostR3410_2001DH OBJ_cryptopro,98L
3728
3729#define SN_id_GostR3410_94DH "id-GostR3410-94DH"
3730#define LN_id_GostR3410_94DH "GOST R 34.10-94 DH"
3731#define NID_id_GostR3410_94DH 818
3732#define OBJ_id_GostR3410_94DH OBJ_cryptopro,99L
3733
3734#define SN_id_Gost28147_89_CryptoPro_KeyMeshing "id-Gost28147-89-CryptoPro-KeyMeshing"
3735#define NID_id_Gost28147_89_CryptoPro_KeyMeshing 819
3736#define OBJ_id_Gost28147_89_CryptoPro_KeyMeshing OBJ_cryptopro,14L,1L
3737
3738#define SN_id_Gost28147_89_None_KeyMeshing "id-Gost28147-89-None-KeyMeshing"
3739#define NID_id_Gost28147_89_None_KeyMeshing 820
3740#define OBJ_id_Gost28147_89_None_KeyMeshing OBJ_cryptopro,14L,0L
3741
3742#define SN_id_GostR3411_94_TestParamSet "id-GostR3411-94-TestParamSet"
3743#define NID_id_GostR3411_94_TestParamSet 821
3744#define OBJ_id_GostR3411_94_TestParamSet OBJ_cryptopro,30L,0L
3745
3746#define SN_id_GostR3411_94_CryptoProParamSet "id-GostR3411-94-CryptoProParamSet"
3747#define NID_id_GostR3411_94_CryptoProParamSet 822
3748#define OBJ_id_GostR3411_94_CryptoProParamSet OBJ_cryptopro,30L,1L
3749
3750#define SN_id_Gost28147_89_TestParamSet "id-Gost28147-89-TestParamSet"
3751#define NID_id_Gost28147_89_TestParamSet 823
3752#define OBJ_id_Gost28147_89_TestParamSet OBJ_cryptopro,31L,0L
3753
3754#define SN_id_Gost28147_89_CryptoPro_A_ParamSet "id-Gost28147-89-CryptoPro-A-ParamSet"
3755#define NID_id_Gost28147_89_CryptoPro_A_ParamSet 824
3756#define OBJ_id_Gost28147_89_CryptoPro_A_ParamSet OBJ_cryptopro,31L,1L
3757
3758#define SN_id_Gost28147_89_CryptoPro_B_ParamSet "id-Gost28147-89-CryptoPro-B-ParamSet"
3759#define NID_id_Gost28147_89_CryptoPro_B_ParamSet 825
3760#define OBJ_id_Gost28147_89_CryptoPro_B_ParamSet OBJ_cryptopro,31L,2L
3761
3762#define SN_id_Gost28147_89_CryptoPro_C_ParamSet "id-Gost28147-89-CryptoPro-C-ParamSet"
3763#define NID_id_Gost28147_89_CryptoPro_C_ParamSet 826
3764#define OBJ_id_Gost28147_89_CryptoPro_C_ParamSet OBJ_cryptopro,31L,3L
3765
3766#define SN_id_Gost28147_89_CryptoPro_D_ParamSet "id-Gost28147-89-CryptoPro-D-ParamSet"
3767#define NID_id_Gost28147_89_CryptoPro_D_ParamSet 827
3768#define OBJ_id_Gost28147_89_CryptoPro_D_ParamSet OBJ_cryptopro,31L,4L
3769
3770#define SN_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet"
3771#define NID_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet 828
3772#define OBJ_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet OBJ_cryptopro,31L,5L
3773
3774#define SN_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet"
3775#define NID_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet 829
3776#define OBJ_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet OBJ_cryptopro,31L,6L
3777
3778#define SN_id_Gost28147_89_CryptoPro_RIC_1_ParamSet "id-Gost28147-89-CryptoPro-RIC-1-ParamSet"
3779#define NID_id_Gost28147_89_CryptoPro_RIC_1_ParamSet 830
3780#define OBJ_id_Gost28147_89_CryptoPro_RIC_1_ParamSet OBJ_cryptopro,31L,7L
3781
3782#define SN_id_GostR3410_94_TestParamSet "id-GostR3410-94-TestParamSet"
3783#define NID_id_GostR3410_94_TestParamSet 831
3784#define OBJ_id_GostR3410_94_TestParamSet OBJ_cryptopro,32L,0L
3785
3786#define SN_id_GostR3410_94_CryptoPro_A_ParamSet "id-GostR3410-94-CryptoPro-A-ParamSet"
3787#define NID_id_GostR3410_94_CryptoPro_A_ParamSet 832
3788#define OBJ_id_GostR3410_94_CryptoPro_A_ParamSet OBJ_cryptopro,32L,2L
3789
3790#define SN_id_GostR3410_94_CryptoPro_B_ParamSet "id-GostR3410-94-CryptoPro-B-ParamSet"
3791#define NID_id_GostR3410_94_CryptoPro_B_ParamSet 833
3792#define OBJ_id_GostR3410_94_CryptoPro_B_ParamSet OBJ_cryptopro,32L,3L
3793
3794#define SN_id_GostR3410_94_CryptoPro_C_ParamSet "id-GostR3410-94-CryptoPro-C-ParamSet"
3795#define NID_id_GostR3410_94_CryptoPro_C_ParamSet 834
3796#define OBJ_id_GostR3410_94_CryptoPro_C_ParamSet OBJ_cryptopro,32L,4L
3797
3798#define SN_id_GostR3410_94_CryptoPro_D_ParamSet "id-GostR3410-94-CryptoPro-D-ParamSet"
3799#define NID_id_GostR3410_94_CryptoPro_D_ParamSet 835
3800#define OBJ_id_GostR3410_94_CryptoPro_D_ParamSet OBJ_cryptopro,32L,5L
3801
3802#define SN_id_GostR3410_94_CryptoPro_XchA_ParamSet "id-GostR3410-94-CryptoPro-XchA-ParamSet"
3803#define NID_id_GostR3410_94_CryptoPro_XchA_ParamSet 836
3804#define OBJ_id_GostR3410_94_CryptoPro_XchA_ParamSet OBJ_cryptopro,33L,1L
3805
3806#define SN_id_GostR3410_94_CryptoPro_XchB_ParamSet "id-GostR3410-94-CryptoPro-XchB-ParamSet"
3807#define NID_id_GostR3410_94_CryptoPro_XchB_ParamSet 837
3808#define OBJ_id_GostR3410_94_CryptoPro_XchB_ParamSet OBJ_cryptopro,33L,2L
3809
3810#define SN_id_GostR3410_94_CryptoPro_XchC_ParamSet "id-GostR3410-94-CryptoPro-XchC-ParamSet"
3811#define NID_id_GostR3410_94_CryptoPro_XchC_ParamSet 838
3812#define OBJ_id_GostR3410_94_CryptoPro_XchC_ParamSet OBJ_cryptopro,33L,3L
3813
3814#define SN_id_GostR3410_2001_TestParamSet "id-GostR3410-2001-TestParamSet"
3815#define NID_id_GostR3410_2001_TestParamSet 839
3816#define OBJ_id_GostR3410_2001_TestParamSet OBJ_cryptopro,35L,0L
3817
3818#define SN_id_GostR3410_2001_CryptoPro_A_ParamSet "id-GostR3410-2001-CryptoPro-A-ParamSet"
3819#define NID_id_GostR3410_2001_CryptoPro_A_ParamSet 840
3820#define OBJ_id_GostR3410_2001_CryptoPro_A_ParamSet OBJ_cryptopro,35L,1L
3821
3822#define SN_id_GostR3410_2001_CryptoPro_B_ParamSet "id-GostR3410-2001-CryptoPro-B-ParamSet"
3823#define NID_id_GostR3410_2001_CryptoPro_B_ParamSet 841
3824#define OBJ_id_GostR3410_2001_CryptoPro_B_ParamSet OBJ_cryptopro,35L,2L
3825
3826#define SN_id_GostR3410_2001_CryptoPro_C_ParamSet "id-GostR3410-2001-CryptoPro-C-ParamSet"
3827#define NID_id_GostR3410_2001_CryptoPro_C_ParamSet 842
3828#define OBJ_id_GostR3410_2001_CryptoPro_C_ParamSet OBJ_cryptopro,35L,3L
3829
3830#define SN_id_GostR3410_2001_CryptoPro_XchA_ParamSet "id-GostR3410-2001-CryptoPro-XchA-ParamSet"
3831#define NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet 843
3832#define OBJ_id_GostR3410_2001_CryptoPro_XchA_ParamSet OBJ_cryptopro,36L,0L
3833
3834#define SN_id_GostR3410_2001_CryptoPro_XchB_ParamSet "id-GostR3410-2001-CryptoPro-XchB-ParamSet"
3835#define NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet 844
3836#define OBJ_id_GostR3410_2001_CryptoPro_XchB_ParamSet OBJ_cryptopro,36L,1L
3837
3838#define SN_id_GostR3410_94_a "id-GostR3410-94-a"
3839#define NID_id_GostR3410_94_a 845
3840#define OBJ_id_GostR3410_94_a OBJ_id_GostR3410_94,1L
3841
3842#define SN_id_GostR3410_94_aBis "id-GostR3410-94-aBis"
3843#define NID_id_GostR3410_94_aBis 846
3844#define OBJ_id_GostR3410_94_aBis OBJ_id_GostR3410_94,2L
3845
3846#define SN_id_GostR3410_94_b "id-GostR3410-94-b"
3847#define NID_id_GostR3410_94_b 847
3848#define OBJ_id_GostR3410_94_b OBJ_id_GostR3410_94,3L
3849
3850#define SN_id_GostR3410_94_bBis "id-GostR3410-94-bBis"
3851#define NID_id_GostR3410_94_bBis 848
3852#define OBJ_id_GostR3410_94_bBis OBJ_id_GostR3410_94,4L
3853
3854#define SN_id_Gost28147_89_cc "id-Gost28147-89-cc"
3855#define LN_id_Gost28147_89_cc "GOST 28147-89 Cryptocom ParamSet"
3856#define NID_id_Gost28147_89_cc 849
3857#define OBJ_id_Gost28147_89_cc OBJ_cryptocom,1L,6L,1L
3858
3859#define SN_id_GostR3410_94_cc "gost94cc"
3860#define LN_id_GostR3410_94_cc "GOST 34.10-94 Cryptocom"
3861#define NID_id_GostR3410_94_cc 850
3862#define OBJ_id_GostR3410_94_cc OBJ_cryptocom,1L,5L,3L
3863
3864#define SN_id_GostR3410_2001_cc "gost2001cc"
3865#define LN_id_GostR3410_2001_cc "GOST 34.10-2001 Cryptocom"
3866#define NID_id_GostR3410_2001_cc 851
3867#define OBJ_id_GostR3410_2001_cc OBJ_cryptocom,1L,5L,4L
3868
3869#define SN_id_GostR3411_94_with_GostR3410_94_cc "id-GostR3411-94-with-GostR3410-94-cc"
3870#define LN_id_GostR3411_94_with_GostR3410_94_cc "GOST R 34.11-94 with GOST R 34.10-94 Cryptocom"
3871#define NID_id_GostR3411_94_with_GostR3410_94_cc 852
3872#define OBJ_id_GostR3411_94_with_GostR3410_94_cc OBJ_cryptocom,1L,3L,3L
3873
3874#define SN_id_GostR3411_94_with_GostR3410_2001_cc "id-GostR3411-94-with-GostR3410-2001-cc"
3875#define LN_id_GostR3411_94_with_GostR3410_2001_cc "GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom"
3876#define NID_id_GostR3411_94_with_GostR3410_2001_cc 853
3877#define OBJ_id_GostR3411_94_with_GostR3410_2001_cc OBJ_cryptocom,1L,3L,4L
3878
3879#define SN_id_GostR3410_2001_ParamSet_cc "id-GostR3410-2001-ParamSet-cc"
3880#define LN_id_GostR3410_2001_ParamSet_cc "GOST R 3410-2001 Parameter Set Cryptocom"
3881#define NID_id_GostR3410_2001_ParamSet_cc 854
3882#define OBJ_id_GostR3410_2001_ParamSet_cc OBJ_cryptocom,1L,8L,1L
3883
3884#define SN_camellia_128_cbc "CAMELLIA-128-CBC"
3885#define LN_camellia_128_cbc "camellia-128-cbc"
3886#define NID_camellia_128_cbc 751
3887#define OBJ_camellia_128_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,2L
3888
3889#define SN_camellia_192_cbc "CAMELLIA-192-CBC"
3890#define LN_camellia_192_cbc "camellia-192-cbc"
3891#define NID_camellia_192_cbc 752
3892#define OBJ_camellia_192_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,3L
3893
3894#define SN_camellia_256_cbc "CAMELLIA-256-CBC"
3895#define LN_camellia_256_cbc "camellia-256-cbc"
3896#define NID_camellia_256_cbc 753
3897#define OBJ_camellia_256_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,4L
3898
3899#define SN_id_camellia128_wrap "id-camellia128-wrap"
3900#define NID_id_camellia128_wrap 907
3901#define OBJ_id_camellia128_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,2L
3902
3903#define SN_id_camellia192_wrap "id-camellia192-wrap"
3904#define NID_id_camellia192_wrap 908
3905#define OBJ_id_camellia192_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,3L
3906
3907#define SN_id_camellia256_wrap "id-camellia256-wrap"
3908#define NID_id_camellia256_wrap 909
3909#define OBJ_id_camellia256_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,4L
3910
3911#define OBJ_ntt_ds 0L,3L,4401L,5L
3912
3913#define OBJ_camellia OBJ_ntt_ds,3L,1L,9L
3914
3915#define SN_camellia_128_ecb "CAMELLIA-128-ECB"
3916#define LN_camellia_128_ecb "camellia-128-ecb"
3917#define NID_camellia_128_ecb 754
3918#define OBJ_camellia_128_ecb OBJ_camellia,1L
3919
3920#define SN_camellia_128_ofb128 "CAMELLIA-128-OFB"
3921#define LN_camellia_128_ofb128 "camellia-128-ofb"
3922#define NID_camellia_128_ofb128 766
3923#define OBJ_camellia_128_ofb128 OBJ_camellia,3L
3924
3925#define SN_camellia_128_cfb128 "CAMELLIA-128-CFB"
3926#define LN_camellia_128_cfb128 "camellia-128-cfb"
3927#define NID_camellia_128_cfb128 757
3928#define OBJ_camellia_128_cfb128 OBJ_camellia,4L
3929
3930#define SN_camellia_192_ecb "CAMELLIA-192-ECB"
3931#define LN_camellia_192_ecb "camellia-192-ecb"
3932#define NID_camellia_192_ecb 755
3933#define OBJ_camellia_192_ecb OBJ_camellia,21L
3934
3935#define SN_camellia_192_ofb128 "CAMELLIA-192-OFB"
3936#define LN_camellia_192_ofb128 "camellia-192-ofb"
3937#define NID_camellia_192_ofb128 767
3938#define OBJ_camellia_192_ofb128 OBJ_camellia,23L
3939
3940#define SN_camellia_192_cfb128 "CAMELLIA-192-CFB"
3941#define LN_camellia_192_cfb128 "camellia-192-cfb"
3942#define NID_camellia_192_cfb128 758
3943#define OBJ_camellia_192_cfb128 OBJ_camellia,24L
3944
3945#define SN_camellia_256_ecb "CAMELLIA-256-ECB"
3946#define LN_camellia_256_ecb "camellia-256-ecb"
3947#define NID_camellia_256_ecb 756
3948#define OBJ_camellia_256_ecb OBJ_camellia,41L
3949
3950#define SN_camellia_256_ofb128 "CAMELLIA-256-OFB"
3951#define LN_camellia_256_ofb128 "camellia-256-ofb"
3952#define NID_camellia_256_ofb128 768
3953#define OBJ_camellia_256_ofb128 OBJ_camellia,43L
3954
3955#define SN_camellia_256_cfb128 "CAMELLIA-256-CFB"
3956#define LN_camellia_256_cfb128 "camellia-256-cfb"
3957#define NID_camellia_256_cfb128 759
3958#define OBJ_camellia_256_cfb128 OBJ_camellia,44L
3959
3960#define SN_camellia_128_cfb1 "CAMELLIA-128-CFB1"
3961#define LN_camellia_128_cfb1 "camellia-128-cfb1"
3962#define NID_camellia_128_cfb1 760
3963
3964#define SN_camellia_192_cfb1 "CAMELLIA-192-CFB1"
3965#define LN_camellia_192_cfb1 "camellia-192-cfb1"
3966#define NID_camellia_192_cfb1 761
3967
3968#define SN_camellia_256_cfb1 "CAMELLIA-256-CFB1"
3969#define LN_camellia_256_cfb1 "camellia-256-cfb1"
3970#define NID_camellia_256_cfb1 762
3971
3972#define SN_camellia_128_cfb8 "CAMELLIA-128-CFB8"
3973#define LN_camellia_128_cfb8 "camellia-128-cfb8"
3974#define NID_camellia_128_cfb8 763
3975
3976#define SN_camellia_192_cfb8 "CAMELLIA-192-CFB8"
3977#define LN_camellia_192_cfb8 "camellia-192-cfb8"
3978#define NID_camellia_192_cfb8 764
3979
3980#define SN_camellia_256_cfb8 "CAMELLIA-256-CFB8"
3981#define LN_camellia_256_cfb8 "camellia-256-cfb8"
3982#define NID_camellia_256_cfb8 765
3983
3984#define SN_kisa "KISA"
3985#define LN_kisa "kisa"
3986#define NID_kisa 773
3987#define OBJ_kisa OBJ_member_body,410L,200004L
3988
3989#define SN_seed_ecb "SEED-ECB"
3990#define LN_seed_ecb "seed-ecb"
3991#define NID_seed_ecb 776
3992#define OBJ_seed_ecb OBJ_kisa,1L,3L
3993
3994#define SN_seed_cbc "SEED-CBC"
3995#define LN_seed_cbc "seed-cbc"
3996#define NID_seed_cbc 777
3997#define OBJ_seed_cbc OBJ_kisa,1L,4L
3998
3999#define SN_seed_cfb128 "SEED-CFB"
4000#define LN_seed_cfb128 "seed-cfb"
4001#define NID_seed_cfb128 779
4002#define OBJ_seed_cfb128 OBJ_kisa,1L,5L
4003
4004#define SN_seed_ofb128 "SEED-OFB"
4005#define LN_seed_ofb128 "seed-ofb"
4006#define NID_seed_ofb128 778
4007#define OBJ_seed_ofb128 OBJ_kisa,1L,6L
4008
4009#define SN_hmac "HMAC"
4010#define LN_hmac "hmac"
4011#define NID_hmac 855
4012
4013#define SN_cmac "CMAC"
4014#define LN_cmac "cmac"
4015#define NID_cmac 894
4016
4017#define SN_rc4_hmac_md5 "RC4-HMAC-MD5"
4018#define LN_rc4_hmac_md5 "rc4-hmac-md5"
4019#define NID_rc4_hmac_md5 915
4020
4021#define SN_aes_128_cbc_hmac_sha1 "AES-128-CBC-HMAC-SHA1"
4022#define LN_aes_128_cbc_hmac_sha1 "aes-128-cbc-hmac-sha1"
4023#define NID_aes_128_cbc_hmac_sha1 916
4024
4025#define SN_aes_192_cbc_hmac_sha1 "AES-192-CBC-HMAC-SHA1"
4026#define LN_aes_192_cbc_hmac_sha1 "aes-192-cbc-hmac-sha1"
4027#define NID_aes_192_cbc_hmac_sha1 917
4028
4029#define SN_aes_256_cbc_hmac_sha1 "AES-256-CBC-HMAC-SHA1"
4030#define LN_aes_256_cbc_hmac_sha1 "aes-256-cbc-hmac-sha1"
4031#define NID_aes_256_cbc_hmac_sha1 918
4032
diff --git a/src/lib/libcrypto/objects/obj_mac.num b/src/lib/libcrypto/objects/obj_mac.num
new file mode 100644
index 0000000000..8c50aac27f
--- /dev/null
+++ b/src/lib/libcrypto/objects/obj_mac.num
@@ -0,0 +1,892 @@
1undef 0
2rsadsi 1
3pkcs 2
4md2 3
5md5 4
6rc4 5
7rsaEncryption 6
8md2WithRSAEncryption 7
9md5WithRSAEncryption 8
10pbeWithMD2AndDES_CBC 9
11pbeWithMD5AndDES_CBC 10
12X500 11
13X509 12
14commonName 13
15countryName 14
16localityName 15
17stateOrProvinceName 16
18organizationName 17
19organizationalUnitName 18
20rsa 19
21pkcs7 20
22pkcs7_data 21
23pkcs7_signed 22
24pkcs7_enveloped 23
25pkcs7_signedAndEnveloped 24
26pkcs7_digest 25
27pkcs7_encrypted 26
28pkcs3 27
29dhKeyAgreement 28
30des_ecb 29
31des_cfb64 30
32des_cbc 31
33des_ede_ecb 32
34des_ede3_ecb 33
35idea_cbc 34
36idea_cfb64 35
37idea_ecb 36
38rc2_cbc 37
39rc2_ecb 38
40rc2_cfb64 39
41rc2_ofb64 40
42sha 41
43shaWithRSAEncryption 42
44des_ede_cbc 43
45des_ede3_cbc 44
46des_ofb64 45
47idea_ofb64 46
48pkcs9 47
49pkcs9_emailAddress 48
50pkcs9_unstructuredName 49
51pkcs9_contentType 50
52pkcs9_messageDigest 51
53pkcs9_signingTime 52
54pkcs9_countersignature 53
55pkcs9_challengePassword 54
56pkcs9_unstructuredAddress 55
57pkcs9_extCertAttributes 56
58netscape 57
59netscape_cert_extension 58
60netscape_data_type 59
61des_ede_cfb64 60
62des_ede3_cfb64 61
63des_ede_ofb64 62
64des_ede3_ofb64 63
65sha1 64
66sha1WithRSAEncryption 65
67dsaWithSHA 66
68dsa_2 67
69pbeWithSHA1AndRC2_CBC 68
70id_pbkdf2 69
71dsaWithSHA1_2 70
72netscape_cert_type 71
73netscape_base_url 72
74netscape_revocation_url 73
75netscape_ca_revocation_url 74
76netscape_renewal_url 75
77netscape_ca_policy_url 76
78netscape_ssl_server_name 77
79netscape_comment 78
80netscape_cert_sequence 79
81desx_cbc 80
82id_ce 81
83subject_key_identifier 82
84key_usage 83
85private_key_usage_period 84
86subject_alt_name 85
87issuer_alt_name 86
88basic_constraints 87
89crl_number 88
90certificate_policies 89
91authority_key_identifier 90
92bf_cbc 91
93bf_ecb 92
94bf_cfb64 93
95bf_ofb64 94
96mdc2 95
97mdc2WithRSA 96
98rc4_40 97
99rc2_40_cbc 98
100givenName 99
101surname 100
102initials 101
103uniqueIdentifier 102
104crl_distribution_points 103
105md5WithRSA 104
106serialNumber 105
107title 106
108description 107
109cast5_cbc 108
110cast5_ecb 109
111cast5_cfb64 110
112cast5_ofb64 111
113pbeWithMD5AndCast5_CBC 112
114dsaWithSHA1 113
115md5_sha1 114
116sha1WithRSA 115
117dsa 116
118ripemd160 117
119ripemd160WithRSA 119
120rc5_cbc 120
121rc5_ecb 121
122rc5_cfb64 122
123rc5_ofb64 123
124rle_compression 124
125zlib_compression 125
126ext_key_usage 126
127id_pkix 127
128id_kp 128
129server_auth 129
130client_auth 130
131code_sign 131
132email_protect 132
133time_stamp 133
134ms_code_ind 134
135ms_code_com 135
136ms_ctl_sign 136
137ms_sgc 137
138ms_efs 138
139ns_sgc 139
140delta_crl 140
141crl_reason 141
142invalidity_date 142
143sxnet 143
144pbe_WithSHA1And128BitRC4 144
145pbe_WithSHA1And40BitRC4 145
146pbe_WithSHA1And3_Key_TripleDES_CBC 146
147pbe_WithSHA1And2_Key_TripleDES_CBC 147
148pbe_WithSHA1And128BitRC2_CBC 148
149pbe_WithSHA1And40BitRC2_CBC 149
150keyBag 150
151pkcs8ShroudedKeyBag 151
152certBag 152
153crlBag 153
154secretBag 154
155safeContentsBag 155
156friendlyName 156
157localKeyID 157
158x509Certificate 158
159sdsiCertificate 159
160x509Crl 160
161pbes2 161
162pbmac1 162
163hmacWithSHA1 163
164id_qt_cps 164
165id_qt_unotice 165
166rc2_64_cbc 166
167SMIMECapabilities 167
168pbeWithMD2AndRC2_CBC 168
169pbeWithMD5AndRC2_CBC 169
170pbeWithSHA1AndDES_CBC 170
171ms_ext_req 171
172ext_req 172
173name 173
174dnQualifier 174
175id_pe 175
176id_ad 176
177info_access 177
178ad_OCSP 178
179ad_ca_issuers 179
180OCSP_sign 180
181iso 181
182member_body 182
183ISO_US 183
184X9_57 184
185X9cm 185
186pkcs1 186
187pkcs5 187
188SMIME 188
189id_smime_mod 189
190id_smime_ct 190
191id_smime_aa 191
192id_smime_alg 192
193id_smime_cd 193
194id_smime_spq 194
195id_smime_cti 195
196id_smime_mod_cms 196
197id_smime_mod_ess 197
198id_smime_mod_oid 198
199id_smime_mod_msg_v3 199
200id_smime_mod_ets_eSignature_88 200
201id_smime_mod_ets_eSignature_97 201
202id_smime_mod_ets_eSigPolicy_88 202
203id_smime_mod_ets_eSigPolicy_97 203
204id_smime_ct_receipt 204
205id_smime_ct_authData 205
206id_smime_ct_publishCert 206
207id_smime_ct_TSTInfo 207
208id_smime_ct_TDTInfo 208
209id_smime_ct_contentInfo 209
210id_smime_ct_DVCSRequestData 210
211id_smime_ct_DVCSResponseData 211
212id_smime_aa_receiptRequest 212
213id_smime_aa_securityLabel 213
214id_smime_aa_mlExpandHistory 214
215id_smime_aa_contentHint 215
216id_smime_aa_msgSigDigest 216
217id_smime_aa_encapContentType 217
218id_smime_aa_contentIdentifier 218
219id_smime_aa_macValue 219
220id_smime_aa_equivalentLabels 220
221id_smime_aa_contentReference 221
222id_smime_aa_encrypKeyPref 222
223id_smime_aa_signingCertificate 223
224id_smime_aa_smimeEncryptCerts 224
225id_smime_aa_timeStampToken 225
226id_smime_aa_ets_sigPolicyId 226
227id_smime_aa_ets_commitmentType 227
228id_smime_aa_ets_signerLocation 228
229id_smime_aa_ets_signerAttr 229
230id_smime_aa_ets_otherSigCert 230
231id_smime_aa_ets_contentTimestamp 231
232id_smime_aa_ets_CertificateRefs 232
233id_smime_aa_ets_RevocationRefs 233
234id_smime_aa_ets_certValues 234
235id_smime_aa_ets_revocationValues 235
236id_smime_aa_ets_escTimeStamp 236
237id_smime_aa_ets_certCRLTimestamp 237
238id_smime_aa_ets_archiveTimeStamp 238
239id_smime_aa_signatureType 239
240id_smime_aa_dvcs_dvc 240
241id_smime_alg_ESDHwith3DES 241
242id_smime_alg_ESDHwithRC2 242
243id_smime_alg_3DESwrap 243
244id_smime_alg_RC2wrap 244
245id_smime_alg_ESDH 245
246id_smime_alg_CMS3DESwrap 246
247id_smime_alg_CMSRC2wrap 247
248id_smime_cd_ldap 248
249id_smime_spq_ets_sqt_uri 249
250id_smime_spq_ets_sqt_unotice 250
251id_smime_cti_ets_proofOfOrigin 251
252id_smime_cti_ets_proofOfReceipt 252
253id_smime_cti_ets_proofOfDelivery 253
254id_smime_cti_ets_proofOfSender 254
255id_smime_cti_ets_proofOfApproval 255
256id_smime_cti_ets_proofOfCreation 256
257md4 257
258id_pkix_mod 258
259id_qt 259
260id_it 260
261id_pkip 261
262id_alg 262
263id_cmc 263
264id_on 264
265id_pda 265
266id_aca 266
267id_qcs 267
268id_cct 268
269id_pkix1_explicit_88 269
270id_pkix1_implicit_88 270
271id_pkix1_explicit_93 271
272id_pkix1_implicit_93 272
273id_mod_crmf 273
274id_mod_cmc 274
275id_mod_kea_profile_88 275
276id_mod_kea_profile_93 276
277id_mod_cmp 277
278id_mod_qualified_cert_88 278
279id_mod_qualified_cert_93 279
280id_mod_attribute_cert 280
281id_mod_timestamp_protocol 281
282id_mod_ocsp 282
283id_mod_dvcs 283
284id_mod_cmp2000 284
285biometricInfo 285
286qcStatements 286
287ac_auditEntity 287
288ac_targeting 288
289aaControls 289
290sbgp_ipAddrBlock 290
291sbgp_autonomousSysNum 291
292sbgp_routerIdentifier 292
293textNotice 293
294ipsecEndSystem 294
295ipsecTunnel 295
296ipsecUser 296
297dvcs 297
298id_it_caProtEncCert 298
299id_it_signKeyPairTypes 299
300id_it_encKeyPairTypes 300
301id_it_preferredSymmAlg 301
302id_it_caKeyUpdateInfo 302
303id_it_currentCRL 303
304id_it_unsupportedOIDs 304
305id_it_subscriptionRequest 305
306id_it_subscriptionResponse 306
307id_it_keyPairParamReq 307
308id_it_keyPairParamRep 308
309id_it_revPassphrase 309
310id_it_implicitConfirm 310
311id_it_confirmWaitTime 311
312id_it_origPKIMessage 312
313id_regCtrl 313
314id_regInfo 314
315id_regCtrl_regToken 315
316id_regCtrl_authenticator 316
317id_regCtrl_pkiPublicationInfo 317
318id_regCtrl_pkiArchiveOptions 318
319id_regCtrl_oldCertID 319
320id_regCtrl_protocolEncrKey 320
321id_regInfo_utf8Pairs 321
322id_regInfo_certReq 322
323id_alg_des40 323
324id_alg_noSignature 324
325id_alg_dh_sig_hmac_sha1 325
326id_alg_dh_pop 326
327id_cmc_statusInfo 327
328id_cmc_identification 328
329id_cmc_identityProof 329
330id_cmc_dataReturn 330
331id_cmc_transactionId 331
332id_cmc_senderNonce 332
333id_cmc_recipientNonce 333
334id_cmc_addExtensions 334
335id_cmc_encryptedPOP 335
336id_cmc_decryptedPOP 336
337id_cmc_lraPOPWitness 337
338id_cmc_getCert 338
339id_cmc_getCRL 339
340id_cmc_revokeRequest 340
341id_cmc_regInfo 341
342id_cmc_responseInfo 342
343id_cmc_queryPending 343
344id_cmc_popLinkRandom 344
345id_cmc_popLinkWitness 345
346id_cmc_confirmCertAcceptance 346
347id_on_personalData 347
348id_pda_dateOfBirth 348
349id_pda_placeOfBirth 349
350id_pda_pseudonym 350
351id_pda_gender 351
352id_pda_countryOfCitizenship 352
353id_pda_countryOfResidence 353
354id_aca_authenticationInfo 354
355id_aca_accessIdentity 355
356id_aca_chargingIdentity 356
357id_aca_group 357
358id_aca_role 358
359id_qcs_pkixQCSyntax_v1 359
360id_cct_crs 360
361id_cct_PKIData 361
362id_cct_PKIResponse 362
363ad_timeStamping 363
364ad_dvcs 364
365id_pkix_OCSP_basic 365
366id_pkix_OCSP_Nonce 366
367id_pkix_OCSP_CrlID 367
368id_pkix_OCSP_acceptableResponses 368
369id_pkix_OCSP_noCheck 369
370id_pkix_OCSP_archiveCutoff 370
371id_pkix_OCSP_serviceLocator 371
372id_pkix_OCSP_extendedStatus 372
373id_pkix_OCSP_valid 373
374id_pkix_OCSP_path 374
375id_pkix_OCSP_trustRoot 375
376algorithm 376
377rsaSignature 377
378X500algorithms 378
379org 379
380dod 380
381iana 381
382Directory 382
383Management 383
384Experimental 384
385Private 385
386Security 386
387SNMPv2 387
388Mail 388
389Enterprises 389
390dcObject 390
391domainComponent 391
392Domain 392
393joint_iso_ccitt 393
394selected_attribute_types 394
395clearance 395
396md4WithRSAEncryption 396
397ac_proxying 397
398sinfo_access 398
399id_aca_encAttrs 399
400role 400
401policy_constraints 401
402target_information 402
403no_rev_avail 403
404ccitt 404
405ansi_X9_62 405
406X9_62_prime_field 406
407X9_62_characteristic_two_field 407
408X9_62_id_ecPublicKey 408
409X9_62_prime192v1 409
410X9_62_prime192v2 410
411X9_62_prime192v3 411
412X9_62_prime239v1 412
413X9_62_prime239v2 413
414X9_62_prime239v3 414
415X9_62_prime256v1 415
416ecdsa_with_SHA1 416
417ms_csp_name 417
418aes_128_ecb 418
419aes_128_cbc 419
420aes_128_ofb128 420
421aes_128_cfb128 421
422aes_192_ecb 422
423aes_192_cbc 423
424aes_192_ofb128 424
425aes_192_cfb128 425
426aes_256_ecb 426
427aes_256_cbc 427
428aes_256_ofb128 428
429aes_256_cfb128 429
430hold_instruction_code 430
431hold_instruction_none 431
432hold_instruction_call_issuer 432
433hold_instruction_reject 433
434data 434
435pss 435
436ucl 436
437pilot 437
438pilotAttributeType 438
439pilotAttributeSyntax 439
440pilotObjectClass 440
441pilotGroups 441
442iA5StringSyntax 442
443caseIgnoreIA5StringSyntax 443
444pilotObject 444
445pilotPerson 445
446account 446
447document 447
448room 448
449documentSeries 449
450rFC822localPart 450
451dNSDomain 451
452domainRelatedObject 452
453friendlyCountry 453
454simpleSecurityObject 454
455pilotOrganization 455
456pilotDSA 456
457qualityLabelledData 457
458userId 458
459textEncodedORAddress 459
460rfc822Mailbox 460
461info 461
462favouriteDrink 462
463roomNumber 463
464photo 464
465userClass 465
466host 466
467manager 467
468documentIdentifier 468
469documentTitle 469
470documentVersion 470
471documentAuthor 471
472documentLocation 472
473homeTelephoneNumber 473
474secretary 474
475otherMailbox 475
476lastModifiedTime 476
477lastModifiedBy 477
478aRecord 478
479pilotAttributeType27 479
480mXRecord 480
481nSRecord 481
482sOARecord 482
483cNAMERecord 483
484associatedDomain 484
485associatedName 485
486homePostalAddress 486
487personalTitle 487
488mobileTelephoneNumber 488
489pagerTelephoneNumber 489
490friendlyCountryName 490
491organizationalStatus 491
492janetMailbox 492
493mailPreferenceOption 493
494buildingName 494
495dSAQuality 495
496singleLevelQuality 496
497subtreeMinimumQuality 497
498subtreeMaximumQuality 498
499personalSignature 499
500dITRedirect 500
501audio 501
502documentPublisher 502
503x500UniqueIdentifier 503
504mime_mhs 504
505mime_mhs_headings 505
506mime_mhs_bodies 506
507id_hex_partial_message 507
508id_hex_multipart_message 508
509generationQualifier 509
510pseudonym 510
511InternationalRA 511
512id_set 512
513set_ctype 513
514set_msgExt 514
515set_attr 515
516set_policy 516
517set_certExt 517
518set_brand 518
519setct_PANData 519
520setct_PANToken 520
521setct_PANOnly 521
522setct_OIData 522
523setct_PI 523
524setct_PIData 524
525setct_PIDataUnsigned 525
526setct_HODInput 526
527setct_AuthResBaggage 527
528setct_AuthRevReqBaggage 528
529setct_AuthRevResBaggage 529
530setct_CapTokenSeq 530
531setct_PInitResData 531
532setct_PI_TBS 532
533setct_PResData 533
534setct_AuthReqTBS 534
535setct_AuthResTBS 535
536setct_AuthResTBSX 536
537setct_AuthTokenTBS 537
538setct_CapTokenData 538
539setct_CapTokenTBS 539
540setct_AcqCardCodeMsg 540
541setct_AuthRevReqTBS 541
542setct_AuthRevResData 542
543setct_AuthRevResTBS 543
544setct_CapReqTBS 544
545setct_CapReqTBSX 545
546setct_CapResData 546
547setct_CapRevReqTBS 547
548setct_CapRevReqTBSX 548
549setct_CapRevResData 549
550setct_CredReqTBS 550
551setct_CredReqTBSX 551
552setct_CredResData 552
553setct_CredRevReqTBS 553
554setct_CredRevReqTBSX 554
555setct_CredRevResData 555
556setct_PCertReqData 556
557setct_PCertResTBS 557
558setct_BatchAdminReqData 558
559setct_BatchAdminResData 559
560setct_CardCInitResTBS 560
561setct_MeAqCInitResTBS 561
562setct_RegFormResTBS 562
563setct_CertReqData 563
564setct_CertReqTBS 564
565setct_CertResData 565
566setct_CertInqReqTBS 566
567setct_ErrorTBS 567
568setct_PIDualSignedTBE 568
569setct_PIUnsignedTBE 569
570setct_AuthReqTBE 570
571setct_AuthResTBE 571
572setct_AuthResTBEX 572
573setct_AuthTokenTBE 573
574setct_CapTokenTBE 574
575setct_CapTokenTBEX 575
576setct_AcqCardCodeMsgTBE 576
577setct_AuthRevReqTBE 577
578setct_AuthRevResTBE 578
579setct_AuthRevResTBEB 579
580setct_CapReqTBE 580
581setct_CapReqTBEX 581
582setct_CapResTBE 582
583setct_CapRevReqTBE 583
584setct_CapRevReqTBEX 584
585setct_CapRevResTBE 585
586setct_CredReqTBE 586
587setct_CredReqTBEX 587
588setct_CredResTBE 588
589setct_CredRevReqTBE 589
590setct_CredRevReqTBEX 590
591setct_CredRevResTBE 591
592setct_BatchAdminReqTBE 592
593setct_BatchAdminResTBE 593
594setct_RegFormReqTBE 594
595setct_CertReqTBE 595
596setct_CertReqTBEX 596
597setct_CertResTBE 597
598setct_CRLNotificationTBS 598
599setct_CRLNotificationResTBS 599
600setct_BCIDistributionTBS 600
601setext_genCrypt 601
602setext_miAuth 602
603setext_pinSecure 603
604setext_pinAny 604
605setext_track2 605
606setext_cv 606
607set_policy_root 607
608setCext_hashedRoot 608
609setCext_certType 609
610setCext_merchData 610
611setCext_cCertRequired 611
612setCext_tunneling 612
613setCext_setExt 613
614setCext_setQualf 614
615setCext_PGWYcapabilities 615
616setCext_TokenIdentifier 616
617setCext_Track2Data 617
618setCext_TokenType 618
619setCext_IssuerCapabilities 619
620setAttr_Cert 620
621setAttr_PGWYcap 621
622setAttr_TokenType 622
623setAttr_IssCap 623
624set_rootKeyThumb 624
625set_addPolicy 625
626setAttr_Token_EMV 626
627setAttr_Token_B0Prime 627
628setAttr_IssCap_CVM 628
629setAttr_IssCap_T2 629
630setAttr_IssCap_Sig 630
631setAttr_GenCryptgrm 631
632setAttr_T2Enc 632
633setAttr_T2cleartxt 633
634setAttr_TokICCsig 634
635setAttr_SecDevSig 635
636set_brand_IATA_ATA 636
637set_brand_Diners 637
638set_brand_AmericanExpress 638
639set_brand_JCB 639
640set_brand_Visa 640
641set_brand_MasterCard 641
642set_brand_Novus 642
643des_cdmf 643
644rsaOAEPEncryptionSET 644
645itu_t 645
646joint_iso_itu_t 646
647international_organizations 647
648ms_smartcard_login 648
649ms_upn 649
650aes_128_cfb1 650
651aes_192_cfb1 651
652aes_256_cfb1 652
653aes_128_cfb8 653
654aes_192_cfb8 654
655aes_256_cfb8 655
656des_cfb1 656
657des_cfb8 657
658des_ede3_cfb1 658
659des_ede3_cfb8 659
660streetAddress 660
661postalCode 661
662id_ppl 662
663proxyCertInfo 663
664id_ppl_anyLanguage 664
665id_ppl_inheritAll 665
666name_constraints 666
667Independent 667
668sha256WithRSAEncryption 668
669sha384WithRSAEncryption 669
670sha512WithRSAEncryption 670
671sha224WithRSAEncryption 671
672sha256 672
673sha384 673
674sha512 674
675sha224 675
676identified_organization 676
677certicom_arc 677
678wap 678
679wap_wsg 679
680X9_62_id_characteristic_two_basis 680
681X9_62_onBasis 681
682X9_62_tpBasis 682
683X9_62_ppBasis 683
684X9_62_c2pnb163v1 684
685X9_62_c2pnb163v2 685
686X9_62_c2pnb163v3 686
687X9_62_c2pnb176v1 687
688X9_62_c2tnb191v1 688
689X9_62_c2tnb191v2 689
690X9_62_c2tnb191v3 690
691X9_62_c2onb191v4 691
692X9_62_c2onb191v5 692
693X9_62_c2pnb208w1 693
694X9_62_c2tnb239v1 694
695X9_62_c2tnb239v2 695
696X9_62_c2tnb239v3 696
697X9_62_c2onb239v4 697
698X9_62_c2onb239v5 698
699X9_62_c2pnb272w1 699
700X9_62_c2pnb304w1 700
701X9_62_c2tnb359v1 701
702X9_62_c2pnb368w1 702
703X9_62_c2tnb431r1 703
704secp112r1 704
705secp112r2 705
706secp128r1 706
707secp128r2 707
708secp160k1 708
709secp160r1 709
710secp160r2 710
711secp192k1 711
712secp224k1 712
713secp224r1 713
714secp256k1 714
715secp384r1 715
716secp521r1 716
717sect113r1 717
718sect113r2 718
719sect131r1 719
720sect131r2 720
721sect163k1 721
722sect163r1 722
723sect163r2 723
724sect193r1 724
725sect193r2 725
726sect233k1 726
727sect233r1 727
728sect239k1 728
729sect283k1 729
730sect283r1 730
731sect409k1 731
732sect409r1 732
733sect571k1 733
734sect571r1 734
735wap_wsg_idm_ecid_wtls1 735
736wap_wsg_idm_ecid_wtls3 736
737wap_wsg_idm_ecid_wtls4 737
738wap_wsg_idm_ecid_wtls5 738
739wap_wsg_idm_ecid_wtls6 739
740wap_wsg_idm_ecid_wtls7 740
741wap_wsg_idm_ecid_wtls8 741
742wap_wsg_idm_ecid_wtls9 742
743wap_wsg_idm_ecid_wtls10 743
744wap_wsg_idm_ecid_wtls11 744
745wap_wsg_idm_ecid_wtls12 745
746any_policy 746
747policy_mappings 747
748inhibit_any_policy 748
749ipsec3 749
750ipsec4 750
751camellia_128_cbc 751
752camellia_192_cbc 752
753camellia_256_cbc 753
754camellia_128_ecb 754
755camellia_192_ecb 755
756camellia_256_ecb 756
757camellia_128_cfb128 757
758camellia_192_cfb128 758
759camellia_256_cfb128 759
760camellia_128_cfb1 760
761camellia_192_cfb1 761
762camellia_256_cfb1 762
763camellia_128_cfb8 763
764camellia_192_cfb8 764
765camellia_256_cfb8 765
766camellia_128_ofb128 766
767camellia_192_ofb128 767
768camellia_256_ofb128 768
769subject_directory_attributes 769
770issuing_distribution_point 770
771certificate_issuer 771
772korea 772
773kisa 773
774kftc 774
775npki_alg 775
776seed_ecb 776
777seed_cbc 777
778seed_ofb128 778
779seed_cfb128 779
780hmac_md5 780
781hmac_sha1 781
782id_PasswordBasedMAC 782
783id_DHBasedMac 783
784id_it_suppLangTags 784
785caRepository 785
786id_smime_ct_compressedData 786
787id_ct_asciiTextWithCRLF 787
788id_aes128_wrap 788
789id_aes192_wrap 789
790id_aes256_wrap 790
791ecdsa_with_Recommended 791
792ecdsa_with_Specified 792
793ecdsa_with_SHA224 793
794ecdsa_with_SHA256 794
795ecdsa_with_SHA384 795
796ecdsa_with_SHA512 796
797hmacWithMD5 797
798hmacWithSHA224 798
799hmacWithSHA256 799
800hmacWithSHA384 800
801hmacWithSHA512 801
802dsa_with_SHA224 802
803dsa_with_SHA256 803
804whirlpool 804
805cryptopro 805
806cryptocom 806
807id_GostR3411_94_with_GostR3410_2001 807
808id_GostR3411_94_with_GostR3410_94 808
809id_GostR3411_94 809
810id_HMACGostR3411_94 810
811id_GostR3410_2001 811
812id_GostR3410_94 812
813id_Gost28147_89 813
814gost89_cnt 814
815id_Gost28147_89_MAC 815
816id_GostR3411_94_prf 816
817id_GostR3410_2001DH 817
818id_GostR3410_94DH 818
819id_Gost28147_89_CryptoPro_KeyMeshing 819
820id_Gost28147_89_None_KeyMeshing 820
821id_GostR3411_94_TestParamSet 821
822id_GostR3411_94_CryptoProParamSet 822
823id_Gost28147_89_TestParamSet 823
824id_Gost28147_89_CryptoPro_A_ParamSet 824
825id_Gost28147_89_CryptoPro_B_ParamSet 825
826id_Gost28147_89_CryptoPro_C_ParamSet 826
827id_Gost28147_89_CryptoPro_D_ParamSet 827
828id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet 828
829id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet 829
830id_Gost28147_89_CryptoPro_RIC_1_ParamSet 830
831id_GostR3410_94_TestParamSet 831
832id_GostR3410_94_CryptoPro_A_ParamSet 832
833id_GostR3410_94_CryptoPro_B_ParamSet 833
834id_GostR3410_94_CryptoPro_C_ParamSet 834
835id_GostR3410_94_CryptoPro_D_ParamSet 835
836id_GostR3410_94_CryptoPro_XchA_ParamSet 836
837id_GostR3410_94_CryptoPro_XchB_ParamSet 837
838id_GostR3410_94_CryptoPro_XchC_ParamSet 838
839id_GostR3410_2001_TestParamSet 839
840id_GostR3410_2001_CryptoPro_A_ParamSet 840
841id_GostR3410_2001_CryptoPro_B_ParamSet 841
842id_GostR3410_2001_CryptoPro_C_ParamSet 842
843id_GostR3410_2001_CryptoPro_XchA_ParamSet 843
844id_GostR3410_2001_CryptoPro_XchB_ParamSet 844
845id_GostR3410_94_a 845
846id_GostR3410_94_aBis 846
847id_GostR3410_94_b 847
848id_GostR3410_94_bBis 848
849id_Gost28147_89_cc 849
850id_GostR3410_94_cc 850
851id_GostR3410_2001_cc 851
852id_GostR3411_94_with_GostR3410_94_cc 852
853id_GostR3411_94_with_GostR3410_2001_cc 853
854id_GostR3410_2001_ParamSet_cc 854
855hmac 855
856LocalKeySet 856
857freshest_crl 857
858id_on_permanentIdentifier 858
859searchGuide 859
860businessCategory 860
861postalAddress 861
862postOfficeBox 862
863physicalDeliveryOfficeName 863
864telephoneNumber 864
865telexNumber 865
866teletexTerminalIdentifier 866
867facsimileTelephoneNumber 867
868x121Address 868
869internationaliSDNNumber 869
870registeredAddress 870
871destinationIndicator 871
872preferredDeliveryMethod 872
873presentationAddress 873
874supportedApplicationContext 874
875member 875
876owner 876
877roleOccupant 877
878seeAlso 878
879userPassword 879
880userCertificate 880
881cACertificate 881
882authorityRevocationList 882
883certificateRevocationList 883
884crossCertificatePair 884
885enhancedSearchGuide 885
886protocolInformation 886
887distinguishedName 887
888uniqueMember 888
889houseIdentifier 889
890supportedAlgorithms 890
891deltaRevocationList 891
892dmdName 892
diff --git a/src/lib/libcrypto/objects/obj_xref.c b/src/lib/libcrypto/objects/obj_xref.c
new file mode 100644
index 0000000000..9f744bcede
--- /dev/null
+++ b/src/lib/libcrypto/objects/obj_xref.c
@@ -0,0 +1,234 @@
1/* crypto/objects/obj_xref.c */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2006.
4 */
5/* ====================================================================
6 * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59#include <openssl/objects.h>
60#include "obj_xref.h"
61
62DECLARE_STACK_OF(nid_triple)
63STACK_OF(nid_triple) *sig_app, *sigx_app;
64
65static int sig_cmp(const nid_triple *a, const nid_triple *b)
66 {
67 return a->sign_id - b->sign_id;
68 }
69
70DECLARE_OBJ_BSEARCH_CMP_FN(nid_triple, nid_triple, sig);
71IMPLEMENT_OBJ_BSEARCH_CMP_FN(nid_triple, nid_triple, sig);
72
73static int sig_sk_cmp(const nid_triple * const *a, const nid_triple * const *b)
74 {
75 return (*a)->sign_id - (*b)->sign_id;
76 }
77
78DECLARE_OBJ_BSEARCH_CMP_FN(const nid_triple *, const nid_triple *, sigx);
79
80static int sigx_cmp(const nid_triple * const *a, const nid_triple * const *b)
81 {
82 int ret;
83 ret = (*a)->hash_id - (*b)->hash_id;
84 if (ret)
85 return ret;
86 return (*a)->pkey_id - (*b)->pkey_id;
87 }
88
89IMPLEMENT_OBJ_BSEARCH_CMP_FN(const nid_triple *, const nid_triple *, sigx);
90
91int OBJ_find_sigid_algs(int signid, int *pdig_nid, int *ppkey_nid)
92 {
93 nid_triple tmp;
94 const nid_triple *rv = NULL;
95 tmp.sign_id = signid;
96
97 if (sig_app)
98 {
99 int idx = sk_nid_triple_find(sig_app, &tmp);
100 if (idx >= 0)
101 rv = sk_nid_triple_value(sig_app, idx);
102 }
103
104#ifndef OBJ_XREF_TEST2
105 if (rv == NULL)
106 {
107 rv = OBJ_bsearch_sig(&tmp, sigoid_srt,
108 sizeof(sigoid_srt) / sizeof(nid_triple));
109 }
110#endif
111 if (rv == NULL)
112 return 0;
113 if (pdig_nid)
114 *pdig_nid = rv->hash_id;
115 if (ppkey_nid)
116 *ppkey_nid = rv->pkey_id;
117 return 1;
118 }
119
120int OBJ_find_sigid_by_algs(int *psignid, int dig_nid, int pkey_nid)
121 {
122 nid_triple tmp;
123 const nid_triple *t=&tmp;
124 const nid_triple **rv = NULL;
125
126 tmp.hash_id = dig_nid;
127 tmp.pkey_id = pkey_nid;
128
129 if (sigx_app)
130 {
131 int idx = sk_nid_triple_find(sigx_app, &tmp);
132 if (idx >= 0)
133 {
134 t = sk_nid_triple_value(sigx_app, idx);
135 rv = &t;
136 }
137 }
138
139#ifndef OBJ_XREF_TEST2
140 if (rv == NULL)
141 {
142 rv = OBJ_bsearch_sigx(&t, sigoid_srt_xref,
143 sizeof(sigoid_srt_xref) / sizeof(nid_triple *)
144 );
145 }
146#endif
147 if (rv == NULL)
148 return 0;
149 if (psignid)
150 *psignid = (*rv)->sign_id;
151 return 1;
152 }
153
154int OBJ_add_sigid(int signid, int dig_id, int pkey_id)
155 {
156 nid_triple *ntr;
157 if (!sig_app)
158 sig_app = sk_nid_triple_new(sig_sk_cmp);
159 if (!sig_app)
160 return 0;
161 if (!sigx_app)
162 sigx_app = sk_nid_triple_new(sigx_cmp);
163 if (!sigx_app)
164 return 0;
165 ntr = OPENSSL_malloc(sizeof(int) * 3);
166 if (!ntr)
167 return 0;
168 ntr->sign_id = signid;
169 ntr->hash_id = dig_id;
170 ntr->pkey_id = pkey_id;
171
172 if (!sk_nid_triple_push(sig_app, ntr))
173 {
174 OPENSSL_free(ntr);
175 return 0;
176 }
177
178 if (!sk_nid_triple_push(sigx_app, ntr))
179 return 0;
180
181 sk_nid_triple_sort(sig_app);
182 sk_nid_triple_sort(sigx_app);
183
184 return 1;
185 }
186
187static void sid_free(nid_triple *tt)
188 {
189 OPENSSL_free(tt);
190 }
191
192void OBJ_sigid_free(void)
193 {
194 if (sig_app)
195 {
196 sk_nid_triple_pop_free(sig_app, sid_free);
197 sig_app = NULL;
198 }
199 if (sigx_app)
200 {
201 sk_nid_triple_free(sigx_app);
202 sigx_app = NULL;
203 }
204 }
205
206#ifdef OBJ_XREF_TEST
207
208main()
209 {
210 int n1, n2, n3;
211
212 int i, rv;
213#ifdef OBJ_XREF_TEST2
214 for (i = 0; i < sizeof(sigoid_srt) / sizeof(nid_triple); i++)
215 {
216 OBJ_add_sigid(sigoid_srt[i][0], sigoid_srt[i][1],
217 sigoid_srt[i][2]);
218 }
219#endif
220
221 for (i = 0; i < sizeof(sigoid_srt) / sizeof(nid_triple); i++)
222 {
223 n1 = sigoid_srt[i][0];
224 rv = OBJ_find_sigid_algs(n1, &n2, &n3);
225 printf("Forward: %d, %s %s %s\n", rv,
226 OBJ_nid2ln(n1), OBJ_nid2ln(n2), OBJ_nid2ln(n3));
227 n1=0;
228 rv = OBJ_find_sigid_by_algs(&n1, n2, n3);
229 printf("Reverse: %d, %s %s %s\n", rv,
230 OBJ_nid2ln(n1), OBJ_nid2ln(n2), OBJ_nid2ln(n3));
231 }
232 }
233
234#endif
diff --git a/src/lib/libcrypto/objects/obj_xref.h b/src/lib/libcrypto/objects/obj_xref.h
new file mode 100644
index 0000000000..e23938c296
--- /dev/null
+++ b/src/lib/libcrypto/objects/obj_xref.h
@@ -0,0 +1,77 @@
1/* AUTOGENERATED BY objxref.pl, DO NOT EDIT */
2
3typedef struct
4 {
5 int sign_id;
6 int hash_id;
7 int pkey_id;
8 } nid_triple;
9
10static const nid_triple sigoid_srt[] =
11 {
12 {NID_md2WithRSAEncryption, NID_md2, NID_rsaEncryption},
13 {NID_md5WithRSAEncryption, NID_md5, NID_rsaEncryption},
14 {NID_shaWithRSAEncryption, NID_sha, NID_rsaEncryption},
15 {NID_sha1WithRSAEncryption, NID_sha1, NID_rsaEncryption},
16 {NID_dsaWithSHA, NID_sha, NID_dsa},
17 {NID_dsaWithSHA1_2, NID_sha1, NID_dsa_2},
18 {NID_mdc2WithRSA, NID_mdc2, NID_rsaEncryption},
19 {NID_md5WithRSA, NID_md5, NID_rsa},
20 {NID_dsaWithSHA1, NID_sha1, NID_dsa},
21 {NID_sha1WithRSA, NID_sha1, NID_rsa},
22 {NID_ripemd160WithRSA, NID_ripemd160, NID_rsaEncryption},
23 {NID_md4WithRSAEncryption, NID_md4, NID_rsaEncryption},
24 {NID_ecdsa_with_SHA1, NID_sha1, NID_X9_62_id_ecPublicKey},
25 {NID_sha256WithRSAEncryption, NID_sha256, NID_rsaEncryption},
26 {NID_sha384WithRSAEncryption, NID_sha384, NID_rsaEncryption},
27 {NID_sha512WithRSAEncryption, NID_sha512, NID_rsaEncryption},
28 {NID_sha224WithRSAEncryption, NID_sha224, NID_rsaEncryption},
29 {NID_ecdsa_with_Recommended, NID_undef, NID_X9_62_id_ecPublicKey},
30 {NID_ecdsa_with_Specified, NID_undef, NID_X9_62_id_ecPublicKey},
31 {NID_ecdsa_with_SHA224, NID_sha224, NID_X9_62_id_ecPublicKey},
32 {NID_ecdsa_with_SHA256, NID_sha256, NID_X9_62_id_ecPublicKey},
33 {NID_ecdsa_with_SHA384, NID_sha384, NID_X9_62_id_ecPublicKey},
34 {NID_ecdsa_with_SHA512, NID_sha512, NID_X9_62_id_ecPublicKey},
35 {NID_dsa_with_SHA224, NID_sha224, NID_dsa},
36 {NID_dsa_with_SHA256, NID_sha256, NID_dsa},
37 {NID_id_GostR3411_94_with_GostR3410_2001, NID_id_GostR3411_94, NID_id_GostR3410_2001},
38 {NID_id_GostR3411_94_with_GostR3410_94, NID_id_GostR3411_94, NID_id_GostR3410_94},
39 {NID_id_GostR3411_94_with_GostR3410_94_cc, NID_id_GostR3411_94, NID_id_GostR3410_94_cc},
40 {NID_id_GostR3411_94_with_GostR3410_2001_cc, NID_id_GostR3411_94, NID_id_GostR3410_2001_cc},
41 {NID_rsassaPss, NID_undef, NID_rsaEncryption},
42 };
43
44static const nid_triple * const sigoid_srt_xref[] =
45 {
46 &sigoid_srt[29],
47 &sigoid_srt[17],
48 &sigoid_srt[18],
49 &sigoid_srt[0],
50 &sigoid_srt[1],
51 &sigoid_srt[7],
52 &sigoid_srt[2],
53 &sigoid_srt[4],
54 &sigoid_srt[3],
55 &sigoid_srt[9],
56 &sigoid_srt[5],
57 &sigoid_srt[8],
58 &sigoid_srt[12],
59 &sigoid_srt[6],
60 &sigoid_srt[10],
61 &sigoid_srt[11],
62 &sigoid_srt[13],
63 &sigoid_srt[24],
64 &sigoid_srt[20],
65 &sigoid_srt[14],
66 &sigoid_srt[21],
67 &sigoid_srt[15],
68 &sigoid_srt[22],
69 &sigoid_srt[16],
70 &sigoid_srt[23],
71 &sigoid_srt[19],
72 &sigoid_srt[25],
73 &sigoid_srt[26],
74 &sigoid_srt[27],
75 &sigoid_srt[28],
76 };
77
diff --git a/src/lib/libcrypto/objects/obj_xref.txt b/src/lib/libcrypto/objects/obj_xref.txt
new file mode 100644
index 0000000000..cb917182ee
--- /dev/null
+++ b/src/lib/libcrypto/objects/obj_xref.txt
@@ -0,0 +1,46 @@
1# OID cross reference table.
2# Links signatures OIDs to their corresponding public key algorithms
3# and digests.
4
5md2WithRSAEncryption md2 rsaEncryption
6md5WithRSAEncryption md5 rsaEncryption
7shaWithRSAEncryption sha rsaEncryption
8sha1WithRSAEncryption sha1 rsaEncryption
9md4WithRSAEncryption md4 rsaEncryption
10sha256WithRSAEncryption sha256 rsaEncryption
11sha384WithRSAEncryption sha384 rsaEncryption
12sha512WithRSAEncryption sha512 rsaEncryption
13sha224WithRSAEncryption sha224 rsaEncryption
14mdc2WithRSA mdc2 rsaEncryption
15ripemd160WithRSA ripemd160 rsaEncryption
16# For PSS the digest algorithm can vary and depends on the included
17# AlgorithmIdentifier. The digest "undef" indicates the public key
18# method should handle this explicitly.
19rsassaPss undef rsaEncryption
20
21# Alternative deprecated OIDs. By using the older "rsa" OID this
22# type will be recognized by not normally used.
23
24md5WithRSA md5 rsa
25sha1WithRSA sha1 rsa
26
27dsaWithSHA sha dsa
28dsaWithSHA1 sha1 dsa
29
30dsaWithSHA1_2 sha1 dsa_2
31
32ecdsa_with_SHA1 sha1 X9_62_id_ecPublicKey
33ecdsa_with_SHA224 sha224 X9_62_id_ecPublicKey
34ecdsa_with_SHA256 sha256 X9_62_id_ecPublicKey
35ecdsa_with_SHA384 sha384 X9_62_id_ecPublicKey
36ecdsa_with_SHA512 sha512 X9_62_id_ecPublicKey
37ecdsa_with_Recommended undef X9_62_id_ecPublicKey
38ecdsa_with_Specified undef X9_62_id_ecPublicKey
39
40dsa_with_SHA224 sha224 dsa
41dsa_with_SHA256 sha256 dsa
42
43id_GostR3411_94_with_GostR3410_2001 id_GostR3411_94 id_GostR3410_2001
44id_GostR3411_94_with_GostR3410_94 id_GostR3411_94 id_GostR3410_94
45id_GostR3411_94_with_GostR3410_94_cc id_GostR3411_94 id_GostR3410_94_cc
46id_GostR3411_94_with_GostR3410_2001_cc id_GostR3411_94 id_GostR3410_2001_cc
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 @@
1objects.txt syntax
2------------------
3
4To cover all the naming hacks that were previously in objects.h needed some
5kind of hacks in objects.txt.
6
7The 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
21Then 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
42Lines starting with # are treated as comments, as well as any line starting
43with ! 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..bd0ee52feb
--- /dev/null
+++ b/src/lib/libcrypto/objects/objects.h
@@ -0,0 +1,1138 @@
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#define OBJ_BSEARCH_VALUE_ON_NOMATCH 0x01
972#define OBJ_BSEARCH_FIRST_VALUE_ON_MATCH 0x02
973
974
975#ifdef __cplusplus
976extern "C" {
977#endif
978
979typedef struct obj_name_st
980 {
981 int type;
982 int alias;
983 const char *name;
984 const char *data;
985 } OBJ_NAME;
986
987#define OBJ_create_and_add_object(a,b,c) OBJ_create(a,b,c)
988
989
990int OBJ_NAME_init(void);
991int OBJ_NAME_new_index(unsigned long (*hash_func)(const char *),
992 int (*cmp_func)(const char *, const char *),
993 void (*free_func)(const char *, int, const char *));
994const char *OBJ_NAME_get(const char *name,int type);
995int OBJ_NAME_add(const char *name,int type,const char *data);
996int OBJ_NAME_remove(const char *name,int type);
997void OBJ_NAME_cleanup(int type); /* -1 for everything */
998void OBJ_NAME_do_all(int type,void (*fn)(const OBJ_NAME *,void *arg),
999 void *arg);
1000void OBJ_NAME_do_all_sorted(int type,void (*fn)(const OBJ_NAME *,void *arg),
1001 void *arg);
1002
1003ASN1_OBJECT * OBJ_dup(const ASN1_OBJECT *o);
1004ASN1_OBJECT * OBJ_nid2obj(int n);
1005const char * OBJ_nid2ln(int n);
1006const char * OBJ_nid2sn(int n);
1007int OBJ_obj2nid(const ASN1_OBJECT *o);
1008ASN1_OBJECT * OBJ_txt2obj(const char *s, int no_name);
1009int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name);
1010int OBJ_txt2nid(const char *s);
1011int OBJ_ln2nid(const char *s);
1012int OBJ_sn2nid(const char *s);
1013int OBJ_cmp(const ASN1_OBJECT *a,const ASN1_OBJECT *b);
1014const void * OBJ_bsearch_(const void *key,const void *base,int num,int size,
1015 int (*cmp)(const void *, const void *));
1016const void * OBJ_bsearch_ex_(const void *key,const void *base,int num,
1017 int size,
1018 int (*cmp)(const void *, const void *),
1019 int flags);
1020
1021#define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
1022 static int nm##_cmp_BSEARCH_CMP_FN(const void *, const void *); \
1023 static int nm##_cmp(type1 const *, type2 const *); \
1024 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1025
1026#define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028#define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1030
1031/*
1032 * Unsolved problem: if a type is actually a pointer type, like
1033 * nid_triple is, then its impossible to get a const where you need
1034 * it. Consider:
1035 *
1036 * typedef int nid_triple[3];
1037 * const void *a_;
1038 * const nid_triple const *a = a_;
1039 *
1040 * The assignement discards a const because what you really want is:
1041 *
1042 * const int const * const *a = a_;
1043 *
1044 * But if you do that, you lose the fact that a is an array of 3 ints,
1045 * which breaks comparison functions.
1046 *
1047 * Thus we end up having to cast, sadly, or unpack the
1048 * declarations. Or, as I finally did in this case, delcare nid_triple
1049 * to be a struct, which it should have been in the first place.
1050 *
1051 * Ben, August 2008.
1052 *
1053 * Also, strictly speaking not all types need be const, but handling
1054 * the non-constness means a lot of complication, and in practice
1055 * comparison routines do always not touch their arguments.
1056 */
1057
1058#define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \
1059 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \
1060 { \
1061 type1 const *a = a_; \
1062 type2 const *b = b_; \
1063 return nm##_cmp(a,b); \
1064 } \
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
1066 { \
1067 return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \
1068 nm##_cmp_BSEARCH_CMP_FN); \
1069 } \
1070 extern void dummy_prototype(void)
1071
1072#define IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
1073 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \
1074 { \
1075 type1 const *a = a_; \
1076 type2 const *b = b_; \
1077 return nm##_cmp(a,b); \
1078 } \
1079 type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
1080 { \
1081 return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \
1082 nm##_cmp_BSEARCH_CMP_FN); \
1083 } \
1084 extern void dummy_prototype(void)
1085
1086#define OBJ_bsearch(type1,key,type2,base,num,cmp) \
1087 ((type2 *)OBJ_bsearch_(CHECKED_PTR_OF(type1,key),CHECKED_PTR_OF(type2,base), \
1088 num,sizeof(type2), \
1089 ((void)CHECKED_PTR_OF(type1,cmp##_type_1), \
1090 (void)CHECKED_PTR_OF(type2,cmp##_type_2), \
1091 cmp##_BSEARCH_CMP_FN)))
1092
1093#define OBJ_bsearch_ex(type1,key,type2,base,num,cmp,flags) \
1094 ((type2 *)OBJ_bsearch_ex_(CHECKED_PTR_OF(type1,key),CHECKED_PTR_OF(type2,base), \
1095 num,sizeof(type2), \
1096 ((void)CHECKED_PTR_OF(type1,cmp##_type_1), \
1097 (void)type_2=CHECKED_PTR_OF(type2,cmp##_type_2), \
1098 cmp##_BSEARCH_CMP_FN)),flags)
1099
1100int OBJ_new_nid(int num);
1101int OBJ_add_object(const ASN1_OBJECT *obj);
1102int OBJ_create(const char *oid,const char *sn,const char *ln);
1103void OBJ_cleanup(void );
1104int OBJ_create_objects(BIO *in);
1105
1106int OBJ_find_sigid_algs(int signid, int *pdig_nid, int *ppkey_nid);
1107int OBJ_find_sigid_by_algs(int *psignid, int dig_nid, int pkey_nid);
1108int OBJ_add_sigid(int signid, int dig_id, int pkey_id);
1109void OBJ_sigid_free(void);
1110
1111extern int obj_cleanup_defer;
1112void check_defer(int nid);
1113
1114/* BEGIN ERROR CODES */
1115/* The following lines are auto generated by the script mkerr.pl. Any changes
1116 * made after this point may be overwritten when the script is next run.
1117 */
1118void ERR_load_OBJ_strings(void);
1119
1120/* Error codes for the OBJ functions. */
1121
1122/* Function codes. */
1123#define OBJ_F_OBJ_ADD_OBJECT 105
1124#define OBJ_F_OBJ_CREATE 100
1125#define OBJ_F_OBJ_DUP 101
1126#define OBJ_F_OBJ_NAME_NEW_INDEX 106
1127#define OBJ_F_OBJ_NID2LN 102
1128#define OBJ_F_OBJ_NID2OBJ 103
1129#define OBJ_F_OBJ_NID2SN 104
1130
1131/* Reason codes. */
1132#define OBJ_R_MALLOC_FAILURE 100
1133#define OBJ_R_UNKNOWN_NID 101
1134
1135#ifdef __cplusplus
1136}
1137#endif
1138#endif
diff --git a/src/lib/libcrypto/objects/objects.pl b/src/lib/libcrypto/objects/objects.pl
new file mode 100644
index 0000000000..d2bf659d88
--- /dev/null
+++ b/src/lib/libcrypto/objects/objects.pl
@@ -0,0 +1,233 @@
1#!/usr/local/bin/perl
2
3open (NUMIN,"$ARGV[1]") || die "Can't open number file $ARGV[1]";
4$max_nid=0;
5$o=0;
6while(<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 if (defined($nid{$Cname}))
18 { die "$ARGV[1]:$o:There's already an object with name ",$Cname," on line ",$order{$nid{$Cname}},"\n"; }
19 $nid{$Cname} = $mynum;
20 $nidn{$mynum} = $Cname;
21 $order{$mynum} = $o;
22 $max_nid = $mynum if $mynum > $max_nid;
23 }
24close NUMIN;
25
26open (IN,"$ARGV[0]") || die "Can't open input file $ARGV[0]";
27$Cname="";
28$o=0;
29while (<IN>)
30 {
31 chop;
32 $o++;
33 if (/^!module\s+(.*)$/)
34 {
35 $module = $1."-";
36 $module =~ s/\./_/g;
37 $module =~ s/-/_/g;
38 }
39 if (/^!global$/)
40 { $module = ""; }
41 if (/^!Cname\s+(.*)$/)
42 { $Cname = $1; }
43 if (/^!Alias\s+(.+?)\s+(.*)$/)
44 {
45 $Cname = $module.$1;
46 $myoid = $2;
47 $myoid = &process_oid($myoid);
48 $Cname =~ s/-/_/g;
49 $ordern{$o} = $Cname;
50 $order{$Cname} = $o;
51 $obj{$Cname} = $myoid;
52 $_ = "";
53 $Cname = "";
54 }
55 s/!.*$//;
56 s/#.*$//;
57 next if /^\s*$/;
58 ($myoid,$mysn,$myln) = split ':';
59 $mysn =~ s/^\s*//;
60 $mysn =~ s/\s*$//;
61 $myln =~ s/^\s*//;
62 $myln =~ s/\s*$//;
63 $myoid =~ s/^\s*//;
64 $myoid =~ s/\s*$//;
65 if ($myoid ne "")
66 {
67 $myoid = &process_oid($myoid);
68 }
69
70 if ($Cname eq "" && !($myln =~ / /))
71 {
72 $Cname = $myln;
73 $Cname =~ s/\./_/g;
74 $Cname =~ s/-/_/g;
75 if ($Cname ne "" && defined($ln{$module.$Cname}))
76 { die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.$Cname},"\n"; }
77 }
78 if ($Cname eq "")
79 {
80 $Cname = $mysn;
81 $Cname =~ s/-/_/g;
82 if ($Cname ne "" && defined($sn{$module.$Cname}))
83 { die "objects.txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.$Cname},"\n"; }
84 }
85 if ($Cname eq "")
86 {
87 $Cname = $myln;
88 $Cname =~ s/-/_/g;
89 $Cname =~ s/\./_/g;
90 $Cname =~ s/ /_/g;
91 if ($Cname ne "" && defined($ln{$module.$Cname}))
92 { die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.$Cname},"\n"; }
93 }
94 $Cname =~ s/\./_/g;
95 $Cname =~ s/-/_/g;
96 $Cname = $module.$Cname;
97 $ordern{$o} = $Cname;
98 $order{$Cname} = $o;
99 $sn{$Cname} = $mysn;
100 $ln{$Cname} = $myln;
101 $obj{$Cname} = $myoid;
102 if (!defined($nid{$Cname}))
103 {
104 $max_nid++;
105 $nid{$Cname} = $max_nid;
106 $nidn{$max_nid} = $Cname;
107print STDERR "Added OID $Cname\n";
108 }
109 $Cname="";
110 }
111close IN;
112
113#XXX don't modify input files
114#open (NUMOUT,">$ARGV[1]") || die "Can't open output file $ARGV[1]";
115#foreach (sort { $a <=> $b } keys %nidn)
116# {
117# print NUMOUT $nidn{$_},"\t\t",$_,"\n";
118# }
119#close NUMOUT;
120
121open (OUT,">$ARGV[2]") || die "Can't open output file $ARGV[2]";
122print OUT <<'EOF';
123/* crypto/objects/obj_mac.h */
124
125/* THIS FILE IS GENERATED FROM objects.txt by objects.pl via the
126 * following command:
127 * perl objects.pl objects.txt obj_mac.num obj_mac.h
128 */
129
130/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
131 * All rights reserved.
132 *
133 * This package is an SSL implementation written
134 * by Eric Young (eay@cryptsoft.com).
135 * The implementation was written so as to conform with Netscapes SSL.
136 *
137 * This library is free for commercial and non-commercial use as long as
138 * the following conditions are aheared to. The following conditions
139 * apply to all code found in this distribution, be it the RC4, RSA,
140 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
141 * included with this distribution is covered by the same copyright terms
142 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
143 *
144 * Copyright remains Eric Young's, and as such any Copyright notices in
145 * the code are not to be removed.
146 * If this package is used in a product, Eric Young should be given attribution
147 * as the author of the parts of the library used.
148 * This can be in the form of a textual message at program startup or
149 * in documentation (online or textual) provided with the package.
150 *
151 * Redistribution and use in source and binary forms, with or without
152 * modification, are permitted provided that the following conditions
153 * are met:
154 * 1. Redistributions of source code must retain the copyright
155 * notice, this list of conditions and the following disclaimer.
156 * 2. Redistributions in binary form must reproduce the above copyright
157 * notice, this list of conditions and the following disclaimer in the
158 * documentation and/or other materials provided with the distribution.
159 * 3. All advertising materials mentioning features or use of this software
160 * must display the following acknowledgement:
161 * "This product includes cryptographic software written by
162 * Eric Young (eay@cryptsoft.com)"
163 * The word 'cryptographic' can be left out if the rouines from the library
164 * being used are not cryptographic related :-).
165 * 4. If you include any Windows specific code (or a derivative thereof) from
166 * the apps directory (application code) you must include an acknowledgement:
167 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
168 *
169 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
170 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
171 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
172 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
173 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
174 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
175 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
176 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
177 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
178 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
179 * SUCH DAMAGE.
180 *
181 * The licence and distribution terms for any publically available version or
182 * derivative of this code cannot be changed. i.e. this code cannot simply be
183 * copied and put under another distribution licence
184 * [including the GNU Public Licence.]
185 */
186
187#define SN_undef "UNDEF"
188#define LN_undef "undefined"
189#define NID_undef 0
190#define OBJ_undef 0L
191
192EOF
193
194foreach (sort { $a <=> $b } keys %ordern)
195 {
196 $Cname=$ordern{$_};
197 print OUT "#define SN_",$Cname,"\t\t\"",$sn{$Cname},"\"\n" if $sn{$Cname} ne "";
198 print OUT "#define LN_",$Cname,"\t\t\"",$ln{$Cname},"\"\n" if $ln{$Cname} ne "";
199 print OUT "#define NID_",$Cname,"\t\t",$nid{$Cname},"\n" if $nid{$Cname} ne "";
200 print OUT "#define OBJ_",$Cname,"\t\t",$obj{$Cname},"\n" if $obj{$Cname} ne "";
201 print OUT "\n";
202 }
203
204close OUT;
205
206sub process_oid
207 {
208 local($oid)=@_;
209 local(@a,$oid_pref);
210
211 @a = split(/\s+/,$myoid);
212 $pref_oid = "";
213 $pref_sep = "";
214 if (!($a[0] =~ /^[0-9]+$/))
215 {
216 $a[0] =~ s/-/_/g;
217 if (!defined($obj{$a[0]}))
218 { die "$ARGV[0]:$o:Undefined identifier ",$a[0],"\n"; }
219 $pref_oid = "OBJ_" . $a[0];
220 $pref_sep = ",";
221 shift @a;
222 }
223 $oids = join('L,',@a) . "L";
224 if ($oids ne "L")
225 {
226 $oids = $pref_oid . $pref_sep . $oids;
227 }
228 else
229 {
230 $oids = $pref_oid;
231 }
232 return($oids);
233 }
diff --git a/src/lib/libcrypto/objects/objects.txt b/src/lib/libcrypto/objects/objects.txt
new file mode 100644
index 0000000000..e61fe60cbf
--- /dev/null
+++ b/src/lib/libcrypto/objects/objects.txt
@@ -0,0 +1,1259 @@
1# CCITT was renamed to ITU-T quite some time ago
20 : ITU-T : itu-t
3!Alias ccitt itu-t
4
51 : ISO : iso
6
72 : JOINT-ISO-ITU-T : joint-iso-itu-t
8!Alias joint-iso-ccitt joint-iso-itu-t
9
10iso 2 : member-body : ISO Member Body
11
12iso 3 : identified-organization
13
14# HMAC OIDs
15identified-organization 6 1 5 5 8 1 1 : HMAC-MD5 : hmac-md5
16identified-organization 6 1 5 5 8 1 2 : HMAC-SHA1 : hmac-sha1
17
18identified-organization 132 : certicom-arc
19
20joint-iso-itu-t 23 : international-organizations : International Organizations
21
22international-organizations 43 : wap
23wap 1 : wap-wsg
24
25joint-iso-itu-t 5 1 5 : selected-attribute-types : Selected Attribute Types
26
27selected-attribute-types 55 : clearance
28
29member-body 840 : ISO-US : ISO US Member Body
30ISO-US 10040 : X9-57 : X9.57
31X9-57 4 : X9cm : X9.57 CM ?
32
33!Cname dsa
34X9cm 1 : DSA : dsaEncryption
35X9cm 3 : DSA-SHA1 : dsaWithSHA1
36
37
38ISO-US 10045 : ansi-X9-62 : ANSI X9.62
39!module X9-62
40!Alias id-fieldType ansi-X9-62 1
41X9-62_id-fieldType 1 : prime-field
42X9-62_id-fieldType 2 : characteristic-two-field
43X9-62_characteristic-two-field 3 : id-characteristic-two-basis
44X9-62_id-characteristic-two-basis 1 : onBasis
45X9-62_id-characteristic-two-basis 2 : tpBasis
46X9-62_id-characteristic-two-basis 3 : ppBasis
47!Alias id-publicKeyType ansi-X9-62 2
48X9-62_id-publicKeyType 1 : id-ecPublicKey
49!Alias ellipticCurve ansi-X9-62 3
50!Alias c-TwoCurve X9-62_ellipticCurve 0
51X9-62_c-TwoCurve 1 : c2pnb163v1
52X9-62_c-TwoCurve 2 : c2pnb163v2
53X9-62_c-TwoCurve 3 : c2pnb163v3
54X9-62_c-TwoCurve 4 : c2pnb176v1
55X9-62_c-TwoCurve 5 : c2tnb191v1
56X9-62_c-TwoCurve 6 : c2tnb191v2
57X9-62_c-TwoCurve 7 : c2tnb191v3
58X9-62_c-TwoCurve 8 : c2onb191v4
59X9-62_c-TwoCurve 9 : c2onb191v5
60X9-62_c-TwoCurve 10 : c2pnb208w1
61X9-62_c-TwoCurve 11 : c2tnb239v1
62X9-62_c-TwoCurve 12 : c2tnb239v2
63X9-62_c-TwoCurve 13 : c2tnb239v3
64X9-62_c-TwoCurve 14 : c2onb239v4
65X9-62_c-TwoCurve 15 : c2onb239v5
66X9-62_c-TwoCurve 16 : c2pnb272w1
67X9-62_c-TwoCurve 17 : c2pnb304w1
68X9-62_c-TwoCurve 18 : c2tnb359v1
69X9-62_c-TwoCurve 19 : c2pnb368w1
70X9-62_c-TwoCurve 20 : c2tnb431r1
71!Alias primeCurve X9-62_ellipticCurve 1
72X9-62_primeCurve 1 : prime192v1
73X9-62_primeCurve 2 : prime192v2
74X9-62_primeCurve 3 : prime192v3
75X9-62_primeCurve 4 : prime239v1
76X9-62_primeCurve 5 : prime239v2
77X9-62_primeCurve 6 : prime239v3
78X9-62_primeCurve 7 : prime256v1
79!Alias id-ecSigType ansi-X9-62 4
80!global
81X9-62_id-ecSigType 1 : ecdsa-with-SHA1
82X9-62_id-ecSigType 2 : ecdsa-with-Recommended
83X9-62_id-ecSigType 3 : ecdsa-with-Specified
84ecdsa-with-Specified 1 : ecdsa-with-SHA224
85ecdsa-with-Specified 2 : ecdsa-with-SHA256
86ecdsa-with-Specified 3 : ecdsa-with-SHA384
87ecdsa-with-Specified 4 : ecdsa-with-SHA512
88
89# SECG curve OIDs from "SEC 2: Recommended Elliptic Curve Domain Parameters"
90# (http://www.secg.org/)
91!Alias secg_ellipticCurve certicom-arc 0
92# SECG prime curves OIDs
93secg-ellipticCurve 6 : secp112r1
94secg-ellipticCurve 7 : secp112r2
95secg-ellipticCurve 28 : secp128r1
96secg-ellipticCurve 29 : secp128r2
97secg-ellipticCurve 9 : secp160k1
98secg-ellipticCurve 8 : secp160r1
99secg-ellipticCurve 30 : secp160r2
100secg-ellipticCurve 31 : secp192k1
101# NOTE: the curve secp192r1 is the same as prime192v1 defined above
102# and is therefore omitted
103secg-ellipticCurve 32 : secp224k1
104secg-ellipticCurve 33 : secp224r1
105secg-ellipticCurve 10 : secp256k1
106# NOTE: the curve secp256r1 is the same as prime256v1 defined above
107# and is therefore omitted
108secg-ellipticCurve 34 : secp384r1
109secg-ellipticCurve 35 : secp521r1
110# SECG characteristic two curves OIDs
111secg-ellipticCurve 4 : sect113r1
112secg-ellipticCurve 5 : sect113r2
113secg-ellipticCurve 22 : sect131r1
114secg-ellipticCurve 23 : sect131r2
115secg-ellipticCurve 1 : sect163k1
116secg-ellipticCurve 2 : sect163r1
117secg-ellipticCurve 15 : sect163r2
118secg-ellipticCurve 24 : sect193r1
119secg-ellipticCurve 25 : sect193r2
120secg-ellipticCurve 26 : sect233k1
121secg-ellipticCurve 27 : sect233r1
122secg-ellipticCurve 3 : sect239k1
123secg-ellipticCurve 16 : sect283k1
124secg-ellipticCurve 17 : sect283r1
125secg-ellipticCurve 36 : sect409k1
126secg-ellipticCurve 37 : sect409r1
127secg-ellipticCurve 38 : sect571k1
128secg-ellipticCurve 39 : sect571r1
129
130# WAP/TLS curve OIDs (http://www.wapforum.org/)
131!Alias wap-wsg-idm-ecid wap-wsg 4
132wap-wsg-idm-ecid 1 : wap-wsg-idm-ecid-wtls1
133wap-wsg-idm-ecid 3 : wap-wsg-idm-ecid-wtls3
134wap-wsg-idm-ecid 4 : wap-wsg-idm-ecid-wtls4
135wap-wsg-idm-ecid 5 : wap-wsg-idm-ecid-wtls5
136wap-wsg-idm-ecid 6 : wap-wsg-idm-ecid-wtls6
137wap-wsg-idm-ecid 7 : wap-wsg-idm-ecid-wtls7
138wap-wsg-idm-ecid 8 : wap-wsg-idm-ecid-wtls8
139wap-wsg-idm-ecid 9 : wap-wsg-idm-ecid-wtls9
140wap-wsg-idm-ecid 10 : wap-wsg-idm-ecid-wtls10
141wap-wsg-idm-ecid 11 : wap-wsg-idm-ecid-wtls11
142wap-wsg-idm-ecid 12 : wap-wsg-idm-ecid-wtls12
143
144
145ISO-US 113533 7 66 10 : CAST5-CBC : cast5-cbc
146 : CAST5-ECB : cast5-ecb
147!Cname cast5-cfb64
148 : CAST5-CFB : cast5-cfb
149!Cname cast5-ofb64
150 : CAST5-OFB : cast5-ofb
151!Cname pbeWithMD5AndCast5-CBC
152ISO-US 113533 7 66 12 : : pbeWithMD5AndCast5CBC
153
154# Macs for CMP and CRMF
155ISO-US 113533 7 66 13 : id-PasswordBasedMAC : password based MAC
156ISO-US 113533 7 66 30 : id-DHBasedMac : Diffie-Hellman based MAC
157
158ISO-US 113549 : rsadsi : RSA Data Security, Inc.
159
160rsadsi 1 : pkcs : RSA Data Security, Inc. PKCS
161
162pkcs 1 : pkcs1
163pkcs1 1 : : rsaEncryption
164pkcs1 2 : RSA-MD2 : md2WithRSAEncryption
165pkcs1 3 : RSA-MD4 : md4WithRSAEncryption
166pkcs1 4 : RSA-MD5 : md5WithRSAEncryption
167pkcs1 5 : RSA-SHA1 : sha1WithRSAEncryption
168# According to PKCS #1 version 2.1
169pkcs1 11 : RSA-SHA256 : sha256WithRSAEncryption
170pkcs1 12 : RSA-SHA384 : sha384WithRSAEncryption
171pkcs1 13 : RSA-SHA512 : sha512WithRSAEncryption
172pkcs1 14 : RSA-SHA224 : sha224WithRSAEncryption
173
174pkcs 3 : pkcs3
175pkcs3 1 : : dhKeyAgreement
176
177pkcs 5 : pkcs5
178pkcs5 1 : PBE-MD2-DES : pbeWithMD2AndDES-CBC
179pkcs5 3 : PBE-MD5-DES : pbeWithMD5AndDES-CBC
180pkcs5 4 : PBE-MD2-RC2-64 : pbeWithMD2AndRC2-CBC
181pkcs5 6 : PBE-MD5-RC2-64 : pbeWithMD5AndRC2-CBC
182pkcs5 10 : PBE-SHA1-DES : pbeWithSHA1AndDES-CBC
183pkcs5 11 : PBE-SHA1-RC2-64 : pbeWithSHA1AndRC2-CBC
184!Cname id_pbkdf2
185pkcs5 12 : : PBKDF2
186!Cname pbes2
187pkcs5 13 : : PBES2
188!Cname pbmac1
189pkcs5 14 : : PBMAC1
190
191pkcs 7 : pkcs7
192pkcs7 1 : : pkcs7-data
193!Cname pkcs7-signed
194pkcs7 2 : : pkcs7-signedData
195!Cname pkcs7-enveloped
196pkcs7 3 : : pkcs7-envelopedData
197!Cname pkcs7-signedAndEnveloped
198pkcs7 4 : : pkcs7-signedAndEnvelopedData
199!Cname pkcs7-digest
200pkcs7 5 : : pkcs7-digestData
201!Cname pkcs7-encrypted
202pkcs7 6 : : pkcs7-encryptedData
203
204pkcs 9 : pkcs9
205!module pkcs9
206pkcs9 1 : : emailAddress
207pkcs9 2 : : unstructuredName
208pkcs9 3 : : contentType
209pkcs9 4 : : messageDigest
210pkcs9 5 : : signingTime
211pkcs9 6 : : countersignature
212pkcs9 7 : : challengePassword
213pkcs9 8 : : unstructuredAddress
214!Cname extCertAttributes
215pkcs9 9 : : extendedCertificateAttributes
216!global
217
218!Cname ext-req
219pkcs9 14 : extReq : Extension Request
220
221!Cname SMIMECapabilities
222pkcs9 15 : SMIME-CAPS : S/MIME Capabilities
223
224# S/MIME
225!Cname SMIME
226pkcs9 16 : SMIME : S/MIME
227SMIME 0 : id-smime-mod
228SMIME 1 : id-smime-ct
229SMIME 2 : id-smime-aa
230SMIME 3 : id-smime-alg
231SMIME 4 : id-smime-cd
232SMIME 5 : id-smime-spq
233SMIME 6 : id-smime-cti
234
235# S/MIME Modules
236id-smime-mod 1 : id-smime-mod-cms
237id-smime-mod 2 : id-smime-mod-ess
238id-smime-mod 3 : id-smime-mod-oid
239id-smime-mod 4 : id-smime-mod-msg-v3
240id-smime-mod 5 : id-smime-mod-ets-eSignature-88
241id-smime-mod 6 : id-smime-mod-ets-eSignature-97
242id-smime-mod 7 : id-smime-mod-ets-eSigPolicy-88
243id-smime-mod 8 : id-smime-mod-ets-eSigPolicy-97
244
245# S/MIME Content Types
246id-smime-ct 1 : id-smime-ct-receipt
247id-smime-ct 2 : id-smime-ct-authData
248id-smime-ct 3 : id-smime-ct-publishCert
249id-smime-ct 4 : id-smime-ct-TSTInfo
250id-smime-ct 5 : id-smime-ct-TDTInfo
251id-smime-ct 6 : id-smime-ct-contentInfo
252id-smime-ct 7 : id-smime-ct-DVCSRequestData
253id-smime-ct 8 : id-smime-ct-DVCSResponseData
254id-smime-ct 9 : id-smime-ct-compressedData
255id-smime-ct 27 : id-ct-asciiTextWithCRLF
256
257# S/MIME Attributes
258id-smime-aa 1 : id-smime-aa-receiptRequest
259id-smime-aa 2 : id-smime-aa-securityLabel
260id-smime-aa 3 : id-smime-aa-mlExpandHistory
261id-smime-aa 4 : id-smime-aa-contentHint
262id-smime-aa 5 : id-smime-aa-msgSigDigest
263# obsolete
264id-smime-aa 6 : id-smime-aa-encapContentType
265id-smime-aa 7 : id-smime-aa-contentIdentifier
266# obsolete
267id-smime-aa 8 : id-smime-aa-macValue
268id-smime-aa 9 : id-smime-aa-equivalentLabels
269id-smime-aa 10 : id-smime-aa-contentReference
270id-smime-aa 11 : id-smime-aa-encrypKeyPref
271id-smime-aa 12 : id-smime-aa-signingCertificate
272id-smime-aa 13 : id-smime-aa-smimeEncryptCerts
273id-smime-aa 14 : id-smime-aa-timeStampToken
274id-smime-aa 15 : id-smime-aa-ets-sigPolicyId
275id-smime-aa 16 : id-smime-aa-ets-commitmentType
276id-smime-aa 17 : id-smime-aa-ets-signerLocation
277id-smime-aa 18 : id-smime-aa-ets-signerAttr
278id-smime-aa 19 : id-smime-aa-ets-otherSigCert
279id-smime-aa 20 : id-smime-aa-ets-contentTimestamp
280id-smime-aa 21 : id-smime-aa-ets-CertificateRefs
281id-smime-aa 22 : id-smime-aa-ets-RevocationRefs
282id-smime-aa 23 : id-smime-aa-ets-certValues
283id-smime-aa 24 : id-smime-aa-ets-revocationValues
284id-smime-aa 25 : id-smime-aa-ets-escTimeStamp
285id-smime-aa 26 : id-smime-aa-ets-certCRLTimestamp
286id-smime-aa 27 : id-smime-aa-ets-archiveTimeStamp
287id-smime-aa 28 : id-smime-aa-signatureType
288id-smime-aa 29 : id-smime-aa-dvcs-dvc
289
290# S/MIME Algorithm Identifiers
291# obsolete
292id-smime-alg 1 : id-smime-alg-ESDHwith3DES
293# obsolete
294id-smime-alg 2 : id-smime-alg-ESDHwithRC2
295# obsolete
296id-smime-alg 3 : id-smime-alg-3DESwrap
297# obsolete
298id-smime-alg 4 : id-smime-alg-RC2wrap
299id-smime-alg 5 : id-smime-alg-ESDH
300id-smime-alg 6 : id-smime-alg-CMS3DESwrap
301id-smime-alg 7 : id-smime-alg-CMSRC2wrap
302
303# S/MIME Certificate Distribution
304id-smime-cd 1 : id-smime-cd-ldap
305
306# S/MIME Signature Policy Qualifier
307id-smime-spq 1 : id-smime-spq-ets-sqt-uri
308id-smime-spq 2 : id-smime-spq-ets-sqt-unotice
309
310# S/MIME Commitment Type Identifier
311id-smime-cti 1 : id-smime-cti-ets-proofOfOrigin
312id-smime-cti 2 : id-smime-cti-ets-proofOfReceipt
313id-smime-cti 3 : id-smime-cti-ets-proofOfDelivery
314id-smime-cti 4 : id-smime-cti-ets-proofOfSender
315id-smime-cti 5 : id-smime-cti-ets-proofOfApproval
316id-smime-cti 6 : id-smime-cti-ets-proofOfCreation
317
318pkcs9 20 : : friendlyName
319pkcs9 21 : : localKeyID
320!Cname ms-csp-name
3211 3 6 1 4 1 311 17 1 : CSPName : Microsoft CSP Name
3221 3 6 1 4 1 311 17 2 : LocalKeySet : Microsoft Local Key set
323!Alias certTypes pkcs9 22
324certTypes 1 : : x509Certificate
325certTypes 2 : : sdsiCertificate
326!Alias crlTypes pkcs9 23
327crlTypes 1 : : x509Crl
328
329!Alias pkcs12 pkcs 12
330!Alias pkcs12-pbeids pkcs12 1
331
332!Cname pbe-WithSHA1And128BitRC4
333pkcs12-pbeids 1 : PBE-SHA1-RC4-128 : pbeWithSHA1And128BitRC4
334!Cname pbe-WithSHA1And40BitRC4
335pkcs12-pbeids 2 : PBE-SHA1-RC4-40 : pbeWithSHA1And40BitRC4
336!Cname pbe-WithSHA1And3_Key_TripleDES-CBC
337pkcs12-pbeids 3 : PBE-SHA1-3DES : pbeWithSHA1And3-KeyTripleDES-CBC
338!Cname pbe-WithSHA1And2_Key_TripleDES-CBC
339pkcs12-pbeids 4 : PBE-SHA1-2DES : pbeWithSHA1And2-KeyTripleDES-CBC
340!Cname pbe-WithSHA1And128BitRC2-CBC
341pkcs12-pbeids 5 : PBE-SHA1-RC2-128 : pbeWithSHA1And128BitRC2-CBC
342!Cname pbe-WithSHA1And40BitRC2-CBC
343pkcs12-pbeids 6 : PBE-SHA1-RC2-40 : pbeWithSHA1And40BitRC2-CBC
344
345!Alias pkcs12-Version1 pkcs12 10
346!Alias pkcs12-BagIds pkcs12-Version1 1
347pkcs12-BagIds 1 : : keyBag
348pkcs12-BagIds 2 : : pkcs8ShroudedKeyBag
349pkcs12-BagIds 3 : : certBag
350pkcs12-BagIds 4 : : crlBag
351pkcs12-BagIds 5 : : secretBag
352pkcs12-BagIds 6 : : safeContentsBag
353
354rsadsi 2 2 : MD2 : md2
355rsadsi 2 4 : MD4 : md4
356rsadsi 2 5 : MD5 : md5
357 : MD5-SHA1 : md5-sha1
358rsadsi 2 6 : : hmacWithMD5
359rsadsi 2 7 : : hmacWithSHA1
360
361# From RFC4231
362rsadsi 2 8 : : hmacWithSHA224
363rsadsi 2 9 : : hmacWithSHA256
364rsadsi 2 10 : : hmacWithSHA384
365rsadsi 2 11 : : hmacWithSHA512
366
367rsadsi 3 2 : RC2-CBC : rc2-cbc
368 : RC2-ECB : rc2-ecb
369!Cname rc2-cfb64
370 : RC2-CFB : rc2-cfb
371!Cname rc2-ofb64
372 : RC2-OFB : rc2-ofb
373 : RC2-40-CBC : rc2-40-cbc
374 : RC2-64-CBC : rc2-64-cbc
375rsadsi 3 4 : RC4 : rc4
376 : RC4-40 : rc4-40
377rsadsi 3 7 : DES-EDE3-CBC : des-ede3-cbc
378rsadsi 3 8 : RC5-CBC : rc5-cbc
379 : RC5-ECB : rc5-ecb
380!Cname rc5-cfb64
381 : RC5-CFB : rc5-cfb
382!Cname rc5-ofb64
383 : RC5-OFB : rc5-ofb
384
385!Cname ms-ext-req
3861 3 6 1 4 1 311 2 1 14 : msExtReq : Microsoft Extension Request
387!Cname ms-code-ind
3881 3 6 1 4 1 311 2 1 21 : msCodeInd : Microsoft Individual Code Signing
389!Cname ms-code-com
3901 3 6 1 4 1 311 2 1 22 : msCodeCom : Microsoft Commercial Code Signing
391!Cname ms-ctl-sign
3921 3 6 1 4 1 311 10 3 1 : msCTLSign : Microsoft Trust List Signing
393!Cname ms-sgc
3941 3 6 1 4 1 311 10 3 3 : msSGC : Microsoft Server Gated Crypto
395!Cname ms-efs
3961 3 6 1 4 1 311 10 3 4 : msEFS : Microsoft Encrypted File System
397!Cname ms-smartcard-login
3981 3 6 1 4 1 311 20 2 2 : msSmartcardLogin : Microsoft Smartcardlogin
399!Cname ms-upn
4001 3 6 1 4 1 311 20 2 3 : msUPN : Microsoft Universal Principal Name
401
4021 3 6 1 4 1 188 7 1 1 2 : IDEA-CBC : idea-cbc
403 : IDEA-ECB : idea-ecb
404!Cname idea-cfb64
405 : IDEA-CFB : idea-cfb
406!Cname idea-ofb64
407 : IDEA-OFB : idea-ofb
408
4091 3 6 1 4 1 3029 1 2 : BF-CBC : bf-cbc
410 : BF-ECB : bf-ecb
411!Cname bf-cfb64
412 : BF-CFB : bf-cfb
413!Cname bf-ofb64
414 : BF-OFB : bf-ofb
415
416!Cname id-pkix
4171 3 6 1 5 5 7 : PKIX
418
419# PKIX Arcs
420id-pkix 0 : id-pkix-mod
421id-pkix 1 : id-pe
422id-pkix 2 : id-qt
423id-pkix 3 : id-kp
424id-pkix 4 : id-it
425id-pkix 5 : id-pkip
426id-pkix 6 : id-alg
427id-pkix 7 : id-cmc
428id-pkix 8 : id-on
429id-pkix 9 : id-pda
430id-pkix 10 : id-aca
431id-pkix 11 : id-qcs
432id-pkix 12 : id-cct
433id-pkix 21 : id-ppl
434id-pkix 48 : id-ad
435
436# PKIX Modules
437id-pkix-mod 1 : id-pkix1-explicit-88
438id-pkix-mod 2 : id-pkix1-implicit-88
439id-pkix-mod 3 : id-pkix1-explicit-93
440id-pkix-mod 4 : id-pkix1-implicit-93
441id-pkix-mod 5 : id-mod-crmf
442id-pkix-mod 6 : id-mod-cmc
443id-pkix-mod 7 : id-mod-kea-profile-88
444id-pkix-mod 8 : id-mod-kea-profile-93
445id-pkix-mod 9 : id-mod-cmp
446id-pkix-mod 10 : id-mod-qualified-cert-88
447id-pkix-mod 11 : id-mod-qualified-cert-93
448id-pkix-mod 12 : id-mod-attribute-cert
449id-pkix-mod 13 : id-mod-timestamp-protocol
450id-pkix-mod 14 : id-mod-ocsp
451id-pkix-mod 15 : id-mod-dvcs
452id-pkix-mod 16 : id-mod-cmp2000
453
454# PKIX Private Extensions
455!Cname info-access
456id-pe 1 : authorityInfoAccess : Authority Information Access
457id-pe 2 : biometricInfo : Biometric Info
458id-pe 3 : qcStatements
459id-pe 4 : ac-auditEntity
460id-pe 5 : ac-targeting
461id-pe 6 : aaControls
462id-pe 7 : sbgp-ipAddrBlock
463id-pe 8 : sbgp-autonomousSysNum
464id-pe 9 : sbgp-routerIdentifier
465id-pe 10 : ac-proxying
466!Cname sinfo-access
467id-pe 11 : subjectInfoAccess : Subject Information Access
468id-pe 14 : proxyCertInfo : Proxy Certificate Information
469
470# PKIX policyQualifiers for Internet policy qualifiers
471id-qt 1 : id-qt-cps : Policy Qualifier CPS
472id-qt 2 : id-qt-unotice : Policy Qualifier User Notice
473id-qt 3 : textNotice
474
475# PKIX key purpose identifiers
476!Cname server-auth
477id-kp 1 : serverAuth : TLS Web Server Authentication
478!Cname client-auth
479id-kp 2 : clientAuth : TLS Web Client Authentication
480!Cname code-sign
481id-kp 3 : codeSigning : Code Signing
482!Cname email-protect
483id-kp 4 : emailProtection : E-mail Protection
484id-kp 5 : ipsecEndSystem : IPSec End System
485id-kp 6 : ipsecTunnel : IPSec Tunnel
486id-kp 7 : ipsecUser : IPSec User
487!Cname time-stamp
488id-kp 8 : timeStamping : Time Stamping
489# From OCSP spec RFC2560
490!Cname OCSP-sign
491id-kp 9 : OCSPSigning : OCSP Signing
492id-kp 10 : DVCS : dvcs
493
494# CMP information types
495id-it 1 : id-it-caProtEncCert
496id-it 2 : id-it-signKeyPairTypes
497id-it 3 : id-it-encKeyPairTypes
498id-it 4 : id-it-preferredSymmAlg
499id-it 5 : id-it-caKeyUpdateInfo
500id-it 6 : id-it-currentCRL
501id-it 7 : id-it-unsupportedOIDs
502# obsolete
503id-it 8 : id-it-subscriptionRequest
504# obsolete
505id-it 9 : id-it-subscriptionResponse
506id-it 10 : id-it-keyPairParamReq
507id-it 11 : id-it-keyPairParamRep
508id-it 12 : id-it-revPassphrase
509id-it 13 : id-it-implicitConfirm
510id-it 14 : id-it-confirmWaitTime
511id-it 15 : id-it-origPKIMessage
512id-it 16 : id-it-suppLangTags
513
514# CRMF registration
515id-pkip 1 : id-regCtrl
516id-pkip 2 : id-regInfo
517
518# CRMF registration controls
519id-regCtrl 1 : id-regCtrl-regToken
520id-regCtrl 2 : id-regCtrl-authenticator
521id-regCtrl 3 : id-regCtrl-pkiPublicationInfo
522id-regCtrl 4 : id-regCtrl-pkiArchiveOptions
523id-regCtrl 5 : id-regCtrl-oldCertID
524id-regCtrl 6 : id-regCtrl-protocolEncrKey
525
526# CRMF registration information
527id-regInfo 1 : id-regInfo-utf8Pairs
528id-regInfo 2 : id-regInfo-certReq
529
530# algorithms
531id-alg 1 : id-alg-des40
532id-alg 2 : id-alg-noSignature
533id-alg 3 : id-alg-dh-sig-hmac-sha1
534id-alg 4 : id-alg-dh-pop
535
536# CMC controls
537id-cmc 1 : id-cmc-statusInfo
538id-cmc 2 : id-cmc-identification
539id-cmc 3 : id-cmc-identityProof
540id-cmc 4 : id-cmc-dataReturn
541id-cmc 5 : id-cmc-transactionId
542id-cmc 6 : id-cmc-senderNonce
543id-cmc 7 : id-cmc-recipientNonce
544id-cmc 8 : id-cmc-addExtensions
545id-cmc 9 : id-cmc-encryptedPOP
546id-cmc 10 : id-cmc-decryptedPOP
547id-cmc 11 : id-cmc-lraPOPWitness
548id-cmc 15 : id-cmc-getCert
549id-cmc 16 : id-cmc-getCRL
550id-cmc 17 : id-cmc-revokeRequest
551id-cmc 18 : id-cmc-regInfo
552id-cmc 19 : id-cmc-responseInfo
553id-cmc 21 : id-cmc-queryPending
554id-cmc 22 : id-cmc-popLinkRandom
555id-cmc 23 : id-cmc-popLinkWitness
556id-cmc 24 : id-cmc-confirmCertAcceptance
557
558# other names
559id-on 1 : id-on-personalData
560id-on 3 : id-on-permanentIdentifier : Permanent Identifier
561
562# personal data attributes
563id-pda 1 : id-pda-dateOfBirth
564id-pda 2 : id-pda-placeOfBirth
565id-pda 3 : id-pda-gender
566id-pda 4 : id-pda-countryOfCitizenship
567id-pda 5 : id-pda-countryOfResidence
568
569# attribute certificate attributes
570id-aca 1 : id-aca-authenticationInfo
571id-aca 2 : id-aca-accessIdentity
572id-aca 3 : id-aca-chargingIdentity
573id-aca 4 : id-aca-group
574# attention : the following seems to be obsolete, replace by 'role'
575id-aca 5 : id-aca-role
576id-aca 6 : id-aca-encAttrs
577
578# qualified certificate statements
579id-qcs 1 : id-qcs-pkixQCSyntax-v1
580
581# CMC content types
582id-cct 1 : id-cct-crs
583id-cct 2 : id-cct-PKIData
584id-cct 3 : id-cct-PKIResponse
585
586# Predefined Proxy Certificate policy languages
587id-ppl 0 : id-ppl-anyLanguage : Any language
588id-ppl 1 : id-ppl-inheritAll : Inherit all
589id-ppl 2 : id-ppl-independent : Independent
590
591# access descriptors for authority info access extension
592!Cname ad-OCSP
593id-ad 1 : OCSP : OCSP
594!Cname ad-ca-issuers
595id-ad 2 : caIssuers : CA Issuers
596!Cname ad-timeStamping
597id-ad 3 : ad_timestamping : AD Time Stamping
598!Cname ad-dvcs
599id-ad 4 : AD_DVCS : ad dvcs
600id-ad 5 : caRepository : CA Repository
601
602
603!Alias id-pkix-OCSP ad-OCSP
604!module id-pkix-OCSP
605!Cname basic
606id-pkix-OCSP 1 : basicOCSPResponse : Basic OCSP Response
607id-pkix-OCSP 2 : Nonce : OCSP Nonce
608id-pkix-OCSP 3 : CrlID : OCSP CRL ID
609id-pkix-OCSP 4 : acceptableResponses : Acceptable OCSP Responses
610id-pkix-OCSP 5 : noCheck : OCSP No Check
611id-pkix-OCSP 6 : archiveCutoff : OCSP Archive Cutoff
612id-pkix-OCSP 7 : serviceLocator : OCSP Service Locator
613id-pkix-OCSP 8 : extendedStatus : Extended OCSP Status
614id-pkix-OCSP 9 : valid
615id-pkix-OCSP 10 : path
616id-pkix-OCSP 11 : trustRoot : Trust Root
617!global
618
6191 3 14 3 2 : algorithm : algorithm
620algorithm 3 : RSA-NP-MD5 : md5WithRSA
621algorithm 6 : DES-ECB : des-ecb
622algorithm 7 : DES-CBC : des-cbc
623!Cname des-ofb64
624algorithm 8 : DES-OFB : des-ofb
625!Cname des-cfb64
626algorithm 9 : DES-CFB : des-cfb
627algorithm 11 : rsaSignature
628!Cname dsa-2
629algorithm 12 : DSA-old : dsaEncryption-old
630algorithm 13 : DSA-SHA : dsaWithSHA
631algorithm 15 : RSA-SHA : shaWithRSAEncryption
632!Cname des-ede-ecb
633algorithm 17 : DES-EDE : des-ede
634!Cname des-ede3-ecb
635 : DES-EDE3 : des-ede3
636 : DES-EDE-CBC : des-ede-cbc
637!Cname des-ede-cfb64
638 : DES-EDE-CFB : des-ede-cfb
639!Cname des-ede3-cfb64
640 : DES-EDE3-CFB : des-ede3-cfb
641!Cname des-ede-ofb64
642 : DES-EDE-OFB : des-ede-ofb
643!Cname des-ede3-ofb64
644 : DES-EDE3-OFB : des-ede3-ofb
645 : DESX-CBC : desx-cbc
646algorithm 18 : SHA : sha
647algorithm 26 : SHA1 : sha1
648!Cname dsaWithSHA1-2
649algorithm 27 : DSA-SHA1-old : dsaWithSHA1-old
650algorithm 29 : RSA-SHA1-2 : sha1WithRSA
651
6521 3 36 3 2 1 : RIPEMD160 : ripemd160
6531 3 36 3 3 1 2 : RSA-RIPEMD160 : ripemd160WithRSA
654
655!Cname sxnet
6561 3 101 1 4 1 : SXNetID : Strong Extranet ID
657
6582 5 : X500 : directory services (X.500)
659
660X500 4 : X509
661X509 3 : CN : commonName
662X509 4 : SN : surname
663X509 5 : : serialNumber
664X509 6 : C : countryName
665X509 7 : L : localityName
666X509 8 : ST : stateOrProvinceName
667X509 9 : street : streetAddress
668X509 10 : O : organizationName
669X509 11 : OU : organizationalUnitName
670X509 12 : title : title
671X509 13 : : description
672X509 14 : : searchGuide
673X509 15 : : businessCategory
674X509 16 : : postalAddress
675X509 17 : : postalCode
676X509 18 : : postOfficeBox
677X509 19 : : physicalDeliveryOfficeName
678X509 20 : : telephoneNumber
679X509 21 : : telexNumber
680X509 22 : : teletexTerminalIdentifier
681X509 23 : : facsimileTelephoneNumber
682X509 24 : : x121Address
683X509 25 : : internationaliSDNNumber
684X509 26 : : registeredAddress
685X509 27 : : destinationIndicator
686X509 28 : : preferredDeliveryMethod
687X509 29 : : presentationAddress
688X509 30 : : supportedApplicationContext
689X509 31 : member :
690X509 32 : owner :
691X509 33 : : roleOccupant
692X509 34 : seeAlso :
693X509 35 : : userPassword
694X509 36 : : userCertificate
695X509 37 : : cACertificate
696X509 38 : : authorityRevocationList
697X509 39 : : certificateRevocationList
698X509 40 : : crossCertificatePair
699X509 41 : name : name
700X509 42 : GN : givenName
701X509 43 : initials : initials
702X509 44 : : generationQualifier
703X509 45 : : x500UniqueIdentifier
704X509 46 : dnQualifier : dnQualifier
705X509 47 : : enhancedSearchGuide
706X509 48 : : protocolInformation
707X509 49 : : distinguishedName
708X509 50 : : uniqueMember
709X509 51 : : houseIdentifier
710X509 52 : : supportedAlgorithms
711X509 53 : : deltaRevocationList
712X509 54 : dmdName :
713X509 65 : : pseudonym
714X509 72 : role : role
715
716X500 8 : X500algorithms : directory services - algorithms
717X500algorithms 1 1 : RSA : rsa
718X500algorithms 3 100 : RSA-MDC2 : mdc2WithRSA
719X500algorithms 3 101 : MDC2 : mdc2
720
721X500 29 : id-ce
722!Cname subject-directory-attributes
723id-ce 9 : subjectDirectoryAttributes : X509v3 Subject Directory Attributes
724!Cname subject-key-identifier
725id-ce 14 : subjectKeyIdentifier : X509v3 Subject Key Identifier
726!Cname key-usage
727id-ce 15 : keyUsage : X509v3 Key Usage
728!Cname private-key-usage-period
729id-ce 16 : privateKeyUsagePeriod : X509v3 Private Key Usage Period
730!Cname subject-alt-name
731id-ce 17 : subjectAltName : X509v3 Subject Alternative Name
732!Cname issuer-alt-name
733id-ce 18 : issuerAltName : X509v3 Issuer Alternative Name
734!Cname basic-constraints
735id-ce 19 : basicConstraints : X509v3 Basic Constraints
736!Cname crl-number
737id-ce 20 : crlNumber : X509v3 CRL Number
738!Cname crl-reason
739id-ce 21 : CRLReason : X509v3 CRL Reason Code
740!Cname invalidity-date
741id-ce 24 : invalidityDate : Invalidity Date
742!Cname delta-crl
743id-ce 27 : deltaCRL : X509v3 Delta CRL Indicator
744!Cname issuing-distribution-point
745id-ce 28 : issuingDistributionPoint : X509v3 Issuing Distrubution Point
746!Cname certificate-issuer
747id-ce 29 : certificateIssuer : X509v3 Certificate Issuer
748!Cname name-constraints
749id-ce 30 : nameConstraints : X509v3 Name Constraints
750!Cname crl-distribution-points
751id-ce 31 : crlDistributionPoints : X509v3 CRL Distribution Points
752!Cname certificate-policies
753id-ce 32 : certificatePolicies : X509v3 Certificate Policies
754!Cname any-policy
755certificate-policies 0 : anyPolicy : X509v3 Any Policy
756!Cname policy-mappings
757id-ce 33 : policyMappings : X509v3 Policy Mappings
758!Cname authority-key-identifier
759id-ce 35 : authorityKeyIdentifier : X509v3 Authority Key Identifier
760!Cname policy-constraints
761id-ce 36 : policyConstraints : X509v3 Policy Constraints
762!Cname ext-key-usage
763id-ce 37 : extendedKeyUsage : X509v3 Extended Key Usage
764!Cname freshest-crl
765id-ce 46 : freshestCRL : X509v3 Freshest CRL
766!Cname inhibit-any-policy
767id-ce 54 : inhibitAnyPolicy : X509v3 Inhibit Any Policy
768!Cname target-information
769id-ce 55 : targetInformation : X509v3 AC Targeting
770!Cname no-rev-avail
771id-ce 56 : noRevAvail : X509v3 No Revocation Available
772
773!Cname netscape
7742 16 840 1 113730 : Netscape : Netscape Communications Corp.
775!Cname netscape-cert-extension
776netscape 1 : nsCertExt : Netscape Certificate Extension
777!Cname netscape-data-type
778netscape 2 : nsDataType : Netscape Data Type
779!Cname netscape-cert-type
780netscape-cert-extension 1 : nsCertType : Netscape Cert Type
781!Cname netscape-base-url
782netscape-cert-extension 2 : nsBaseUrl : Netscape Base Url
783!Cname netscape-revocation-url
784netscape-cert-extension 3 : nsRevocationUrl : Netscape Revocation Url
785!Cname netscape-ca-revocation-url
786netscape-cert-extension 4 : nsCaRevocationUrl : Netscape CA Revocation Url
787!Cname netscape-renewal-url
788netscape-cert-extension 7 : nsRenewalUrl : Netscape Renewal Url
789!Cname netscape-ca-policy-url
790netscape-cert-extension 8 : nsCaPolicyUrl : Netscape CA Policy Url
791!Cname netscape-ssl-server-name
792netscape-cert-extension 12 : nsSslServerName : Netscape SSL Server Name
793!Cname netscape-comment
794netscape-cert-extension 13 : nsComment : Netscape Comment
795!Cname netscape-cert-sequence
796netscape-data-type 5 : nsCertSequence : Netscape Certificate Sequence
797!Cname ns-sgc
798netscape 4 1 : nsSGC : Netscape Server Gated Crypto
799
800# iso(1)
801iso 3 : ORG : org
802org 6 : DOD : dod
803dod 1 : IANA : iana
804!Alias internet iana
805
806internet 1 : directory : Directory
807internet 2 : mgmt : Management
808internet 3 : experimental : Experimental
809internet 4 : private : Private
810internet 5 : security : Security
811internet 6 : snmpv2 : SNMPv2
812# Documents refer to "internet 7" as "mail". This however leads to ambiguities
813# with RFC2798, Section 9.1.3, where "mail" is defined as the short name for
814# rfc822Mailbox. The short name is therefore here left out for a reason.
815# Subclasses of "mail", e.g. "MIME MHS" don't consitute a problem, as
816# references are realized via long name "Mail" (with capital M).
817internet 7 : : Mail
818
819Private 1 : enterprises : Enterprises
820
821# RFC 2247
822Enterprises 1466 344 : dcobject : dcObject
823
824# RFC 1495
825Mail 1 : mime-mhs : MIME MHS
826mime-mhs 1 : mime-mhs-headings : mime-mhs-headings
827mime-mhs 2 : mime-mhs-bodies : mime-mhs-bodies
828mime-mhs-headings 1 : id-hex-partial-message : id-hex-partial-message
829mime-mhs-headings 2 : id-hex-multipart-message : id-hex-multipart-message
830
831# What the hell are these OIDs, really?
832!Cname rle-compression
8331 1 1 1 666 1 : RLE : run length compression
834!Cname zlib-compression
835id-smime-alg 8 : ZLIB : zlib compression
836
837# AES aka Rijndael
838
839!Alias csor 2 16 840 1 101 3
840!Alias nistAlgorithms csor 4
841!Alias aes nistAlgorithms 1
842
843aes 1 : AES-128-ECB : aes-128-ecb
844aes 2 : AES-128-CBC : aes-128-cbc
845!Cname aes-128-ofb128
846aes 3 : AES-128-OFB : aes-128-ofb
847!Cname aes-128-cfb128
848aes 4 : AES-128-CFB : aes-128-cfb
849
850aes 21 : AES-192-ECB : aes-192-ecb
851aes 22 : AES-192-CBC : aes-192-cbc
852!Cname aes-192-ofb128
853aes 23 : AES-192-OFB : aes-192-ofb
854!Cname aes-192-cfb128
855aes 24 : AES-192-CFB : aes-192-cfb
856
857aes 41 : AES-256-ECB : aes-256-ecb
858aes 42 : AES-256-CBC : aes-256-cbc
859!Cname aes-256-ofb128
860aes 43 : AES-256-OFB : aes-256-ofb
861!Cname aes-256-cfb128
862aes 44 : AES-256-CFB : aes-256-cfb
863
864# There are no OIDs for these modes...
865
866 : AES-128-CFB1 : aes-128-cfb1
867 : AES-192-CFB1 : aes-192-cfb1
868 : AES-256-CFB1 : aes-256-cfb1
869 : AES-128-CFB8 : aes-128-cfb8
870 : AES-192-CFB8 : aes-192-cfb8
871 : AES-256-CFB8 : aes-256-cfb8
872 : DES-CFB1 : des-cfb1
873 : DES-CFB8 : des-cfb8
874 : DES-EDE3-CFB1 : des-ede3-cfb1
875 : DES-EDE3-CFB8 : des-ede3-cfb8
876
877aes 5 : id-aes128-wrap
878aes 25 : id-aes192-wrap
879aes 45 : id-aes256-wrap
880
881# OIDs for SHA224, SHA256, SHA385 and SHA512, according to x9.84.
882!Alias nist_hashalgs nistAlgorithms 2
883nist_hashalgs 1 : SHA256 : sha256
884nist_hashalgs 2 : SHA384 : sha384
885nist_hashalgs 3 : SHA512 : sha512
886nist_hashalgs 4 : SHA224 : sha224
887
888# OIDs for dsa-with-sha224 and dsa-with-sha256
889!Alias dsa_with_sha2 nistAlgorithms 3
890dsa_with_sha2 1 : dsa_with_SHA224
891dsa_with_sha2 2 : dsa_with_SHA256
892
893# Hold instruction CRL entry extension
894!Cname hold-instruction-code
895id-ce 23 : holdInstructionCode : Hold Instruction Code
896!Alias holdInstruction X9-57 2
897!Cname hold-instruction-none
898holdInstruction 1 : holdInstructionNone : Hold Instruction None
899!Cname hold-instruction-call-issuer
900holdInstruction 2 : holdInstructionCallIssuer : Hold Instruction Call Issuer
901!Cname hold-instruction-reject
902holdInstruction 3 : holdInstructionReject : Hold Instruction Reject
903
904# OID's from ITU-T. Most of this is defined in RFC 1274. A couple of
905# them are also mentioned in RFC 2247
906itu-t 9 : data
907data 2342 : pss
908pss 19200300 : ucl
909ucl 100 : pilot
910pilot 1 : : pilotAttributeType
911pilot 3 : : pilotAttributeSyntax
912pilot 4 : : pilotObjectClass
913pilot 10 : : pilotGroups
914pilotAttributeSyntax 4 : : iA5StringSyntax
915pilotAttributeSyntax 5 : : caseIgnoreIA5StringSyntax
916pilotObjectClass 3 : : pilotObject
917pilotObjectClass 4 : : pilotPerson
918pilotObjectClass 5 : account
919pilotObjectClass 6 : document
920pilotObjectClass 7 : room
921pilotObjectClass 9 : : documentSeries
922pilotObjectClass 13 : domain : Domain
923pilotObjectClass 14 : : rFC822localPart
924pilotObjectClass 15 : : dNSDomain
925pilotObjectClass 17 : : domainRelatedObject
926pilotObjectClass 18 : : friendlyCountry
927pilotObjectClass 19 : : simpleSecurityObject
928pilotObjectClass 20 : : pilotOrganization
929pilotObjectClass 21 : : pilotDSA
930pilotObjectClass 22 : : qualityLabelledData
931pilotAttributeType 1 : UID : userId
932pilotAttributeType 2 : : textEncodedORAddress
933pilotAttributeType 3 : mail : rfc822Mailbox
934pilotAttributeType 4 : info
935pilotAttributeType 5 : : favouriteDrink
936pilotAttributeType 6 : : roomNumber
937pilotAttributeType 7 : photo
938pilotAttributeType 8 : : userClass
939pilotAttributeType 9 : host
940pilotAttributeType 10 : manager
941pilotAttributeType 11 : : documentIdentifier
942pilotAttributeType 12 : : documentTitle
943pilotAttributeType 13 : : documentVersion
944pilotAttributeType 14 : : documentAuthor
945pilotAttributeType 15 : : documentLocation
946pilotAttributeType 20 : : homeTelephoneNumber
947pilotAttributeType 21 : secretary
948pilotAttributeType 22 : : otherMailbox
949pilotAttributeType 23 : : lastModifiedTime
950pilotAttributeType 24 : : lastModifiedBy
951pilotAttributeType 25 : DC : domainComponent
952pilotAttributeType 26 : : aRecord
953pilotAttributeType 27 : : pilotAttributeType27
954pilotAttributeType 28 : : mXRecord
955pilotAttributeType 29 : : nSRecord
956pilotAttributeType 30 : : sOARecord
957pilotAttributeType 31 : : cNAMERecord
958pilotAttributeType 37 : : associatedDomain
959pilotAttributeType 38 : : associatedName
960pilotAttributeType 39 : : homePostalAddress
961pilotAttributeType 40 : : personalTitle
962pilotAttributeType 41 : : mobileTelephoneNumber
963pilotAttributeType 42 : : pagerTelephoneNumber
964pilotAttributeType 43 : : friendlyCountryName
965# The following clashes with 2.5.4.45, so commented away
966#pilotAttributeType 44 : uid : uniqueIdentifier
967pilotAttributeType 45 : : organizationalStatus
968pilotAttributeType 46 : : janetMailbox
969pilotAttributeType 47 : : mailPreferenceOption
970pilotAttributeType 48 : : buildingName
971pilotAttributeType 49 : : dSAQuality
972pilotAttributeType 50 : : singleLevelQuality
973pilotAttributeType 51 : : subtreeMinimumQuality
974pilotAttributeType 52 : : subtreeMaximumQuality
975pilotAttributeType 53 : : personalSignature
976pilotAttributeType 54 : : dITRedirect
977pilotAttributeType 55 : audio
978pilotAttributeType 56 : : documentPublisher
979
980international-organizations 42 : id-set : Secure Electronic Transactions
981
982id-set 0 : set-ctype : content types
983id-set 1 : set-msgExt : message extensions
984id-set 3 : set-attr
985id-set 5 : set-policy
986id-set 7 : set-certExt : certificate extensions
987id-set 8 : set-brand
988
989set-ctype 0 : setct-PANData
990set-ctype 1 : setct-PANToken
991set-ctype 2 : setct-PANOnly
992set-ctype 3 : setct-OIData
993set-ctype 4 : setct-PI
994set-ctype 5 : setct-PIData
995set-ctype 6 : setct-PIDataUnsigned
996set-ctype 7 : setct-HODInput
997set-ctype 8 : setct-AuthResBaggage
998set-ctype 9 : setct-AuthRevReqBaggage
999set-ctype 10 : setct-AuthRevResBaggage
1000set-ctype 11 : setct-CapTokenSeq
1001set-ctype 12 : setct-PInitResData
1002set-ctype 13 : setct-PI-TBS
1003set-ctype 14 : setct-PResData
1004set-ctype 16 : setct-AuthReqTBS
1005set-ctype 17 : setct-AuthResTBS
1006set-ctype 18 : setct-AuthResTBSX
1007set-ctype 19 : setct-AuthTokenTBS
1008set-ctype 20 : setct-CapTokenData
1009set-ctype 21 : setct-CapTokenTBS
1010set-ctype 22 : setct-AcqCardCodeMsg
1011set-ctype 23 : setct-AuthRevReqTBS
1012set-ctype 24 : setct-AuthRevResData
1013set-ctype 25 : setct-AuthRevResTBS
1014set-ctype 26 : setct-CapReqTBS
1015set-ctype 27 : setct-CapReqTBSX
1016set-ctype 28 : setct-CapResData
1017set-ctype 29 : setct-CapRevReqTBS
1018set-ctype 30 : setct-CapRevReqTBSX
1019set-ctype 31 : setct-CapRevResData
1020set-ctype 32 : setct-CredReqTBS
1021set-ctype 33 : setct-CredReqTBSX
1022set-ctype 34 : setct-CredResData
1023set-ctype 35 : setct-CredRevReqTBS
1024set-ctype 36 : setct-CredRevReqTBSX
1025set-ctype 37 : setct-CredRevResData
1026set-ctype 38 : setct-PCertReqData
1027set-ctype 39 : setct-PCertResTBS
1028set-ctype 40 : setct-BatchAdminReqData
1029set-ctype 41 : setct-BatchAdminResData
1030set-ctype 42 : setct-CardCInitResTBS
1031set-ctype 43 : setct-MeAqCInitResTBS
1032set-ctype 44 : setct-RegFormResTBS
1033set-ctype 45 : setct-CertReqData
1034set-ctype 46 : setct-CertReqTBS
1035set-ctype 47 : setct-CertResData
1036set-ctype 48 : setct-CertInqReqTBS
1037set-ctype 49 : setct-ErrorTBS
1038set-ctype 50 : setct-PIDualSignedTBE
1039set-ctype 51 : setct-PIUnsignedTBE
1040set-ctype 52 : setct-AuthReqTBE
1041set-ctype 53 : setct-AuthResTBE
1042set-ctype 54 : setct-AuthResTBEX
1043set-ctype 55 : setct-AuthTokenTBE
1044set-ctype 56 : setct-CapTokenTBE
1045set-ctype 57 : setct-CapTokenTBEX
1046set-ctype 58 : setct-AcqCardCodeMsgTBE
1047set-ctype 59 : setct-AuthRevReqTBE
1048set-ctype 60 : setct-AuthRevResTBE
1049set-ctype 61 : setct-AuthRevResTBEB
1050set-ctype 62 : setct-CapReqTBE
1051set-ctype 63 : setct-CapReqTBEX
1052set-ctype 64 : setct-CapResTBE
1053set-ctype 65 : setct-CapRevReqTBE
1054set-ctype 66 : setct-CapRevReqTBEX
1055set-ctype 67 : setct-CapRevResTBE
1056set-ctype 68 : setct-CredReqTBE
1057set-ctype 69 : setct-CredReqTBEX
1058set-ctype 70 : setct-CredResTBE
1059set-ctype 71 : setct-CredRevReqTBE
1060set-ctype 72 : setct-CredRevReqTBEX
1061set-ctype 73 : setct-CredRevResTBE
1062set-ctype 74 : setct-BatchAdminReqTBE
1063set-ctype 75 : setct-BatchAdminResTBE
1064set-ctype 76 : setct-RegFormReqTBE
1065set-ctype 77 : setct-CertReqTBE
1066set-ctype 78 : setct-CertReqTBEX
1067set-ctype 79 : setct-CertResTBE
1068set-ctype 80 : setct-CRLNotificationTBS
1069set-ctype 81 : setct-CRLNotificationResTBS
1070set-ctype 82 : setct-BCIDistributionTBS
1071
1072set-msgExt 1 : setext-genCrypt : generic cryptogram
1073set-msgExt 3 : setext-miAuth : merchant initiated auth
1074set-msgExt 4 : setext-pinSecure
1075set-msgExt 5 : setext-pinAny
1076set-msgExt 7 : setext-track2
1077set-msgExt 8 : setext-cv : additional verification
1078
1079set-policy 0 : set-policy-root
1080
1081set-certExt 0 : setCext-hashedRoot
1082set-certExt 1 : setCext-certType
1083set-certExt 2 : setCext-merchData
1084set-certExt 3 : setCext-cCertRequired
1085set-certExt 4 : setCext-tunneling
1086set-certExt 5 : setCext-setExt
1087set-certExt 6 : setCext-setQualf
1088set-certExt 7 : setCext-PGWYcapabilities
1089set-certExt 8 : setCext-TokenIdentifier
1090set-certExt 9 : setCext-Track2Data
1091set-certExt 10 : setCext-TokenType
1092set-certExt 11 : setCext-IssuerCapabilities
1093
1094set-attr 0 : setAttr-Cert
1095set-attr 1 : setAttr-PGWYcap : payment gateway capabilities
1096set-attr 2 : setAttr-TokenType
1097set-attr 3 : setAttr-IssCap : issuer capabilities
1098
1099setAttr-Cert 0 : set-rootKeyThumb
1100setAttr-Cert 1 : set-addPolicy
1101
1102setAttr-TokenType 1 : setAttr-Token-EMV
1103setAttr-TokenType 2 : setAttr-Token-B0Prime
1104
1105setAttr-IssCap 3 : setAttr-IssCap-CVM
1106setAttr-IssCap 4 : setAttr-IssCap-T2
1107setAttr-IssCap 5 : setAttr-IssCap-Sig
1108
1109setAttr-IssCap-CVM 1 : setAttr-GenCryptgrm : generate cryptogram
1110setAttr-IssCap-T2 1 : setAttr-T2Enc : encrypted track 2
1111setAttr-IssCap-T2 2 : setAttr-T2cleartxt : cleartext track 2
1112
1113setAttr-IssCap-Sig 1 : setAttr-TokICCsig : ICC or token signature
1114setAttr-IssCap-Sig 2 : setAttr-SecDevSig : secure device signature
1115
1116set-brand 1 : set-brand-IATA-ATA
1117set-brand 30 : set-brand-Diners
1118set-brand 34 : set-brand-AmericanExpress
1119set-brand 35 : set-brand-JCB
1120set-brand 4 : set-brand-Visa
1121set-brand 5 : set-brand-MasterCard
1122set-brand 6011 : set-brand-Novus
1123
1124rsadsi 3 10 : DES-CDMF : des-cdmf
1125rsadsi 1 1 6 : rsaOAEPEncryptionSET
1126
1127 : Oakley-EC2N-3 : ipsec3
1128 : Oakley-EC2N-4 : ipsec4
1129
1130iso 0 10118 3 0 55 : whirlpool
1131
1132# GOST OIDs
1133
1134member-body 643 2 2 : cryptopro
1135member-body 643 2 9 : cryptocom
1136
1137cryptopro 3 : id-GostR3411-94-with-GostR3410-2001 : GOST R 34.11-94 with GOST R 34.10-2001
1138cryptopro 4 : id-GostR3411-94-with-GostR3410-94 : GOST R 34.11-94 with GOST R 34.10-94
1139!Cname id-GostR3411-94
1140cryptopro 9 : md_gost94 : GOST R 34.11-94
1141cryptopro 10 : id-HMACGostR3411-94 : HMAC GOST 34.11-94
1142!Cname id-GostR3410-2001
1143cryptopro 19 : gost2001 : GOST R 34.10-2001
1144!Cname id-GostR3410-94
1145cryptopro 20 : gost94 : GOST R 34.10-94
1146!Cname id-Gost28147-89
1147cryptopro 21 : gost89 : GOST 28147-89
1148 : gost89-cnt
1149!Cname id-Gost28147-89-MAC
1150cryptopro 22 : gost-mac : GOST 28147-89 MAC
1151!Cname id-GostR3411-94-prf
1152cryptopro 23 : prf-gostr3411-94 : GOST R 34.11-94 PRF
1153cryptopro 98 : id-GostR3410-2001DH : GOST R 34.10-2001 DH
1154cryptopro 99 : id-GostR3410-94DH : GOST R 34.10-94 DH
1155
1156cryptopro 14 1 : id-Gost28147-89-CryptoPro-KeyMeshing
1157cryptopro 14 0 : id-Gost28147-89-None-KeyMeshing
1158
1159# GOST parameter set OIDs
1160
1161cryptopro 30 0 : id-GostR3411-94-TestParamSet
1162cryptopro 30 1 : id-GostR3411-94-CryptoProParamSet
1163
1164cryptopro 31 0 : id-Gost28147-89-TestParamSet
1165cryptopro 31 1 : id-Gost28147-89-CryptoPro-A-ParamSet
1166cryptopro 31 2 : id-Gost28147-89-CryptoPro-B-ParamSet
1167cryptopro 31 3 : id-Gost28147-89-CryptoPro-C-ParamSet
1168cryptopro 31 4 : id-Gost28147-89-CryptoPro-D-ParamSet
1169cryptopro 31 5 : id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet
1170cryptopro 31 6 : id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet
1171cryptopro 31 7 : id-Gost28147-89-CryptoPro-RIC-1-ParamSet
1172
1173cryptopro 32 0 : id-GostR3410-94-TestParamSet
1174cryptopro 32 2 : id-GostR3410-94-CryptoPro-A-ParamSet
1175cryptopro 32 3 : id-GostR3410-94-CryptoPro-B-ParamSet
1176cryptopro 32 4 : id-GostR3410-94-CryptoPro-C-ParamSet
1177cryptopro 32 5 : id-GostR3410-94-CryptoPro-D-ParamSet
1178
1179cryptopro 33 1 : id-GostR3410-94-CryptoPro-XchA-ParamSet
1180cryptopro 33 2 : id-GostR3410-94-CryptoPro-XchB-ParamSet
1181cryptopro 33 3 : id-GostR3410-94-CryptoPro-XchC-ParamSet
1182
1183cryptopro 35 0 : id-GostR3410-2001-TestParamSet
1184cryptopro 35 1 : id-GostR3410-2001-CryptoPro-A-ParamSet
1185cryptopro 35 2 : id-GostR3410-2001-CryptoPro-B-ParamSet
1186cryptopro 35 3 : id-GostR3410-2001-CryptoPro-C-ParamSet
1187
1188cryptopro 36 0 : id-GostR3410-2001-CryptoPro-XchA-ParamSet
1189cryptopro 36 1 : id-GostR3410-2001-CryptoPro-XchB-ParamSet
1190
1191id-GostR3410-94 1 : id-GostR3410-94-a
1192id-GostR3410-94 2 : id-GostR3410-94-aBis
1193id-GostR3410-94 3 : id-GostR3410-94-b
1194id-GostR3410-94 4 : id-GostR3410-94-bBis
1195
1196# Cryptocom LTD GOST OIDs
1197
1198cryptocom 1 6 1 : id-Gost28147-89-cc : GOST 28147-89 Cryptocom ParamSet
1199!Cname id-GostR3410-94-cc
1200cryptocom 1 5 3 : gost94cc : GOST 34.10-94 Cryptocom
1201!Cname id-GostR3410-2001-cc
1202cryptocom 1 5 4 : gost2001cc : GOST 34.10-2001 Cryptocom
1203
1204cryptocom 1 3 3 : id-GostR3411-94-with-GostR3410-94-cc : GOST R 34.11-94 with GOST R 34.10-94 Cryptocom
1205cryptocom 1 3 4 : id-GostR3411-94-with-GostR3410-2001-cc : GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom
1206
1207cryptocom 1 8 1 : id-GostR3410-2001-ParamSet-cc : GOST R 3410-2001 Parameter Set Cryptocom
1208
1209# Definitions for Camellia cipher - CBC MODE
1210
12111 2 392 200011 61 1 1 1 2 : CAMELLIA-128-CBC : camellia-128-cbc
12121 2 392 200011 61 1 1 1 3 : CAMELLIA-192-CBC : camellia-192-cbc
12131 2 392 200011 61 1 1 1 4 : CAMELLIA-256-CBC : camellia-256-cbc
1214
1215# Definitions for Camellia cipher - ECB, CFB, OFB MODE
1216
1217!Alias ntt-ds 0 3 4401 5
1218!Alias camellia ntt-ds 3 1 9
1219
1220camellia 1 : CAMELLIA-128-ECB : camellia-128-ecb
1221!Cname camellia-128-ofb128
1222camellia 3 : CAMELLIA-128-OFB : camellia-128-ofb
1223!Cname camellia-128-cfb128
1224camellia 4 : CAMELLIA-128-CFB : camellia-128-cfb
1225
1226camellia 21 : CAMELLIA-192-ECB : camellia-192-ecb
1227!Cname camellia-192-ofb128
1228camellia 23 : CAMELLIA-192-OFB : camellia-192-ofb
1229!Cname camellia-192-cfb128
1230camellia 24 : CAMELLIA-192-CFB : camellia-192-cfb
1231
1232camellia 41 : CAMELLIA-256-ECB : camellia-256-ecb
1233!Cname camellia-256-ofb128
1234camellia 43 : CAMELLIA-256-OFB : camellia-256-ofb
1235!Cname camellia-256-cfb128
1236camellia 44 : CAMELLIA-256-CFB : camellia-256-cfb
1237
1238# There are no OIDs for these modes...
1239
1240 : CAMELLIA-128-CFB1 : camellia-128-cfb1
1241 : CAMELLIA-192-CFB1 : camellia-192-cfb1
1242 : CAMELLIA-256-CFB1 : camellia-256-cfb1
1243 : CAMELLIA-128-CFB8 : camellia-128-cfb8
1244 : CAMELLIA-192-CFB8 : camellia-192-cfb8
1245 : CAMELLIA-256-CFB8 : camellia-256-cfb8
1246
1247# Definitions for SEED cipher - ECB, CBC, OFB mode
1248
1249member-body 410 200004 : KISA : kisa
1250kisa 1 3 : SEED-ECB : seed-ecb
1251kisa 1 4 : SEED-CBC : seed-cbc
1252!Cname seed-cfb128
1253kisa 1 5 : SEED-CFB : seed-cfb
1254!Cname seed-ofb128
1255kisa 1 6 : SEED-OFB : seed-ofb
1256
1257# There is no OID that just denotes "HMAC" oddly enough...
1258
1259 : HMAC : hmac
diff --git a/src/lib/libcrypto/objects/objxref.pl b/src/lib/libcrypto/objects/objxref.pl
new file mode 100644
index 0000000000..731d3ae22c
--- /dev/null
+++ b/src/lib/libcrypto/objects/objxref.pl
@@ -0,0 +1,107 @@
1#!/usr/local/bin/perl
2
3use strict;
4
5my %xref_tbl;
6my %oid_tbl;
7
8my ($mac_file, $xref_file) = @ARGV;
9
10open(IN, $mac_file) || die "Can't open $mac_file";
11
12# Read in OID nid values for a lookup table.
13
14while (<IN>)
15 {
16 chomp;
17 my ($name, $num) = /^(\S+)\s+(\S+)$/;
18 $oid_tbl{$name} = $num;
19 }
20close IN;
21
22open(IN, $xref_file) || die "Can't open $xref_file";
23
24my $ln = 1;
25
26while (<IN>)
27 {
28 chomp;
29 s/#.*$//;
30 next if (/^\S*$/);
31 my ($xr, $p1, $p2) = /^(\S+)\s+(\S+)\s+(\S+)/;
32 check_oid($xr);
33 check_oid($p1);
34 check_oid($p2);
35 $xref_tbl{$xr} = [$p1, $p2, $ln];
36 }
37
38my @xrkeys = keys %xref_tbl;
39
40my @srt1 = sort { $oid_tbl{$a} <=> $oid_tbl{$b}} @xrkeys;
41
42for(my $i = 0; $i <= $#srt1; $i++)
43 {
44 $xref_tbl{$srt1[$i]}[2] = $i;
45 }
46
47my @srt2 = sort
48 {
49 my$ap1 = $oid_tbl{$xref_tbl{$a}[0]};
50 my$bp1 = $oid_tbl{$xref_tbl{$b}[0]};
51 return $ap1 - $bp1 if ($ap1 != $bp1);
52 my$ap2 = $oid_tbl{$xref_tbl{$a}[1]};
53 my$bp2 = $oid_tbl{$xref_tbl{$b}[1]};
54
55 return $ap2 - $bp2;
56 } @xrkeys;
57
58my $pname = $0;
59
60$pname =~ s|^.[^/]/||;
61
62print <<EOF;
63/* AUTOGENERATED BY $pname, DO NOT EDIT */
64
65typedef struct
66 {
67 int sign_id;
68 int hash_id;
69 int pkey_id;
70 } nid_triple;
71
72static const nid_triple sigoid_srt[] =
73 {
74EOF
75
76foreach (@srt1)
77 {
78 my $xr = $_;
79 my ($p1, $p2) = @{$xref_tbl{$_}};
80 print "\t{NID_$xr, NID_$p1, NID_$p2},\n";
81 }
82
83print "\t};";
84print <<EOF;
85
86
87static const nid_triple * const sigoid_srt_xref[] =
88 {
89EOF
90
91foreach (@srt2)
92 {
93 my $x = $xref_tbl{$_}[2];
94 print "\t\&sigoid_srt\[$x\],\n";
95 }
96
97print "\t};\n\n";
98
99sub check_oid
100 {
101 my ($chk) = @_;
102 if (!exists $oid_tbl{$chk})
103 {
104 die "Not Found \"$chk\"\n";
105 }
106 }
107