summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/objects
diff options
context:
space:
mode:
authorbeck <>2002-06-07 03:45:34 +0000
committerbeck <>2002-06-07 03:45:34 +0000
commit820a20ea2b5f97e4a8fb714fedf33edafd40740a (patch)
tree595b35cf9e1ff104d11fb8ab64ebb6a5c5f42755 /src/lib/libcrypto/objects
parentd13d58e31ac54f9b283fe3ec100f31030e050fb4 (diff)
downloadopenbsd-820a20ea2b5f97e4a8fb714fedf33edafd40740a.tar.gz
openbsd-820a20ea2b5f97e4a8fb714fedf33edafd40740a.tar.bz2
openbsd-820a20ea2b5f97e4a8fb714fedf33edafd40740a.zip
Merge OpenSSL 0.9.7-stable-20020605,
correctly autogenerate obj_mac.h
Diffstat (limited to 'src/lib/libcrypto/objects')
-rw-r--r--src/lib/libcrypto/objects/Makefile.ssl1
-rw-r--r--src/lib/libcrypto/objects/o_names.c3
-rw-r--r--src/lib/libcrypto/objects/obj_dat.c2
-rw-r--r--src/lib/libcrypto/objects/obj_mac.h2307
4 files changed, 4 insertions, 2309 deletions
diff --git a/src/lib/libcrypto/objects/Makefile.ssl b/src/lib/libcrypto/objects/Makefile.ssl
index 7962a089db..c8e54facee 100644
--- a/src/lib/libcrypto/objects/Makefile.ssl
+++ b/src/lib/libcrypto/objects/Makefile.ssl
@@ -15,7 +15,6 @@ MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) 15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
17AR= ar r 17AR= ar r
18PERL= perl
19 18
20CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
21 20
diff --git a/src/lib/libcrypto/objects/o_names.c b/src/lib/libcrypto/objects/o_names.c
index 2b80243256..b4453b4a98 100644
--- a/src/lib/libcrypto/objects/o_names.c
+++ b/src/lib/libcrypto/objects/o_names.c
@@ -79,6 +79,8 @@ int OBJ_NAME_new_index(unsigned long (*hash_func)(const char *),
79 { 79 {
80 MemCheck_off(); 80 MemCheck_off();
81 name_funcs = OPENSSL_malloc(sizeof(NAME_FUNCS)); 81 name_funcs = OPENSSL_malloc(sizeof(NAME_FUNCS));
82 MemCheck_on();
83 if (!name_funcs) return(0);
82 name_funcs->hash_func = lh_strhash; 84 name_funcs->hash_func = lh_strhash;
83 name_funcs->cmp_func = OPENSSL_strcmp; 85 name_funcs->cmp_func = OPENSSL_strcmp;
84 name_funcs->free_func = 0; /* NULL is often declared to 86 name_funcs->free_func = 0; /* NULL is often declared to
@@ -86,6 +88,7 @@ int OBJ_NAME_new_index(unsigned long (*hash_func)(const char *),
86 * to Compaq C is not really 88 * to Compaq C is not really
87 * compatible with a function 89 * compatible with a function
88 * pointer. -- Richard Levitte*/ 90 * pointer. -- Richard Levitte*/
91 MemCheck_off();
89 sk_NAME_FUNCS_push(name_funcs_stack,name_funcs); 92 sk_NAME_FUNCS_push(name_funcs_stack,name_funcs);
90 MemCheck_on(); 93 MemCheck_on();
91 } 94 }
diff --git a/src/lib/libcrypto/objects/obj_dat.c b/src/lib/libcrypto/objects/obj_dat.c
index 8779ba7d1d..3ff64bb8d1 100644
--- a/src/lib/libcrypto/objects/obj_dat.c
+++ b/src/lib/libcrypto/objects/obj_dat.c
@@ -236,7 +236,7 @@ int OBJ_add_object(const ASN1_OBJECT *obj)
236 if (added == NULL) 236 if (added == NULL)
237 if (!init_added()) return(0); 237 if (!init_added()) return(0);
238 if ((o=OBJ_dup(obj)) == NULL) goto err; 238 if ((o=OBJ_dup(obj)) == NULL) goto err;
239 ao[ADDED_NID]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)); 239 if (!(ao[ADDED_NID]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err;
240 if ((o->length != 0) && (obj->data != NULL)) 240 if ((o->length != 0) && (obj->data != NULL))
241 ao[ADDED_DATA]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)); 241 ao[ADDED_DATA]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ));
242 if (o->sn != NULL) 242 if (o->sn != NULL)
diff --git a/src/lib/libcrypto/objects/obj_mac.h b/src/lib/libcrypto/objects/obj_mac.h
deleted file mode 100644
index 6d77fcba3f..0000000000
--- a/src/lib/libcrypto/objects/obj_mac.h
+++ /dev/null
@@ -1,2307 +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_ccitt "CCITT"
71#define LN_ccitt "ccitt"
72#define NID_ccitt 404
73#define OBJ_ccitt 0L
74
75#define SN_iso "ISO"
76#define LN_iso "iso"
77#define NID_iso 181
78#define OBJ_iso 1L
79
80#define SN_joint_iso_ccitt "JOINT-ISO-CCITT"
81#define LN_joint_iso_ccitt "joint-iso-ccitt"
82#define NID_joint_iso_ccitt 393
83#define OBJ_joint_iso_ccitt 2L
84
85#define SN_member_body "member-body"
86#define LN_member_body "ISO Member Body"
87#define NID_member_body 182
88#define OBJ_member_body OBJ_iso,2L
89
90#define SN_selected_attribute_types "selected-attribute-types"
91#define LN_selected_attribute_types "Selected Attribute Types"
92#define NID_selected_attribute_types 394
93#define OBJ_selected_attribute_types OBJ_joint_iso_ccitt,5L,1L,5L
94
95#define SN_clearance "clearance"
96#define NID_clearance 395
97#define OBJ_clearance OBJ_selected_attribute_types,55L
98
99#define SN_ISO_US "ISO-US"
100#define LN_ISO_US "ISO US Member Body"
101#define NID_ISO_US 183
102#define OBJ_ISO_US OBJ_member_body,840L
103
104#define SN_X9_57 "X9-57"
105#define LN_X9_57 "X9.57"
106#define NID_X9_57 184
107#define OBJ_X9_57 OBJ_ISO_US,10040L
108
109#define SN_X9cm "X9cm"
110#define LN_X9cm "X9.57 CM ?"
111#define NID_X9cm 185
112#define OBJ_X9cm OBJ_X9_57,4L
113
114#define SN_dsa "DSA"
115#define LN_dsa "dsaEncryption"
116#define NID_dsa 116
117#define OBJ_dsa OBJ_X9cm,1L
118
119#define SN_dsaWithSHA1 "DSA-SHA1"
120#define LN_dsaWithSHA1 "dsaWithSHA1"
121#define NID_dsaWithSHA1 113
122#define OBJ_dsaWithSHA1 OBJ_X9cm,3L
123
124#define SN_ansi_X9_62 "ansi-X9-62"
125#define LN_ansi_X9_62 "ANSI X9.62"
126#define NID_ansi_X9_62 405
127#define OBJ_ansi_X9_62 OBJ_ISO_US,10045L
128
129#define OBJ_X9_62_id_fieldType OBJ_ansi_X9_62,1L
130
131#define SN_X9_62_prime_field "prime-field"
132#define NID_X9_62_prime_field 406
133#define OBJ_X9_62_prime_field OBJ_X9_62_id_fieldType,1L
134
135#define SN_X9_62_characteristic_two_field "characteristic-two-field"
136#define NID_X9_62_characteristic_two_field 407
137#define OBJ_X9_62_characteristic_two_field OBJ_X9_62_id_fieldType,2L
138
139#define OBJ_X9_62_id_publicKeyType OBJ_ansi_X9_62,2L
140
141#define SN_X9_62_id_ecPublicKey "id-ecPublicKey"
142#define NID_X9_62_id_ecPublicKey 408
143#define OBJ_X9_62_id_ecPublicKey OBJ_X9_62_id_publicKeyType,1L
144
145#define OBJ_X9_62_ellipticCurve OBJ_ansi_X9_62,3L
146
147#define OBJ_X9_62_c_TwoCurve OBJ_X9_62_ellipticCurve,0L
148
149#define OBJ_X9_62_primeCurve OBJ_X9_62_ellipticCurve,1L
150
151#define SN_X9_62_prime192v1 "prime192v1"
152#define NID_X9_62_prime192v1 409
153#define OBJ_X9_62_prime192v1 OBJ_X9_62_primeCurve,1L
154
155#define SN_X9_62_prime192v2 "prime192v2"
156#define NID_X9_62_prime192v2 410
157#define OBJ_X9_62_prime192v2 OBJ_X9_62_primeCurve,2L
158
159#define SN_X9_62_prime192v3 "prime192v3"
160#define NID_X9_62_prime192v3 411
161#define OBJ_X9_62_prime192v3 OBJ_X9_62_primeCurve,3L
162
163#define SN_X9_62_prime239v1 "prime239v1"
164#define NID_X9_62_prime239v1 412
165#define OBJ_X9_62_prime239v1 OBJ_X9_62_primeCurve,4L
166
167#define SN_X9_62_prime239v2 "prime239v2"
168#define NID_X9_62_prime239v2 413
169#define OBJ_X9_62_prime239v2 OBJ_X9_62_primeCurve,5L
170
171#define SN_X9_62_prime239v3 "prime239v3"
172#define NID_X9_62_prime239v3 414
173#define OBJ_X9_62_prime239v3 OBJ_X9_62_primeCurve,6L
174
175#define SN_X9_62_prime256v1 "prime256v1"
176#define NID_X9_62_prime256v1 415
177#define OBJ_X9_62_prime256v1 OBJ_X9_62_primeCurve,7L
178
179#define OBJ_X9_62_id_ecSigType OBJ_ansi_X9_62,4L
180
181#define SN_ecdsa_with_SHA1 "ecdsa-with-SHA1"
182#define NID_ecdsa_with_SHA1 416
183#define OBJ_ecdsa_with_SHA1 OBJ_X9_62_id_ecSigType,1L
184
185#define SN_cast5_cbc "CAST5-CBC"
186#define LN_cast5_cbc "cast5-cbc"
187#define NID_cast5_cbc 108
188#define OBJ_cast5_cbc OBJ_ISO_US,113533L,7L,66L,10L
189
190#define SN_cast5_ecb "CAST5-ECB"
191#define LN_cast5_ecb "cast5-ecb"
192#define NID_cast5_ecb 109
193
194#define SN_cast5_cfb64 "CAST5-CFB"
195#define LN_cast5_cfb64 "cast5-cfb"
196#define NID_cast5_cfb64 110
197
198#define SN_cast5_ofb64 "CAST5-OFB"
199#define LN_cast5_ofb64 "cast5-ofb"
200#define NID_cast5_ofb64 111
201
202#define LN_pbeWithMD5AndCast5_CBC "pbeWithMD5AndCast5CBC"
203#define NID_pbeWithMD5AndCast5_CBC 112
204#define OBJ_pbeWithMD5AndCast5_CBC OBJ_ISO_US,113533L,7L,66L,12L
205
206#define SN_rsadsi "rsadsi"
207#define LN_rsadsi "RSA Data Security, Inc."
208#define NID_rsadsi 1
209#define OBJ_rsadsi OBJ_ISO_US,113549L
210
211#define SN_pkcs "pkcs"
212#define LN_pkcs "RSA Data Security, Inc. PKCS"
213#define NID_pkcs 2
214#define OBJ_pkcs OBJ_rsadsi,1L
215
216#define SN_pkcs1 "pkcs1"
217#define NID_pkcs1 186
218#define OBJ_pkcs1 OBJ_pkcs,1L
219
220#define LN_rsaEncryption "rsaEncryption"
221#define NID_rsaEncryption 6
222#define OBJ_rsaEncryption OBJ_pkcs1,1L
223
224#define SN_md2WithRSAEncryption "RSA-MD2"
225#define LN_md2WithRSAEncryption "md2WithRSAEncryption"
226#define NID_md2WithRSAEncryption 7
227#define OBJ_md2WithRSAEncryption OBJ_pkcs1,2L
228
229#define SN_md4WithRSAEncryption "RSA-MD4"
230#define LN_md4WithRSAEncryption "md4WithRSAEncryption"
231#define NID_md4WithRSAEncryption 396
232#define OBJ_md4WithRSAEncryption OBJ_pkcs1,3L
233
234#define SN_md5WithRSAEncryption "RSA-MD5"
235#define LN_md5WithRSAEncryption "md5WithRSAEncryption"
236#define NID_md5WithRSAEncryption 8
237#define OBJ_md5WithRSAEncryption OBJ_pkcs1,4L
238
239#define SN_sha1WithRSAEncryption "RSA-SHA1"
240#define LN_sha1WithRSAEncryption "sha1WithRSAEncryption"
241#define NID_sha1WithRSAEncryption 65
242#define OBJ_sha1WithRSAEncryption OBJ_pkcs1,5L
243
244#define SN_pkcs3 "pkcs3"
245#define NID_pkcs3 27
246#define OBJ_pkcs3 OBJ_pkcs,3L
247
248#define LN_dhKeyAgreement "dhKeyAgreement"
249#define NID_dhKeyAgreement 28
250#define OBJ_dhKeyAgreement OBJ_pkcs3,1L
251
252#define SN_pkcs5 "pkcs5"
253#define NID_pkcs5 187
254#define OBJ_pkcs5 OBJ_pkcs,5L
255
256#define SN_pbeWithMD2AndDES_CBC "PBE-MD2-DES"
257#define LN_pbeWithMD2AndDES_CBC "pbeWithMD2AndDES-CBC"
258#define NID_pbeWithMD2AndDES_CBC 9
259#define OBJ_pbeWithMD2AndDES_CBC OBJ_pkcs5,1L
260
261#define SN_pbeWithMD5AndDES_CBC "PBE-MD5-DES"
262#define LN_pbeWithMD5AndDES_CBC "pbeWithMD5AndDES-CBC"
263#define NID_pbeWithMD5AndDES_CBC 10
264#define OBJ_pbeWithMD5AndDES_CBC OBJ_pkcs5,3L
265
266#define SN_pbeWithMD2AndRC2_CBC "PBE-MD2-RC2-64"
267#define LN_pbeWithMD2AndRC2_CBC "pbeWithMD2AndRC2-CBC"
268#define NID_pbeWithMD2AndRC2_CBC 168
269#define OBJ_pbeWithMD2AndRC2_CBC OBJ_pkcs5,4L
270
271#define SN_pbeWithMD5AndRC2_CBC "PBE-MD5-RC2-64"
272#define LN_pbeWithMD5AndRC2_CBC "pbeWithMD5AndRC2-CBC"
273#define NID_pbeWithMD5AndRC2_CBC 169
274#define OBJ_pbeWithMD5AndRC2_CBC OBJ_pkcs5,6L
275
276#define SN_pbeWithSHA1AndDES_CBC "PBE-SHA1-DES"
277#define LN_pbeWithSHA1AndDES_CBC "pbeWithSHA1AndDES-CBC"
278#define NID_pbeWithSHA1AndDES_CBC 170
279#define OBJ_pbeWithSHA1AndDES_CBC OBJ_pkcs5,10L
280
281#define SN_pbeWithSHA1AndRC2_CBC "PBE-SHA1-RC2-64"
282#define LN_pbeWithSHA1AndRC2_CBC "pbeWithSHA1AndRC2-CBC"
283#define NID_pbeWithSHA1AndRC2_CBC 68
284#define OBJ_pbeWithSHA1AndRC2_CBC OBJ_pkcs5,11L
285
286#define LN_id_pbkdf2 "PBKDF2"
287#define NID_id_pbkdf2 69
288#define OBJ_id_pbkdf2 OBJ_pkcs5,12L
289
290#define LN_pbes2 "PBES2"
291#define NID_pbes2 161
292#define OBJ_pbes2 OBJ_pkcs5,13L
293
294#define LN_pbmac1 "PBMAC1"
295#define NID_pbmac1 162
296#define OBJ_pbmac1 OBJ_pkcs5,14L
297
298#define SN_pkcs7 "pkcs7"
299#define NID_pkcs7 20
300#define OBJ_pkcs7 OBJ_pkcs,7L
301
302#define LN_pkcs7_data "pkcs7-data"
303#define NID_pkcs7_data 21
304#define OBJ_pkcs7_data OBJ_pkcs7,1L
305
306#define LN_pkcs7_signed "pkcs7-signedData"
307#define NID_pkcs7_signed 22
308#define OBJ_pkcs7_signed OBJ_pkcs7,2L
309
310#define LN_pkcs7_enveloped "pkcs7-envelopedData"
311#define NID_pkcs7_enveloped 23
312#define OBJ_pkcs7_enveloped OBJ_pkcs7,3L
313
314#define LN_pkcs7_signedAndEnveloped "pkcs7-signedAndEnvelopedData"
315#define NID_pkcs7_signedAndEnveloped 24
316#define OBJ_pkcs7_signedAndEnveloped OBJ_pkcs7,4L
317
318#define LN_pkcs7_digest "pkcs7-digestData"
319#define NID_pkcs7_digest 25
320#define OBJ_pkcs7_digest OBJ_pkcs7,5L
321
322#define LN_pkcs7_encrypted "pkcs7-encryptedData"
323#define NID_pkcs7_encrypted 26
324#define OBJ_pkcs7_encrypted OBJ_pkcs7,6L
325
326#define SN_pkcs9 "pkcs9"
327#define NID_pkcs9 47
328#define OBJ_pkcs9 OBJ_pkcs,9L
329
330#define LN_pkcs9_emailAddress "emailAddress"
331#define NID_pkcs9_emailAddress 48
332#define OBJ_pkcs9_emailAddress OBJ_pkcs9,1L
333
334#define LN_pkcs9_unstructuredName "unstructuredName"
335#define NID_pkcs9_unstructuredName 49
336#define OBJ_pkcs9_unstructuredName OBJ_pkcs9,2L
337
338#define LN_pkcs9_contentType "contentType"
339#define NID_pkcs9_contentType 50
340#define OBJ_pkcs9_contentType OBJ_pkcs9,3L
341
342#define LN_pkcs9_messageDigest "messageDigest"
343#define NID_pkcs9_messageDigest 51
344#define OBJ_pkcs9_messageDigest OBJ_pkcs9,4L
345
346#define LN_pkcs9_signingTime "signingTime"
347#define NID_pkcs9_signingTime 52
348#define OBJ_pkcs9_signingTime OBJ_pkcs9,5L
349
350#define LN_pkcs9_countersignature "countersignature"
351#define NID_pkcs9_countersignature 53
352#define OBJ_pkcs9_countersignature OBJ_pkcs9,6L
353
354#define LN_pkcs9_challengePassword "challengePassword"
355#define NID_pkcs9_challengePassword 54
356#define OBJ_pkcs9_challengePassword OBJ_pkcs9,7L
357
358#define LN_pkcs9_unstructuredAddress "unstructuredAddress"
359#define NID_pkcs9_unstructuredAddress 55
360#define OBJ_pkcs9_unstructuredAddress OBJ_pkcs9,8L
361
362#define LN_pkcs9_extCertAttributes "extendedCertificateAttributes"
363#define NID_pkcs9_extCertAttributes 56
364#define OBJ_pkcs9_extCertAttributes OBJ_pkcs9,9L
365
366#define SN_ext_req "extReq"
367#define LN_ext_req "Extension Request"
368#define NID_ext_req 172
369#define OBJ_ext_req OBJ_pkcs9,14L
370
371#define SN_SMIMECapabilities "SMIME-CAPS"
372#define LN_SMIMECapabilities "S/MIME Capabilities"
373#define NID_SMIMECapabilities 167
374#define OBJ_SMIMECapabilities OBJ_pkcs9,15L
375
376#define SN_SMIME "SMIME"
377#define LN_SMIME "S/MIME"
378#define NID_SMIME 188
379#define OBJ_SMIME OBJ_pkcs9,16L
380
381#define SN_id_smime_mod "id-smime-mod"
382#define NID_id_smime_mod 189
383#define OBJ_id_smime_mod OBJ_SMIME,0L
384
385#define SN_id_smime_ct "id-smime-ct"
386#define NID_id_smime_ct 190
387#define OBJ_id_smime_ct OBJ_SMIME,1L
388
389#define SN_id_smime_aa "id-smime-aa"
390#define NID_id_smime_aa 191
391#define OBJ_id_smime_aa OBJ_SMIME,2L
392
393#define SN_id_smime_alg "id-smime-alg"
394#define NID_id_smime_alg 192
395#define OBJ_id_smime_alg OBJ_SMIME,3L
396
397#define SN_id_smime_cd "id-smime-cd"
398#define NID_id_smime_cd 193
399#define OBJ_id_smime_cd OBJ_SMIME,4L
400
401#define SN_id_smime_spq "id-smime-spq"
402#define NID_id_smime_spq 194
403#define OBJ_id_smime_spq OBJ_SMIME,5L
404
405#define SN_id_smime_cti "id-smime-cti"
406#define NID_id_smime_cti 195
407#define OBJ_id_smime_cti OBJ_SMIME,6L
408
409#define SN_id_smime_mod_cms "id-smime-mod-cms"
410#define NID_id_smime_mod_cms 196
411#define OBJ_id_smime_mod_cms OBJ_id_smime_mod,1L
412
413#define SN_id_smime_mod_ess "id-smime-mod-ess"
414#define NID_id_smime_mod_ess 197
415#define OBJ_id_smime_mod_ess OBJ_id_smime_mod,2L
416
417#define SN_id_smime_mod_oid "id-smime-mod-oid"
418#define NID_id_smime_mod_oid 198
419#define OBJ_id_smime_mod_oid OBJ_id_smime_mod,3L
420
421#define SN_id_smime_mod_msg_v3 "id-smime-mod-msg-v3"
422#define NID_id_smime_mod_msg_v3 199
423#define OBJ_id_smime_mod_msg_v3 OBJ_id_smime_mod,4L
424
425#define SN_id_smime_mod_ets_eSignature_88 "id-smime-mod-ets-eSignature-88"
426#define NID_id_smime_mod_ets_eSignature_88 200
427#define OBJ_id_smime_mod_ets_eSignature_88 OBJ_id_smime_mod,5L
428
429#define SN_id_smime_mod_ets_eSignature_97 "id-smime-mod-ets-eSignature-97"
430#define NID_id_smime_mod_ets_eSignature_97 201
431#define OBJ_id_smime_mod_ets_eSignature_97 OBJ_id_smime_mod,6L
432
433#define SN_id_smime_mod_ets_eSigPolicy_88 "id-smime-mod-ets-eSigPolicy-88"
434#define NID_id_smime_mod_ets_eSigPolicy_88 202
435#define OBJ_id_smime_mod_ets_eSigPolicy_88 OBJ_id_smime_mod,7L
436
437#define SN_id_smime_mod_ets_eSigPolicy_97 "id-smime-mod-ets-eSigPolicy-97"
438#define NID_id_smime_mod_ets_eSigPolicy_97 203
439#define OBJ_id_smime_mod_ets_eSigPolicy_97 OBJ_id_smime_mod,8L
440
441#define SN_id_smime_ct_receipt "id-smime-ct-receipt"
442#define NID_id_smime_ct_receipt 204
443#define OBJ_id_smime_ct_receipt OBJ_id_smime_ct,1L
444
445#define SN_id_smime_ct_authData "id-smime-ct-authData"
446#define NID_id_smime_ct_authData 205
447#define OBJ_id_smime_ct_authData OBJ_id_smime_ct,2L
448
449#define SN_id_smime_ct_publishCert "id-smime-ct-publishCert"
450#define NID_id_smime_ct_publishCert 206
451#define OBJ_id_smime_ct_publishCert OBJ_id_smime_ct,3L
452
453#define SN_id_smime_ct_TSTInfo "id-smime-ct-TSTInfo"
454#define NID_id_smime_ct_TSTInfo 207
455#define OBJ_id_smime_ct_TSTInfo OBJ_id_smime_ct,4L
456
457#define SN_id_smime_ct_TDTInfo "id-smime-ct-TDTInfo"
458#define NID_id_smime_ct_TDTInfo 208
459#define OBJ_id_smime_ct_TDTInfo OBJ_id_smime_ct,5L
460
461#define SN_id_smime_ct_contentInfo "id-smime-ct-contentInfo"
462#define NID_id_smime_ct_contentInfo 209
463#define OBJ_id_smime_ct_contentInfo OBJ_id_smime_ct,6L
464
465#define SN_id_smime_ct_DVCSRequestData "id-smime-ct-DVCSRequestData"
466#define NID_id_smime_ct_DVCSRequestData 210
467#define OBJ_id_smime_ct_DVCSRequestData OBJ_id_smime_ct,7L
468
469#define SN_id_smime_ct_DVCSResponseData "id-smime-ct-DVCSResponseData"
470#define NID_id_smime_ct_DVCSResponseData 211
471#define OBJ_id_smime_ct_DVCSResponseData OBJ_id_smime_ct,8L
472
473#define SN_id_smime_aa_receiptRequest "id-smime-aa-receiptRequest"
474#define NID_id_smime_aa_receiptRequest 212
475#define OBJ_id_smime_aa_receiptRequest OBJ_id_smime_aa,1L
476
477#define SN_id_smime_aa_securityLabel "id-smime-aa-securityLabel"
478#define NID_id_smime_aa_securityLabel 213
479#define OBJ_id_smime_aa_securityLabel OBJ_id_smime_aa,2L
480
481#define SN_id_smime_aa_mlExpandHistory "id-smime-aa-mlExpandHistory"
482#define NID_id_smime_aa_mlExpandHistory 214
483#define OBJ_id_smime_aa_mlExpandHistory OBJ_id_smime_aa,3L
484
485#define SN_id_smime_aa_contentHint "id-smime-aa-contentHint"
486#define NID_id_smime_aa_contentHint 215
487#define OBJ_id_smime_aa_contentHint OBJ_id_smime_aa,4L
488
489#define SN_id_smime_aa_msgSigDigest "id-smime-aa-msgSigDigest"
490#define NID_id_smime_aa_msgSigDigest 216
491#define OBJ_id_smime_aa_msgSigDigest OBJ_id_smime_aa,5L
492
493#define SN_id_smime_aa_encapContentType "id-smime-aa-encapContentType"
494#define NID_id_smime_aa_encapContentType 217
495#define OBJ_id_smime_aa_encapContentType OBJ_id_smime_aa,6L
496
497#define SN_id_smime_aa_contentIdentifier "id-smime-aa-contentIdentifier"
498#define NID_id_smime_aa_contentIdentifier 218
499#define OBJ_id_smime_aa_contentIdentifier OBJ_id_smime_aa,7L
500
501#define SN_id_smime_aa_macValue "id-smime-aa-macValue"
502#define NID_id_smime_aa_macValue 219
503#define OBJ_id_smime_aa_macValue OBJ_id_smime_aa,8L
504
505#define SN_id_smime_aa_equivalentLabels "id-smime-aa-equivalentLabels"
506#define NID_id_smime_aa_equivalentLabels 220
507#define OBJ_id_smime_aa_equivalentLabels OBJ_id_smime_aa,9L
508
509#define SN_id_smime_aa_contentReference "id-smime-aa-contentReference"
510#define NID_id_smime_aa_contentReference 221
511#define OBJ_id_smime_aa_contentReference OBJ_id_smime_aa,10L
512
513#define SN_id_smime_aa_encrypKeyPref "id-smime-aa-encrypKeyPref"
514#define NID_id_smime_aa_encrypKeyPref 222
515#define OBJ_id_smime_aa_encrypKeyPref OBJ_id_smime_aa,11L
516
517#define SN_id_smime_aa_signingCertificate "id-smime-aa-signingCertificate"
518#define NID_id_smime_aa_signingCertificate 223
519#define OBJ_id_smime_aa_signingCertificate OBJ_id_smime_aa,12L
520
521#define SN_id_smime_aa_smimeEncryptCerts "id-smime-aa-smimeEncryptCerts"
522#define NID_id_smime_aa_smimeEncryptCerts 224
523#define OBJ_id_smime_aa_smimeEncryptCerts OBJ_id_smime_aa,13L
524
525#define SN_id_smime_aa_timeStampToken "id-smime-aa-timeStampToken"
526#define NID_id_smime_aa_timeStampToken 225
527#define OBJ_id_smime_aa_timeStampToken OBJ_id_smime_aa,14L
528
529#define SN_id_smime_aa_ets_sigPolicyId "id-smime-aa-ets-sigPolicyId"
530#define NID_id_smime_aa_ets_sigPolicyId 226
531#define OBJ_id_smime_aa_ets_sigPolicyId OBJ_id_smime_aa,15L
532
533#define SN_id_smime_aa_ets_commitmentType "id-smime-aa-ets-commitmentType"
534#define NID_id_smime_aa_ets_commitmentType 227
535#define OBJ_id_smime_aa_ets_commitmentType OBJ_id_smime_aa,16L
536
537#define SN_id_smime_aa_ets_signerLocation "id-smime-aa-ets-signerLocation"
538#define NID_id_smime_aa_ets_signerLocation 228
539#define OBJ_id_smime_aa_ets_signerLocation OBJ_id_smime_aa,17L
540
541#define SN_id_smime_aa_ets_signerAttr "id-smime-aa-ets-signerAttr"
542#define NID_id_smime_aa_ets_signerAttr 229
543#define OBJ_id_smime_aa_ets_signerAttr OBJ_id_smime_aa,18L
544
545#define SN_id_smime_aa_ets_otherSigCert "id-smime-aa-ets-otherSigCert"
546#define NID_id_smime_aa_ets_otherSigCert 230
547#define OBJ_id_smime_aa_ets_otherSigCert OBJ_id_smime_aa,19L
548
549#define SN_id_smime_aa_ets_contentTimestamp "id-smime-aa-ets-contentTimestamp"
550#define NID_id_smime_aa_ets_contentTimestamp 231
551#define OBJ_id_smime_aa_ets_contentTimestamp OBJ_id_smime_aa,20L
552
553#define SN_id_smime_aa_ets_CertificateRefs "id-smime-aa-ets-CertificateRefs"
554#define NID_id_smime_aa_ets_CertificateRefs 232
555#define OBJ_id_smime_aa_ets_CertificateRefs OBJ_id_smime_aa,21L
556
557#define SN_id_smime_aa_ets_RevocationRefs "id-smime-aa-ets-RevocationRefs"
558#define NID_id_smime_aa_ets_RevocationRefs 233
559#define OBJ_id_smime_aa_ets_RevocationRefs OBJ_id_smime_aa,22L
560
561#define SN_id_smime_aa_ets_certValues "id-smime-aa-ets-certValues"
562#define NID_id_smime_aa_ets_certValues 234
563#define OBJ_id_smime_aa_ets_certValues OBJ_id_smime_aa,23L
564
565#define SN_id_smime_aa_ets_revocationValues "id-smime-aa-ets-revocationValues"
566#define NID_id_smime_aa_ets_revocationValues 235
567#define OBJ_id_smime_aa_ets_revocationValues OBJ_id_smime_aa,24L
568
569#define SN_id_smime_aa_ets_escTimeStamp "id-smime-aa-ets-escTimeStamp"
570#define NID_id_smime_aa_ets_escTimeStamp 236
571#define OBJ_id_smime_aa_ets_escTimeStamp OBJ_id_smime_aa,25L
572
573#define SN_id_smime_aa_ets_certCRLTimestamp "id-smime-aa-ets-certCRLTimestamp"
574#define NID_id_smime_aa_ets_certCRLTimestamp 237
575#define OBJ_id_smime_aa_ets_certCRLTimestamp OBJ_id_smime_aa,26L
576
577#define SN_id_smime_aa_ets_archiveTimeStamp "id-smime-aa-ets-archiveTimeStamp"
578#define NID_id_smime_aa_ets_archiveTimeStamp 238
579#define OBJ_id_smime_aa_ets_archiveTimeStamp OBJ_id_smime_aa,27L
580
581#define SN_id_smime_aa_signatureType "id-smime-aa-signatureType"
582#define NID_id_smime_aa_signatureType 239
583#define OBJ_id_smime_aa_signatureType OBJ_id_smime_aa,28L
584
585#define SN_id_smime_aa_dvcs_dvc "id-smime-aa-dvcs-dvc"
586#define NID_id_smime_aa_dvcs_dvc 240
587#define OBJ_id_smime_aa_dvcs_dvc OBJ_id_smime_aa,29L
588
589#define SN_id_smime_alg_ESDHwith3DES "id-smime-alg-ESDHwith3DES"
590#define NID_id_smime_alg_ESDHwith3DES 241
591#define OBJ_id_smime_alg_ESDHwith3DES OBJ_id_smime_alg,1L
592
593#define SN_id_smime_alg_ESDHwithRC2 "id-smime-alg-ESDHwithRC2"
594#define NID_id_smime_alg_ESDHwithRC2 242
595#define OBJ_id_smime_alg_ESDHwithRC2 OBJ_id_smime_alg,2L
596
597#define SN_id_smime_alg_3DESwrap "id-smime-alg-3DESwrap"
598#define NID_id_smime_alg_3DESwrap 243
599#define OBJ_id_smime_alg_3DESwrap OBJ_id_smime_alg,3L
600
601#define SN_id_smime_alg_RC2wrap "id-smime-alg-RC2wrap"
602#define NID_id_smime_alg_RC2wrap 244
603#define OBJ_id_smime_alg_RC2wrap OBJ_id_smime_alg,4L
604
605#define SN_id_smime_alg_ESDH "id-smime-alg-ESDH"
606#define NID_id_smime_alg_ESDH 245
607#define OBJ_id_smime_alg_ESDH OBJ_id_smime_alg,5L
608
609#define SN_id_smime_alg_CMS3DESwrap "id-smime-alg-CMS3DESwrap"
610#define NID_id_smime_alg_CMS3DESwrap 246
611#define OBJ_id_smime_alg_CMS3DESwrap OBJ_id_smime_alg,6L
612
613#define SN_id_smime_alg_CMSRC2wrap "id-smime-alg-CMSRC2wrap"
614#define NID_id_smime_alg_CMSRC2wrap 247
615#define OBJ_id_smime_alg_CMSRC2wrap OBJ_id_smime_alg,7L
616
617#define SN_id_smime_cd_ldap "id-smime-cd-ldap"
618#define NID_id_smime_cd_ldap 248
619#define OBJ_id_smime_cd_ldap OBJ_id_smime_cd,1L
620
621#define SN_id_smime_spq_ets_sqt_uri "id-smime-spq-ets-sqt-uri"
622#define NID_id_smime_spq_ets_sqt_uri 249
623#define OBJ_id_smime_spq_ets_sqt_uri OBJ_id_smime_spq,1L
624
625#define SN_id_smime_spq_ets_sqt_unotice "id-smime-spq-ets-sqt-unotice"
626#define NID_id_smime_spq_ets_sqt_unotice 250
627#define OBJ_id_smime_spq_ets_sqt_unotice OBJ_id_smime_spq,2L
628
629#define SN_id_smime_cti_ets_proofOfOrigin "id-smime-cti-ets-proofOfOrigin"
630#define NID_id_smime_cti_ets_proofOfOrigin 251
631#define OBJ_id_smime_cti_ets_proofOfOrigin OBJ_id_smime_cti,1L
632
633#define SN_id_smime_cti_ets_proofOfReceipt "id-smime-cti-ets-proofOfReceipt"
634#define NID_id_smime_cti_ets_proofOfReceipt 252
635#define OBJ_id_smime_cti_ets_proofOfReceipt OBJ_id_smime_cti,2L
636
637#define SN_id_smime_cti_ets_proofOfDelivery "id-smime-cti-ets-proofOfDelivery"
638#define NID_id_smime_cti_ets_proofOfDelivery 253
639#define OBJ_id_smime_cti_ets_proofOfDelivery OBJ_id_smime_cti,3L
640
641#define SN_id_smime_cti_ets_proofOfSender "id-smime-cti-ets-proofOfSender"
642#define NID_id_smime_cti_ets_proofOfSender 254
643#define OBJ_id_smime_cti_ets_proofOfSender OBJ_id_smime_cti,4L
644
645#define SN_id_smime_cti_ets_proofOfApproval "id-smime-cti-ets-proofOfApproval"
646#define NID_id_smime_cti_ets_proofOfApproval 255
647#define OBJ_id_smime_cti_ets_proofOfApproval OBJ_id_smime_cti,5L
648
649#define SN_id_smime_cti_ets_proofOfCreation "id-smime-cti-ets-proofOfCreation"
650#define NID_id_smime_cti_ets_proofOfCreation 256
651#define OBJ_id_smime_cti_ets_proofOfCreation OBJ_id_smime_cti,6L
652
653#define LN_friendlyName "friendlyName"
654#define NID_friendlyName 156
655#define OBJ_friendlyName OBJ_pkcs9,20L
656
657#define LN_localKeyID "localKeyID"
658#define NID_localKeyID 157
659#define OBJ_localKeyID OBJ_pkcs9,21L
660
661#define SN_ms_csp_name "CSPName"
662#define LN_ms_csp_name "Microsoft CSP Name"
663#define NID_ms_csp_name 417
664#define OBJ_ms_csp_name 1L,3L,6L,1L,4L,1L,311L,17L,1L
665
666#define OBJ_certTypes OBJ_pkcs9,22L
667
668#define LN_x509Certificate "x509Certificate"
669#define NID_x509Certificate 158
670#define OBJ_x509Certificate OBJ_certTypes,1L
671
672#define LN_sdsiCertificate "sdsiCertificate"
673#define NID_sdsiCertificate 159
674#define OBJ_sdsiCertificate OBJ_certTypes,2L
675
676#define OBJ_crlTypes OBJ_pkcs9,23L
677
678#define LN_x509Crl "x509Crl"
679#define NID_x509Crl 160
680#define OBJ_x509Crl OBJ_crlTypes,1L
681
682#define OBJ_pkcs12 OBJ_pkcs,12L
683
684#define OBJ_pkcs12_pbeids OBJ_pkcs12,1L
685
686#define SN_pbe_WithSHA1And128BitRC4 "PBE-SHA1-RC4-128"
687#define LN_pbe_WithSHA1And128BitRC4 "pbeWithSHA1And128BitRC4"
688#define NID_pbe_WithSHA1And128BitRC4 144
689#define OBJ_pbe_WithSHA1And128BitRC4 OBJ_pkcs12_pbeids,1L
690
691#define SN_pbe_WithSHA1And40BitRC4 "PBE-SHA1-RC4-40"
692#define LN_pbe_WithSHA1And40BitRC4 "pbeWithSHA1And40BitRC4"
693#define NID_pbe_WithSHA1And40BitRC4 145
694#define OBJ_pbe_WithSHA1And40BitRC4 OBJ_pkcs12_pbeids,2L
695
696#define SN_pbe_WithSHA1And3_Key_TripleDES_CBC "PBE-SHA1-3DES"
697#define LN_pbe_WithSHA1And3_Key_TripleDES_CBC "pbeWithSHA1And3-KeyTripleDES-CBC"
698#define NID_pbe_WithSHA1And3_Key_TripleDES_CBC 146
699#define OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC OBJ_pkcs12_pbeids,3L
700
701#define SN_pbe_WithSHA1And2_Key_TripleDES_CBC "PBE-SHA1-2DES"
702#define LN_pbe_WithSHA1And2_Key_TripleDES_CBC "pbeWithSHA1And2-KeyTripleDES-CBC"
703#define NID_pbe_WithSHA1And2_Key_TripleDES_CBC 147
704#define OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC OBJ_pkcs12_pbeids,4L
705
706#define SN_pbe_WithSHA1And128BitRC2_CBC "PBE-SHA1-RC2-128"
707#define LN_pbe_WithSHA1And128BitRC2_CBC "pbeWithSHA1And128BitRC2-CBC"
708#define NID_pbe_WithSHA1And128BitRC2_CBC 148
709#define OBJ_pbe_WithSHA1And128BitRC2_CBC OBJ_pkcs12_pbeids,5L
710
711#define SN_pbe_WithSHA1And40BitRC2_CBC "PBE-SHA1-RC2-40"
712#define LN_pbe_WithSHA1And40BitRC2_CBC "pbeWithSHA1And40BitRC2-CBC"
713#define NID_pbe_WithSHA1And40BitRC2_CBC 149
714#define OBJ_pbe_WithSHA1And40BitRC2_CBC OBJ_pkcs12_pbeids,6L
715
716#define OBJ_pkcs12_Version1 OBJ_pkcs12,10L
717
718#define OBJ_pkcs12_BagIds OBJ_pkcs12_Version1,1L
719
720#define LN_keyBag "keyBag"
721#define NID_keyBag 150
722#define OBJ_keyBag OBJ_pkcs12_BagIds,1L
723
724#define LN_pkcs8ShroudedKeyBag "pkcs8ShroudedKeyBag"
725#define NID_pkcs8ShroudedKeyBag 151
726#define OBJ_pkcs8ShroudedKeyBag OBJ_pkcs12_BagIds,2L
727
728#define LN_certBag "certBag"
729#define NID_certBag 152
730#define OBJ_certBag OBJ_pkcs12_BagIds,3L
731
732#define LN_crlBag "crlBag"
733#define NID_crlBag 153
734#define OBJ_crlBag OBJ_pkcs12_BagIds,4L
735
736#define LN_secretBag "secretBag"
737#define NID_secretBag 154
738#define OBJ_secretBag OBJ_pkcs12_BagIds,5L
739
740#define LN_safeContentsBag "safeContentsBag"
741#define NID_safeContentsBag 155
742#define OBJ_safeContentsBag OBJ_pkcs12_BagIds,6L
743
744#define SN_md2 "MD2"
745#define LN_md2 "md2"
746#define NID_md2 3
747#define OBJ_md2 OBJ_rsadsi,2L,2L
748
749#define SN_md4 "MD4"
750#define LN_md4 "md4"
751#define NID_md4 257
752#define OBJ_md4 OBJ_rsadsi,2L,4L
753
754#define SN_md5 "MD5"
755#define LN_md5 "md5"
756#define NID_md5 4
757#define OBJ_md5 OBJ_rsadsi,2L,5L
758
759#define SN_md5_sha1 "MD5-SHA1"
760#define LN_md5_sha1 "md5-sha1"
761#define NID_md5_sha1 114
762
763#define LN_hmacWithSHA1 "hmacWithSHA1"
764#define NID_hmacWithSHA1 163
765#define OBJ_hmacWithSHA1 OBJ_rsadsi,2L,7L
766
767#define SN_rc2_cbc "RC2-CBC"
768#define LN_rc2_cbc "rc2-cbc"
769#define NID_rc2_cbc 37
770#define OBJ_rc2_cbc OBJ_rsadsi,3L,2L
771
772#define SN_rc2_ecb "RC2-ECB"
773#define LN_rc2_ecb "rc2-ecb"
774#define NID_rc2_ecb 38
775
776#define SN_rc2_cfb64 "RC2-CFB"
777#define LN_rc2_cfb64 "rc2-cfb"
778#define NID_rc2_cfb64 39
779
780#define SN_rc2_ofb64 "RC2-OFB"
781#define LN_rc2_ofb64 "rc2-ofb"
782#define NID_rc2_ofb64 40
783
784#define SN_rc2_40_cbc "RC2-40-CBC"
785#define LN_rc2_40_cbc "rc2-40-cbc"
786#define NID_rc2_40_cbc 98
787
788#define SN_rc2_64_cbc "RC2-64-CBC"
789#define LN_rc2_64_cbc "rc2-64-cbc"
790#define NID_rc2_64_cbc 166
791
792#define SN_rc4 "RC4"
793#define LN_rc4 "rc4"
794#define NID_rc4 5
795#define OBJ_rc4 OBJ_rsadsi,3L,4L
796
797#define SN_rc4_40 "RC4-40"
798#define LN_rc4_40 "rc4-40"
799#define NID_rc4_40 97
800
801#define SN_des_ede3_cbc "DES-EDE3-CBC"
802#define LN_des_ede3_cbc "des-ede3-cbc"
803#define NID_des_ede3_cbc 44
804#define OBJ_des_ede3_cbc OBJ_rsadsi,3L,7L
805
806#define SN_rc5_cbc "RC5-CBC"
807#define LN_rc5_cbc "rc5-cbc"
808#define NID_rc5_cbc 120
809#define OBJ_rc5_cbc OBJ_rsadsi,3L,8L
810
811#define SN_rc5_ecb "RC5-ECB"
812#define LN_rc5_ecb "rc5-ecb"
813#define NID_rc5_ecb 121
814
815#define SN_rc5_cfb64 "RC5-CFB"
816#define LN_rc5_cfb64 "rc5-cfb"
817#define NID_rc5_cfb64 122
818
819#define SN_rc5_ofb64 "RC5-OFB"
820#define LN_rc5_ofb64 "rc5-ofb"
821#define NID_rc5_ofb64 123
822
823#define SN_ms_ext_req "msExtReq"
824#define LN_ms_ext_req "Microsoft Extension Request"
825#define NID_ms_ext_req 171
826#define OBJ_ms_ext_req 1L,3L,6L,1L,4L,1L,311L,2L,1L,14L
827
828#define SN_ms_code_ind "msCodeInd"
829#define LN_ms_code_ind "Microsoft Individual Code Signing"
830#define NID_ms_code_ind 134
831#define OBJ_ms_code_ind 1L,3L,6L,1L,4L,1L,311L,2L,1L,21L
832
833#define SN_ms_code_com "msCodeCom"
834#define LN_ms_code_com "Microsoft Commercial Code Signing"
835#define NID_ms_code_com 135
836#define OBJ_ms_code_com 1L,3L,6L,1L,4L,1L,311L,2L,1L,22L
837
838#define SN_ms_ctl_sign "msCTLSign"
839#define LN_ms_ctl_sign "Microsoft Trust List Signing"
840#define NID_ms_ctl_sign 136
841#define OBJ_ms_ctl_sign 1L,3L,6L,1L,4L,1L,311L,10L,3L,1L
842
843#define SN_ms_sgc "msSGC"
844#define LN_ms_sgc "Microsoft Server Gated Crypto"
845#define NID_ms_sgc 137
846#define OBJ_ms_sgc 1L,3L,6L,1L,4L,1L,311L,10L,3L,3L
847
848#define SN_ms_efs "msEFS"
849#define LN_ms_efs "Microsoft Encrypted File System"
850#define NID_ms_efs 138
851#define OBJ_ms_efs 1L,3L,6L,1L,4L,1L,311L,10L,3L,4L
852
853#define SN_idea_cbc "IDEA-CBC"
854#define LN_idea_cbc "idea-cbc"
855#define NID_idea_cbc 34
856#define OBJ_idea_cbc 1L,3L,6L,1L,4L,1L,188L,7L,1L,1L,2L
857
858#define SN_idea_ecb "IDEA-ECB"
859#define LN_idea_ecb "idea-ecb"
860#define NID_idea_ecb 36
861
862#define SN_idea_cfb64 "IDEA-CFB"
863#define LN_idea_cfb64 "idea-cfb"
864#define NID_idea_cfb64 35
865
866#define SN_idea_ofb64 "IDEA-OFB"
867#define LN_idea_ofb64 "idea-ofb"
868#define NID_idea_ofb64 46
869
870#define SN_bf_cbc "BF-CBC"
871#define LN_bf_cbc "bf-cbc"
872#define NID_bf_cbc 91
873#define OBJ_bf_cbc 1L,3L,6L,1L,4L,1L,3029L,1L,2L
874
875#define SN_bf_ecb "BF-ECB"
876#define LN_bf_ecb "bf-ecb"
877#define NID_bf_ecb 92
878
879#define SN_bf_cfb64 "BF-CFB"
880#define LN_bf_cfb64 "bf-cfb"
881#define NID_bf_cfb64 93
882
883#define SN_bf_ofb64 "BF-OFB"
884#define LN_bf_ofb64 "bf-ofb"
885#define NID_bf_ofb64 94
886
887#define SN_id_pkix "PKIX"
888#define NID_id_pkix 127
889#define OBJ_id_pkix 1L,3L,6L,1L,5L,5L,7L
890
891#define SN_id_pkix_mod "id-pkix-mod"
892#define NID_id_pkix_mod 258
893#define OBJ_id_pkix_mod OBJ_id_pkix,0L
894
895#define SN_id_pe "id-pe"
896#define NID_id_pe 175
897#define OBJ_id_pe OBJ_id_pkix,1L
898
899#define SN_id_qt "id-qt"
900#define NID_id_qt 259
901#define OBJ_id_qt OBJ_id_pkix,2L
902
903#define SN_id_kp "id-kp"
904#define NID_id_kp 128
905#define OBJ_id_kp OBJ_id_pkix,3L
906
907#define SN_id_it "id-it"
908#define NID_id_it 260
909#define OBJ_id_it OBJ_id_pkix,4L
910
911#define SN_id_pkip "id-pkip"
912#define NID_id_pkip 261
913#define OBJ_id_pkip OBJ_id_pkix,5L
914
915#define SN_id_alg "id-alg"
916#define NID_id_alg 262
917#define OBJ_id_alg OBJ_id_pkix,6L
918
919#define SN_id_cmc "id-cmc"
920#define NID_id_cmc 263
921#define OBJ_id_cmc OBJ_id_pkix,7L
922
923#define SN_id_on "id-on"
924#define NID_id_on 264
925#define OBJ_id_on OBJ_id_pkix,8L
926
927#define SN_id_pda "id-pda"
928#define NID_id_pda 265
929#define OBJ_id_pda OBJ_id_pkix,9L
930
931#define SN_id_aca "id-aca"
932#define NID_id_aca 266
933#define OBJ_id_aca OBJ_id_pkix,10L
934
935#define SN_id_qcs "id-qcs"
936#define NID_id_qcs 267
937#define OBJ_id_qcs OBJ_id_pkix,11L
938
939#define SN_id_cct "id-cct"
940#define NID_id_cct 268
941#define OBJ_id_cct OBJ_id_pkix,12L
942
943#define SN_id_ad "id-ad"
944#define NID_id_ad 176
945#define OBJ_id_ad OBJ_id_pkix,48L
946
947#define SN_id_pkix1_explicit_88 "id-pkix1-explicit-88"
948#define NID_id_pkix1_explicit_88 269
949#define OBJ_id_pkix1_explicit_88 OBJ_id_pkix_mod,1L
950
951#define SN_id_pkix1_implicit_88 "id-pkix1-implicit-88"
952#define NID_id_pkix1_implicit_88 270
953#define OBJ_id_pkix1_implicit_88 OBJ_id_pkix_mod,2L
954
955#define SN_id_pkix1_explicit_93 "id-pkix1-explicit-93"
956#define NID_id_pkix1_explicit_93 271
957#define OBJ_id_pkix1_explicit_93 OBJ_id_pkix_mod,3L
958
959#define SN_id_pkix1_implicit_93 "id-pkix1-implicit-93"
960#define NID_id_pkix1_implicit_93 272
961#define OBJ_id_pkix1_implicit_93 OBJ_id_pkix_mod,4L
962
963#define SN_id_mod_crmf "id-mod-crmf"
964#define NID_id_mod_crmf 273
965#define OBJ_id_mod_crmf OBJ_id_pkix_mod,5L
966
967#define SN_id_mod_cmc "id-mod-cmc"
968#define NID_id_mod_cmc 274
969#define OBJ_id_mod_cmc OBJ_id_pkix_mod,6L
970
971#define SN_id_mod_kea_profile_88 "id-mod-kea-profile-88"
972#define NID_id_mod_kea_profile_88 275
973#define OBJ_id_mod_kea_profile_88 OBJ_id_pkix_mod,7L
974
975#define SN_id_mod_kea_profile_93 "id-mod-kea-profile-93"
976#define NID_id_mod_kea_profile_93 276
977#define OBJ_id_mod_kea_profile_93 OBJ_id_pkix_mod,8L
978
979#define SN_id_mod_cmp "id-mod-cmp"
980#define NID_id_mod_cmp 277
981#define OBJ_id_mod_cmp OBJ_id_pkix_mod,9L
982
983#define SN_id_mod_qualified_cert_88 "id-mod-qualified-cert-88"
984#define NID_id_mod_qualified_cert_88 278
985#define OBJ_id_mod_qualified_cert_88 OBJ_id_pkix_mod,10L
986
987#define SN_id_mod_qualified_cert_93 "id-mod-qualified-cert-93"
988#define NID_id_mod_qualified_cert_93 279
989#define OBJ_id_mod_qualified_cert_93 OBJ_id_pkix_mod,11L
990
991#define SN_id_mod_attribute_cert "id-mod-attribute-cert"
992#define NID_id_mod_attribute_cert 280
993#define OBJ_id_mod_attribute_cert OBJ_id_pkix_mod,12L
994
995#define SN_id_mod_timestamp_protocol "id-mod-timestamp-protocol"
996#define NID_id_mod_timestamp_protocol 281
997#define OBJ_id_mod_timestamp_protocol OBJ_id_pkix_mod,13L
998
999#define SN_id_mod_ocsp "id-mod-ocsp"
1000#define NID_id_mod_ocsp 282
1001#define OBJ_id_mod_ocsp OBJ_id_pkix_mod,14L
1002
1003#define SN_id_mod_dvcs "id-mod-dvcs"
1004#define NID_id_mod_dvcs 283
1005#define OBJ_id_mod_dvcs OBJ_id_pkix_mod,15L
1006
1007#define SN_id_mod_cmp2000 "id-mod-cmp2000"
1008#define NID_id_mod_cmp2000 284
1009#define OBJ_id_mod_cmp2000 OBJ_id_pkix_mod,16L
1010
1011#define SN_info_access "authorityInfoAccess"
1012#define LN_info_access "Authority Information Access"
1013#define NID_info_access 177
1014#define OBJ_info_access OBJ_id_pe,1L
1015
1016#define SN_biometricInfo "biometricInfo"
1017#define LN_biometricInfo "Biometric Info"
1018#define NID_biometricInfo 285
1019#define OBJ_biometricInfo OBJ_id_pe,2L
1020
1021#define SN_qcStatements "qcStatements"
1022#define NID_qcStatements 286
1023#define OBJ_qcStatements OBJ_id_pe,3L
1024
1025#define SN_ac_auditEntity "ac-auditEntity"
1026#define NID_ac_auditEntity 287
1027#define OBJ_ac_auditEntity OBJ_id_pe,4L
1028
1029#define SN_ac_targeting "ac-targeting"
1030#define NID_ac_targeting 288
1031#define OBJ_ac_targeting OBJ_id_pe,5L
1032
1033#define SN_aaControls "aaControls"
1034#define NID_aaControls 289
1035#define OBJ_aaControls OBJ_id_pe,6L
1036
1037#define SN_sbqp_ipAddrBlock "sbqp-ipAddrBlock"
1038#define NID_sbqp_ipAddrBlock 290
1039#define OBJ_sbqp_ipAddrBlock OBJ_id_pe,7L
1040
1041#define SN_sbqp_autonomousSysNum "sbqp-autonomousSysNum"
1042#define NID_sbqp_autonomousSysNum 291
1043#define OBJ_sbqp_autonomousSysNum OBJ_id_pe,8L
1044
1045#define SN_sbqp_routerIdentifier "sbqp-routerIdentifier"
1046#define NID_sbqp_routerIdentifier 292
1047#define OBJ_sbqp_routerIdentifier OBJ_id_pe,9L
1048
1049#define SN_ac_proxying "ac-proxying"
1050#define NID_ac_proxying 397
1051#define OBJ_ac_proxying OBJ_id_pe,10L
1052
1053#define SN_sinfo_access "subjectInfoAccess"
1054#define LN_sinfo_access "Subject Information Access"
1055#define NID_sinfo_access 398
1056#define OBJ_sinfo_access OBJ_id_pe,11L
1057
1058#define SN_id_qt_cps "id-qt-cps"
1059#define LN_id_qt_cps "Policy Qualifier CPS"
1060#define NID_id_qt_cps 164
1061#define OBJ_id_qt_cps OBJ_id_qt,1L
1062
1063#define SN_id_qt_unotice "id-qt-unotice"
1064#define LN_id_qt_unotice "Policy Qualifier User Notice"
1065#define NID_id_qt_unotice 165
1066#define OBJ_id_qt_unotice OBJ_id_qt,2L
1067
1068#define SN_textNotice "textNotice"
1069#define NID_textNotice 293
1070#define OBJ_textNotice OBJ_id_qt,3L
1071
1072#define SN_server_auth "serverAuth"
1073#define LN_server_auth "TLS Web Server Authentication"
1074#define NID_server_auth 129
1075#define OBJ_server_auth OBJ_id_kp,1L
1076
1077#define SN_client_auth "clientAuth"
1078#define LN_client_auth "TLS Web Client Authentication"
1079#define NID_client_auth 130
1080#define OBJ_client_auth OBJ_id_kp,2L
1081
1082#define SN_code_sign "codeSigning"
1083#define LN_code_sign "Code Signing"
1084#define NID_code_sign 131
1085#define OBJ_code_sign OBJ_id_kp,3L
1086
1087#define SN_email_protect "emailProtection"
1088#define LN_email_protect "E-mail Protection"
1089#define NID_email_protect 132
1090#define OBJ_email_protect OBJ_id_kp,4L
1091
1092#define SN_ipsecEndSystem "ipsecEndSystem"
1093#define LN_ipsecEndSystem "IPSec End System"
1094#define NID_ipsecEndSystem 294
1095#define OBJ_ipsecEndSystem OBJ_id_kp,5L
1096
1097#define SN_ipsecTunnel "ipsecTunnel"
1098#define LN_ipsecTunnel "IPSec Tunnel"
1099#define NID_ipsecTunnel 295
1100#define OBJ_ipsecTunnel OBJ_id_kp,6L
1101
1102#define SN_ipsecUser "ipsecUser"
1103#define LN_ipsecUser "IPSec User"
1104#define NID_ipsecUser 296
1105#define OBJ_ipsecUser OBJ_id_kp,7L
1106
1107#define SN_time_stamp "timeStamping"
1108#define LN_time_stamp "Time Stamping"
1109#define NID_time_stamp 133
1110#define OBJ_time_stamp OBJ_id_kp,8L
1111
1112#define SN_OCSP_sign "OCSPSigning"
1113#define LN_OCSP_sign "OCSP Signing"
1114#define NID_OCSP_sign 180
1115#define OBJ_OCSP_sign OBJ_id_kp,9L
1116
1117#define SN_dvcs "DVCS"
1118#define LN_dvcs "dvcs"
1119#define NID_dvcs 297
1120#define OBJ_dvcs OBJ_id_kp,10L
1121
1122#define SN_id_it_caProtEncCert "id-it-caProtEncCert"
1123#define NID_id_it_caProtEncCert 298
1124#define OBJ_id_it_caProtEncCert OBJ_id_it,1L
1125
1126#define SN_id_it_signKeyPairTypes "id-it-signKeyPairTypes"
1127#define NID_id_it_signKeyPairTypes 299
1128#define OBJ_id_it_signKeyPairTypes OBJ_id_it,2L
1129
1130#define SN_id_it_encKeyPairTypes "id-it-encKeyPairTypes"
1131#define NID_id_it_encKeyPairTypes 300
1132#define OBJ_id_it_encKeyPairTypes OBJ_id_it,3L
1133
1134#define SN_id_it_preferredSymmAlg "id-it-preferredSymmAlg"
1135#define NID_id_it_preferredSymmAlg 301
1136#define OBJ_id_it_preferredSymmAlg OBJ_id_it,4L
1137
1138#define SN_id_it_caKeyUpdateInfo "id-it-caKeyUpdateInfo"
1139#define NID_id_it_caKeyUpdateInfo 302
1140#define OBJ_id_it_caKeyUpdateInfo OBJ_id_it,5L
1141
1142#define SN_id_it_currentCRL "id-it-currentCRL"
1143#define NID_id_it_currentCRL 303
1144#define OBJ_id_it_currentCRL OBJ_id_it,6L
1145
1146#define SN_id_it_unsupportedOIDs "id-it-unsupportedOIDs"
1147#define NID_id_it_unsupportedOIDs 304
1148#define OBJ_id_it_unsupportedOIDs OBJ_id_it,7L
1149
1150#define SN_id_it_subscriptionRequest "id-it-subscriptionRequest"
1151#define NID_id_it_subscriptionRequest 305
1152#define OBJ_id_it_subscriptionRequest OBJ_id_it,8L
1153
1154#define SN_id_it_subscriptionResponse "id-it-subscriptionResponse"
1155#define NID_id_it_subscriptionResponse 306
1156#define OBJ_id_it_subscriptionResponse OBJ_id_it,9L
1157
1158#define SN_id_it_keyPairParamReq "id-it-keyPairParamReq"
1159#define NID_id_it_keyPairParamReq 307
1160#define OBJ_id_it_keyPairParamReq OBJ_id_it,10L
1161
1162#define SN_id_it_keyPairParamRep "id-it-keyPairParamRep"
1163#define NID_id_it_keyPairParamRep 308
1164#define OBJ_id_it_keyPairParamRep OBJ_id_it,11L
1165
1166#define SN_id_it_revPassphrase "id-it-revPassphrase"
1167#define NID_id_it_revPassphrase 309
1168#define OBJ_id_it_revPassphrase OBJ_id_it,12L
1169
1170#define SN_id_it_implicitConfirm "id-it-implicitConfirm"
1171#define NID_id_it_implicitConfirm 310
1172#define OBJ_id_it_implicitConfirm OBJ_id_it,13L
1173
1174#define SN_id_it_confirmWaitTime "id-it-confirmWaitTime"
1175#define NID_id_it_confirmWaitTime 311
1176#define OBJ_id_it_confirmWaitTime OBJ_id_it,14L
1177
1178#define SN_id_it_origPKIMessage "id-it-origPKIMessage"
1179#define NID_id_it_origPKIMessage 312
1180#define OBJ_id_it_origPKIMessage OBJ_id_it,15L
1181
1182#define SN_id_regCtrl "id-regCtrl"
1183#define NID_id_regCtrl 313
1184#define OBJ_id_regCtrl OBJ_id_pkip,1L
1185
1186#define SN_id_regInfo "id-regInfo"
1187#define NID_id_regInfo 314
1188#define OBJ_id_regInfo OBJ_id_pkip,2L
1189
1190#define SN_id_regCtrl_regToken "id-regCtrl-regToken"
1191#define NID_id_regCtrl_regToken 315
1192#define OBJ_id_regCtrl_regToken OBJ_id_regCtrl,1L
1193
1194#define SN_id_regCtrl_authenticator "id-regCtrl-authenticator"
1195#define NID_id_regCtrl_authenticator 316
1196#define OBJ_id_regCtrl_authenticator OBJ_id_regCtrl,2L
1197
1198#define SN_id_regCtrl_pkiPublicationInfo "id-regCtrl-pkiPublicationInfo"
1199#define NID_id_regCtrl_pkiPublicationInfo 317
1200#define OBJ_id_regCtrl_pkiPublicationInfo OBJ_id_regCtrl,3L
1201
1202#define SN_id_regCtrl_pkiArchiveOptions "id-regCtrl-pkiArchiveOptions"
1203#define NID_id_regCtrl_pkiArchiveOptions 318
1204#define OBJ_id_regCtrl_pkiArchiveOptions OBJ_id_regCtrl,4L
1205
1206#define SN_id_regCtrl_oldCertID "id-regCtrl-oldCertID"
1207#define NID_id_regCtrl_oldCertID 319
1208#define OBJ_id_regCtrl_oldCertID OBJ_id_regCtrl,5L
1209
1210#define SN_id_regCtrl_protocolEncrKey "id-regCtrl-protocolEncrKey"
1211#define NID_id_regCtrl_protocolEncrKey 320
1212#define OBJ_id_regCtrl_protocolEncrKey OBJ_id_regCtrl,6L
1213
1214#define SN_id_regInfo_utf8Pairs "id-regInfo-utf8Pairs"
1215#define NID_id_regInfo_utf8Pairs 321
1216#define OBJ_id_regInfo_utf8Pairs OBJ_id_regInfo,1L
1217
1218#define SN_id_regInfo_certReq "id-regInfo-certReq"
1219#define NID_id_regInfo_certReq 322
1220#define OBJ_id_regInfo_certReq OBJ_id_regInfo,2L
1221
1222#define SN_id_alg_des40 "id-alg-des40"
1223#define NID_id_alg_des40 323
1224#define OBJ_id_alg_des40 OBJ_id_alg,1L
1225
1226#define SN_id_alg_noSignature "id-alg-noSignature"
1227#define NID_id_alg_noSignature 324
1228#define OBJ_id_alg_noSignature OBJ_id_alg,2L
1229
1230#define SN_id_alg_dh_sig_hmac_sha1 "id-alg-dh-sig-hmac-sha1"
1231#define NID_id_alg_dh_sig_hmac_sha1 325
1232#define OBJ_id_alg_dh_sig_hmac_sha1 OBJ_id_alg,3L
1233
1234#define SN_id_alg_dh_pop "id-alg-dh-pop"
1235#define NID_id_alg_dh_pop 326
1236#define OBJ_id_alg_dh_pop OBJ_id_alg,4L
1237
1238#define SN_id_cmc_statusInfo "id-cmc-statusInfo"
1239#define NID_id_cmc_statusInfo 327
1240#define OBJ_id_cmc_statusInfo OBJ_id_cmc,1L
1241
1242#define SN_id_cmc_identification "id-cmc-identification"
1243#define NID_id_cmc_identification 328
1244#define OBJ_id_cmc_identification OBJ_id_cmc,2L
1245
1246#define SN_id_cmc_identityProof "id-cmc-identityProof"
1247#define NID_id_cmc_identityProof 329
1248#define OBJ_id_cmc_identityProof OBJ_id_cmc,3L
1249
1250#define SN_id_cmc_dataReturn "id-cmc-dataReturn"
1251#define NID_id_cmc_dataReturn 330
1252#define OBJ_id_cmc_dataReturn OBJ_id_cmc,4L
1253
1254#define SN_id_cmc_transactionId "id-cmc-transactionId"
1255#define NID_id_cmc_transactionId 331
1256#define OBJ_id_cmc_transactionId OBJ_id_cmc,5L
1257
1258#define SN_id_cmc_senderNonce "id-cmc-senderNonce"
1259#define NID_id_cmc_senderNonce 332
1260#define OBJ_id_cmc_senderNonce OBJ_id_cmc,6L
1261
1262#define SN_id_cmc_recipientNonce "id-cmc-recipientNonce"
1263#define NID_id_cmc_recipientNonce 333
1264#define OBJ_id_cmc_recipientNonce OBJ_id_cmc,7L
1265
1266#define SN_id_cmc_addExtensions "id-cmc-addExtensions"
1267#define NID_id_cmc_addExtensions 334
1268#define OBJ_id_cmc_addExtensions OBJ_id_cmc,8L
1269
1270#define SN_id_cmc_encryptedPOP "id-cmc-encryptedPOP"
1271#define NID_id_cmc_encryptedPOP 335
1272#define OBJ_id_cmc_encryptedPOP OBJ_id_cmc,9L
1273
1274#define SN_id_cmc_decryptedPOP "id-cmc-decryptedPOP"
1275#define NID_id_cmc_decryptedPOP 336
1276#define OBJ_id_cmc_decryptedPOP OBJ_id_cmc,10L
1277
1278#define SN_id_cmc_lraPOPWitness "id-cmc-lraPOPWitness"
1279#define NID_id_cmc_lraPOPWitness 337
1280#define OBJ_id_cmc_lraPOPWitness OBJ_id_cmc,11L
1281
1282#define SN_id_cmc_getCert "id-cmc-getCert"
1283#define NID_id_cmc_getCert 338
1284#define OBJ_id_cmc_getCert OBJ_id_cmc,15L
1285
1286#define SN_id_cmc_getCRL "id-cmc-getCRL"
1287#define NID_id_cmc_getCRL 339
1288#define OBJ_id_cmc_getCRL OBJ_id_cmc,16L
1289
1290#define SN_id_cmc_revokeRequest "id-cmc-revokeRequest"
1291#define NID_id_cmc_revokeRequest 340
1292#define OBJ_id_cmc_revokeRequest OBJ_id_cmc,17L
1293
1294#define SN_id_cmc_regInfo "id-cmc-regInfo"
1295#define NID_id_cmc_regInfo 341
1296#define OBJ_id_cmc_regInfo OBJ_id_cmc,18L
1297
1298#define SN_id_cmc_responseInfo "id-cmc-responseInfo"
1299#define NID_id_cmc_responseInfo 342
1300#define OBJ_id_cmc_responseInfo OBJ_id_cmc,19L
1301
1302#define SN_id_cmc_queryPending "id-cmc-queryPending"
1303#define NID_id_cmc_queryPending 343
1304#define OBJ_id_cmc_queryPending OBJ_id_cmc,21L
1305
1306#define SN_id_cmc_popLinkRandom "id-cmc-popLinkRandom"
1307#define NID_id_cmc_popLinkRandom 344
1308#define OBJ_id_cmc_popLinkRandom OBJ_id_cmc,22L
1309
1310#define SN_id_cmc_popLinkWitness "id-cmc-popLinkWitness"
1311#define NID_id_cmc_popLinkWitness 345
1312#define OBJ_id_cmc_popLinkWitness OBJ_id_cmc,23L
1313
1314#define SN_id_cmc_confirmCertAcceptance "id-cmc-confirmCertAcceptance"
1315#define NID_id_cmc_confirmCertAcceptance 346
1316#define OBJ_id_cmc_confirmCertAcceptance OBJ_id_cmc,24L
1317
1318#define SN_id_on_personalData "id-on-personalData"
1319#define NID_id_on_personalData 347
1320#define OBJ_id_on_personalData OBJ_id_on,1L
1321
1322#define SN_id_pda_dateOfBirth "id-pda-dateOfBirth"
1323#define NID_id_pda_dateOfBirth 348
1324#define OBJ_id_pda_dateOfBirth OBJ_id_pda,1L
1325
1326#define SN_id_pda_placeOfBirth "id-pda-placeOfBirth"
1327#define NID_id_pda_placeOfBirth 349
1328#define OBJ_id_pda_placeOfBirth OBJ_id_pda,2L
1329
1330#define SN_id_pda_gender "id-pda-gender"
1331#define NID_id_pda_gender 351
1332#define OBJ_id_pda_gender OBJ_id_pda,3L
1333
1334#define SN_id_pda_countryOfCitizenship "id-pda-countryOfCitizenship"
1335#define NID_id_pda_countryOfCitizenship 352
1336#define OBJ_id_pda_countryOfCitizenship OBJ_id_pda,4L
1337
1338#define SN_id_pda_countryOfResidence "id-pda-countryOfResidence"
1339#define NID_id_pda_countryOfResidence 353
1340#define OBJ_id_pda_countryOfResidence OBJ_id_pda,5L
1341
1342#define SN_id_aca_authenticationInfo "id-aca-authenticationInfo"
1343#define NID_id_aca_authenticationInfo 354
1344#define OBJ_id_aca_authenticationInfo OBJ_id_aca,1L
1345
1346#define SN_id_aca_accessIdentity "id-aca-accessIdentity"
1347#define NID_id_aca_accessIdentity 355
1348#define OBJ_id_aca_accessIdentity OBJ_id_aca,2L
1349
1350#define SN_id_aca_chargingIdentity "id-aca-chargingIdentity"
1351#define NID_id_aca_chargingIdentity 356
1352#define OBJ_id_aca_chargingIdentity OBJ_id_aca,3L
1353
1354#define SN_id_aca_group "id-aca-group"
1355#define NID_id_aca_group 357
1356#define OBJ_id_aca_group OBJ_id_aca,4L
1357
1358#define SN_id_aca_role "id-aca-role"
1359#define NID_id_aca_role 358
1360#define OBJ_id_aca_role OBJ_id_aca,5L
1361
1362#define SN_id_aca_encAttrs "id-aca-encAttrs"
1363#define NID_id_aca_encAttrs 399
1364#define OBJ_id_aca_encAttrs OBJ_id_aca,6L
1365
1366#define SN_id_qcs_pkixQCSyntax_v1 "id-qcs-pkixQCSyntax-v1"
1367#define NID_id_qcs_pkixQCSyntax_v1 359
1368#define OBJ_id_qcs_pkixQCSyntax_v1 OBJ_id_qcs,1L
1369
1370#define SN_id_cct_crs "id-cct-crs"
1371#define NID_id_cct_crs 360
1372#define OBJ_id_cct_crs OBJ_id_cct,1L
1373
1374#define SN_id_cct_PKIData "id-cct-PKIData"
1375#define NID_id_cct_PKIData 361
1376#define OBJ_id_cct_PKIData OBJ_id_cct,2L
1377
1378#define SN_id_cct_PKIResponse "id-cct-PKIResponse"
1379#define NID_id_cct_PKIResponse 362
1380#define OBJ_id_cct_PKIResponse OBJ_id_cct,3L
1381
1382#define SN_ad_OCSP "OCSP"
1383#define LN_ad_OCSP "OCSP"
1384#define NID_ad_OCSP 178
1385#define OBJ_ad_OCSP OBJ_id_ad,1L
1386
1387#define SN_ad_ca_issuers "caIssuers"
1388#define LN_ad_ca_issuers "CA Issuers"
1389#define NID_ad_ca_issuers 179
1390#define OBJ_ad_ca_issuers OBJ_id_ad,2L
1391
1392#define SN_ad_timeStamping "ad_timestamping"
1393#define LN_ad_timeStamping "AD Time Stamping"
1394#define NID_ad_timeStamping 363
1395#define OBJ_ad_timeStamping OBJ_id_ad,3L
1396
1397#define SN_ad_dvcs "AD_DVCS"
1398#define LN_ad_dvcs "ad dvcs"
1399#define NID_ad_dvcs 364
1400#define OBJ_ad_dvcs OBJ_id_ad,4L
1401
1402#define OBJ_id_pkix_OCSP OBJ_ad_OCSP
1403
1404#define SN_id_pkix_OCSP_basic "basicOCSPResponse"
1405#define LN_id_pkix_OCSP_basic "Basic OCSP Response"
1406#define NID_id_pkix_OCSP_basic 365
1407#define OBJ_id_pkix_OCSP_basic OBJ_id_pkix_OCSP,1L
1408
1409#define SN_id_pkix_OCSP_Nonce "Nonce"
1410#define LN_id_pkix_OCSP_Nonce "OCSP Nonce"
1411#define NID_id_pkix_OCSP_Nonce 366
1412#define OBJ_id_pkix_OCSP_Nonce OBJ_id_pkix_OCSP,2L
1413
1414#define SN_id_pkix_OCSP_CrlID "CrlID"
1415#define LN_id_pkix_OCSP_CrlID "OCSP CRL ID"
1416#define NID_id_pkix_OCSP_CrlID 367
1417#define OBJ_id_pkix_OCSP_CrlID OBJ_id_pkix_OCSP,3L
1418
1419#define SN_id_pkix_OCSP_acceptableResponses "acceptableResponses"
1420#define LN_id_pkix_OCSP_acceptableResponses "Acceptable OCSP Responses"
1421#define NID_id_pkix_OCSP_acceptableResponses 368
1422#define OBJ_id_pkix_OCSP_acceptableResponses OBJ_id_pkix_OCSP,4L
1423
1424#define SN_id_pkix_OCSP_noCheck "noCheck"
1425#define LN_id_pkix_OCSP_noCheck "OCSP No Check"
1426#define NID_id_pkix_OCSP_noCheck 369
1427#define OBJ_id_pkix_OCSP_noCheck OBJ_id_pkix_OCSP,5L
1428
1429#define SN_id_pkix_OCSP_archiveCutoff "archiveCutoff"
1430#define LN_id_pkix_OCSP_archiveCutoff "OCSP Archive Cutoff"
1431#define NID_id_pkix_OCSP_archiveCutoff 370
1432#define OBJ_id_pkix_OCSP_archiveCutoff OBJ_id_pkix_OCSP,6L
1433
1434#define SN_id_pkix_OCSP_serviceLocator "serviceLocator"
1435#define LN_id_pkix_OCSP_serviceLocator "OCSP Service Locator"
1436#define NID_id_pkix_OCSP_serviceLocator 371
1437#define OBJ_id_pkix_OCSP_serviceLocator OBJ_id_pkix_OCSP,7L
1438
1439#define SN_id_pkix_OCSP_extendedStatus "extendedStatus"
1440#define LN_id_pkix_OCSP_extendedStatus "Extended OCSP Status"
1441#define NID_id_pkix_OCSP_extendedStatus 372
1442#define OBJ_id_pkix_OCSP_extendedStatus OBJ_id_pkix_OCSP,8L
1443
1444#define SN_id_pkix_OCSP_valid "valid"
1445#define NID_id_pkix_OCSP_valid 373
1446#define OBJ_id_pkix_OCSP_valid OBJ_id_pkix_OCSP,9L
1447
1448#define SN_id_pkix_OCSP_path "path"
1449#define NID_id_pkix_OCSP_path 374
1450#define OBJ_id_pkix_OCSP_path OBJ_id_pkix_OCSP,10L
1451
1452#define SN_id_pkix_OCSP_trustRoot "trustRoot"
1453#define LN_id_pkix_OCSP_trustRoot "Trust Root"
1454#define NID_id_pkix_OCSP_trustRoot 375
1455#define OBJ_id_pkix_OCSP_trustRoot OBJ_id_pkix_OCSP,11L
1456
1457#define SN_algorithm "algorithm"
1458#define LN_algorithm "algorithm"
1459#define NID_algorithm 376
1460#define OBJ_algorithm 1L,3L,14L,3L,2L
1461
1462#define SN_md5WithRSA "RSA-NP-MD5"
1463#define LN_md5WithRSA "md5WithRSA"
1464#define NID_md5WithRSA 104
1465#define OBJ_md5WithRSA OBJ_algorithm,3L
1466
1467#define SN_des_ecb "DES-ECB"
1468#define LN_des_ecb "des-ecb"
1469#define NID_des_ecb 29
1470#define OBJ_des_ecb OBJ_algorithm,6L
1471
1472#define SN_des_cbc "DES-CBC"
1473#define LN_des_cbc "des-cbc"
1474#define NID_des_cbc 31
1475#define OBJ_des_cbc OBJ_algorithm,7L
1476
1477#define SN_des_ofb64 "DES-OFB"
1478#define LN_des_ofb64 "des-ofb"
1479#define NID_des_ofb64 45
1480#define OBJ_des_ofb64 OBJ_algorithm,8L
1481
1482#define SN_des_cfb64 "DES-CFB"
1483#define LN_des_cfb64 "des-cfb"
1484#define NID_des_cfb64 30
1485#define OBJ_des_cfb64 OBJ_algorithm,9L
1486
1487#define SN_rsaSignature "rsaSignature"
1488#define NID_rsaSignature 377
1489#define OBJ_rsaSignature OBJ_algorithm,11L
1490
1491#define SN_dsa_2 "DSA-old"
1492#define LN_dsa_2 "dsaEncryption-old"
1493#define NID_dsa_2 67
1494#define OBJ_dsa_2 OBJ_algorithm,12L
1495
1496#define SN_dsaWithSHA "DSA-SHA"
1497#define LN_dsaWithSHA "dsaWithSHA"
1498#define NID_dsaWithSHA 66
1499#define OBJ_dsaWithSHA OBJ_algorithm,13L
1500
1501#define SN_shaWithRSAEncryption "RSA-SHA"
1502#define LN_shaWithRSAEncryption "shaWithRSAEncryption"
1503#define NID_shaWithRSAEncryption 42
1504#define OBJ_shaWithRSAEncryption OBJ_algorithm,15L
1505
1506#define SN_des_ede_ecb "DES-EDE"
1507#define LN_des_ede_ecb "des-ede"
1508#define NID_des_ede_ecb 32
1509#define OBJ_des_ede_ecb OBJ_algorithm,17L
1510
1511#define SN_des_ede3_ecb "DES-EDE3"
1512#define LN_des_ede3_ecb "des-ede3"
1513#define NID_des_ede3_ecb 33
1514
1515#define SN_des_ede_cbc "DES-EDE-CBC"
1516#define LN_des_ede_cbc "des-ede-cbc"
1517#define NID_des_ede_cbc 43
1518
1519#define SN_des_ede_cfb64 "DES-EDE-CFB"
1520#define LN_des_ede_cfb64 "des-ede-cfb"
1521#define NID_des_ede_cfb64 60
1522
1523#define SN_des_ede3_cfb64 "DES-EDE3-CFB"
1524#define LN_des_ede3_cfb64 "des-ede3-cfb"
1525#define NID_des_ede3_cfb64 61
1526
1527#define SN_des_ede_ofb64 "DES-EDE-OFB"
1528#define LN_des_ede_ofb64 "des-ede-ofb"
1529#define NID_des_ede_ofb64 62
1530
1531#define SN_des_ede3_ofb64 "DES-EDE3-OFB"
1532#define LN_des_ede3_ofb64 "des-ede3-ofb"
1533#define NID_des_ede3_ofb64 63
1534
1535#define SN_desx_cbc "DESX-CBC"
1536#define LN_desx_cbc "desx-cbc"
1537#define NID_desx_cbc 80
1538
1539#define SN_sha "SHA"
1540#define LN_sha "sha"
1541#define NID_sha 41
1542#define OBJ_sha OBJ_algorithm,18L
1543
1544#define SN_sha1 "SHA1"
1545#define LN_sha1 "sha1"
1546#define NID_sha1 64
1547#define OBJ_sha1 OBJ_algorithm,26L
1548
1549#define SN_dsaWithSHA1_2 "DSA-SHA1-old"
1550#define LN_dsaWithSHA1_2 "dsaWithSHA1-old"
1551#define NID_dsaWithSHA1_2 70
1552#define OBJ_dsaWithSHA1_2 OBJ_algorithm,27L
1553
1554#define SN_sha1WithRSA "RSA-SHA1-2"
1555#define LN_sha1WithRSA "sha1WithRSA"
1556#define NID_sha1WithRSA 115
1557#define OBJ_sha1WithRSA OBJ_algorithm,29L
1558
1559#define SN_ripemd160 "RIPEMD160"
1560#define LN_ripemd160 "ripemd160"
1561#define NID_ripemd160 117
1562#define OBJ_ripemd160 1L,3L,36L,3L,2L,1L
1563
1564#define SN_ripemd160WithRSA "RSA-RIPEMD160"
1565#define LN_ripemd160WithRSA "ripemd160WithRSA"
1566#define NID_ripemd160WithRSA 119
1567#define OBJ_ripemd160WithRSA 1L,3L,36L,3L,3L,1L,2L
1568
1569#define SN_sxnet "SXNetID"
1570#define LN_sxnet "Strong Extranet ID"
1571#define NID_sxnet 143
1572#define OBJ_sxnet 1L,3L,101L,1L,4L,1L
1573
1574#define SN_X500 "X500"
1575#define LN_X500 "directory services (X.500)"
1576#define NID_X500 11
1577#define OBJ_X500 2L,5L
1578
1579#define SN_X509 "X509"
1580#define NID_X509 12
1581#define OBJ_X509 OBJ_X500,4L
1582
1583#define SN_commonName "CN"
1584#define LN_commonName "commonName"
1585#define NID_commonName 13
1586#define OBJ_commonName OBJ_X509,3L
1587
1588#define SN_surname "SN"
1589#define LN_surname "surname"
1590#define NID_surname 100
1591#define OBJ_surname OBJ_X509,4L
1592
1593#define LN_serialNumber "serialNumber"
1594#define NID_serialNumber 105
1595#define OBJ_serialNumber OBJ_X509,5L
1596
1597#define SN_countryName "C"
1598#define LN_countryName "countryName"
1599#define NID_countryName 14
1600#define OBJ_countryName OBJ_X509,6L
1601
1602#define SN_localityName "L"
1603#define LN_localityName "localityName"
1604#define NID_localityName 15
1605#define OBJ_localityName OBJ_X509,7L
1606
1607#define SN_stateOrProvinceName "ST"
1608#define LN_stateOrProvinceName "stateOrProvinceName"
1609#define NID_stateOrProvinceName 16
1610#define OBJ_stateOrProvinceName OBJ_X509,8L
1611
1612#define SN_organizationName "O"
1613#define LN_organizationName "organizationName"
1614#define NID_organizationName 17
1615#define OBJ_organizationName OBJ_X509,10L
1616
1617#define SN_organizationalUnitName "OU"
1618#define LN_organizationalUnitName "organizationalUnitName"
1619#define NID_organizationalUnitName 18
1620#define OBJ_organizationalUnitName OBJ_X509,11L
1621
1622#define LN_title "title"
1623#define NID_title 106
1624#define OBJ_title OBJ_X509,12L
1625
1626#define LN_description "description"
1627#define NID_description 107
1628#define OBJ_description OBJ_X509,13L
1629
1630#define SN_name "name"
1631#define LN_name "name"
1632#define NID_name 173
1633#define OBJ_name OBJ_X509,41L
1634
1635#define SN_givenName "gn"
1636#define LN_givenName "givenName"
1637#define NID_givenName 99
1638#define OBJ_givenName OBJ_X509,42L
1639
1640#define LN_initials "initials"
1641#define NID_initials 101
1642#define OBJ_initials OBJ_X509,43L
1643
1644#define LN_generationQualifier "generationQualifier"
1645#define NID_generationQualifier 509
1646#define OBJ_generationQualifier OBJ_X509,44L
1647
1648#define LN_x500UniqueIdentifier "x500UniqueIdentifier"
1649#define NID_x500UniqueIdentifier 503
1650#define OBJ_x500UniqueIdentifier OBJ_X509,45L
1651
1652#define SN_dnQualifier "dnQualifier"
1653#define LN_dnQualifier "dnQualifier"
1654#define NID_dnQualifier 174
1655#define OBJ_dnQualifier OBJ_X509,46L
1656
1657#define SN_role "role"
1658#define LN_role "role"
1659#define NID_role 400
1660#define OBJ_role OBJ_X509,72L
1661
1662#define SN_X500algorithms "X500algorithms"
1663#define LN_X500algorithms "directory services - algorithms"
1664#define NID_X500algorithms 378
1665#define OBJ_X500algorithms OBJ_X500,8L
1666
1667#define SN_rsa "RSA"
1668#define LN_rsa "rsa"
1669#define NID_rsa 19
1670#define OBJ_rsa OBJ_X500algorithms,1L,1L
1671
1672#define SN_mdc2WithRSA "RSA-MDC2"
1673#define LN_mdc2WithRSA "mdc2WithRSA"
1674#define NID_mdc2WithRSA 96
1675#define OBJ_mdc2WithRSA OBJ_X500algorithms,3L,100L
1676
1677#define SN_mdc2 "MDC2"
1678#define LN_mdc2 "mdc2"
1679#define NID_mdc2 95
1680#define OBJ_mdc2 OBJ_X500algorithms,3L,101L
1681
1682#define SN_id_ce "id-ce"
1683#define NID_id_ce 81
1684#define OBJ_id_ce OBJ_X500,29L
1685
1686#define SN_subject_key_identifier "subjectKeyIdentifier"
1687#define LN_subject_key_identifier "X509v3 Subject Key Identifier"
1688#define NID_subject_key_identifier 82
1689#define OBJ_subject_key_identifier OBJ_id_ce,14L
1690
1691#define SN_key_usage "keyUsage"
1692#define LN_key_usage "X509v3 Key Usage"
1693#define NID_key_usage 83
1694#define OBJ_key_usage OBJ_id_ce,15L
1695
1696#define SN_private_key_usage_period "privateKeyUsagePeriod"
1697#define LN_private_key_usage_period "X509v3 Private Key Usage Period"
1698#define NID_private_key_usage_period 84
1699#define OBJ_private_key_usage_period OBJ_id_ce,16L
1700
1701#define SN_subject_alt_name "subjectAltName"
1702#define LN_subject_alt_name "X509v3 Subject Alternative Name"
1703#define NID_subject_alt_name 85
1704#define OBJ_subject_alt_name OBJ_id_ce,17L
1705
1706#define SN_issuer_alt_name "issuerAltName"
1707#define LN_issuer_alt_name "X509v3 Issuer Alternative Name"
1708#define NID_issuer_alt_name 86
1709#define OBJ_issuer_alt_name OBJ_id_ce,18L
1710
1711#define SN_basic_constraints "basicConstraints"
1712#define LN_basic_constraints "X509v3 Basic Constraints"
1713#define NID_basic_constraints 87
1714#define OBJ_basic_constraints OBJ_id_ce,19L
1715
1716#define SN_crl_number "crlNumber"
1717#define LN_crl_number "X509v3 CRL Number"
1718#define NID_crl_number 88
1719#define OBJ_crl_number OBJ_id_ce,20L
1720
1721#define SN_crl_reason "CRLReason"
1722#define LN_crl_reason "X509v3 CRL Reason Code"
1723#define NID_crl_reason 141
1724#define OBJ_crl_reason OBJ_id_ce,21L
1725
1726#define SN_invalidity_date "invalidityDate"
1727#define LN_invalidity_date "Invalidity Date"
1728#define NID_invalidity_date 142
1729#define OBJ_invalidity_date OBJ_id_ce,24L
1730
1731#define SN_delta_crl "deltaCRL"
1732#define LN_delta_crl "X509v3 Delta CRL Indicator"
1733#define NID_delta_crl 140
1734#define OBJ_delta_crl OBJ_id_ce,27L
1735
1736#define SN_crl_distribution_points "crlDistributionPoints"
1737#define LN_crl_distribution_points "X509v3 CRL Distribution Points"
1738#define NID_crl_distribution_points 103
1739#define OBJ_crl_distribution_points OBJ_id_ce,31L
1740
1741#define SN_certificate_policies "certificatePolicies"
1742#define LN_certificate_policies "X509v3 Certificate Policies"
1743#define NID_certificate_policies 89
1744#define OBJ_certificate_policies OBJ_id_ce,32L
1745
1746#define SN_authority_key_identifier "authorityKeyIdentifier"
1747#define LN_authority_key_identifier "X509v3 Authority Key Identifier"
1748#define NID_authority_key_identifier 90
1749#define OBJ_authority_key_identifier OBJ_id_ce,35L
1750
1751#define SN_policy_constraints "policyConstraints"
1752#define LN_policy_constraints "X509v3 Policy Constraints"
1753#define NID_policy_constraints 401
1754#define OBJ_policy_constraints OBJ_id_ce,36L
1755
1756#define SN_ext_key_usage "extendedKeyUsage"
1757#define LN_ext_key_usage "X509v3 Extended Key Usage"
1758#define NID_ext_key_usage 126
1759#define OBJ_ext_key_usage OBJ_id_ce,37L
1760
1761#define SN_target_information "targetInformation"
1762#define LN_target_information "X509v3 AC Targeting"
1763#define NID_target_information 402
1764#define OBJ_target_information OBJ_id_ce,55L
1765
1766#define SN_no_rev_avail "noRevAvail"
1767#define LN_no_rev_avail "X509v3 No Revocation Available"
1768#define NID_no_rev_avail 403
1769#define OBJ_no_rev_avail OBJ_id_ce,56L
1770
1771#define SN_netscape "Netscape"
1772#define LN_netscape "Netscape Communications Corp."
1773#define NID_netscape 57
1774#define OBJ_netscape 2L,16L,840L,1L,113730L
1775
1776#define SN_netscape_cert_extension "nsCertExt"
1777#define LN_netscape_cert_extension "Netscape Certificate Extension"
1778#define NID_netscape_cert_extension 58
1779#define OBJ_netscape_cert_extension OBJ_netscape,1L
1780
1781#define SN_netscape_data_type "nsDataType"
1782#define LN_netscape_data_type "Netscape Data Type"
1783#define NID_netscape_data_type 59
1784#define OBJ_netscape_data_type OBJ_netscape,2L
1785
1786#define SN_netscape_cert_type "nsCertType"
1787#define LN_netscape_cert_type "Netscape Cert Type"
1788#define NID_netscape_cert_type 71
1789#define OBJ_netscape_cert_type OBJ_netscape_cert_extension,1L
1790
1791#define SN_netscape_base_url "nsBaseUrl"
1792#define LN_netscape_base_url "Netscape Base Url"
1793#define NID_netscape_base_url 72
1794#define OBJ_netscape_base_url OBJ_netscape_cert_extension,2L
1795
1796#define SN_netscape_revocation_url "nsRevocationUrl"
1797#define LN_netscape_revocation_url "Netscape Revocation Url"
1798#define NID_netscape_revocation_url 73
1799#define OBJ_netscape_revocation_url OBJ_netscape_cert_extension,3L
1800
1801#define SN_netscape_ca_revocation_url "nsCaRevocationUrl"
1802#define LN_netscape_ca_revocation_url "Netscape CA Revocation Url"
1803#define NID_netscape_ca_revocation_url 74
1804#define OBJ_netscape_ca_revocation_url OBJ_netscape_cert_extension,4L
1805
1806#define SN_netscape_renewal_url "nsRenewalUrl"
1807#define LN_netscape_renewal_url "Netscape Renewal Url"
1808#define NID_netscape_renewal_url 75
1809#define OBJ_netscape_renewal_url OBJ_netscape_cert_extension,7L
1810
1811#define SN_netscape_ca_policy_url "nsCaPolicyUrl"
1812#define LN_netscape_ca_policy_url "Netscape CA Policy Url"
1813#define NID_netscape_ca_policy_url 76
1814#define OBJ_netscape_ca_policy_url OBJ_netscape_cert_extension,8L
1815
1816#define SN_netscape_ssl_server_name "nsSslServerName"
1817#define LN_netscape_ssl_server_name "Netscape SSL Server Name"
1818#define NID_netscape_ssl_server_name 77
1819#define OBJ_netscape_ssl_server_name OBJ_netscape_cert_extension,12L
1820
1821#define SN_netscape_comment "nsComment"
1822#define LN_netscape_comment "Netscape Comment"
1823#define NID_netscape_comment 78
1824#define OBJ_netscape_comment OBJ_netscape_cert_extension,13L
1825
1826#define SN_netscape_cert_sequence "nsCertSequence"
1827#define LN_netscape_cert_sequence "Netscape Certificate Sequence"
1828#define NID_netscape_cert_sequence 79
1829#define OBJ_netscape_cert_sequence OBJ_netscape_data_type,5L
1830
1831#define SN_ns_sgc "nsSGC"
1832#define LN_ns_sgc "Netscape Server Gated Crypto"
1833#define NID_ns_sgc 139
1834#define OBJ_ns_sgc OBJ_netscape,4L,1L
1835
1836#define SN_org "ORG"
1837#define LN_org "org"
1838#define NID_org 379
1839#define OBJ_org OBJ_iso,3L
1840
1841#define SN_dod "DOD"
1842#define LN_dod "dod"
1843#define NID_dod 380
1844#define OBJ_dod OBJ_org,6L
1845
1846#define SN_iana "IANA"
1847#define LN_iana "iana"
1848#define NID_iana 381
1849#define OBJ_iana OBJ_dod,1L
1850
1851#define OBJ_internet OBJ_iana
1852
1853#define SN_Directory "directory"
1854#define LN_Directory "Directory"
1855#define NID_Directory 382
1856#define OBJ_Directory OBJ_internet,1L
1857
1858#define SN_Management "mgmt"
1859#define LN_Management "Management"
1860#define NID_Management 383
1861#define OBJ_Management OBJ_internet,2L
1862
1863#define SN_Experimental "experimental"
1864#define LN_Experimental "Experimental"
1865#define NID_Experimental 384
1866#define OBJ_Experimental OBJ_internet,3L
1867
1868#define SN_Private "private"
1869#define LN_Private "Private"
1870#define NID_Private 385
1871#define OBJ_Private OBJ_internet,4L
1872
1873#define SN_Security "security"
1874#define LN_Security "Security"
1875#define NID_Security 386
1876#define OBJ_Security OBJ_internet,5L
1877
1878#define SN_SNMPv2 "snmpv2"
1879#define LN_SNMPv2 "SNMPv2"
1880#define NID_SNMPv2 387
1881#define OBJ_SNMPv2 OBJ_internet,6L
1882
1883#define LN_Mail "Mail"
1884#define NID_Mail 388
1885#define OBJ_Mail OBJ_internet,7L
1886
1887#define SN_Enterprises "enterprises"
1888#define LN_Enterprises "Enterprises"
1889#define NID_Enterprises 389
1890#define OBJ_Enterprises OBJ_Private,1L
1891
1892#define SN_dcObject "dcobject"
1893#define LN_dcObject "dcObject"
1894#define NID_dcObject 390
1895#define OBJ_dcObject OBJ_Enterprises,1466L,344L
1896
1897#define SN_mime_mhs "mime-mhs"
1898#define LN_mime_mhs "MIME MHS"
1899#define NID_mime_mhs 504
1900#define OBJ_mime_mhs OBJ_Mail,1L
1901
1902#define SN_mime_mhs_headings "mime-mhs-headings"
1903#define LN_mime_mhs_headings "mime-mhs-headings"
1904#define NID_mime_mhs_headings 505
1905#define OBJ_mime_mhs_headings OBJ_mime_mhs,1L
1906
1907#define SN_mime_mhs_bodies "mime-mhs-bodies"
1908#define LN_mime_mhs_bodies "mime-mhs-bodies"
1909#define NID_mime_mhs_bodies 506
1910#define OBJ_mime_mhs_bodies OBJ_mime_mhs,2L
1911
1912#define SN_id_hex_partial_message "id-hex-partial-message"
1913#define LN_id_hex_partial_message "id-hex-partial-message"
1914#define NID_id_hex_partial_message 507
1915#define OBJ_id_hex_partial_message OBJ_mime_mhs_headings,1L
1916
1917#define SN_id_hex_multipart_message "id-hex-multipart-message"
1918#define LN_id_hex_multipart_message "id-hex-multipart-message"
1919#define NID_id_hex_multipart_message 508
1920#define OBJ_id_hex_multipart_message OBJ_mime_mhs_headings,2L
1921
1922#define SN_rle_compression "RLE"
1923#define LN_rle_compression "run length compression"
1924#define NID_rle_compression 124
1925#define OBJ_rle_compression 1L,1L,1L,1L,666L,1L
1926
1927#define SN_zlib_compression "ZLIB"
1928#define LN_zlib_compression "zlib compression"
1929#define NID_zlib_compression 125
1930#define OBJ_zlib_compression 1L,1L,1L,1L,666L,2L
1931
1932#define OBJ_csor 2L,16L,840L,1L,101L,3L
1933
1934#define OBJ_nistAlgorithms OBJ_csor,4L
1935
1936#define OBJ_aes OBJ_nistAlgorithms,1L
1937
1938#define SN_aes_128_ecb "AES-128-ECB"
1939#define LN_aes_128_ecb "aes-128-ecb"
1940#define NID_aes_128_ecb 418
1941#define OBJ_aes_128_ecb OBJ_aes,1L
1942
1943#define SN_aes_128_cbc "AES-128-CBC"
1944#define LN_aes_128_cbc "aes-128-cbc"
1945#define NID_aes_128_cbc 419
1946#define OBJ_aes_128_cbc OBJ_aes,2L
1947
1948#define SN_aes_128_ofb128 "AES-128-OFB"
1949#define LN_aes_128_ofb128 "aes-128-ofb"
1950#define NID_aes_128_ofb128 420
1951#define OBJ_aes_128_ofb128 OBJ_aes,3L
1952
1953#define SN_aes_128_cfb128 "AES-128-CFB"
1954#define LN_aes_128_cfb128 "aes-128-cfb"
1955#define NID_aes_128_cfb128 421
1956#define OBJ_aes_128_cfb128 OBJ_aes,4L
1957
1958#define SN_aes_192_ecb "AES-192-ECB"
1959#define LN_aes_192_ecb "aes-192-ecb"
1960#define NID_aes_192_ecb 422
1961#define OBJ_aes_192_ecb OBJ_aes,21L
1962
1963#define SN_aes_192_cbc "AES-192-CBC"
1964#define LN_aes_192_cbc "aes-192-cbc"
1965#define NID_aes_192_cbc 423
1966#define OBJ_aes_192_cbc OBJ_aes,22L
1967
1968#define SN_aes_192_ofb128 "AES-192-OFB"
1969#define LN_aes_192_ofb128 "aes-192-ofb"
1970#define NID_aes_192_ofb128 424
1971#define OBJ_aes_192_ofb128 OBJ_aes,23L
1972
1973#define SN_aes_192_cfb128 "AES-192-CFB"
1974#define LN_aes_192_cfb128 "aes-192-cfb"
1975#define NID_aes_192_cfb128 425
1976#define OBJ_aes_192_cfb128 OBJ_aes,24L
1977
1978#define SN_aes_256_ecb "AES-256-ECB"
1979#define LN_aes_256_ecb "aes-256-ecb"
1980#define NID_aes_256_ecb 426
1981#define OBJ_aes_256_ecb OBJ_aes,41L
1982
1983#define SN_aes_256_cbc "AES-256-CBC"
1984#define LN_aes_256_cbc "aes-256-cbc"
1985#define NID_aes_256_cbc 427
1986#define OBJ_aes_256_cbc OBJ_aes,42L
1987
1988#define SN_aes_256_ofb128 "AES-256-OFB"
1989#define LN_aes_256_ofb128 "aes-256-ofb"
1990#define NID_aes_256_ofb128 428
1991#define OBJ_aes_256_ofb128 OBJ_aes,43L
1992
1993#define SN_aes_256_cfb128 "AES-256-CFB"
1994#define LN_aes_256_cfb128 "aes-256-cfb"
1995#define NID_aes_256_cfb128 429
1996#define OBJ_aes_256_cfb128 OBJ_aes,44L
1997
1998#define SN_hold_instruction_code "holdInstructionCode"
1999#define LN_hold_instruction_code "Hold Instruction Code"
2000#define NID_hold_instruction_code 430
2001#define OBJ_hold_instruction_code OBJ_id_ce,23L
2002
2003#define OBJ_holdInstruction OBJ_X9_57,2L
2004
2005#define SN_hold_instruction_none "holdInstructionNone"
2006#define LN_hold_instruction_none "Hold Instruction None"
2007#define NID_hold_instruction_none 431
2008#define OBJ_hold_instruction_none OBJ_holdInstruction,1L
2009
2010#define SN_hold_instruction_call_issuer "holdInstructionCallIssuer"
2011#define LN_hold_instruction_call_issuer "Hold Instruction Call Issuer"
2012#define NID_hold_instruction_call_issuer 432
2013#define OBJ_hold_instruction_call_issuer OBJ_holdInstruction,2L
2014
2015#define SN_hold_instruction_reject "holdInstructionReject"
2016#define LN_hold_instruction_reject "Hold Instruction Reject"
2017#define NID_hold_instruction_reject 433
2018#define OBJ_hold_instruction_reject OBJ_holdInstruction,3L
2019
2020#define SN_data "data"
2021#define NID_data 434
2022#define OBJ_data OBJ_ccitt,9L
2023
2024#define SN_pss "pss"
2025#define NID_pss 435
2026#define OBJ_pss OBJ_data,2342L
2027
2028#define SN_ucl "ucl"
2029#define NID_ucl 436
2030#define OBJ_ucl OBJ_pss,19200300L
2031
2032#define SN_pilot "pilot"
2033#define NID_pilot 437
2034#define OBJ_pilot OBJ_ucl,100L
2035
2036#define LN_pilotAttributeType "pilotAttributeType"
2037#define NID_pilotAttributeType 438
2038#define OBJ_pilotAttributeType OBJ_pilot,1L
2039
2040#define LN_pilotAttributeSyntax "pilotAttributeSyntax"
2041#define NID_pilotAttributeSyntax 439
2042#define OBJ_pilotAttributeSyntax OBJ_pilot,3L
2043
2044#define LN_pilotObjectClass "pilotObjectClass"
2045#define NID_pilotObjectClass 440
2046#define OBJ_pilotObjectClass OBJ_pilot,4L
2047
2048#define LN_pilotGroups "pilotGroups"
2049#define NID_pilotGroups 441
2050#define OBJ_pilotGroups OBJ_pilot,10L
2051
2052#define LN_iA5StringSyntax "iA5StringSyntax"
2053#define NID_iA5StringSyntax 442
2054#define OBJ_iA5StringSyntax OBJ_pilotAttributeSyntax,4L
2055
2056#define LN_caseIgnoreIA5StringSyntax "caseIgnoreIA5StringSyntax"
2057#define NID_caseIgnoreIA5StringSyntax 443
2058#define OBJ_caseIgnoreIA5StringSyntax OBJ_pilotAttributeSyntax,5L
2059
2060#define LN_pilotObject "pilotObject"
2061#define NID_pilotObject 444
2062#define OBJ_pilotObject OBJ_pilotObjectClass,3L
2063
2064#define LN_pilotPerson "pilotPerson"
2065#define NID_pilotPerson 445
2066#define OBJ_pilotPerson OBJ_pilotObjectClass,4L
2067
2068#define SN_account "account"
2069#define NID_account 446
2070#define OBJ_account OBJ_pilotObjectClass,5L
2071
2072#define SN_document "document"
2073#define NID_document 447
2074#define OBJ_document OBJ_pilotObjectClass,6L
2075
2076#define SN_room "room"
2077#define NID_room 448
2078#define OBJ_room OBJ_pilotObjectClass,7L
2079
2080#define LN_documentSeries "documentSeries"
2081#define NID_documentSeries 449
2082#define OBJ_documentSeries OBJ_pilotObjectClass,9L
2083
2084#define SN_Domain "domain"
2085#define LN_Domain "Domain"
2086#define NID_Domain 392
2087#define OBJ_Domain OBJ_pilotObjectClass,13L
2088
2089#define LN_rFC822localPart "rFC822localPart"
2090#define NID_rFC822localPart 450
2091#define OBJ_rFC822localPart OBJ_pilotObjectClass,14L
2092
2093#define LN_dNSDomain "dNSDomain"
2094#define NID_dNSDomain 451
2095#define OBJ_dNSDomain OBJ_pilotObjectClass,15L
2096
2097#define LN_domainRelatedObject "domainRelatedObject"
2098#define NID_domainRelatedObject 452
2099#define OBJ_domainRelatedObject OBJ_pilotObjectClass,17L
2100
2101#define LN_friendlyCountry "friendlyCountry"
2102#define NID_friendlyCountry 453
2103#define OBJ_friendlyCountry OBJ_pilotObjectClass,18L
2104
2105#define LN_simpleSecurityObject "simpleSecurityObject"
2106#define NID_simpleSecurityObject 454
2107#define OBJ_simpleSecurityObject OBJ_pilotObjectClass,19L
2108
2109#define LN_pilotOrganization "pilotOrganization"
2110#define NID_pilotOrganization 455
2111#define OBJ_pilotOrganization OBJ_pilotObjectClass,20L
2112
2113#define LN_pilotDSA "pilotDSA"
2114#define NID_pilotDSA 456
2115#define OBJ_pilotDSA OBJ_pilotObjectClass,21L
2116
2117#define LN_qualityLabelledData "qualityLabelledData"
2118#define NID_qualityLabelledData 457
2119#define OBJ_qualityLabelledData OBJ_pilotObjectClass,22L
2120
2121#define SN_userId "UID"
2122#define LN_userId "userId"
2123#define NID_userId 458
2124#define OBJ_userId OBJ_pilotAttributeType,1L
2125
2126#define LN_textEncodedORAddress "textEncodedORAddress"
2127#define NID_textEncodedORAddress 459
2128#define OBJ_textEncodedORAddress OBJ_pilotAttributeType,2L
2129
2130#define SN_rfc822Mailbox "mail"
2131#define LN_rfc822Mailbox "rfc822Mailbox"
2132#define NID_rfc822Mailbox 460
2133#define OBJ_rfc822Mailbox OBJ_pilotAttributeType,3L
2134
2135#define SN_info "info"
2136#define NID_info 461
2137#define OBJ_info OBJ_pilotAttributeType,4L
2138
2139#define LN_favouriteDrink "favouriteDrink"
2140#define NID_favouriteDrink 462
2141#define OBJ_favouriteDrink OBJ_pilotAttributeType,5L
2142
2143#define LN_roomNumber "roomNumber"
2144#define NID_roomNumber 463
2145#define OBJ_roomNumber OBJ_pilotAttributeType,6L
2146
2147#define SN_photo "photo"
2148#define NID_photo 464
2149#define OBJ_photo OBJ_pilotAttributeType,7L
2150
2151#define LN_userClass "userClass"
2152#define NID_userClass 465
2153#define OBJ_userClass OBJ_pilotAttributeType,8L
2154
2155#define SN_host "host"
2156#define NID_host 466
2157#define OBJ_host OBJ_pilotAttributeType,9L
2158
2159#define SN_manager "manager"
2160#define NID_manager 467
2161#define OBJ_manager OBJ_pilotAttributeType,10L
2162
2163#define LN_documentIdentifier "documentIdentifier"
2164#define NID_documentIdentifier 468
2165#define OBJ_documentIdentifier OBJ_pilotAttributeType,11L
2166
2167#define LN_documentTitle "documentTitle"
2168#define NID_documentTitle 469
2169#define OBJ_documentTitle OBJ_pilotAttributeType,12L
2170
2171#define LN_documentVersion "documentVersion"
2172#define NID_documentVersion 470
2173#define OBJ_documentVersion OBJ_pilotAttributeType,13L
2174
2175#define LN_documentAuthor "documentAuthor"
2176#define NID_documentAuthor 471
2177#define OBJ_documentAuthor OBJ_pilotAttributeType,14L
2178
2179#define LN_documentLocation "documentLocation"
2180#define NID_documentLocation 472
2181#define OBJ_documentLocation OBJ_pilotAttributeType,15L
2182
2183#define LN_homeTelephoneNumber "homeTelephoneNumber"
2184#define NID_homeTelephoneNumber 473
2185#define OBJ_homeTelephoneNumber OBJ_pilotAttributeType,20L
2186
2187#define SN_secretary "secretary"
2188#define NID_secretary 474
2189#define OBJ_secretary OBJ_pilotAttributeType,21L
2190
2191#define LN_otherMailbox "otherMailbox"
2192#define NID_otherMailbox 475
2193#define OBJ_otherMailbox OBJ_pilotAttributeType,22L
2194
2195#define LN_lastModifiedTime "lastModifiedTime"
2196#define NID_lastModifiedTime 476
2197#define OBJ_lastModifiedTime OBJ_pilotAttributeType,23L
2198
2199#define LN_lastModifiedBy "lastModifiedBy"
2200#define NID_lastModifiedBy 477
2201#define OBJ_lastModifiedBy OBJ_pilotAttributeType,24L
2202
2203#define SN_domainComponent "DC"
2204#define LN_domainComponent "domainComponent"
2205#define NID_domainComponent 391
2206#define OBJ_domainComponent OBJ_pilotAttributeType,25L
2207
2208#define LN_aRecord "aRecord"
2209#define NID_aRecord 478
2210#define OBJ_aRecord OBJ_pilotAttributeType,26L
2211
2212#define LN_pilotAttributeType27 "pilotAttributeType27"
2213#define NID_pilotAttributeType27 479
2214#define OBJ_pilotAttributeType27 OBJ_pilotAttributeType,27L
2215
2216#define LN_mXRecord "mXRecord"
2217#define NID_mXRecord 480
2218#define OBJ_mXRecord OBJ_pilotAttributeType,28L
2219
2220#define LN_nSRecord "nSRecord"
2221#define NID_nSRecord 481
2222#define OBJ_nSRecord OBJ_pilotAttributeType,29L
2223
2224#define LN_sOARecord "sOARecord"
2225#define NID_sOARecord 482
2226#define OBJ_sOARecord OBJ_pilotAttributeType,30L
2227
2228#define LN_cNAMERecord "cNAMERecord"
2229#define NID_cNAMERecord 483
2230#define OBJ_cNAMERecord OBJ_pilotAttributeType,31L
2231
2232#define LN_associatedDomain "associatedDomain"
2233#define NID_associatedDomain 484
2234#define OBJ_associatedDomain OBJ_pilotAttributeType,37L
2235
2236#define LN_associatedName "associatedName"
2237#define NID_associatedName 485
2238#define OBJ_associatedName OBJ_pilotAttributeType,38L
2239
2240#define LN_homePostalAddress "homePostalAddress"
2241#define NID_homePostalAddress 486
2242#define OBJ_homePostalAddress OBJ_pilotAttributeType,39L
2243
2244#define LN_personalTitle "personalTitle"
2245#define NID_personalTitle 487
2246#define OBJ_personalTitle OBJ_pilotAttributeType,40L
2247
2248#define LN_mobileTelephoneNumber "mobileTelephoneNumber"
2249#define NID_mobileTelephoneNumber 488
2250#define OBJ_mobileTelephoneNumber OBJ_pilotAttributeType,41L
2251
2252#define LN_pagerTelephoneNumber "pagerTelephoneNumber"
2253#define NID_pagerTelephoneNumber 489
2254#define OBJ_pagerTelephoneNumber OBJ_pilotAttributeType,42L
2255
2256#define LN_friendlyCountryName "friendlyCountryName"
2257#define NID_friendlyCountryName 490
2258#define OBJ_friendlyCountryName OBJ_pilotAttributeType,43L
2259
2260#define LN_organizationalStatus "organizationalStatus"
2261#define NID_organizationalStatus 491
2262#define OBJ_organizationalStatus OBJ_pilotAttributeType,45L
2263
2264#define LN_janetMailbox "janetMailbox"
2265#define NID_janetMailbox 492
2266#define OBJ_janetMailbox OBJ_pilotAttributeType,46L
2267
2268#define LN_mailPreferenceOption "mailPreferenceOption"
2269#define NID_mailPreferenceOption 493
2270#define OBJ_mailPreferenceOption OBJ_pilotAttributeType,47L
2271
2272#define LN_buildingName "buildingName"
2273#define NID_buildingName 494
2274#define OBJ_buildingName OBJ_pilotAttributeType,48L
2275
2276#define LN_dSAQuality "dSAQuality"
2277#define NID_dSAQuality 495
2278#define OBJ_dSAQuality OBJ_pilotAttributeType,49L
2279
2280#define LN_singleLevelQuality "singleLevelQuality"
2281#define NID_singleLevelQuality 496
2282#define OBJ_singleLevelQuality OBJ_pilotAttributeType,50L
2283
2284#define LN_subtreeMinimumQuality "subtreeMinimumQuality"
2285#define NID_subtreeMinimumQuality 497
2286#define OBJ_subtreeMinimumQuality OBJ_pilotAttributeType,51L
2287
2288#define LN_subtreeMaximumQuality "subtreeMaximumQuality"
2289#define NID_subtreeMaximumQuality 498
2290#define OBJ_subtreeMaximumQuality OBJ_pilotAttributeType,52L
2291
2292#define LN_personalSignature "personalSignature"
2293#define NID_personalSignature 499
2294#define OBJ_personalSignature OBJ_pilotAttributeType,53L
2295
2296#define LN_dITRedirect "dITRedirect"
2297#define NID_dITRedirect 500
2298#define OBJ_dITRedirect OBJ_pilotAttributeType,54L
2299
2300#define SN_audio "audio"
2301#define NID_audio 501
2302#define OBJ_audio OBJ_pilotAttributeType,55L
2303
2304#define LN_documentPublisher "documentPublisher"
2305#define NID_documentPublisher 502
2306#define OBJ_documentPublisher OBJ_pilotAttributeType,56L
2307