10Sstevel@tonic-gate /* crypto/objects/obj_dat.h */ 20Sstevel@tonic-gate 30Sstevel@tonic-gate /* THIS FILE IS GENERATED FROM objects.h by obj_dat.pl via the 40Sstevel@tonic-gate * following command: 50Sstevel@tonic-gate * perl obj_dat.pl obj_mac.h obj_dat.h 60Sstevel@tonic-gate */ 70Sstevel@tonic-gate 80Sstevel@tonic-gate /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 90Sstevel@tonic-gate * All rights reserved. 100Sstevel@tonic-gate * 110Sstevel@tonic-gate * This package is an SSL implementation written 120Sstevel@tonic-gate * by Eric Young (eay@cryptsoft.com). 130Sstevel@tonic-gate * The implementation was written so as to conform with Netscapes SSL. 140Sstevel@tonic-gate * 150Sstevel@tonic-gate * This library is free for commercial and non-commercial use as long as 160Sstevel@tonic-gate * the following conditions are aheared to. The following conditions 170Sstevel@tonic-gate * apply to all code found in this distribution, be it the RC4, RSA, 180Sstevel@tonic-gate * lhash, DES, etc., code; not just the SSL code. The SSL documentation 190Sstevel@tonic-gate * included with this distribution is covered by the same copyright terms 200Sstevel@tonic-gate * except that the holder is Tim Hudson (tjh@cryptsoft.com). 210Sstevel@tonic-gate * 220Sstevel@tonic-gate * Copyright remains Eric Young's, and as such any Copyright notices in 230Sstevel@tonic-gate * the code are not to be removed. 240Sstevel@tonic-gate * If this package is used in a product, Eric Young should be given attribution 250Sstevel@tonic-gate * as the author of the parts of the library used. 260Sstevel@tonic-gate * This can be in the form of a textual message at program startup or 270Sstevel@tonic-gate * in documentation (online or textual) provided with the package. 280Sstevel@tonic-gate * 290Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without 300Sstevel@tonic-gate * modification, are permitted provided that the following conditions 310Sstevel@tonic-gate * are met: 320Sstevel@tonic-gate * 1. Redistributions of source code must retain the copyright 330Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer. 340Sstevel@tonic-gate * 2. Redistributions in binary form must reproduce the above copyright 350Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer in the 360Sstevel@tonic-gate * documentation and/or other materials provided with the distribution. 370Sstevel@tonic-gate * 3. All advertising materials mentioning features or use of this software 380Sstevel@tonic-gate * must display the following acknowledgement: 390Sstevel@tonic-gate * "This product includes cryptographic software written by 400Sstevel@tonic-gate * Eric Young (eay@cryptsoft.com)" 410Sstevel@tonic-gate * The word 'cryptographic' can be left out if the rouines from the library 420Sstevel@tonic-gate * being used are not cryptographic related :-). 430Sstevel@tonic-gate * 4. If you include any Windows specific code (or a derivative thereof) from 440Sstevel@tonic-gate * the apps directory (application code) you must include an acknowledgement: 450Sstevel@tonic-gate * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 460Sstevel@tonic-gate * 470Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 480Sstevel@tonic-gate * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 490Sstevel@tonic-gate * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 500Sstevel@tonic-gate * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 510Sstevel@tonic-gate * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 520Sstevel@tonic-gate * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 530Sstevel@tonic-gate * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 540Sstevel@tonic-gate * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 550Sstevel@tonic-gate * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 560Sstevel@tonic-gate * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 570Sstevel@tonic-gate * SUCH DAMAGE. 580Sstevel@tonic-gate * 590Sstevel@tonic-gate * The licence and distribution terms for any publically available version or 600Sstevel@tonic-gate * derivative of this code cannot be changed. i.e. this code cannot simply be 610Sstevel@tonic-gate * copied and put under another distribution licence 620Sstevel@tonic-gate * [including the GNU Public Licence.] 630Sstevel@tonic-gate */ 640Sstevel@tonic-gate 65*2139Sjp161948 #define NUM_NID 751 66*2139Sjp161948 #define NUM_SN 747 67*2139Sjp161948 #define NUM_LN 747 68*2139Sjp161948 #define NUM_OBJ 709 690Sstevel@tonic-gate 70*2139Sjp161948 static unsigned char lvalues[5002]={ 710Sstevel@tonic-gate 0x00, /* [ 0] OBJ_undef */ 720Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D, /* [ 1] OBJ_rsadsi */ 730Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01, /* [ 7] OBJ_pkcs */ 740Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x02, /* [ 14] OBJ_md2 */ 750Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x05, /* [ 22] OBJ_md5 */ 760Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x04, /* [ 30] OBJ_rc4 */ 770Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x01,/* [ 38] OBJ_rsaEncryption */ 780Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x02,/* [ 47] OBJ_md2WithRSAEncryption */ 790Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x04,/* [ 56] OBJ_md5WithRSAEncryption */ 800Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x01,/* [ 65] OBJ_pbeWithMD2AndDES_CBC */ 810Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x03,/* [ 74] OBJ_pbeWithMD5AndDES_CBC */ 820Sstevel@tonic-gate 0x55, /* [ 83] OBJ_X500 */ 830Sstevel@tonic-gate 0x55,0x04, /* [ 84] OBJ_X509 */ 840Sstevel@tonic-gate 0x55,0x04,0x03, /* [ 86] OBJ_commonName */ 850Sstevel@tonic-gate 0x55,0x04,0x06, /* [ 89] OBJ_countryName */ 860Sstevel@tonic-gate 0x55,0x04,0x07, /* [ 92] OBJ_localityName */ 870Sstevel@tonic-gate 0x55,0x04,0x08, /* [ 95] OBJ_stateOrProvinceName */ 880Sstevel@tonic-gate 0x55,0x04,0x0A, /* [ 98] OBJ_organizationName */ 890Sstevel@tonic-gate 0x55,0x04,0x0B, /* [101] OBJ_organizationalUnitName */ 900Sstevel@tonic-gate 0x55,0x08,0x01,0x01, /* [104] OBJ_rsa */ 910Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07, /* [108] OBJ_pkcs7 */ 920Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x01,/* [116] OBJ_pkcs7_data */ 930Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x02,/* [125] OBJ_pkcs7_signed */ 940Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x03,/* [134] OBJ_pkcs7_enveloped */ 950Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x04,/* [143] OBJ_pkcs7_signedAndEnveloped */ 960Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x05,/* [152] OBJ_pkcs7_digest */ 970Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x06,/* [161] OBJ_pkcs7_encrypted */ 980Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x03, /* [170] OBJ_pkcs3 */ 990Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x03,0x01,/* [178] OBJ_dhKeyAgreement */ 1000Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x06, /* [187] OBJ_des_ecb */ 1010Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x09, /* [192] OBJ_des_cfb64 */ 1020Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x07, /* [197] OBJ_des_cbc */ 1030Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x11, /* [202] OBJ_des_ede_ecb */ 1040Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x81,0x3C,0x07,0x01,0x01,0x02,/* [207] OBJ_idea_cbc */ 1050Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x02, /* [218] OBJ_rc2_cbc */ 1060Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x12, /* [226] OBJ_sha */ 1070Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x0F, /* [231] OBJ_shaWithRSAEncryption */ 1080Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x07, /* [236] OBJ_des_ede3_cbc */ 1090Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x08, /* [244] OBJ_des_ofb64 */ 1100Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09, /* [249] OBJ_pkcs9 */ 1110Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x01,/* [257] OBJ_pkcs9_emailAddress */ 1120Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x02,/* [266] OBJ_pkcs9_unstructuredName */ 1130Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x03,/* [275] OBJ_pkcs9_contentType */ 1140Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x04,/* [284] OBJ_pkcs9_messageDigest */ 1150Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x05,/* [293] OBJ_pkcs9_signingTime */ 1160Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x06,/* [302] OBJ_pkcs9_countersignature */ 1170Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x07,/* [311] OBJ_pkcs9_challengePassword */ 1180Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x08,/* [320] OBJ_pkcs9_unstructuredAddress */ 1190Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x09,/* [329] OBJ_pkcs9_extCertAttributes */ 1200Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42, /* [338] OBJ_netscape */ 1210Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01, /* [345] OBJ_netscape_cert_extension */ 1220Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x02, /* [353] OBJ_netscape_data_type */ 1230Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x1A, /* [361] OBJ_sha1 */ 1240Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x05,/* [366] OBJ_sha1WithRSAEncryption */ 1250Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x0D, /* [375] OBJ_dsaWithSHA */ 1260Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x0C, /* [380] OBJ_dsa_2 */ 1270Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0B,/* [385] OBJ_pbeWithSHA1AndRC2_CBC */ 1280Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0C,/* [394] OBJ_id_pbkdf2 */ 1290Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x1B, /* [403] OBJ_dsaWithSHA1_2 */ 1300Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x01,/* [408] OBJ_netscape_cert_type */ 1310Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x02,/* [417] OBJ_netscape_base_url */ 1320Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x03,/* [426] OBJ_netscape_revocation_url */ 1330Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x04,/* [435] OBJ_netscape_ca_revocation_url */ 1340Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x07,/* [444] OBJ_netscape_renewal_url */ 1350Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x08,/* [453] OBJ_netscape_ca_policy_url */ 1360Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x0C,/* [462] OBJ_netscape_ssl_server_name */ 1370Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x0D,/* [471] OBJ_netscape_comment */ 1380Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x02,0x05,/* [480] OBJ_netscape_cert_sequence */ 1390Sstevel@tonic-gate 0x55,0x1D, /* [489] OBJ_id_ce */ 1400Sstevel@tonic-gate 0x55,0x1D,0x0E, /* [491] OBJ_subject_key_identifier */ 1410Sstevel@tonic-gate 0x55,0x1D,0x0F, /* [494] OBJ_key_usage */ 1420Sstevel@tonic-gate 0x55,0x1D,0x10, /* [497] OBJ_private_key_usage_period */ 1430Sstevel@tonic-gate 0x55,0x1D,0x11, /* [500] OBJ_subject_alt_name */ 1440Sstevel@tonic-gate 0x55,0x1D,0x12, /* [503] OBJ_issuer_alt_name */ 1450Sstevel@tonic-gate 0x55,0x1D,0x13, /* [506] OBJ_basic_constraints */ 1460Sstevel@tonic-gate 0x55,0x1D,0x14, /* [509] OBJ_crl_number */ 1470Sstevel@tonic-gate 0x55,0x1D,0x20, /* [512] OBJ_certificate_policies */ 1480Sstevel@tonic-gate 0x55,0x1D,0x23, /* [515] OBJ_authority_key_identifier */ 1490Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x97,0x55,0x01,0x02,/* [518] OBJ_bf_cbc */ 1500Sstevel@tonic-gate 0x55,0x08,0x03,0x65, /* [527] OBJ_mdc2 */ 1510Sstevel@tonic-gate 0x55,0x08,0x03,0x64, /* [531] OBJ_mdc2WithRSA */ 1520Sstevel@tonic-gate 0x55,0x04,0x2A, /* [535] OBJ_givenName */ 1530Sstevel@tonic-gate 0x55,0x04,0x04, /* [538] OBJ_surname */ 1540Sstevel@tonic-gate 0x55,0x04,0x2B, /* [541] OBJ_initials */ 1550Sstevel@tonic-gate 0x55,0x1D,0x1F, /* [544] OBJ_crl_distribution_points */ 1560Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x03, /* [547] OBJ_md5WithRSA */ 1570Sstevel@tonic-gate 0x55,0x04,0x05, /* [552] OBJ_serialNumber */ 1580Sstevel@tonic-gate 0x55,0x04,0x0C, /* [555] OBJ_title */ 1590Sstevel@tonic-gate 0x55,0x04,0x0D, /* [558] OBJ_description */ 1600Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0A,/* [561] OBJ_cast5_cbc */ 1610Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0C,/* [570] OBJ_pbeWithMD5AndCast5_CBC */ 1620Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x38,0x04,0x03, /* [579] OBJ_dsaWithSHA1 */ 1630Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x1D, /* [586] OBJ_sha1WithRSA */ 1640Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x38,0x04,0x01, /* [591] OBJ_dsa */ 1650Sstevel@tonic-gate 0x2B,0x24,0x03,0x02,0x01, /* [598] OBJ_ripemd160 */ 1660Sstevel@tonic-gate 0x2B,0x24,0x03,0x03,0x01,0x02, /* [603] OBJ_ripemd160WithRSA */ 1670Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x08, /* [609] OBJ_rc5_cbc */ 1680Sstevel@tonic-gate 0x29,0x01,0x01,0x85,0x1A,0x01, /* [617] OBJ_rle_compression */ 1690Sstevel@tonic-gate 0x29,0x01,0x01,0x85,0x1A,0x02, /* [623] OBJ_zlib_compression */ 1700Sstevel@tonic-gate 0x55,0x1D,0x25, /* [629] OBJ_ext_key_usage */ 1710Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07, /* [632] OBJ_id_pkix */ 1720Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03, /* [638] OBJ_id_kp */ 1730Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x01, /* [645] OBJ_server_auth */ 1740Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x02, /* [653] OBJ_client_auth */ 1750Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x03, /* [661] OBJ_code_sign */ 1760Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x04, /* [669] OBJ_email_protect */ 1770Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x08, /* [677] OBJ_time_stamp */ 1780Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x15,/* [685] OBJ_ms_code_ind */ 1790Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x16,/* [695] OBJ_ms_code_com */ 1800Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x01,/* [705] OBJ_ms_ctl_sign */ 1810Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x03,/* [715] OBJ_ms_sgc */ 1820Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x04,/* [725] OBJ_ms_efs */ 1830Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x04,0x01,/* [735] OBJ_ns_sgc */ 1840Sstevel@tonic-gate 0x55,0x1D,0x1B, /* [744] OBJ_delta_crl */ 1850Sstevel@tonic-gate 0x55,0x1D,0x15, /* [747] OBJ_crl_reason */ 1860Sstevel@tonic-gate 0x55,0x1D,0x18, /* [750] OBJ_invalidity_date */ 1870Sstevel@tonic-gate 0x2B,0x65,0x01,0x04,0x01, /* [753] OBJ_sxnet */ 1880Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x01,/* [758] OBJ_pbe_WithSHA1And128BitRC4 */ 1890Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x02,/* [768] OBJ_pbe_WithSHA1And40BitRC4 */ 1900Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x03,/* [778] OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC */ 1910Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x04,/* [788] OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC */ 1920Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x05,/* [798] OBJ_pbe_WithSHA1And128BitRC2_CBC */ 1930Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x06,/* [808] OBJ_pbe_WithSHA1And40BitRC2_CBC */ 1940Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x01,/* [818] OBJ_keyBag */ 1950Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x02,/* [829] OBJ_pkcs8ShroudedKeyBag */ 1960Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x03,/* [840] OBJ_certBag */ 1970Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x04,/* [851] OBJ_crlBag */ 1980Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x05,/* [862] OBJ_secretBag */ 1990Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x06,/* [873] OBJ_safeContentsBag */ 2000Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x14,/* [884] OBJ_friendlyName */ 2010Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x15,/* [893] OBJ_localKeyID */ 2020Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x16,0x01,/* [902] OBJ_x509Certificate */ 2030Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x16,0x02,/* [912] OBJ_sdsiCertificate */ 2040Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x17,0x01,/* [922] OBJ_x509Crl */ 2050Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0D,/* [932] OBJ_pbes2 */ 2060Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0E,/* [941] OBJ_pbmac1 */ 2070Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x07, /* [950] OBJ_hmacWithSHA1 */ 2080Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x01, /* [958] OBJ_id_qt_cps */ 2090Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x02, /* [966] OBJ_id_qt_unotice */ 2100Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x0F,/* [974] OBJ_SMIMECapabilities */ 2110Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x04,/* [983] OBJ_pbeWithMD2AndRC2_CBC */ 2120Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x06,/* [992] OBJ_pbeWithMD5AndRC2_CBC */ 2130Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0A,/* [1001] OBJ_pbeWithSHA1AndDES_CBC */ 2140Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x0E,/* [1010] OBJ_ms_ext_req */ 2150Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x0E,/* [1020] OBJ_ext_req */ 2160Sstevel@tonic-gate 0x55,0x04,0x29, /* [1029] OBJ_name */ 2170Sstevel@tonic-gate 0x55,0x04,0x2E, /* [1032] OBJ_dnQualifier */ 2180Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x01, /* [1035] OBJ_id_pe */ 2190Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30, /* [1042] OBJ_id_ad */ 2200Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x01, /* [1049] OBJ_info_access */ 2210Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01, /* [1057] OBJ_ad_OCSP */ 2220Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x02, /* [1065] OBJ_ad_ca_issuers */ 2230Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x09, /* [1073] OBJ_OCSP_sign */ 2240Sstevel@tonic-gate 0x28, /* [1081] OBJ_iso */ 2250Sstevel@tonic-gate 0x2A, /* [1082] OBJ_member_body */ 2260Sstevel@tonic-gate 0x2A,0x86,0x48, /* [1083] OBJ_ISO_US */ 2270Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x38, /* [1086] OBJ_X9_57 */ 2280Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x38,0x04, /* [1091] OBJ_X9cm */ 2290Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01, /* [1097] OBJ_pkcs1 */ 2300Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05, /* [1105] OBJ_pkcs5 */ 2310Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,/* [1113] OBJ_SMIME */ 2320Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,/* [1122] OBJ_id_smime_mod */ 2330Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,/* [1132] OBJ_id_smime_ct */ 2340Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,/* [1142] OBJ_id_smime_aa */ 2350Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,/* [1152] OBJ_id_smime_alg */ 2360Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x04,/* [1162] OBJ_id_smime_cd */ 2370Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,/* [1172] OBJ_id_smime_spq */ 2380Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,/* [1182] OBJ_id_smime_cti */ 2390Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x01,/* [1192] OBJ_id_smime_mod_cms */ 2400Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x02,/* [1203] OBJ_id_smime_mod_ess */ 2410Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x03,/* [1214] OBJ_id_smime_mod_oid */ 2420Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x04,/* [1225] OBJ_id_smime_mod_msg_v3 */ 2430Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x05,/* [1236] OBJ_id_smime_mod_ets_eSignature_88 */ 2440Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x06,/* [1247] OBJ_id_smime_mod_ets_eSignature_97 */ 2450Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x07,/* [1258] OBJ_id_smime_mod_ets_eSigPolicy_88 */ 2460Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x08,/* [1269] OBJ_id_smime_mod_ets_eSigPolicy_97 */ 2470Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x01,/* [1280] OBJ_id_smime_ct_receipt */ 2480Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x02,/* [1291] OBJ_id_smime_ct_authData */ 2490Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x03,/* [1302] OBJ_id_smime_ct_publishCert */ 2500Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x04,/* [1313] OBJ_id_smime_ct_TSTInfo */ 2510Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x05,/* [1324] OBJ_id_smime_ct_TDTInfo */ 2520Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x06,/* [1335] OBJ_id_smime_ct_contentInfo */ 2530Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x07,/* [1346] OBJ_id_smime_ct_DVCSRequestData */ 2540Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x08,/* [1357] OBJ_id_smime_ct_DVCSResponseData */ 2550Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x01,/* [1368] OBJ_id_smime_aa_receiptRequest */ 2560Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x02,/* [1379] OBJ_id_smime_aa_securityLabel */ 2570Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x03,/* [1390] OBJ_id_smime_aa_mlExpandHistory */ 2580Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x04,/* [1401] OBJ_id_smime_aa_contentHint */ 2590Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x05,/* [1412] OBJ_id_smime_aa_msgSigDigest */ 2600Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x06,/* [1423] OBJ_id_smime_aa_encapContentType */ 2610Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x07,/* [1434] OBJ_id_smime_aa_contentIdentifier */ 2620Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x08,/* [1445] OBJ_id_smime_aa_macValue */ 2630Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x09,/* [1456] OBJ_id_smime_aa_equivalentLabels */ 2640Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0A,/* [1467] OBJ_id_smime_aa_contentReference */ 2650Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0B,/* [1478] OBJ_id_smime_aa_encrypKeyPref */ 2660Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0C,/* [1489] OBJ_id_smime_aa_signingCertificate */ 2670Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0D,/* [1500] OBJ_id_smime_aa_smimeEncryptCerts */ 2680Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0E,/* [1511] OBJ_id_smime_aa_timeStampToken */ 2690Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0F,/* [1522] OBJ_id_smime_aa_ets_sigPolicyId */ 2700Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x10,/* [1533] OBJ_id_smime_aa_ets_commitmentType */ 2710Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x11,/* [1544] OBJ_id_smime_aa_ets_signerLocation */ 2720Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x12,/* [1555] OBJ_id_smime_aa_ets_signerAttr */ 2730Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x13,/* [1566] OBJ_id_smime_aa_ets_otherSigCert */ 2740Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x14,/* [1577] OBJ_id_smime_aa_ets_contentTimestamp */ 2750Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x15,/* [1588] OBJ_id_smime_aa_ets_CertificateRefs */ 2760Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x16,/* [1599] OBJ_id_smime_aa_ets_RevocationRefs */ 2770Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x17,/* [1610] OBJ_id_smime_aa_ets_certValues */ 2780Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x18,/* [1621] OBJ_id_smime_aa_ets_revocationValues */ 2790Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x19,/* [1632] OBJ_id_smime_aa_ets_escTimeStamp */ 2800Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1A,/* [1643] OBJ_id_smime_aa_ets_certCRLTimestamp */ 2810Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1B,/* [1654] OBJ_id_smime_aa_ets_archiveTimeStamp */ 2820Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1C,/* [1665] OBJ_id_smime_aa_signatureType */ 2830Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1D,/* [1676] OBJ_id_smime_aa_dvcs_dvc */ 2840Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x01,/* [1687] OBJ_id_smime_alg_ESDHwith3DES */ 2850Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x02,/* [1698] OBJ_id_smime_alg_ESDHwithRC2 */ 2860Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x03,/* [1709] OBJ_id_smime_alg_3DESwrap */ 2870Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x04,/* [1720] OBJ_id_smime_alg_RC2wrap */ 2880Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x05,/* [1731] OBJ_id_smime_alg_ESDH */ 2890Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x06,/* [1742] OBJ_id_smime_alg_CMS3DESwrap */ 2900Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x07,/* [1753] OBJ_id_smime_alg_CMSRC2wrap */ 2910Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x04,0x01,/* [1764] OBJ_id_smime_cd_ldap */ 2920Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,0x01,/* [1775] OBJ_id_smime_spq_ets_sqt_uri */ 2930Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,0x02,/* [1786] OBJ_id_smime_spq_ets_sqt_unotice */ 2940Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x01,/* [1797] OBJ_id_smime_cti_ets_proofOfOrigin */ 2950Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x02,/* [1808] OBJ_id_smime_cti_ets_proofOfReceipt */ 2960Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x03,/* [1819] OBJ_id_smime_cti_ets_proofOfDelivery */ 2970Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x04,/* [1830] OBJ_id_smime_cti_ets_proofOfSender */ 2980Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x05,/* [1841] OBJ_id_smime_cti_ets_proofOfApproval */ 2990Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x06,/* [1852] OBJ_id_smime_cti_ets_proofOfCreation */ 3000Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x04, /* [1863] OBJ_md4 */ 3010Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00, /* [1871] OBJ_id_pkix_mod */ 3020Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x02, /* [1878] OBJ_id_qt */ 3030Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04, /* [1885] OBJ_id_it */ 3040Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05, /* [1892] OBJ_id_pkip */ 3050Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x06, /* [1899] OBJ_id_alg */ 3060Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07, /* [1906] OBJ_id_cmc */ 3070Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x08, /* [1913] OBJ_id_on */ 3080Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x09, /* [1920] OBJ_id_pda */ 3090Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A, /* [1927] OBJ_id_aca */ 3100Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0B, /* [1934] OBJ_id_qcs */ 3110Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C, /* [1941] OBJ_id_cct */ 3120Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x01, /* [1948] OBJ_id_pkix1_explicit_88 */ 3130Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x02, /* [1956] OBJ_id_pkix1_implicit_88 */ 3140Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x03, /* [1964] OBJ_id_pkix1_explicit_93 */ 3150Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x04, /* [1972] OBJ_id_pkix1_implicit_93 */ 3160Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x05, /* [1980] OBJ_id_mod_crmf */ 3170Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x06, /* [1988] OBJ_id_mod_cmc */ 3180Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x07, /* [1996] OBJ_id_mod_kea_profile_88 */ 3190Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x08, /* [2004] OBJ_id_mod_kea_profile_93 */ 3200Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x09, /* [2012] OBJ_id_mod_cmp */ 3210Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0A, /* [2020] OBJ_id_mod_qualified_cert_88 */ 3220Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0B, /* [2028] OBJ_id_mod_qualified_cert_93 */ 3230Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0C, /* [2036] OBJ_id_mod_attribute_cert */ 3240Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0D, /* [2044] OBJ_id_mod_timestamp_protocol */ 3250Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0E, /* [2052] OBJ_id_mod_ocsp */ 3260Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0F, /* [2060] OBJ_id_mod_dvcs */ 3270Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x10, /* [2068] OBJ_id_mod_cmp2000 */ 3280Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x02, /* [2076] OBJ_biometricInfo */ 3290Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x03, /* [2084] OBJ_qcStatements */ 3300Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x04, /* [2092] OBJ_ac_auditEntity */ 3310Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x05, /* [2100] OBJ_ac_targeting */ 3320Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x06, /* [2108] OBJ_aaControls */ 333*2139Sjp161948 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x07, /* [2116] OBJ_sbgp_ipAddrBlock */ 334*2139Sjp161948 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x08, /* [2124] OBJ_sbgp_autonomousSysNum */ 335*2139Sjp161948 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x09, /* [2132] OBJ_sbgp_routerIdentifier */ 3360Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x03, /* [2140] OBJ_textNotice */ 3370Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x05, /* [2148] OBJ_ipsecEndSystem */ 3380Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x06, /* [2156] OBJ_ipsecTunnel */ 3390Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x07, /* [2164] OBJ_ipsecUser */ 3400Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x0A, /* [2172] OBJ_dvcs */ 3410Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x01, /* [2180] OBJ_id_it_caProtEncCert */ 3420Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x02, /* [2188] OBJ_id_it_signKeyPairTypes */ 3430Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x03, /* [2196] OBJ_id_it_encKeyPairTypes */ 3440Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x04, /* [2204] OBJ_id_it_preferredSymmAlg */ 3450Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x05, /* [2212] OBJ_id_it_caKeyUpdateInfo */ 3460Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x06, /* [2220] OBJ_id_it_currentCRL */ 3470Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x07, /* [2228] OBJ_id_it_unsupportedOIDs */ 3480Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x08, /* [2236] OBJ_id_it_subscriptionRequest */ 3490Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x09, /* [2244] OBJ_id_it_subscriptionResponse */ 3500Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0A, /* [2252] OBJ_id_it_keyPairParamReq */ 3510Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0B, /* [2260] OBJ_id_it_keyPairParamRep */ 3520Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0C, /* [2268] OBJ_id_it_revPassphrase */ 3530Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0D, /* [2276] OBJ_id_it_implicitConfirm */ 3540Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0E, /* [2284] OBJ_id_it_confirmWaitTime */ 3550Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0F, /* [2292] OBJ_id_it_origPKIMessage */ 3560Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01, /* [2300] OBJ_id_regCtrl */ 3570Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02, /* [2308] OBJ_id_regInfo */ 3580Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x01,/* [2316] OBJ_id_regCtrl_regToken */ 3590Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x02,/* [2325] OBJ_id_regCtrl_authenticator */ 3600Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x03,/* [2334] OBJ_id_regCtrl_pkiPublicationInfo */ 3610Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x04,/* [2343] OBJ_id_regCtrl_pkiArchiveOptions */ 3620Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x05,/* [2352] OBJ_id_regCtrl_oldCertID */ 3630Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x06,/* [2361] OBJ_id_regCtrl_protocolEncrKey */ 3640Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02,0x01,/* [2370] OBJ_id_regInfo_utf8Pairs */ 3650Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02,0x02,/* [2379] OBJ_id_regInfo_certReq */ 3660Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x01, /* [2388] OBJ_id_alg_des40 */ 3670Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x02, /* [2396] OBJ_id_alg_noSignature */ 3680Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x03, /* [2404] OBJ_id_alg_dh_sig_hmac_sha1 */ 3690Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x04, /* [2412] OBJ_id_alg_dh_pop */ 3700Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x01, /* [2420] OBJ_id_cmc_statusInfo */ 3710Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x02, /* [2428] OBJ_id_cmc_identification */ 3720Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x03, /* [2436] OBJ_id_cmc_identityProof */ 3730Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x04, /* [2444] OBJ_id_cmc_dataReturn */ 3740Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x05, /* [2452] OBJ_id_cmc_transactionId */ 3750Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x06, /* [2460] OBJ_id_cmc_senderNonce */ 3760Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x07, /* [2468] OBJ_id_cmc_recipientNonce */ 3770Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x08, /* [2476] OBJ_id_cmc_addExtensions */ 3780Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x09, /* [2484] OBJ_id_cmc_encryptedPOP */ 3790Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0A, /* [2492] OBJ_id_cmc_decryptedPOP */ 3800Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0B, /* [2500] OBJ_id_cmc_lraPOPWitness */ 3810Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0F, /* [2508] OBJ_id_cmc_getCert */ 3820Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x10, /* [2516] OBJ_id_cmc_getCRL */ 3830Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x11, /* [2524] OBJ_id_cmc_revokeRequest */ 3840Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x12, /* [2532] OBJ_id_cmc_regInfo */ 3850Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x13, /* [2540] OBJ_id_cmc_responseInfo */ 3860Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x15, /* [2548] OBJ_id_cmc_queryPending */ 3870Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x16, /* [2556] OBJ_id_cmc_popLinkRandom */ 3880Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x17, /* [2564] OBJ_id_cmc_popLinkWitness */ 3890Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x18, /* [2572] OBJ_id_cmc_confirmCertAcceptance */ 3900Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x08,0x01, /* [2580] OBJ_id_on_personalData */ 3910Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x01, /* [2588] OBJ_id_pda_dateOfBirth */ 3920Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x02, /* [2596] OBJ_id_pda_placeOfBirth */ 3930Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x03, /* [2604] OBJ_id_pda_gender */ 3940Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x04, /* [2612] OBJ_id_pda_countryOfCitizenship */ 3950Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x05, /* [2620] OBJ_id_pda_countryOfResidence */ 3960Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x01, /* [2628] OBJ_id_aca_authenticationInfo */ 3970Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x02, /* [2636] OBJ_id_aca_accessIdentity */ 3980Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x03, /* [2644] OBJ_id_aca_chargingIdentity */ 3990Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x04, /* [2652] OBJ_id_aca_group */ 4000Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x05, /* [2660] OBJ_id_aca_role */ 4010Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0B,0x01, /* [2668] OBJ_id_qcs_pkixQCSyntax_v1 */ 4020Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x01, /* [2676] OBJ_id_cct_crs */ 4030Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x02, /* [2684] OBJ_id_cct_PKIData */ 4040Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x03, /* [2692] OBJ_id_cct_PKIResponse */ 4050Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x03, /* [2700] OBJ_ad_timeStamping */ 4060Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x04, /* [2708] OBJ_ad_dvcs */ 4070Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x01,/* [2716] OBJ_id_pkix_OCSP_basic */ 4080Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x02,/* [2725] OBJ_id_pkix_OCSP_Nonce */ 4090Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x03,/* [2734] OBJ_id_pkix_OCSP_CrlID */ 4100Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x04,/* [2743] OBJ_id_pkix_OCSP_acceptableResponses */ 4110Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x05,/* [2752] OBJ_id_pkix_OCSP_noCheck */ 4120Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x06,/* [2761] OBJ_id_pkix_OCSP_archiveCutoff */ 4130Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x07,/* [2770] OBJ_id_pkix_OCSP_serviceLocator */ 4140Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x08,/* [2779] OBJ_id_pkix_OCSP_extendedStatus */ 4150Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x09,/* [2788] OBJ_id_pkix_OCSP_valid */ 4160Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x0A,/* [2797] OBJ_id_pkix_OCSP_path */ 4170Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x0B,/* [2806] OBJ_id_pkix_OCSP_trustRoot */ 4180Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02, /* [2815] OBJ_algorithm */ 4190Sstevel@tonic-gate 0x2B,0x0E,0x03,0x02,0x0B, /* [2819] OBJ_rsaSignature */ 4200Sstevel@tonic-gate 0x55,0x08, /* [2824] OBJ_X500algorithms */ 4210Sstevel@tonic-gate 0x2B, /* [2826] OBJ_org */ 4220Sstevel@tonic-gate 0x2B,0x06, /* [2827] OBJ_dod */ 4230Sstevel@tonic-gate 0x2B,0x06,0x01, /* [2829] OBJ_iana */ 4240Sstevel@tonic-gate 0x2B,0x06,0x01,0x01, /* [2832] OBJ_Directory */ 4250Sstevel@tonic-gate 0x2B,0x06,0x01,0x02, /* [2836] OBJ_Management */ 4260Sstevel@tonic-gate 0x2B,0x06,0x01,0x03, /* [2840] OBJ_Experimental */ 4270Sstevel@tonic-gate 0x2B,0x06,0x01,0x04, /* [2844] OBJ_Private */ 4280Sstevel@tonic-gate 0x2B,0x06,0x01,0x05, /* [2848] OBJ_Security */ 4290Sstevel@tonic-gate 0x2B,0x06,0x01,0x06, /* [2852] OBJ_SNMPv2 */ 4300Sstevel@tonic-gate 0x2B,0x06,0x01,0x07, /* [2856] OBJ_Mail */ 4310Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01, /* [2860] OBJ_Enterprises */ 4320Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x8B,0x3A,0x82,0x58,/* [2865] OBJ_dcObject */ 4330Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x19,/* [2874] OBJ_domainComponent */ 4340Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0D,/* [2884] OBJ_Domain */ 435*2139Sjp161948 0x00, /* [2894] OBJ_joint_iso_ccitt */ 4360Sstevel@tonic-gate 0x55,0x01,0x05, /* [2895] OBJ_selected_attribute_types */ 4370Sstevel@tonic-gate 0x55,0x01,0x05,0x37, /* [2898] OBJ_clearance */ 4380Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x03,/* [2902] OBJ_md4WithRSAEncryption */ 4390Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0A, /* [2911] OBJ_ac_proxying */ 4400Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0B, /* [2919] OBJ_sinfo_access */ 4410Sstevel@tonic-gate 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x06, /* [2927] OBJ_id_aca_encAttrs */ 4420Sstevel@tonic-gate 0x55,0x04,0x48, /* [2935] OBJ_role */ 4430Sstevel@tonic-gate 0x55,0x1D,0x24, /* [2938] OBJ_policy_constraints */ 4440Sstevel@tonic-gate 0x55,0x1D,0x37, /* [2941] OBJ_target_information */ 4450Sstevel@tonic-gate 0x55,0x1D,0x38, /* [2944] OBJ_no_rev_avail */ 4460Sstevel@tonic-gate 0x00, /* [2947] OBJ_ccitt */ 4470Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D, /* [2948] OBJ_ansi_X9_62 */ 4480Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x01, /* [2953] OBJ_X9_62_prime_field */ 4490Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02, /* [2960] OBJ_X9_62_characteristic_two_field */ 4500Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x02,0x01, /* [2967] OBJ_X9_62_id_ecPublicKey */ 4510Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x01, /* [2974] OBJ_X9_62_prime192v1 */ 4520Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x02, /* [2982] OBJ_X9_62_prime192v2 */ 4530Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x03, /* [2990] OBJ_X9_62_prime192v3 */ 4540Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x04, /* [2998] OBJ_X9_62_prime239v1 */ 4550Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x05, /* [3006] OBJ_X9_62_prime239v2 */ 4560Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x06, /* [3014] OBJ_X9_62_prime239v3 */ 4570Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x07, /* [3022] OBJ_X9_62_prime256v1 */ 4580Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x3D,0x04,0x01, /* [3030] OBJ_ecdsa_with_SHA1 */ 4590Sstevel@tonic-gate 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x11,0x01,/* [3037] OBJ_ms_csp_name */ 4600Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x01,/* [3046] OBJ_aes_128_ecb */ 4610Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x02,/* [3055] OBJ_aes_128_cbc */ 4620Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x03,/* [3064] OBJ_aes_128_ofb128 */ 4630Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x04,/* [3073] OBJ_aes_128_cfb128 */ 4640Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x15,/* [3082] OBJ_aes_192_ecb */ 4650Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x16,/* [3091] OBJ_aes_192_cbc */ 4660Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x17,/* [3100] OBJ_aes_192_ofb128 */ 4670Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x18,/* [3109] OBJ_aes_192_cfb128 */ 4680Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x29,/* [3118] OBJ_aes_256_ecb */ 4690Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2A,/* [3127] OBJ_aes_256_cbc */ 4700Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2B,/* [3136] OBJ_aes_256_ofb128 */ 4710Sstevel@tonic-gate 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2C,/* [3145] OBJ_aes_256_cfb128 */ 4720Sstevel@tonic-gate 0x55,0x1D,0x17, /* [3154] OBJ_hold_instruction_code */ 4730Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x38,0x02,0x01, /* [3157] OBJ_hold_instruction_none */ 4740Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x38,0x02,0x02, /* [3164] OBJ_hold_instruction_call_issuer */ 4750Sstevel@tonic-gate 0x2A,0x86,0x48,0xCE,0x38,0x02,0x03, /* [3171] OBJ_hold_instruction_reject */ 4760Sstevel@tonic-gate 0x09, /* [3178] OBJ_data */ 4770Sstevel@tonic-gate 0x09,0x92,0x26, /* [3179] OBJ_pss */ 4780Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C, /* [3182] OBJ_ucl */ 4790Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64, /* [3189] OBJ_pilot */ 4800Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,/* [3197] OBJ_pilotAttributeType */ 4810Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,/* [3206] OBJ_pilotAttributeSyntax */ 4820Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,/* [3215] OBJ_pilotObjectClass */ 4830Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x0A,/* [3224] OBJ_pilotGroups */ 4840Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,0x04,/* [3233] OBJ_iA5StringSyntax */ 4850Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,0x05,/* [3243] OBJ_caseIgnoreIA5StringSyntax */ 4860Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x03,/* [3253] OBJ_pilotObject */ 4870Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x04,/* [3263] OBJ_pilotPerson */ 4880Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x05,/* [3273] OBJ_account */ 4890Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x06,/* [3283] OBJ_document */ 4900Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x07,/* [3293] OBJ_room */ 4910Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x09,/* [3303] OBJ_documentSeries */ 4920Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0E,/* [3313] OBJ_rFC822localPart */ 4930Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0F,/* [3323] OBJ_dNSDomain */ 4940Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x11,/* [3333] OBJ_domainRelatedObject */ 4950Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x12,/* [3343] OBJ_friendlyCountry */ 4960Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x13,/* [3353] OBJ_simpleSecurityObject */ 4970Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x14,/* [3363] OBJ_pilotOrganization */ 4980Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x15,/* [3373] OBJ_pilotDSA */ 4990Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x16,/* [3383] OBJ_qualityLabelledData */ 5000Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x01,/* [3393] OBJ_userId */ 5010Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x02,/* [3403] OBJ_textEncodedORAddress */ 5020Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x03,/* [3413] OBJ_rfc822Mailbox */ 5030Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x04,/* [3423] OBJ_info */ 5040Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x05,/* [3433] OBJ_favouriteDrink */ 5050Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x06,/* [3443] OBJ_roomNumber */ 5060Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x07,/* [3453] OBJ_photo */ 5070Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x08,/* [3463] OBJ_userClass */ 5080Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x09,/* [3473] OBJ_host */ 5090Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0A,/* [3483] OBJ_manager */ 5100Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0B,/* [3493] OBJ_documentIdentifier */ 5110Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0C,/* [3503] OBJ_documentTitle */ 5120Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0D,/* [3513] OBJ_documentVersion */ 5130Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0E,/* [3523] OBJ_documentAuthor */ 5140Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0F,/* [3533] OBJ_documentLocation */ 5150Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x14,/* [3543] OBJ_homeTelephoneNumber */ 5160Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x15,/* [3553] OBJ_secretary */ 5170Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x16,/* [3563] OBJ_otherMailbox */ 5180Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x17,/* [3573] OBJ_lastModifiedTime */ 5190Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x18,/* [3583] OBJ_lastModifiedBy */ 5200Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1A,/* [3593] OBJ_aRecord */ 5210Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1B,/* [3603] OBJ_pilotAttributeType27 */ 5220Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1C,/* [3613] OBJ_mXRecord */ 5230Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1D,/* [3623] OBJ_nSRecord */ 5240Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1E,/* [3633] OBJ_sOARecord */ 5250Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1F,/* [3643] OBJ_cNAMERecord */ 5260Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x25,/* [3653] OBJ_associatedDomain */ 5270Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x26,/* [3663] OBJ_associatedName */ 5280Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x27,/* [3673] OBJ_homePostalAddress */ 5290Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x28,/* [3683] OBJ_personalTitle */ 5300Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x29,/* [3693] OBJ_mobileTelephoneNumber */ 5310Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2A,/* [3703] OBJ_pagerTelephoneNumber */ 5320Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2B,/* [3713] OBJ_friendlyCountryName */ 5330Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2D,/* [3723] OBJ_organizationalStatus */ 5340Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2E,/* [3733] OBJ_janetMailbox */ 5350Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2F,/* [3743] OBJ_mailPreferenceOption */ 5360Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x30,/* [3753] OBJ_buildingName */ 5370Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x31,/* [3763] OBJ_dSAQuality */ 5380Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x32,/* [3773] OBJ_singleLevelQuality */ 5390Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x33,/* [3783] OBJ_subtreeMinimumQuality */ 5400Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x34,/* [3793] OBJ_subtreeMaximumQuality */ 5410Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x35,/* [3803] OBJ_personalSignature */ 5420Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x36,/* [3813] OBJ_dITRedirect */ 5430Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x37,/* [3823] OBJ_audio */ 5440Sstevel@tonic-gate 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x38,/* [3833] OBJ_documentPublisher */ 5450Sstevel@tonic-gate 0x55,0x04,0x2D, /* [3843] OBJ_x500UniqueIdentifier */ 5460Sstevel@tonic-gate 0x2B,0x06,0x01,0x07,0x01, /* [3846] OBJ_mime_mhs */ 5470Sstevel@tonic-gate 0x2B,0x06,0x01,0x07,0x01,0x01, /* [3851] OBJ_mime_mhs_headings */ 5480Sstevel@tonic-gate 0x2B,0x06,0x01,0x07,0x01,0x02, /* [3857] OBJ_mime_mhs_bodies */ 5490Sstevel@tonic-gate 0x2B,0x06,0x01,0x07,0x01,0x01,0x01, /* [3863] OBJ_id_hex_partial_message */ 5500Sstevel@tonic-gate 0x2B,0x06,0x01,0x07,0x01,0x01,0x02, /* [3870] OBJ_id_hex_multipart_message */ 5510Sstevel@tonic-gate 0x55,0x04,0x2C, /* [3877] OBJ_generationQualifier */ 5520Sstevel@tonic-gate 0x55,0x04,0x41, /* [3880] OBJ_pseudonym */ 5530Sstevel@tonic-gate 0x67,0x2A, /* [3883] OBJ_id_set */ 5540Sstevel@tonic-gate 0x67,0x2A,0x00, /* [3885] OBJ_set_ctype */ 5550Sstevel@tonic-gate 0x67,0x2A,0x01, /* [3888] OBJ_set_msgExt */ 5560Sstevel@tonic-gate 0x67,0x2A,0x03, /* [3891] OBJ_set_attr */ 5570Sstevel@tonic-gate 0x67,0x2A,0x05, /* [3894] OBJ_set_policy */ 5580Sstevel@tonic-gate 0x67,0x2A,0x07, /* [3897] OBJ_set_certExt */ 5590Sstevel@tonic-gate 0x67,0x2A,0x08, /* [3900] OBJ_set_brand */ 5600Sstevel@tonic-gate 0x67,0x2A,0x00,0x00, /* [3903] OBJ_setct_PANData */ 5610Sstevel@tonic-gate 0x67,0x2A,0x00,0x01, /* [3907] OBJ_setct_PANToken */ 5620Sstevel@tonic-gate 0x67,0x2A,0x00,0x02, /* [3911] OBJ_setct_PANOnly */ 5630Sstevel@tonic-gate 0x67,0x2A,0x00,0x03, /* [3915] OBJ_setct_OIData */ 5640Sstevel@tonic-gate 0x67,0x2A,0x00,0x04, /* [3919] OBJ_setct_PI */ 5650Sstevel@tonic-gate 0x67,0x2A,0x00,0x05, /* [3923] OBJ_setct_PIData */ 5660Sstevel@tonic-gate 0x67,0x2A,0x00,0x06, /* [3927] OBJ_setct_PIDataUnsigned */ 5670Sstevel@tonic-gate 0x67,0x2A,0x00,0x07, /* [3931] OBJ_setct_HODInput */ 5680Sstevel@tonic-gate 0x67,0x2A,0x00,0x08, /* [3935] OBJ_setct_AuthResBaggage */ 5690Sstevel@tonic-gate 0x67,0x2A,0x00,0x09, /* [3939] OBJ_setct_AuthRevReqBaggage */ 5700Sstevel@tonic-gate 0x67,0x2A,0x00,0x0A, /* [3943] OBJ_setct_AuthRevResBaggage */ 5710Sstevel@tonic-gate 0x67,0x2A,0x00,0x0B, /* [3947] OBJ_setct_CapTokenSeq */ 5720Sstevel@tonic-gate 0x67,0x2A,0x00,0x0C, /* [3951] OBJ_setct_PInitResData */ 5730Sstevel@tonic-gate 0x67,0x2A,0x00,0x0D, /* [3955] OBJ_setct_PI_TBS */ 5740Sstevel@tonic-gate 0x67,0x2A,0x00,0x0E, /* [3959] OBJ_setct_PResData */ 5750Sstevel@tonic-gate 0x67,0x2A,0x00,0x10, /* [3963] OBJ_setct_AuthReqTBS */ 5760Sstevel@tonic-gate 0x67,0x2A,0x00,0x11, /* [3967] OBJ_setct_AuthResTBS */ 5770Sstevel@tonic-gate 0x67,0x2A,0x00,0x12, /* [3971] OBJ_setct_AuthResTBSX */ 5780Sstevel@tonic-gate 0x67,0x2A,0x00,0x13, /* [3975] OBJ_setct_AuthTokenTBS */ 5790Sstevel@tonic-gate 0x67,0x2A,0x00,0x14, /* [3979] OBJ_setct_CapTokenData */ 5800Sstevel@tonic-gate 0x67,0x2A,0x00,0x15, /* [3983] OBJ_setct_CapTokenTBS */ 5810Sstevel@tonic-gate 0x67,0x2A,0x00,0x16, /* [3987] OBJ_setct_AcqCardCodeMsg */ 5820Sstevel@tonic-gate 0x67,0x2A,0x00,0x17, /* [3991] OBJ_setct_AuthRevReqTBS */ 5830Sstevel@tonic-gate 0x67,0x2A,0x00,0x18, /* [3995] OBJ_setct_AuthRevResData */ 5840Sstevel@tonic-gate 0x67,0x2A,0x00,0x19, /* [3999] OBJ_setct_AuthRevResTBS */ 5850Sstevel@tonic-gate 0x67,0x2A,0x00,0x1A, /* [4003] OBJ_setct_CapReqTBS */ 5860Sstevel@tonic-gate 0x67,0x2A,0x00,0x1B, /* [4007] OBJ_setct_CapReqTBSX */ 5870Sstevel@tonic-gate 0x67,0x2A,0x00,0x1C, /* [4011] OBJ_setct_CapResData */ 5880Sstevel@tonic-gate 0x67,0x2A,0x00,0x1D, /* [4015] OBJ_setct_CapRevReqTBS */ 5890Sstevel@tonic-gate 0x67,0x2A,0x00,0x1E, /* [4019] OBJ_setct_CapRevReqTBSX */ 5900Sstevel@tonic-gate 0x67,0x2A,0x00,0x1F, /* [4023] OBJ_setct_CapRevResData */ 5910Sstevel@tonic-gate 0x67,0x2A,0x00,0x20, /* [4027] OBJ_setct_CredReqTBS */ 5920Sstevel@tonic-gate 0x67,0x2A,0x00,0x21, /* [4031] OBJ_setct_CredReqTBSX */ 5930Sstevel@tonic-gate 0x67,0x2A,0x00,0x22, /* [4035] OBJ_setct_CredResData */ 5940Sstevel@tonic-gate 0x67,0x2A,0x00,0x23, /* [4039] OBJ_setct_CredRevReqTBS */ 5950Sstevel@tonic-gate 0x67,0x2A,0x00,0x24, /* [4043] OBJ_setct_CredRevReqTBSX */ 5960Sstevel@tonic-gate 0x67,0x2A,0x00,0x25, /* [4047] OBJ_setct_CredRevResData */ 5970Sstevel@tonic-gate 0x67,0x2A,0x00,0x26, /* [4051] OBJ_setct_PCertReqData */ 5980Sstevel@tonic-gate 0x67,0x2A,0x00,0x27, /* [4055] OBJ_setct_PCertResTBS */ 5990Sstevel@tonic-gate 0x67,0x2A,0x00,0x28, /* [4059] OBJ_setct_BatchAdminReqData */ 6000Sstevel@tonic-gate 0x67,0x2A,0x00,0x29, /* [4063] OBJ_setct_BatchAdminResData */ 6010Sstevel@tonic-gate 0x67,0x2A,0x00,0x2A, /* [4067] OBJ_setct_CardCInitResTBS */ 6020Sstevel@tonic-gate 0x67,0x2A,0x00,0x2B, /* [4071] OBJ_setct_MeAqCInitResTBS */ 6030Sstevel@tonic-gate 0x67,0x2A,0x00,0x2C, /* [4075] OBJ_setct_RegFormResTBS */ 6040Sstevel@tonic-gate 0x67,0x2A,0x00,0x2D, /* [4079] OBJ_setct_CertReqData */ 6050Sstevel@tonic-gate 0x67,0x2A,0x00,0x2E, /* [4083] OBJ_setct_CertReqTBS */ 6060Sstevel@tonic-gate 0x67,0x2A,0x00,0x2F, /* [4087] OBJ_setct_CertResData */ 6070Sstevel@tonic-gate 0x67,0x2A,0x00,0x30, /* [4091] OBJ_setct_CertInqReqTBS */ 6080Sstevel@tonic-gate 0x67,0x2A,0x00,0x31, /* [4095] OBJ_setct_ErrorTBS */ 6090Sstevel@tonic-gate 0x67,0x2A,0x00,0x32, /* [4099] OBJ_setct_PIDualSignedTBE */ 6100Sstevel@tonic-gate 0x67,0x2A,0x00,0x33, /* [4103] OBJ_setct_PIUnsignedTBE */ 6110Sstevel@tonic-gate 0x67,0x2A,0x00,0x34, /* [4107] OBJ_setct_AuthReqTBE */ 6120Sstevel@tonic-gate 0x67,0x2A,0x00,0x35, /* [4111] OBJ_setct_AuthResTBE */ 6130Sstevel@tonic-gate 0x67,0x2A,0x00,0x36, /* [4115] OBJ_setct_AuthResTBEX */ 6140Sstevel@tonic-gate 0x67,0x2A,0x00,0x37, /* [4119] OBJ_setct_AuthTokenTBE */ 6150Sstevel@tonic-gate 0x67,0x2A,0x00,0x38, /* [4123] OBJ_setct_CapTokenTBE */ 6160Sstevel@tonic-gate 0x67,0x2A,0x00,0x39, /* [4127] OBJ_setct_CapTokenTBEX */ 6170Sstevel@tonic-gate 0x67,0x2A,0x00,0x3A, /* [4131] OBJ_setct_AcqCardCodeMsgTBE */ 6180Sstevel@tonic-gate 0x67,0x2A,0x00,0x3B, /* [4135] OBJ_setct_AuthRevReqTBE */ 6190Sstevel@tonic-gate 0x67,0x2A,0x00,0x3C, /* [4139] OBJ_setct_AuthRevResTBE */ 6200Sstevel@tonic-gate 0x67,0x2A,0x00,0x3D, /* [4143] OBJ_setct_AuthRevResTBEB */ 6210Sstevel@tonic-gate 0x67,0x2A,0x00,0x3E, /* [4147] OBJ_setct_CapReqTBE */ 6220Sstevel@tonic-gate 0x67,0x2A,0x00,0x3F, /* [4151] OBJ_setct_CapReqTBEX */ 6230Sstevel@tonic-gate 0x67,0x2A,0x00,0x40, /* [4155] OBJ_setct_CapResTBE */ 6240Sstevel@tonic-gate 0x67,0x2A,0x00,0x41, /* [4159] OBJ_setct_CapRevReqTBE */ 6250Sstevel@tonic-gate 0x67,0x2A,0x00,0x42, /* [4163] OBJ_setct_CapRevReqTBEX */ 6260Sstevel@tonic-gate 0x67,0x2A,0x00,0x43, /* [4167] OBJ_setct_CapRevResTBE */ 6270Sstevel@tonic-gate 0x67,0x2A,0x00,0x44, /* [4171] OBJ_setct_CredReqTBE */ 6280Sstevel@tonic-gate 0x67,0x2A,0x00,0x45, /* [4175] OBJ_setct_CredReqTBEX */ 6290Sstevel@tonic-gate 0x67,0x2A,0x00,0x46, /* [4179] OBJ_setct_CredResTBE */ 6300Sstevel@tonic-gate 0x67,0x2A,0x00,0x47, /* [4183] OBJ_setct_CredRevReqTBE */ 6310Sstevel@tonic-gate 0x67,0x2A,0x00,0x48, /* [4187] OBJ_setct_CredRevReqTBEX */ 6320Sstevel@tonic-gate 0x67,0x2A,0x00,0x49, /* [4191] OBJ_setct_CredRevResTBE */ 6330Sstevel@tonic-gate 0x67,0x2A,0x00,0x4A, /* [4195] OBJ_setct_BatchAdminReqTBE */ 6340Sstevel@tonic-gate 0x67,0x2A,0x00,0x4B, /* [4199] OBJ_setct_BatchAdminResTBE */ 6350Sstevel@tonic-gate 0x67,0x2A,0x00,0x4C, /* [4203] OBJ_setct_RegFormReqTBE */ 6360Sstevel@tonic-gate 0x67,0x2A,0x00,0x4D, /* [4207] OBJ_setct_CertReqTBE */ 6370Sstevel@tonic-gate 0x67,0x2A,0x00,0x4E, /* [4211] OBJ_setct_CertReqTBEX */ 6380Sstevel@tonic-gate 0x67,0x2A,0x00,0x4F, /* [4215] OBJ_setct_CertResTBE */ 6390Sstevel@tonic-gate 0x67,0x2A,0x00,0x50, /* [4219] OBJ_setct_CRLNotificationTBS */ 6400Sstevel@tonic-gate 0x67,0x2A,0x00,0x51, /* [4223] OBJ_setct_CRLNotificationResTBS */ 6410Sstevel@tonic-gate 0x67,0x2A,0x00,0x52, /* [4227] OBJ_setct_BCIDistributionTBS */ 6420Sstevel@tonic-gate 0x67,0x2A,0x01,0x01, /* [4231] OBJ_setext_genCrypt */ 6430Sstevel@tonic-gate 0x67,0x2A,0x01,0x03, /* [4235] OBJ_setext_miAuth */ 6440Sstevel@tonic-gate 0x67,0x2A,0x01,0x04, /* [4239] OBJ_setext_pinSecure */ 6450Sstevel@tonic-gate 0x67,0x2A,0x01,0x05, /* [4243] OBJ_setext_pinAny */ 6460Sstevel@tonic-gate 0x67,0x2A,0x01,0x07, /* [4247] OBJ_setext_track2 */ 6470Sstevel@tonic-gate 0x67,0x2A,0x01,0x08, /* [4251] OBJ_setext_cv */ 6480Sstevel@tonic-gate 0x67,0x2A,0x05,0x00, /* [4255] OBJ_set_policy_root */ 6490Sstevel@tonic-gate 0x67,0x2A,0x07,0x00, /* [4259] OBJ_setCext_hashedRoot */ 6500Sstevel@tonic-gate 0x67,0x2A,0x07,0x01, /* [4263] OBJ_setCext_certType */ 6510Sstevel@tonic-gate 0x67,0x2A,0x07,0x02, /* [4267] OBJ_setCext_merchData */ 6520Sstevel@tonic-gate 0x67,0x2A,0x07,0x03, /* [4271] OBJ_setCext_cCertRequired */ 6530Sstevel@tonic-gate 0x67,0x2A,0x07,0x04, /* [4275] OBJ_setCext_tunneling */ 6540Sstevel@tonic-gate 0x67,0x2A,0x07,0x05, /* [4279] OBJ_setCext_setExt */ 6550Sstevel@tonic-gate 0x67,0x2A,0x07,0x06, /* [4283] OBJ_setCext_setQualf */ 6560Sstevel@tonic-gate 0x67,0x2A,0x07,0x07, /* [4287] OBJ_setCext_PGWYcapabilities */ 6570Sstevel@tonic-gate 0x67,0x2A,0x07,0x08, /* [4291] OBJ_setCext_TokenIdentifier */ 6580Sstevel@tonic-gate 0x67,0x2A,0x07,0x09, /* [4295] OBJ_setCext_Track2Data */ 6590Sstevel@tonic-gate 0x67,0x2A,0x07,0x0A, /* [4299] OBJ_setCext_TokenType */ 6600Sstevel@tonic-gate 0x67,0x2A,0x07,0x0B, /* [4303] OBJ_setCext_IssuerCapabilities */ 6610Sstevel@tonic-gate 0x67,0x2A,0x03,0x00, /* [4307] OBJ_setAttr_Cert */ 6620Sstevel@tonic-gate 0x67,0x2A,0x03,0x01, /* [4311] OBJ_setAttr_PGWYcap */ 6630Sstevel@tonic-gate 0x67,0x2A,0x03,0x02, /* [4315] OBJ_setAttr_TokenType */ 6640Sstevel@tonic-gate 0x67,0x2A,0x03,0x03, /* [4319] OBJ_setAttr_IssCap */ 6650Sstevel@tonic-gate 0x67,0x2A,0x03,0x00,0x00, /* [4323] OBJ_set_rootKeyThumb */ 6660Sstevel@tonic-gate 0x67,0x2A,0x03,0x00,0x01, /* [4328] OBJ_set_addPolicy */ 6670Sstevel@tonic-gate 0x67,0x2A,0x03,0x02,0x01, /* [4333] OBJ_setAttr_Token_EMV */ 6680Sstevel@tonic-gate 0x67,0x2A,0x03,0x02,0x02, /* [4338] OBJ_setAttr_Token_B0Prime */ 6690Sstevel@tonic-gate 0x67,0x2A,0x03,0x03,0x03, /* [4343] OBJ_setAttr_IssCap_CVM */ 6700Sstevel@tonic-gate 0x67,0x2A,0x03,0x03,0x04, /* [4348] OBJ_setAttr_IssCap_T2 */ 6710Sstevel@tonic-gate 0x67,0x2A,0x03,0x03,0x05, /* [4353] OBJ_setAttr_IssCap_Sig */ 6720Sstevel@tonic-gate 0x67,0x2A,0x03,0x03,0x03,0x01, /* [4358] OBJ_setAttr_GenCryptgrm */ 6730Sstevel@tonic-gate 0x67,0x2A,0x03,0x03,0x04,0x01, /* [4364] OBJ_setAttr_T2Enc */ 6740Sstevel@tonic-gate 0x67,0x2A,0x03,0x03,0x04,0x02, /* [4370] OBJ_setAttr_T2cleartxt */ 6750Sstevel@tonic-gate 0x67,0x2A,0x03,0x03,0x05,0x01, /* [4376] OBJ_setAttr_TokICCsig */ 6760Sstevel@tonic-gate 0x67,0x2A,0x03,0x03,0x05,0x02, /* [4382] OBJ_setAttr_SecDevSig */ 6770Sstevel@tonic-gate 0x67,0x2A,0x08,0x01, /* [4388] OBJ_set_brand_IATA_ATA */ 6780Sstevel@tonic-gate 0x67,0x2A,0x08,0x1E, /* [4392] OBJ_set_brand_Diners */ 6790Sstevel@tonic-gate 0x67,0x2A,0x08,0x22, /* [4396] OBJ_set_brand_AmericanExpress */ 6800Sstevel@tonic-gate 0x67,0x2A,0x08,0x23, /* [4400] OBJ_set_brand_JCB */ 6810Sstevel@tonic-gate 0x67,0x2A,0x08,0x04, /* [4404] OBJ_set_brand_Visa */ 6820Sstevel@tonic-gate 0x67,0x2A,0x08,0x05, /* [4408] OBJ_set_brand_MasterCard */ 6830Sstevel@tonic-gate 0x67,0x2A,0x08,0xAE,0x7B, /* [4412] OBJ_set_brand_Novus */ 6840Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x0A, /* [4417] OBJ_des_cdmf */ 6850Sstevel@tonic-gate 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x06,/* [4425] OBJ_rsaOAEPEncryptionSET */ 686*2139Sjp161948 0x00, /* [4434] OBJ_itu_t */ 687*2139Sjp161948 0x50, /* [4435] OBJ_joint_iso_itu_t */ 688*2139Sjp161948 0x67, /* [4436] OBJ_international_organizations */ 689*2139Sjp161948 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x02,/* [4437] OBJ_ms_smartcard_login */ 690*2139Sjp161948 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x03,/* [4447] OBJ_ms_upn */ 691*2139Sjp161948 0x55,0x04,0x09, /* [4457] OBJ_streetAddress */ 692*2139Sjp161948 0x55,0x04,0x11, /* [4460] OBJ_postalCode */ 693*2139Sjp161948 0x2B,0x06,0x01,0x05,0x05,0x07,0x15, /* [4463] OBJ_id_ppl */ 694*2139Sjp161948 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0E, /* [4470] OBJ_proxyCertInfo */ 695*2139Sjp161948 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x00, /* [4478] OBJ_id_ppl_anyLanguage */ 696*2139Sjp161948 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x01, /* [4486] OBJ_id_ppl_inheritAll */ 697*2139Sjp161948 0x55,0x1D,0x1E, /* [4494] OBJ_name_constraints */ 698*2139Sjp161948 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x02, /* [4497] OBJ_Independent */ 699*2139Sjp161948 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0B,/* [4505] OBJ_sha256WithRSAEncryption */ 700*2139Sjp161948 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0C,/* [4514] OBJ_sha384WithRSAEncryption */ 701*2139Sjp161948 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0D,/* [4523] OBJ_sha512WithRSAEncryption */ 702*2139Sjp161948 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0E,/* [4532] OBJ_sha224WithRSAEncryption */ 703*2139Sjp161948 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x01,/* [4541] OBJ_sha256 */ 704*2139Sjp161948 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x02,/* [4550] OBJ_sha384 */ 705*2139Sjp161948 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x03,/* [4559] OBJ_sha512 */ 706*2139Sjp161948 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x04,/* [4568] OBJ_sha224 */ 707*2139Sjp161948 0x2B, /* [4577] OBJ_identified_organization */ 708*2139Sjp161948 0x2B,0x81,0x04, /* [4578] OBJ_certicom_arc */ 709*2139Sjp161948 0x67,0x2B, /* [4581] OBJ_wap */ 710*2139Sjp161948 0x67,0x2B,0x0D, /* [4583] OBJ_wap_wsg */ 711*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03, /* [4586] OBJ_X9_62_id_characteristic_two_basis */ 712*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x01,/* [4594] OBJ_X9_62_onBasis */ 713*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x02,/* [4603] OBJ_X9_62_tpBasis */ 714*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x03,/* [4612] OBJ_X9_62_ppBasis */ 715*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x01, /* [4621] OBJ_X9_62_c2pnb163v1 */ 716*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x02, /* [4629] OBJ_X9_62_c2pnb163v2 */ 717*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x03, /* [4637] OBJ_X9_62_c2pnb163v3 */ 718*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x04, /* [4645] OBJ_X9_62_c2pnb176v1 */ 719*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x05, /* [4653] OBJ_X9_62_c2tnb191v1 */ 720*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x06, /* [4661] OBJ_X9_62_c2tnb191v2 */ 721*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x07, /* [4669] OBJ_X9_62_c2tnb191v3 */ 722*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x08, /* [4677] OBJ_X9_62_c2onb191v4 */ 723*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x09, /* [4685] OBJ_X9_62_c2onb191v5 */ 724*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0A, /* [4693] OBJ_X9_62_c2pnb208w1 */ 725*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0B, /* [4701] OBJ_X9_62_c2tnb239v1 */ 726*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0C, /* [4709] OBJ_X9_62_c2tnb239v2 */ 727*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0D, /* [4717] OBJ_X9_62_c2tnb239v3 */ 728*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0E, /* [4725] OBJ_X9_62_c2onb239v4 */ 729*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0F, /* [4733] OBJ_X9_62_c2onb239v5 */ 730*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x10, /* [4741] OBJ_X9_62_c2pnb272w1 */ 731*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x11, /* [4749] OBJ_X9_62_c2pnb304w1 */ 732*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x12, /* [4757] OBJ_X9_62_c2tnb359v1 */ 733*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x13, /* [4765] OBJ_X9_62_c2pnb368w1 */ 734*2139Sjp161948 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x14, /* [4773] OBJ_X9_62_c2tnb431r1 */ 735*2139Sjp161948 0x2B,0x81,0x04,0x00,0x06, /* [4781] OBJ_secp112r1 */ 736*2139Sjp161948 0x2B,0x81,0x04,0x00,0x07, /* [4786] OBJ_secp112r2 */ 737*2139Sjp161948 0x2B,0x81,0x04,0x00,0x1C, /* [4791] OBJ_secp128r1 */ 738*2139Sjp161948 0x2B,0x81,0x04,0x00,0x1D, /* [4796] OBJ_secp128r2 */ 739*2139Sjp161948 0x2B,0x81,0x04,0x00,0x09, /* [4801] OBJ_secp160k1 */ 740*2139Sjp161948 0x2B,0x81,0x04,0x00,0x08, /* [4806] OBJ_secp160r1 */ 741*2139Sjp161948 0x2B,0x81,0x04,0x00,0x1E, /* [4811] OBJ_secp160r2 */ 742*2139Sjp161948 0x2B,0x81,0x04,0x00,0x1F, /* [4816] OBJ_secp192k1 */ 743*2139Sjp161948 0x2B,0x81,0x04,0x00,0x20, /* [4821] OBJ_secp224k1 */ 744*2139Sjp161948 0x2B,0x81,0x04,0x00,0x21, /* [4826] OBJ_secp224r1 */ 745*2139Sjp161948 0x2B,0x81,0x04,0x00,0x0A, /* [4831] OBJ_secp256k1 */ 746*2139Sjp161948 0x2B,0x81,0x04,0x00,0x22, /* [4836] OBJ_secp384r1 */ 747*2139Sjp161948 0x2B,0x81,0x04,0x00,0x23, /* [4841] OBJ_secp521r1 */ 748*2139Sjp161948 0x2B,0x81,0x04,0x00,0x04, /* [4846] OBJ_sect113r1 */ 749*2139Sjp161948 0x2B,0x81,0x04,0x00,0x05, /* [4851] OBJ_sect113r2 */ 750*2139Sjp161948 0x2B,0x81,0x04,0x00,0x16, /* [4856] OBJ_sect131r1 */ 751*2139Sjp161948 0x2B,0x81,0x04,0x00,0x17, /* [4861] OBJ_sect131r2 */ 752*2139Sjp161948 0x2B,0x81,0x04,0x00,0x01, /* [4866] OBJ_sect163k1 */ 753*2139Sjp161948 0x2B,0x81,0x04,0x00,0x02, /* [4871] OBJ_sect163r1 */ 754*2139Sjp161948 0x2B,0x81,0x04,0x00,0x0F, /* [4876] OBJ_sect163r2 */ 755*2139Sjp161948 0x2B,0x81,0x04,0x00,0x18, /* [4881] OBJ_sect193r1 */ 756*2139Sjp161948 0x2B,0x81,0x04,0x00,0x19, /* [4886] OBJ_sect193r2 */ 757*2139Sjp161948 0x2B,0x81,0x04,0x00,0x1A, /* [4891] OBJ_sect233k1 */ 758*2139Sjp161948 0x2B,0x81,0x04,0x00,0x1B, /* [4896] OBJ_sect233r1 */ 759*2139Sjp161948 0x2B,0x81,0x04,0x00,0x03, /* [4901] OBJ_sect239k1 */ 760*2139Sjp161948 0x2B,0x81,0x04,0x00,0x10, /* [4906] OBJ_sect283k1 */ 761*2139Sjp161948 0x2B,0x81,0x04,0x00,0x11, /* [4911] OBJ_sect283r1 */ 762*2139Sjp161948 0x2B,0x81,0x04,0x00,0x24, /* [4916] OBJ_sect409k1 */ 763*2139Sjp161948 0x2B,0x81,0x04,0x00,0x25, /* [4921] OBJ_sect409r1 */ 764*2139Sjp161948 0x2B,0x81,0x04,0x00,0x26, /* [4926] OBJ_sect571k1 */ 765*2139Sjp161948 0x2B,0x81,0x04,0x00,0x27, /* [4931] OBJ_sect571r1 */ 766*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x01, /* [4936] OBJ_wap_wsg_idm_ecid_wtls1 */ 767*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x03, /* [4941] OBJ_wap_wsg_idm_ecid_wtls3 */ 768*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x04, /* [4946] OBJ_wap_wsg_idm_ecid_wtls4 */ 769*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x05, /* [4951] OBJ_wap_wsg_idm_ecid_wtls5 */ 770*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x06, /* [4956] OBJ_wap_wsg_idm_ecid_wtls6 */ 771*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x07, /* [4961] OBJ_wap_wsg_idm_ecid_wtls7 */ 772*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x08, /* [4966] OBJ_wap_wsg_idm_ecid_wtls8 */ 773*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x09, /* [4971] OBJ_wap_wsg_idm_ecid_wtls9 */ 774*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x0A, /* [4976] OBJ_wap_wsg_idm_ecid_wtls10 */ 775*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x0B, /* [4981] OBJ_wap_wsg_idm_ecid_wtls11 */ 776*2139Sjp161948 0x67,0x2B,0x0D,0x04,0x0C, /* [4986] OBJ_wap_wsg_idm_ecid_wtls12 */ 777*2139Sjp161948 0x55,0x1D,0x20,0x00, /* [4991] OBJ_any_policy */ 778*2139Sjp161948 0x55,0x1D,0x21, /* [4995] OBJ_policy_mappings */ 779*2139Sjp161948 0x55,0x1D,0x36, /* [4998] OBJ_inhibit_any_policy */ 7800Sstevel@tonic-gate }; 7810Sstevel@tonic-gate 7820Sstevel@tonic-gate static ASN1_OBJECT nid_objs[NUM_NID]={ 7830Sstevel@tonic-gate {"UNDEF","undefined",NID_undef,1,&(lvalues[0]),0}, 7840Sstevel@tonic-gate {"rsadsi","RSA Data Security, Inc.",NID_rsadsi,6,&(lvalues[1]),0}, 7850Sstevel@tonic-gate {"pkcs","RSA Data Security, Inc. PKCS",NID_pkcs,7,&(lvalues[7]),0}, 7860Sstevel@tonic-gate {"MD2","md2",NID_md2,8,&(lvalues[14]),0}, 7870Sstevel@tonic-gate {"MD5","md5",NID_md5,8,&(lvalues[22]),0}, 7880Sstevel@tonic-gate {"RC4","rc4",NID_rc4,8,&(lvalues[30]),0}, 7890Sstevel@tonic-gate {"rsaEncryption","rsaEncryption",NID_rsaEncryption,9,&(lvalues[38]),0}, 7900Sstevel@tonic-gate {"RSA-MD2","md2WithRSAEncryption",NID_md2WithRSAEncryption,9, 7910Sstevel@tonic-gate &(lvalues[47]),0}, 7920Sstevel@tonic-gate {"RSA-MD5","md5WithRSAEncryption",NID_md5WithRSAEncryption,9, 7930Sstevel@tonic-gate &(lvalues[56]),0}, 7940Sstevel@tonic-gate {"PBE-MD2-DES","pbeWithMD2AndDES-CBC",NID_pbeWithMD2AndDES_CBC,9, 7950Sstevel@tonic-gate &(lvalues[65]),0}, 7960Sstevel@tonic-gate {"PBE-MD5-DES","pbeWithMD5AndDES-CBC",NID_pbeWithMD5AndDES_CBC,9, 7970Sstevel@tonic-gate &(lvalues[74]),0}, 7980Sstevel@tonic-gate {"X500","directory services (X.500)",NID_X500,1,&(lvalues[83]),0}, 7990Sstevel@tonic-gate {"X509","X509",NID_X509,2,&(lvalues[84]),0}, 8000Sstevel@tonic-gate {"CN","commonName",NID_commonName,3,&(lvalues[86]),0}, 8010Sstevel@tonic-gate {"C","countryName",NID_countryName,3,&(lvalues[89]),0}, 8020Sstevel@tonic-gate {"L","localityName",NID_localityName,3,&(lvalues[92]),0}, 8030Sstevel@tonic-gate {"ST","stateOrProvinceName",NID_stateOrProvinceName,3,&(lvalues[95]),0}, 8040Sstevel@tonic-gate {"O","organizationName",NID_organizationName,3,&(lvalues[98]),0}, 8050Sstevel@tonic-gate {"OU","organizationalUnitName",NID_organizationalUnitName,3, 8060Sstevel@tonic-gate &(lvalues[101]),0}, 8070Sstevel@tonic-gate {"RSA","rsa",NID_rsa,4,&(lvalues[104]),0}, 8080Sstevel@tonic-gate {"pkcs7","pkcs7",NID_pkcs7,8,&(lvalues[108]),0}, 8090Sstevel@tonic-gate {"pkcs7-data","pkcs7-data",NID_pkcs7_data,9,&(lvalues[116]),0}, 8100Sstevel@tonic-gate {"pkcs7-signedData","pkcs7-signedData",NID_pkcs7_signed,9, 8110Sstevel@tonic-gate &(lvalues[125]),0}, 8120Sstevel@tonic-gate {"pkcs7-envelopedData","pkcs7-envelopedData",NID_pkcs7_enveloped,9, 8130Sstevel@tonic-gate &(lvalues[134]),0}, 8140Sstevel@tonic-gate {"pkcs7-signedAndEnvelopedData","pkcs7-signedAndEnvelopedData", 8150Sstevel@tonic-gate NID_pkcs7_signedAndEnveloped,9,&(lvalues[143]),0}, 8160Sstevel@tonic-gate {"pkcs7-digestData","pkcs7-digestData",NID_pkcs7_digest,9, 8170Sstevel@tonic-gate &(lvalues[152]),0}, 8180Sstevel@tonic-gate {"pkcs7-encryptedData","pkcs7-encryptedData",NID_pkcs7_encrypted,9, 8190Sstevel@tonic-gate &(lvalues[161]),0}, 8200Sstevel@tonic-gate {"pkcs3","pkcs3",NID_pkcs3,8,&(lvalues[170]),0}, 8210Sstevel@tonic-gate {"dhKeyAgreement","dhKeyAgreement",NID_dhKeyAgreement,9, 8220Sstevel@tonic-gate &(lvalues[178]),0}, 8230Sstevel@tonic-gate {"DES-ECB","des-ecb",NID_des_ecb,5,&(lvalues[187]),0}, 8240Sstevel@tonic-gate {"DES-CFB","des-cfb",NID_des_cfb64,5,&(lvalues[192]),0}, 8250Sstevel@tonic-gate {"DES-CBC","des-cbc",NID_des_cbc,5,&(lvalues[197]),0}, 8260Sstevel@tonic-gate {"DES-EDE","des-ede",NID_des_ede_ecb,5,&(lvalues[202]),0}, 827*2139Sjp161948 {"DES-EDE3","des-ede3",NID_des_ede3_ecb,0,NULL,0}, 8280Sstevel@tonic-gate {"IDEA-CBC","idea-cbc",NID_idea_cbc,11,&(lvalues[207]),0}, 829*2139Sjp161948 {"IDEA-CFB","idea-cfb",NID_idea_cfb64,0,NULL,0}, 830*2139Sjp161948 {"IDEA-ECB","idea-ecb",NID_idea_ecb,0,NULL,0}, 8310Sstevel@tonic-gate {"RC2-CBC","rc2-cbc",NID_rc2_cbc,8,&(lvalues[218]),0}, 832*2139Sjp161948 {"RC2-ECB","rc2-ecb",NID_rc2_ecb,0,NULL,0}, 833*2139Sjp161948 {"RC2-CFB","rc2-cfb",NID_rc2_cfb64,0,NULL,0}, 834*2139Sjp161948 {"RC2-OFB","rc2-ofb",NID_rc2_ofb64,0,NULL,0}, 8350Sstevel@tonic-gate {"SHA","sha",NID_sha,5,&(lvalues[226]),0}, 8360Sstevel@tonic-gate {"RSA-SHA","shaWithRSAEncryption",NID_shaWithRSAEncryption,5, 8370Sstevel@tonic-gate &(lvalues[231]),0}, 838*2139Sjp161948 {"DES-EDE-CBC","des-ede-cbc",NID_des_ede_cbc,0,NULL,0}, 8390Sstevel@tonic-gate {"DES-EDE3-CBC","des-ede3-cbc",NID_des_ede3_cbc,8,&(lvalues[236]),0}, 8400Sstevel@tonic-gate {"DES-OFB","des-ofb",NID_des_ofb64,5,&(lvalues[244]),0}, 841*2139Sjp161948 {"IDEA-OFB","idea-ofb",NID_idea_ofb64,0,NULL,0}, 8420Sstevel@tonic-gate {"pkcs9","pkcs9",NID_pkcs9,8,&(lvalues[249]),0}, 8430Sstevel@tonic-gate {"emailAddress","emailAddress",NID_pkcs9_emailAddress,9, 8440Sstevel@tonic-gate &(lvalues[257]),0}, 8450Sstevel@tonic-gate {"unstructuredName","unstructuredName",NID_pkcs9_unstructuredName,9, 8460Sstevel@tonic-gate &(lvalues[266]),0}, 8470Sstevel@tonic-gate {"contentType","contentType",NID_pkcs9_contentType,9,&(lvalues[275]),0}, 8480Sstevel@tonic-gate {"messageDigest","messageDigest",NID_pkcs9_messageDigest,9, 8490Sstevel@tonic-gate &(lvalues[284]),0}, 8500Sstevel@tonic-gate {"signingTime","signingTime",NID_pkcs9_signingTime,9,&(lvalues[293]),0}, 8510Sstevel@tonic-gate {"countersignature","countersignature",NID_pkcs9_countersignature,9, 8520Sstevel@tonic-gate &(lvalues[302]),0}, 8530Sstevel@tonic-gate {"challengePassword","challengePassword",NID_pkcs9_challengePassword, 8540Sstevel@tonic-gate 9,&(lvalues[311]),0}, 8550Sstevel@tonic-gate {"unstructuredAddress","unstructuredAddress", 8560Sstevel@tonic-gate NID_pkcs9_unstructuredAddress,9,&(lvalues[320]),0}, 8570Sstevel@tonic-gate {"extendedCertificateAttributes","extendedCertificateAttributes", 8580Sstevel@tonic-gate NID_pkcs9_extCertAttributes,9,&(lvalues[329]),0}, 8590Sstevel@tonic-gate {"Netscape","Netscape Communications Corp.",NID_netscape,7, 8600Sstevel@tonic-gate &(lvalues[338]),0}, 8610Sstevel@tonic-gate {"nsCertExt","Netscape Certificate Extension", 8620Sstevel@tonic-gate NID_netscape_cert_extension,8,&(lvalues[345]),0}, 8630Sstevel@tonic-gate {"nsDataType","Netscape Data Type",NID_netscape_data_type,8, 8640Sstevel@tonic-gate &(lvalues[353]),0}, 865*2139Sjp161948 {"DES-EDE-CFB","des-ede-cfb",NID_des_ede_cfb64,0,NULL,0}, 866*2139Sjp161948 {"DES-EDE3-CFB","des-ede3-cfb",NID_des_ede3_cfb64,0,NULL,0}, 867*2139Sjp161948 {"DES-EDE-OFB","des-ede-ofb",NID_des_ede_ofb64,0,NULL,0}, 868*2139Sjp161948 {"DES-EDE3-OFB","des-ede3-ofb",NID_des_ede3_ofb64,0,NULL,0}, 8690Sstevel@tonic-gate {"SHA1","sha1",NID_sha1,5,&(lvalues[361]),0}, 8700Sstevel@tonic-gate {"RSA-SHA1","sha1WithRSAEncryption",NID_sha1WithRSAEncryption,9, 8710Sstevel@tonic-gate &(lvalues[366]),0}, 8720Sstevel@tonic-gate {"DSA-SHA","dsaWithSHA",NID_dsaWithSHA,5,&(lvalues[375]),0}, 8730Sstevel@tonic-gate {"DSA-old","dsaEncryption-old",NID_dsa_2,5,&(lvalues[380]),0}, 8740Sstevel@tonic-gate {"PBE-SHA1-RC2-64","pbeWithSHA1AndRC2-CBC",NID_pbeWithSHA1AndRC2_CBC, 8750Sstevel@tonic-gate 9,&(lvalues[385]),0}, 8760Sstevel@tonic-gate {"PBKDF2","PBKDF2",NID_id_pbkdf2,9,&(lvalues[394]),0}, 8770Sstevel@tonic-gate {"DSA-SHA1-old","dsaWithSHA1-old",NID_dsaWithSHA1_2,5,&(lvalues[403]),0}, 8780Sstevel@tonic-gate {"nsCertType","Netscape Cert Type",NID_netscape_cert_type,9, 8790Sstevel@tonic-gate &(lvalues[408]),0}, 8800Sstevel@tonic-gate {"nsBaseUrl","Netscape Base Url",NID_netscape_base_url,9, 8810Sstevel@tonic-gate &(lvalues[417]),0}, 8820Sstevel@tonic-gate {"nsRevocationUrl","Netscape Revocation Url", 8830Sstevel@tonic-gate NID_netscape_revocation_url,9,&(lvalues[426]),0}, 8840Sstevel@tonic-gate {"nsCaRevocationUrl","Netscape CA Revocation Url", 8850Sstevel@tonic-gate NID_netscape_ca_revocation_url,9,&(lvalues[435]),0}, 8860Sstevel@tonic-gate {"nsRenewalUrl","Netscape Renewal Url",NID_netscape_renewal_url,9, 8870Sstevel@tonic-gate &(lvalues[444]),0}, 8880Sstevel@tonic-gate {"nsCaPolicyUrl","Netscape CA Policy Url",NID_netscape_ca_policy_url, 8890Sstevel@tonic-gate 9,&(lvalues[453]),0}, 8900Sstevel@tonic-gate {"nsSslServerName","Netscape SSL Server Name", 8910Sstevel@tonic-gate NID_netscape_ssl_server_name,9,&(lvalues[462]),0}, 8920Sstevel@tonic-gate {"nsComment","Netscape Comment",NID_netscape_comment,9,&(lvalues[471]),0}, 8930Sstevel@tonic-gate {"nsCertSequence","Netscape Certificate Sequence", 8940Sstevel@tonic-gate NID_netscape_cert_sequence,9,&(lvalues[480]),0}, 895*2139Sjp161948 {"DESX-CBC","desx-cbc",NID_desx_cbc,0,NULL,0}, 8960Sstevel@tonic-gate {"id-ce","id-ce",NID_id_ce,2,&(lvalues[489]),0}, 8970Sstevel@tonic-gate {"subjectKeyIdentifier","X509v3 Subject Key Identifier", 8980Sstevel@tonic-gate NID_subject_key_identifier,3,&(lvalues[491]),0}, 8990Sstevel@tonic-gate {"keyUsage","X509v3 Key Usage",NID_key_usage,3,&(lvalues[494]),0}, 9000Sstevel@tonic-gate {"privateKeyUsagePeriod","X509v3 Private Key Usage Period", 9010Sstevel@tonic-gate NID_private_key_usage_period,3,&(lvalues[497]),0}, 9020Sstevel@tonic-gate {"subjectAltName","X509v3 Subject Alternative Name", 9030Sstevel@tonic-gate NID_subject_alt_name,3,&(lvalues[500]),0}, 9040Sstevel@tonic-gate {"issuerAltName","X509v3 Issuer Alternative Name",NID_issuer_alt_name, 9050Sstevel@tonic-gate 3,&(lvalues[503]),0}, 9060Sstevel@tonic-gate {"basicConstraints","X509v3 Basic Constraints",NID_basic_constraints, 9070Sstevel@tonic-gate 3,&(lvalues[506]),0}, 9080Sstevel@tonic-gate {"crlNumber","X509v3 CRL Number",NID_crl_number,3,&(lvalues[509]),0}, 9090Sstevel@tonic-gate {"certificatePolicies","X509v3 Certificate Policies", 9100Sstevel@tonic-gate NID_certificate_policies,3,&(lvalues[512]),0}, 9110Sstevel@tonic-gate {"authorityKeyIdentifier","X509v3 Authority Key Identifier", 9120Sstevel@tonic-gate NID_authority_key_identifier,3,&(lvalues[515]),0}, 9130Sstevel@tonic-gate {"BF-CBC","bf-cbc",NID_bf_cbc,9,&(lvalues[518]),0}, 914*2139Sjp161948 {"BF-ECB","bf-ecb",NID_bf_ecb,0,NULL,0}, 915*2139Sjp161948 {"BF-CFB","bf-cfb",NID_bf_cfb64,0,NULL,0}, 916*2139Sjp161948 {"BF-OFB","bf-ofb",NID_bf_ofb64,0,NULL,0}, 9170Sstevel@tonic-gate {"MDC2","mdc2",NID_mdc2,4,&(lvalues[527]),0}, 9180Sstevel@tonic-gate {"RSA-MDC2","mdc2WithRSA",NID_mdc2WithRSA,4,&(lvalues[531]),0}, 919*2139Sjp161948 {"RC4-40","rc4-40",NID_rc4_40,0,NULL,0}, 920*2139Sjp161948 {"RC2-40-CBC","rc2-40-cbc",NID_rc2_40_cbc,0,NULL,0}, 9210Sstevel@tonic-gate {"GN","givenName",NID_givenName,3,&(lvalues[535]),0}, 9220Sstevel@tonic-gate {"SN","surname",NID_surname,3,&(lvalues[538]),0}, 9230Sstevel@tonic-gate {"initials","initials",NID_initials,3,&(lvalues[541]),0}, 924*2139Sjp161948 {NULL,NULL,NID_undef,0,NULL,0}, 9250Sstevel@tonic-gate {"crlDistributionPoints","X509v3 CRL Distribution Points", 9260Sstevel@tonic-gate NID_crl_distribution_points,3,&(lvalues[544]),0}, 9270Sstevel@tonic-gate {"RSA-NP-MD5","md5WithRSA",NID_md5WithRSA,5,&(lvalues[547]),0}, 9280Sstevel@tonic-gate {"serialNumber","serialNumber",NID_serialNumber,3,&(lvalues[552]),0}, 9290Sstevel@tonic-gate {"title","title",NID_title,3,&(lvalues[555]),0}, 9300Sstevel@tonic-gate {"description","description",NID_description,3,&(lvalues[558]),0}, 9310Sstevel@tonic-gate {"CAST5-CBC","cast5-cbc",NID_cast5_cbc,9,&(lvalues[561]),0}, 932*2139Sjp161948 {"CAST5-ECB","cast5-ecb",NID_cast5_ecb,0,NULL,0}, 933*2139Sjp161948 {"CAST5-CFB","cast5-cfb",NID_cast5_cfb64,0,NULL,0}, 934*2139Sjp161948 {"CAST5-OFB","cast5-ofb",NID_cast5_ofb64,0,NULL,0}, 9350Sstevel@tonic-gate {"pbeWithMD5AndCast5CBC","pbeWithMD5AndCast5CBC", 9360Sstevel@tonic-gate NID_pbeWithMD5AndCast5_CBC,9,&(lvalues[570]),0}, 9370Sstevel@tonic-gate {"DSA-SHA1","dsaWithSHA1",NID_dsaWithSHA1,7,&(lvalues[579]),0}, 938*2139Sjp161948 {"MD5-SHA1","md5-sha1",NID_md5_sha1,0,NULL,0}, 9390Sstevel@tonic-gate {"RSA-SHA1-2","sha1WithRSA",NID_sha1WithRSA,5,&(lvalues[586]),0}, 9400Sstevel@tonic-gate {"DSA","dsaEncryption",NID_dsa,7,&(lvalues[591]),0}, 9410Sstevel@tonic-gate {"RIPEMD160","ripemd160",NID_ripemd160,5,&(lvalues[598]),0}, 942*2139Sjp161948 {NULL,NULL,NID_undef,0,NULL,0}, 9430Sstevel@tonic-gate {"RSA-RIPEMD160","ripemd160WithRSA",NID_ripemd160WithRSA,6, 9440Sstevel@tonic-gate &(lvalues[603]),0}, 9450Sstevel@tonic-gate {"RC5-CBC","rc5-cbc",NID_rc5_cbc,8,&(lvalues[609]),0}, 946*2139Sjp161948 {"RC5-ECB","rc5-ecb",NID_rc5_ecb,0,NULL,0}, 947*2139Sjp161948 {"RC5-CFB","rc5-cfb",NID_rc5_cfb64,0,NULL,0}, 948*2139Sjp161948 {"RC5-OFB","rc5-ofb",NID_rc5_ofb64,0,NULL,0}, 9490Sstevel@tonic-gate {"RLE","run length compression",NID_rle_compression,6,&(lvalues[617]),0}, 9500Sstevel@tonic-gate {"ZLIB","zlib compression",NID_zlib_compression,6,&(lvalues[623]),0}, 9510Sstevel@tonic-gate {"extendedKeyUsage","X509v3 Extended Key Usage",NID_ext_key_usage,3, 9520Sstevel@tonic-gate &(lvalues[629]),0}, 9530Sstevel@tonic-gate {"PKIX","PKIX",NID_id_pkix,6,&(lvalues[632]),0}, 9540Sstevel@tonic-gate {"id-kp","id-kp",NID_id_kp,7,&(lvalues[638]),0}, 9550Sstevel@tonic-gate {"serverAuth","TLS Web Server Authentication",NID_server_auth,8, 9560Sstevel@tonic-gate &(lvalues[645]),0}, 9570Sstevel@tonic-gate {"clientAuth","TLS Web Client Authentication",NID_client_auth,8, 9580Sstevel@tonic-gate &(lvalues[653]),0}, 9590Sstevel@tonic-gate {"codeSigning","Code Signing",NID_code_sign,8,&(lvalues[661]),0}, 9600Sstevel@tonic-gate {"emailProtection","E-mail Protection",NID_email_protect,8, 9610Sstevel@tonic-gate &(lvalues[669]),0}, 9620Sstevel@tonic-gate {"timeStamping","Time Stamping",NID_time_stamp,8,&(lvalues[677]),0}, 9630Sstevel@tonic-gate {"msCodeInd","Microsoft Individual Code Signing",NID_ms_code_ind,10, 9640Sstevel@tonic-gate &(lvalues[685]),0}, 9650Sstevel@tonic-gate {"msCodeCom","Microsoft Commercial Code Signing",NID_ms_code_com,10, 9660Sstevel@tonic-gate &(lvalues[695]),0}, 9670Sstevel@tonic-gate {"msCTLSign","Microsoft Trust List Signing",NID_ms_ctl_sign,10, 9680Sstevel@tonic-gate &(lvalues[705]),0}, 9690Sstevel@tonic-gate {"msSGC","Microsoft Server Gated Crypto",NID_ms_sgc,10,&(lvalues[715]),0}, 9700Sstevel@tonic-gate {"msEFS","Microsoft Encrypted File System",NID_ms_efs,10, 9710Sstevel@tonic-gate &(lvalues[725]),0}, 9720Sstevel@tonic-gate {"nsSGC","Netscape Server Gated Crypto",NID_ns_sgc,9,&(lvalues[735]),0}, 9730Sstevel@tonic-gate {"deltaCRL","X509v3 Delta CRL Indicator",NID_delta_crl,3, 9740Sstevel@tonic-gate &(lvalues[744]),0}, 9750Sstevel@tonic-gate {"CRLReason","X509v3 CRL Reason Code",NID_crl_reason,3,&(lvalues[747]),0}, 9760Sstevel@tonic-gate {"invalidityDate","Invalidity Date",NID_invalidity_date,3, 9770Sstevel@tonic-gate &(lvalues[750]),0}, 9780Sstevel@tonic-gate {"SXNetID","Strong Extranet ID",NID_sxnet,5,&(lvalues[753]),0}, 9790Sstevel@tonic-gate {"PBE-SHA1-RC4-128","pbeWithSHA1And128BitRC4", 9800Sstevel@tonic-gate NID_pbe_WithSHA1And128BitRC4,10,&(lvalues[758]),0}, 9810Sstevel@tonic-gate {"PBE-SHA1-RC4-40","pbeWithSHA1And40BitRC4", 9820Sstevel@tonic-gate NID_pbe_WithSHA1And40BitRC4,10,&(lvalues[768]),0}, 9830Sstevel@tonic-gate {"PBE-SHA1-3DES","pbeWithSHA1And3-KeyTripleDES-CBC", 9840Sstevel@tonic-gate NID_pbe_WithSHA1And3_Key_TripleDES_CBC,10,&(lvalues[778]),0}, 9850Sstevel@tonic-gate {"PBE-SHA1-2DES","pbeWithSHA1And2-KeyTripleDES-CBC", 9860Sstevel@tonic-gate NID_pbe_WithSHA1And2_Key_TripleDES_CBC,10,&(lvalues[788]),0}, 9870Sstevel@tonic-gate {"PBE-SHA1-RC2-128","pbeWithSHA1And128BitRC2-CBC", 9880Sstevel@tonic-gate NID_pbe_WithSHA1And128BitRC2_CBC,10,&(lvalues[798]),0}, 9890Sstevel@tonic-gate {"PBE-SHA1-RC2-40","pbeWithSHA1And40BitRC2-CBC", 9900Sstevel@tonic-gate NID_pbe_WithSHA1And40BitRC2_CBC,10,&(lvalues[808]),0}, 9910Sstevel@tonic-gate {"keyBag","keyBag",NID_keyBag,11,&(lvalues[818]),0}, 9920Sstevel@tonic-gate {"pkcs8ShroudedKeyBag","pkcs8ShroudedKeyBag",NID_pkcs8ShroudedKeyBag, 9930Sstevel@tonic-gate 11,&(lvalues[829]),0}, 9940Sstevel@tonic-gate {"certBag","certBag",NID_certBag,11,&(lvalues[840]),0}, 9950Sstevel@tonic-gate {"crlBag","crlBag",NID_crlBag,11,&(lvalues[851]),0}, 9960Sstevel@tonic-gate {"secretBag","secretBag",NID_secretBag,11,&(lvalues[862]),0}, 9970Sstevel@tonic-gate {"safeContentsBag","safeContentsBag",NID_safeContentsBag,11, 9980Sstevel@tonic-gate &(lvalues[873]),0}, 9990Sstevel@tonic-gate {"friendlyName","friendlyName",NID_friendlyName,9,&(lvalues[884]),0}, 10000Sstevel@tonic-gate {"localKeyID","localKeyID",NID_localKeyID,9,&(lvalues[893]),0}, 10010Sstevel@tonic-gate {"x509Certificate","x509Certificate",NID_x509Certificate,10, 10020Sstevel@tonic-gate &(lvalues[902]),0}, 10030Sstevel@tonic-gate {"sdsiCertificate","sdsiCertificate",NID_sdsiCertificate,10, 10040Sstevel@tonic-gate &(lvalues[912]),0}, 10050Sstevel@tonic-gate {"x509Crl","x509Crl",NID_x509Crl,10,&(lvalues[922]),0}, 10060Sstevel@tonic-gate {"PBES2","PBES2",NID_pbes2,9,&(lvalues[932]),0}, 10070Sstevel@tonic-gate {"PBMAC1","PBMAC1",NID_pbmac1,9,&(lvalues[941]),0}, 10080Sstevel@tonic-gate {"hmacWithSHA1","hmacWithSHA1",NID_hmacWithSHA1,8,&(lvalues[950]),0}, 10090Sstevel@tonic-gate {"id-qt-cps","Policy Qualifier CPS",NID_id_qt_cps,8,&(lvalues[958]),0}, 10100Sstevel@tonic-gate {"id-qt-unotice","Policy Qualifier User Notice",NID_id_qt_unotice,8, 10110Sstevel@tonic-gate &(lvalues[966]),0}, 1012*2139Sjp161948 {"RC2-64-CBC","rc2-64-cbc",NID_rc2_64_cbc,0,NULL,0}, 10130Sstevel@tonic-gate {"SMIME-CAPS","S/MIME Capabilities",NID_SMIMECapabilities,9, 10140Sstevel@tonic-gate &(lvalues[974]),0}, 10150Sstevel@tonic-gate {"PBE-MD2-RC2-64","pbeWithMD2AndRC2-CBC",NID_pbeWithMD2AndRC2_CBC,9, 10160Sstevel@tonic-gate &(lvalues[983]),0}, 10170Sstevel@tonic-gate {"PBE-MD5-RC2-64","pbeWithMD5AndRC2-CBC",NID_pbeWithMD5AndRC2_CBC,9, 10180Sstevel@tonic-gate &(lvalues[992]),0}, 10190Sstevel@tonic-gate {"PBE-SHA1-DES","pbeWithSHA1AndDES-CBC",NID_pbeWithSHA1AndDES_CBC,9, 10200Sstevel@tonic-gate &(lvalues[1001]),0}, 10210Sstevel@tonic-gate {"msExtReq","Microsoft Extension Request",NID_ms_ext_req,10, 10220Sstevel@tonic-gate &(lvalues[1010]),0}, 10230Sstevel@tonic-gate {"extReq","Extension Request",NID_ext_req,9,&(lvalues[1020]),0}, 10240Sstevel@tonic-gate {"name","name",NID_name,3,&(lvalues[1029]),0}, 10250Sstevel@tonic-gate {"dnQualifier","dnQualifier",NID_dnQualifier,3,&(lvalues[1032]),0}, 10260Sstevel@tonic-gate {"id-pe","id-pe",NID_id_pe,7,&(lvalues[1035]),0}, 10270Sstevel@tonic-gate {"id-ad","id-ad",NID_id_ad,7,&(lvalues[1042]),0}, 10280Sstevel@tonic-gate {"authorityInfoAccess","Authority Information Access",NID_info_access, 10290Sstevel@tonic-gate 8,&(lvalues[1049]),0}, 10300Sstevel@tonic-gate {"OCSP","OCSP",NID_ad_OCSP,8,&(lvalues[1057]),0}, 10310Sstevel@tonic-gate {"caIssuers","CA Issuers",NID_ad_ca_issuers,8,&(lvalues[1065]),0}, 10320Sstevel@tonic-gate {"OCSPSigning","OCSP Signing",NID_OCSP_sign,8,&(lvalues[1073]),0}, 10330Sstevel@tonic-gate {"ISO","iso",NID_iso,1,&(lvalues[1081]),0}, 10340Sstevel@tonic-gate {"member-body","ISO Member Body",NID_member_body,1,&(lvalues[1082]),0}, 10350Sstevel@tonic-gate {"ISO-US","ISO US Member Body",NID_ISO_US,3,&(lvalues[1083]),0}, 10360Sstevel@tonic-gate {"X9-57","X9.57",NID_X9_57,5,&(lvalues[1086]),0}, 10370Sstevel@tonic-gate {"X9cm","X9.57 CM ?",NID_X9cm,6,&(lvalues[1091]),0}, 10380Sstevel@tonic-gate {"pkcs1","pkcs1",NID_pkcs1,8,&(lvalues[1097]),0}, 10390Sstevel@tonic-gate {"pkcs5","pkcs5",NID_pkcs5,8,&(lvalues[1105]),0}, 10400Sstevel@tonic-gate {"SMIME","S/MIME",NID_SMIME,9,&(lvalues[1113]),0}, 10410Sstevel@tonic-gate {"id-smime-mod","id-smime-mod",NID_id_smime_mod,10,&(lvalues[1122]),0}, 10420Sstevel@tonic-gate {"id-smime-ct","id-smime-ct",NID_id_smime_ct,10,&(lvalues[1132]),0}, 10430Sstevel@tonic-gate {"id-smime-aa","id-smime-aa",NID_id_smime_aa,10,&(lvalues[1142]),0}, 10440Sstevel@tonic-gate {"id-smime-alg","id-smime-alg",NID_id_smime_alg,10,&(lvalues[1152]),0}, 10450Sstevel@tonic-gate {"id-smime-cd","id-smime-cd",NID_id_smime_cd,10,&(lvalues[1162]),0}, 10460Sstevel@tonic-gate {"id-smime-spq","id-smime-spq",NID_id_smime_spq,10,&(lvalues[1172]),0}, 10470Sstevel@tonic-gate {"id-smime-cti","id-smime-cti",NID_id_smime_cti,10,&(lvalues[1182]),0}, 10480Sstevel@tonic-gate {"id-smime-mod-cms","id-smime-mod-cms",NID_id_smime_mod_cms,11, 10490Sstevel@tonic-gate &(lvalues[1192]),0}, 10500Sstevel@tonic-gate {"id-smime-mod-ess","id-smime-mod-ess",NID_id_smime_mod_ess,11, 10510Sstevel@tonic-gate &(lvalues[1203]),0}, 10520Sstevel@tonic-gate {"id-smime-mod-oid","id-smime-mod-oid",NID_id_smime_mod_oid,11, 10530Sstevel@tonic-gate &(lvalues[1214]),0}, 10540Sstevel@tonic-gate {"id-smime-mod-msg-v3","id-smime-mod-msg-v3",NID_id_smime_mod_msg_v3, 10550Sstevel@tonic-gate 11,&(lvalues[1225]),0}, 10560Sstevel@tonic-gate {"id-smime-mod-ets-eSignature-88","id-smime-mod-ets-eSignature-88", 10570Sstevel@tonic-gate NID_id_smime_mod_ets_eSignature_88,11,&(lvalues[1236]),0}, 10580Sstevel@tonic-gate {"id-smime-mod-ets-eSignature-97","id-smime-mod-ets-eSignature-97", 10590Sstevel@tonic-gate NID_id_smime_mod_ets_eSignature_97,11,&(lvalues[1247]),0}, 10600Sstevel@tonic-gate {"id-smime-mod-ets-eSigPolicy-88","id-smime-mod-ets-eSigPolicy-88", 10610Sstevel@tonic-gate NID_id_smime_mod_ets_eSigPolicy_88,11,&(lvalues[1258]),0}, 10620Sstevel@tonic-gate {"id-smime-mod-ets-eSigPolicy-97","id-smime-mod-ets-eSigPolicy-97", 10630Sstevel@tonic-gate NID_id_smime_mod_ets_eSigPolicy_97,11,&(lvalues[1269]),0}, 10640Sstevel@tonic-gate {"id-smime-ct-receipt","id-smime-ct-receipt",NID_id_smime_ct_receipt, 10650Sstevel@tonic-gate 11,&(lvalues[1280]),0}, 10660Sstevel@tonic-gate {"id-smime-ct-authData","id-smime-ct-authData", 10670Sstevel@tonic-gate NID_id_smime_ct_authData,11,&(lvalues[1291]),0}, 10680Sstevel@tonic-gate {"id-smime-ct-publishCert","id-smime-ct-publishCert", 10690Sstevel@tonic-gate NID_id_smime_ct_publishCert,11,&(lvalues[1302]),0}, 10700Sstevel@tonic-gate {"id-smime-ct-TSTInfo","id-smime-ct-TSTInfo",NID_id_smime_ct_TSTInfo, 10710Sstevel@tonic-gate 11,&(lvalues[1313]),0}, 10720Sstevel@tonic-gate {"id-smime-ct-TDTInfo","id-smime-ct-TDTInfo",NID_id_smime_ct_TDTInfo, 10730Sstevel@tonic-gate 11,&(lvalues[1324]),0}, 10740Sstevel@tonic-gate {"id-smime-ct-contentInfo","id-smime-ct-contentInfo", 10750Sstevel@tonic-gate NID_id_smime_ct_contentInfo,11,&(lvalues[1335]),0}, 10760Sstevel@tonic-gate {"id-smime-ct-DVCSRequestData","id-smime-ct-DVCSRequestData", 10770Sstevel@tonic-gate NID_id_smime_ct_DVCSRequestData,11,&(lvalues[1346]),0}, 10780Sstevel@tonic-gate {"id-smime-ct-DVCSResponseData","id-smime-ct-DVCSResponseData", 10790Sstevel@tonic-gate NID_id_smime_ct_DVCSResponseData,11,&(lvalues[1357]),0}, 10800Sstevel@tonic-gate {"id-smime-aa-receiptRequest","id-smime-aa-receiptRequest", 10810Sstevel@tonic-gate NID_id_smime_aa_receiptRequest,11,&(lvalues[1368]),0}, 10820Sstevel@tonic-gate {"id-smime-aa-securityLabel","id-smime-aa-securityLabel", 10830Sstevel@tonic-gate NID_id_smime_aa_securityLabel,11,&(lvalues[1379]),0}, 10840Sstevel@tonic-gate {"id-smime-aa-mlExpandHistory","id-smime-aa-mlExpandHistory", 10850Sstevel@tonic-gate NID_id_smime_aa_mlExpandHistory,11,&(lvalues[1390]),0}, 10860Sstevel@tonic-gate {"id-smime-aa-contentHint","id-smime-aa-contentHint", 10870Sstevel@tonic-gate NID_id_smime_aa_contentHint,11,&(lvalues[1401]),0}, 10880Sstevel@tonic-gate {"id-smime-aa-msgSigDigest","id-smime-aa-msgSigDigest", 10890Sstevel@tonic-gate NID_id_smime_aa_msgSigDigest,11,&(lvalues[1412]),0}, 10900Sstevel@tonic-gate {"id-smime-aa-encapContentType","id-smime-aa-encapContentType", 10910Sstevel@tonic-gate NID_id_smime_aa_encapContentType,11,&(lvalues[1423]),0}, 10920Sstevel@tonic-gate {"id-smime-aa-contentIdentifier","id-smime-aa-contentIdentifier", 10930Sstevel@tonic-gate NID_id_smime_aa_contentIdentifier,11,&(lvalues[1434]),0}, 10940Sstevel@tonic-gate {"id-smime-aa-macValue","id-smime-aa-macValue", 10950Sstevel@tonic-gate NID_id_smime_aa_macValue,11,&(lvalues[1445]),0}, 10960Sstevel@tonic-gate {"id-smime-aa-equivalentLabels","id-smime-aa-equivalentLabels", 10970Sstevel@tonic-gate NID_id_smime_aa_equivalentLabels,11,&(lvalues[1456]),0}, 10980Sstevel@tonic-gate {"id-smime-aa-contentReference","id-smime-aa-contentReference", 10990Sstevel@tonic-gate NID_id_smime_aa_contentReference,11,&(lvalues[1467]),0}, 11000Sstevel@tonic-gate {"id-smime-aa-encrypKeyPref","id-smime-aa-encrypKeyPref", 11010Sstevel@tonic-gate NID_id_smime_aa_encrypKeyPref,11,&(lvalues[1478]),0}, 11020Sstevel@tonic-gate {"id-smime-aa-signingCertificate","id-smime-aa-signingCertificate", 11030Sstevel@tonic-gate NID_id_smime_aa_signingCertificate,11,&(lvalues[1489]),0}, 11040Sstevel@tonic-gate {"id-smime-aa-smimeEncryptCerts","id-smime-aa-smimeEncryptCerts", 11050Sstevel@tonic-gate NID_id_smime_aa_smimeEncryptCerts,11,&(lvalues[1500]),0}, 11060Sstevel@tonic-gate {"id-smime-aa-timeStampToken","id-smime-aa-timeStampToken", 11070Sstevel@tonic-gate NID_id_smime_aa_timeStampToken,11,&(lvalues[1511]),0}, 11080Sstevel@tonic-gate {"id-smime-aa-ets-sigPolicyId","id-smime-aa-ets-sigPolicyId", 11090Sstevel@tonic-gate NID_id_smime_aa_ets_sigPolicyId,11,&(lvalues[1522]),0}, 11100Sstevel@tonic-gate {"id-smime-aa-ets-commitmentType","id-smime-aa-ets-commitmentType", 11110Sstevel@tonic-gate NID_id_smime_aa_ets_commitmentType,11,&(lvalues[1533]),0}, 11120Sstevel@tonic-gate {"id-smime-aa-ets-signerLocation","id-smime-aa-ets-signerLocation", 11130Sstevel@tonic-gate NID_id_smime_aa_ets_signerLocation,11,&(lvalues[1544]),0}, 11140Sstevel@tonic-gate {"id-smime-aa-ets-signerAttr","id-smime-aa-ets-signerAttr", 11150Sstevel@tonic-gate NID_id_smime_aa_ets_signerAttr,11,&(lvalues[1555]),0}, 11160Sstevel@tonic-gate {"id-smime-aa-ets-otherSigCert","id-smime-aa-ets-otherSigCert", 11170Sstevel@tonic-gate NID_id_smime_aa_ets_otherSigCert,11,&(lvalues[1566]),0}, 11180Sstevel@tonic-gate {"id-smime-aa-ets-contentTimestamp", 11190Sstevel@tonic-gate "id-smime-aa-ets-contentTimestamp", 11200Sstevel@tonic-gate NID_id_smime_aa_ets_contentTimestamp,11,&(lvalues[1577]),0}, 11210Sstevel@tonic-gate {"id-smime-aa-ets-CertificateRefs","id-smime-aa-ets-CertificateRefs", 11220Sstevel@tonic-gate NID_id_smime_aa_ets_CertificateRefs,11,&(lvalues[1588]),0}, 11230Sstevel@tonic-gate {"id-smime-aa-ets-RevocationRefs","id-smime-aa-ets-RevocationRefs", 11240Sstevel@tonic-gate NID_id_smime_aa_ets_RevocationRefs,11,&(lvalues[1599]),0}, 11250Sstevel@tonic-gate {"id-smime-aa-ets-certValues","id-smime-aa-ets-certValues", 11260Sstevel@tonic-gate NID_id_smime_aa_ets_certValues,11,&(lvalues[1610]),0}, 11270Sstevel@tonic-gate {"id-smime-aa-ets-revocationValues", 11280Sstevel@tonic-gate "id-smime-aa-ets-revocationValues", 11290Sstevel@tonic-gate NID_id_smime_aa_ets_revocationValues,11,&(lvalues[1621]),0}, 11300Sstevel@tonic-gate {"id-smime-aa-ets-escTimeStamp","id-smime-aa-ets-escTimeStamp", 11310Sstevel@tonic-gate NID_id_smime_aa_ets_escTimeStamp,11,&(lvalues[1632]),0}, 11320Sstevel@tonic-gate {"id-smime-aa-ets-certCRLTimestamp", 11330Sstevel@tonic-gate "id-smime-aa-ets-certCRLTimestamp", 11340Sstevel@tonic-gate NID_id_smime_aa_ets_certCRLTimestamp,11,&(lvalues[1643]),0}, 11350Sstevel@tonic-gate {"id-smime-aa-ets-archiveTimeStamp", 11360Sstevel@tonic-gate "id-smime-aa-ets-archiveTimeStamp", 11370Sstevel@tonic-gate NID_id_smime_aa_ets_archiveTimeStamp,11,&(lvalues[1654]),0}, 11380Sstevel@tonic-gate {"id-smime-aa-signatureType","id-smime-aa-signatureType", 11390Sstevel@tonic-gate NID_id_smime_aa_signatureType,11,&(lvalues[1665]),0}, 11400Sstevel@tonic-gate {"id-smime-aa-dvcs-dvc","id-smime-aa-dvcs-dvc", 11410Sstevel@tonic-gate NID_id_smime_aa_dvcs_dvc,11,&(lvalues[1676]),0}, 11420Sstevel@tonic-gate {"id-smime-alg-ESDHwith3DES","id-smime-alg-ESDHwith3DES", 11430Sstevel@tonic-gate NID_id_smime_alg_ESDHwith3DES,11,&(lvalues[1687]),0}, 11440Sstevel@tonic-gate {"id-smime-alg-ESDHwithRC2","id-smime-alg-ESDHwithRC2", 11450Sstevel@tonic-gate NID_id_smime_alg_ESDHwithRC2,11,&(lvalues[1698]),0}, 11460Sstevel@tonic-gate {"id-smime-alg-3DESwrap","id-smime-alg-3DESwrap", 11470Sstevel@tonic-gate NID_id_smime_alg_3DESwrap,11,&(lvalues[1709]),0}, 11480Sstevel@tonic-gate {"id-smime-alg-RC2wrap","id-smime-alg-RC2wrap", 11490Sstevel@tonic-gate NID_id_smime_alg_RC2wrap,11,&(lvalues[1720]),0}, 11500Sstevel@tonic-gate {"id-smime-alg-ESDH","id-smime-alg-ESDH",NID_id_smime_alg_ESDH,11, 11510Sstevel@tonic-gate &(lvalues[1731]),0}, 11520Sstevel@tonic-gate {"id-smime-alg-CMS3DESwrap","id-smime-alg-CMS3DESwrap", 11530Sstevel@tonic-gate NID_id_smime_alg_CMS3DESwrap,11,&(lvalues[1742]),0}, 11540Sstevel@tonic-gate {"id-smime-alg-CMSRC2wrap","id-smime-alg-CMSRC2wrap", 11550Sstevel@tonic-gate NID_id_smime_alg_CMSRC2wrap,11,&(lvalues[1753]),0}, 11560Sstevel@tonic-gate {"id-smime-cd-ldap","id-smime-cd-ldap",NID_id_smime_cd_ldap,11, 11570Sstevel@tonic-gate &(lvalues[1764]),0}, 11580Sstevel@tonic-gate {"id-smime-spq-ets-sqt-uri","id-smime-spq-ets-sqt-uri", 11590Sstevel@tonic-gate NID_id_smime_spq_ets_sqt_uri,11,&(lvalues[1775]),0}, 11600Sstevel@tonic-gate {"id-smime-spq-ets-sqt-unotice","id-smime-spq-ets-sqt-unotice", 11610Sstevel@tonic-gate NID_id_smime_spq_ets_sqt_unotice,11,&(lvalues[1786]),0}, 11620Sstevel@tonic-gate {"id-smime-cti-ets-proofOfOrigin","id-smime-cti-ets-proofOfOrigin", 11630Sstevel@tonic-gate NID_id_smime_cti_ets_proofOfOrigin,11,&(lvalues[1797]),0}, 11640Sstevel@tonic-gate {"id-smime-cti-ets-proofOfReceipt","id-smime-cti-ets-proofOfReceipt", 11650Sstevel@tonic-gate NID_id_smime_cti_ets_proofOfReceipt,11,&(lvalues[1808]),0}, 11660Sstevel@tonic-gate {"id-smime-cti-ets-proofOfDelivery", 11670Sstevel@tonic-gate "id-smime-cti-ets-proofOfDelivery", 11680Sstevel@tonic-gate NID_id_smime_cti_ets_proofOfDelivery,11,&(lvalues[1819]),0}, 11690Sstevel@tonic-gate {"id-smime-cti-ets-proofOfSender","id-smime-cti-ets-proofOfSender", 11700Sstevel@tonic-gate NID_id_smime_cti_ets_proofOfSender,11,&(lvalues[1830]),0}, 11710Sstevel@tonic-gate {"id-smime-cti-ets-proofOfApproval", 11720Sstevel@tonic-gate "id-smime-cti-ets-proofOfApproval", 11730Sstevel@tonic-gate NID_id_smime_cti_ets_proofOfApproval,11,&(lvalues[1841]),0}, 11740Sstevel@tonic-gate {"id-smime-cti-ets-proofOfCreation", 11750Sstevel@tonic-gate "id-smime-cti-ets-proofOfCreation", 11760Sstevel@tonic-gate NID_id_smime_cti_ets_proofOfCreation,11,&(lvalues[1852]),0}, 11770Sstevel@tonic-gate {"MD4","md4",NID_md4,8,&(lvalues[1863]),0}, 11780Sstevel@tonic-gate {"id-pkix-mod","id-pkix-mod",NID_id_pkix_mod,7,&(lvalues[1871]),0}, 11790Sstevel@tonic-gate {"id-qt","id-qt",NID_id_qt,7,&(lvalues[1878]),0}, 11800Sstevel@tonic-gate {"id-it","id-it",NID_id_it,7,&(lvalues[1885]),0}, 11810Sstevel@tonic-gate {"id-pkip","id-pkip",NID_id_pkip,7,&(lvalues[1892]),0}, 11820Sstevel@tonic-gate {"id-alg","id-alg",NID_id_alg,7,&(lvalues[1899]),0}, 11830Sstevel@tonic-gate {"id-cmc","id-cmc",NID_id_cmc,7,&(lvalues[1906]),0}, 11840Sstevel@tonic-gate {"id-on","id-on",NID_id_on,7,&(lvalues[1913]),0}, 11850Sstevel@tonic-gate {"id-pda","id-pda",NID_id_pda,7,&(lvalues[1920]),0}, 11860Sstevel@tonic-gate {"id-aca","id-aca",NID_id_aca,7,&(lvalues[1927]),0}, 11870Sstevel@tonic-gate {"id-qcs","id-qcs",NID_id_qcs,7,&(lvalues[1934]),0}, 11880Sstevel@tonic-gate {"id-cct","id-cct",NID_id_cct,7,&(lvalues[1941]),0}, 11890Sstevel@tonic-gate {"id-pkix1-explicit-88","id-pkix1-explicit-88", 11900Sstevel@tonic-gate NID_id_pkix1_explicit_88,8,&(lvalues[1948]),0}, 11910Sstevel@tonic-gate {"id-pkix1-implicit-88","id-pkix1-implicit-88", 11920Sstevel@tonic-gate NID_id_pkix1_implicit_88,8,&(lvalues[1956]),0}, 11930Sstevel@tonic-gate {"id-pkix1-explicit-93","id-pkix1-explicit-93", 11940Sstevel@tonic-gate NID_id_pkix1_explicit_93,8,&(lvalues[1964]),0}, 11950Sstevel@tonic-gate {"id-pkix1-implicit-93","id-pkix1-implicit-93", 11960Sstevel@tonic-gate NID_id_pkix1_implicit_93,8,&(lvalues[1972]),0}, 11970Sstevel@tonic-gate {"id-mod-crmf","id-mod-crmf",NID_id_mod_crmf,8,&(lvalues[1980]),0}, 11980Sstevel@tonic-gate {"id-mod-cmc","id-mod-cmc",NID_id_mod_cmc,8,&(lvalues[1988]),0}, 11990Sstevel@tonic-gate {"id-mod-kea-profile-88","id-mod-kea-profile-88", 12000Sstevel@tonic-gate NID_id_mod_kea_profile_88,8,&(lvalues[1996]),0}, 12010Sstevel@tonic-gate {"id-mod-kea-profile-93","id-mod-kea-profile-93", 12020Sstevel@tonic-gate NID_id_mod_kea_profile_93,8,&(lvalues[2004]),0}, 12030Sstevel@tonic-gate {"id-mod-cmp","id-mod-cmp",NID_id_mod_cmp,8,&(lvalues[2012]),0}, 12040Sstevel@tonic-gate {"id-mod-qualified-cert-88","id-mod-qualified-cert-88", 12050Sstevel@tonic-gate NID_id_mod_qualified_cert_88,8,&(lvalues[2020]),0}, 12060Sstevel@tonic-gate {"id-mod-qualified-cert-93","id-mod-qualified-cert-93", 12070Sstevel@tonic-gate NID_id_mod_qualified_cert_93,8,&(lvalues[2028]),0}, 12080Sstevel@tonic-gate {"id-mod-attribute-cert","id-mod-attribute-cert", 12090Sstevel@tonic-gate NID_id_mod_attribute_cert,8,&(lvalues[2036]),0}, 12100Sstevel@tonic-gate {"id-mod-timestamp-protocol","id-mod-timestamp-protocol", 12110Sstevel@tonic-gate NID_id_mod_timestamp_protocol,8,&(lvalues[2044]),0}, 12120Sstevel@tonic-gate {"id-mod-ocsp","id-mod-ocsp",NID_id_mod_ocsp,8,&(lvalues[2052]),0}, 12130Sstevel@tonic-gate {"id-mod-dvcs","id-mod-dvcs",NID_id_mod_dvcs,8,&(lvalues[2060]),0}, 12140Sstevel@tonic-gate {"id-mod-cmp2000","id-mod-cmp2000",NID_id_mod_cmp2000,8, 12150Sstevel@tonic-gate &(lvalues[2068]),0}, 12160Sstevel@tonic-gate {"biometricInfo","Biometric Info",NID_biometricInfo,8,&(lvalues[2076]),0}, 12170Sstevel@tonic-gate {"qcStatements","qcStatements",NID_qcStatements,8,&(lvalues[2084]),0}, 12180Sstevel@tonic-gate {"ac-auditEntity","ac-auditEntity",NID_ac_auditEntity,8, 12190Sstevel@tonic-gate &(lvalues[2092]),0}, 12200Sstevel@tonic-gate {"ac-targeting","ac-targeting",NID_ac_targeting,8,&(lvalues[2100]),0}, 12210Sstevel@tonic-gate {"aaControls","aaControls",NID_aaControls,8,&(lvalues[2108]),0}, 1222*2139Sjp161948 {"sbgp-ipAddrBlock","sbgp-ipAddrBlock",NID_sbgp_ipAddrBlock,8, 12230Sstevel@tonic-gate &(lvalues[2116]),0}, 1224*2139Sjp161948 {"sbgp-autonomousSysNum","sbgp-autonomousSysNum", 1225*2139Sjp161948 NID_sbgp_autonomousSysNum,8,&(lvalues[2124]),0}, 1226*2139Sjp161948 {"sbgp-routerIdentifier","sbgp-routerIdentifier", 1227*2139Sjp161948 NID_sbgp_routerIdentifier,8,&(lvalues[2132]),0}, 12280Sstevel@tonic-gate {"textNotice","textNotice",NID_textNotice,8,&(lvalues[2140]),0}, 12290Sstevel@tonic-gate {"ipsecEndSystem","IPSec End System",NID_ipsecEndSystem,8, 12300Sstevel@tonic-gate &(lvalues[2148]),0}, 12310Sstevel@tonic-gate {"ipsecTunnel","IPSec Tunnel",NID_ipsecTunnel,8,&(lvalues[2156]),0}, 12320Sstevel@tonic-gate {"ipsecUser","IPSec User",NID_ipsecUser,8,&(lvalues[2164]),0}, 12330Sstevel@tonic-gate {"DVCS","dvcs",NID_dvcs,8,&(lvalues[2172]),0}, 12340Sstevel@tonic-gate {"id-it-caProtEncCert","id-it-caProtEncCert",NID_id_it_caProtEncCert, 12350Sstevel@tonic-gate 8,&(lvalues[2180]),0}, 12360Sstevel@tonic-gate {"id-it-signKeyPairTypes","id-it-signKeyPairTypes", 12370Sstevel@tonic-gate NID_id_it_signKeyPairTypes,8,&(lvalues[2188]),0}, 12380Sstevel@tonic-gate {"id-it-encKeyPairTypes","id-it-encKeyPairTypes", 12390Sstevel@tonic-gate NID_id_it_encKeyPairTypes,8,&(lvalues[2196]),0}, 12400Sstevel@tonic-gate {"id-it-preferredSymmAlg","id-it-preferredSymmAlg", 12410Sstevel@tonic-gate NID_id_it_preferredSymmAlg,8,&(lvalues[2204]),0}, 12420Sstevel@tonic-gate {"id-it-caKeyUpdateInfo","id-it-caKeyUpdateInfo", 12430Sstevel@tonic-gate NID_id_it_caKeyUpdateInfo,8,&(lvalues[2212]),0}, 12440Sstevel@tonic-gate {"id-it-currentCRL","id-it-currentCRL",NID_id_it_currentCRL,8, 12450Sstevel@tonic-gate &(lvalues[2220]),0}, 12460Sstevel@tonic-gate {"id-it-unsupportedOIDs","id-it-unsupportedOIDs", 12470Sstevel@tonic-gate NID_id_it_unsupportedOIDs,8,&(lvalues[2228]),0}, 12480Sstevel@tonic-gate {"id-it-subscriptionRequest","id-it-subscriptionRequest", 12490Sstevel@tonic-gate NID_id_it_subscriptionRequest,8,&(lvalues[2236]),0}, 12500Sstevel@tonic-gate {"id-it-subscriptionResponse","id-it-subscriptionResponse", 12510Sstevel@tonic-gate NID_id_it_subscriptionResponse,8,&(lvalues[2244]),0}, 12520Sstevel@tonic-gate {"id-it-keyPairParamReq","id-it-keyPairParamReq", 12530Sstevel@tonic-gate NID_id_it_keyPairParamReq,8,&(lvalues[2252]),0}, 12540Sstevel@tonic-gate {"id-it-keyPairParamRep","id-it-keyPairParamRep", 12550Sstevel@tonic-gate NID_id_it_keyPairParamRep,8,&(lvalues[2260]),0}, 12560Sstevel@tonic-gate {"id-it-revPassphrase","id-it-revPassphrase",NID_id_it_revPassphrase, 12570Sstevel@tonic-gate 8,&(lvalues[2268]),0}, 12580Sstevel@tonic-gate {"id-it-implicitConfirm","id-it-implicitConfirm", 12590Sstevel@tonic-gate NID_id_it_implicitConfirm,8,&(lvalues[2276]),0}, 12600Sstevel@tonic-gate {"id-it-confirmWaitTime","id-it-confirmWaitTime", 12610Sstevel@tonic-gate NID_id_it_confirmWaitTime,8,&(lvalues[2284]),0}, 12620Sstevel@tonic-gate {"id-it-origPKIMessage","id-it-origPKIMessage", 12630Sstevel@tonic-gate NID_id_it_origPKIMessage,8,&(lvalues[2292]),0}, 12640Sstevel@tonic-gate {"id-regCtrl","id-regCtrl",NID_id_regCtrl,8,&(lvalues[2300]),0}, 12650Sstevel@tonic-gate {"id-regInfo","id-regInfo",NID_id_regInfo,8,&(lvalues[2308]),0}, 12660Sstevel@tonic-gate {"id-regCtrl-regToken","id-regCtrl-regToken",NID_id_regCtrl_regToken, 12670Sstevel@tonic-gate 9,&(lvalues[2316]),0}, 12680Sstevel@tonic-gate {"id-regCtrl-authenticator","id-regCtrl-authenticator", 12690Sstevel@tonic-gate NID_id_regCtrl_authenticator,9,&(lvalues[2325]),0}, 12700Sstevel@tonic-gate {"id-regCtrl-pkiPublicationInfo","id-regCtrl-pkiPublicationInfo", 12710Sstevel@tonic-gate NID_id_regCtrl_pkiPublicationInfo,9,&(lvalues[2334]),0}, 12720Sstevel@tonic-gate {"id-regCtrl-pkiArchiveOptions","id-regCtrl-pkiArchiveOptions", 12730Sstevel@tonic-gate NID_id_regCtrl_pkiArchiveOptions,9,&(lvalues[2343]),0}, 12740Sstevel@tonic-gate {"id-regCtrl-oldCertID","id-regCtrl-oldCertID", 12750Sstevel@tonic-gate NID_id_regCtrl_oldCertID,9,&(lvalues[2352]),0}, 12760Sstevel@tonic-gate {"id-regCtrl-protocolEncrKey","id-regCtrl-protocolEncrKey", 12770Sstevel@tonic-gate NID_id_regCtrl_protocolEncrKey,9,&(lvalues[2361]),0}, 12780Sstevel@tonic-gate {"id-regInfo-utf8Pairs","id-regInfo-utf8Pairs", 12790Sstevel@tonic-gate NID_id_regInfo_utf8Pairs,9,&(lvalues[2370]),0}, 12800Sstevel@tonic-gate {"id-regInfo-certReq","id-regInfo-certReq",NID_id_regInfo_certReq,9, 12810Sstevel@tonic-gate &(lvalues[2379]),0}, 12820Sstevel@tonic-gate {"id-alg-des40","id-alg-des40",NID_id_alg_des40,8,&(lvalues[2388]),0}, 12830Sstevel@tonic-gate {"id-alg-noSignature","id-alg-noSignature",NID_id_alg_noSignature,8, 12840Sstevel@tonic-gate &(lvalues[2396]),0}, 12850Sstevel@tonic-gate {"id-alg-dh-sig-hmac-sha1","id-alg-dh-sig-hmac-sha1", 12860Sstevel@tonic-gate NID_id_alg_dh_sig_hmac_sha1,8,&(lvalues[2404]),0}, 12870Sstevel@tonic-gate {"id-alg-dh-pop","id-alg-dh-pop",NID_id_alg_dh_pop,8,&(lvalues[2412]),0}, 12880Sstevel@tonic-gate {"id-cmc-statusInfo","id-cmc-statusInfo",NID_id_cmc_statusInfo,8, 12890Sstevel@tonic-gate &(lvalues[2420]),0}, 12900Sstevel@tonic-gate {"id-cmc-identification","id-cmc-identification", 12910Sstevel@tonic-gate NID_id_cmc_identification,8,&(lvalues[2428]),0}, 12920Sstevel@tonic-gate {"id-cmc-identityProof","id-cmc-identityProof", 12930Sstevel@tonic-gate NID_id_cmc_identityProof,8,&(lvalues[2436]),0}, 12940Sstevel@tonic-gate {"id-cmc-dataReturn","id-cmc-dataReturn",NID_id_cmc_dataReturn,8, 12950Sstevel@tonic-gate &(lvalues[2444]),0}, 12960Sstevel@tonic-gate {"id-cmc-transactionId","id-cmc-transactionId", 12970Sstevel@tonic-gate NID_id_cmc_transactionId,8,&(lvalues[2452]),0}, 12980Sstevel@tonic-gate {"id-cmc-senderNonce","id-cmc-senderNonce",NID_id_cmc_senderNonce,8, 12990Sstevel@tonic-gate &(lvalues[2460]),0}, 13000Sstevel@tonic-gate {"id-cmc-recipientNonce","id-cmc-recipientNonce", 13010Sstevel@tonic-gate NID_id_cmc_recipientNonce,8,&(lvalues[2468]),0}, 13020Sstevel@tonic-gate {"id-cmc-addExtensions","id-cmc-addExtensions", 13030Sstevel@tonic-gate NID_id_cmc_addExtensions,8,&(lvalues[2476]),0}, 13040Sstevel@tonic-gate {"id-cmc-encryptedPOP","id-cmc-encryptedPOP",NID_id_cmc_encryptedPOP, 13050Sstevel@tonic-gate 8,&(lvalues[2484]),0}, 13060Sstevel@tonic-gate {"id-cmc-decryptedPOP","id-cmc-decryptedPOP",NID_id_cmc_decryptedPOP, 13070Sstevel@tonic-gate 8,&(lvalues[2492]),0}, 13080Sstevel@tonic-gate {"id-cmc-lraPOPWitness","id-cmc-lraPOPWitness", 13090Sstevel@tonic-gate NID_id_cmc_lraPOPWitness,8,&(lvalues[2500]),0}, 13100Sstevel@tonic-gate {"id-cmc-getCert","id-cmc-getCert",NID_id_cmc_getCert,8, 13110Sstevel@tonic-gate &(lvalues[2508]),0}, 13120Sstevel@tonic-gate {"id-cmc-getCRL","id-cmc-getCRL",NID_id_cmc_getCRL,8,&(lvalues[2516]),0}, 13130Sstevel@tonic-gate {"id-cmc-revokeRequest","id-cmc-revokeRequest", 13140Sstevel@tonic-gate NID_id_cmc_revokeRequest,8,&(lvalues[2524]),0}, 13150Sstevel@tonic-gate {"id-cmc-regInfo","id-cmc-regInfo",NID_id_cmc_regInfo,8, 13160Sstevel@tonic-gate &(lvalues[2532]),0}, 13170Sstevel@tonic-gate {"id-cmc-responseInfo","id-cmc-responseInfo",NID_id_cmc_responseInfo, 13180Sstevel@tonic-gate 8,&(lvalues[2540]),0}, 13190Sstevel@tonic-gate {"id-cmc-queryPending","id-cmc-queryPending",NID_id_cmc_queryPending, 13200Sstevel@tonic-gate 8,&(lvalues[2548]),0}, 13210Sstevel@tonic-gate {"id-cmc-popLinkRandom","id-cmc-popLinkRandom", 13220Sstevel@tonic-gate NID_id_cmc_popLinkRandom,8,&(lvalues[2556]),0}, 13230Sstevel@tonic-gate {"id-cmc-popLinkWitness","id-cmc-popLinkWitness", 13240Sstevel@tonic-gate NID_id_cmc_popLinkWitness,8,&(lvalues[2564]),0}, 13250Sstevel@tonic-gate {"id-cmc-confirmCertAcceptance","id-cmc-confirmCertAcceptance", 13260Sstevel@tonic-gate NID_id_cmc_confirmCertAcceptance,8,&(lvalues[2572]),0}, 13270Sstevel@tonic-gate {"id-on-personalData","id-on-personalData",NID_id_on_personalData,8, 13280Sstevel@tonic-gate &(lvalues[2580]),0}, 13290Sstevel@tonic-gate {"id-pda-dateOfBirth","id-pda-dateOfBirth",NID_id_pda_dateOfBirth,8, 13300Sstevel@tonic-gate &(lvalues[2588]),0}, 13310Sstevel@tonic-gate {"id-pda-placeOfBirth","id-pda-placeOfBirth",NID_id_pda_placeOfBirth, 13320Sstevel@tonic-gate 8,&(lvalues[2596]),0}, 1333*2139Sjp161948 {NULL,NULL,NID_undef,0,NULL,0}, 13340Sstevel@tonic-gate {"id-pda-gender","id-pda-gender",NID_id_pda_gender,8,&(lvalues[2604]),0}, 13350Sstevel@tonic-gate {"id-pda-countryOfCitizenship","id-pda-countryOfCitizenship", 13360Sstevel@tonic-gate NID_id_pda_countryOfCitizenship,8,&(lvalues[2612]),0}, 13370Sstevel@tonic-gate {"id-pda-countryOfResidence","id-pda-countryOfResidence", 13380Sstevel@tonic-gate NID_id_pda_countryOfResidence,8,&(lvalues[2620]),0}, 13390Sstevel@tonic-gate {"id-aca-authenticationInfo","id-aca-authenticationInfo", 13400Sstevel@tonic-gate NID_id_aca_authenticationInfo,8,&(lvalues[2628]),0}, 13410Sstevel@tonic-gate {"id-aca-accessIdentity","id-aca-accessIdentity", 13420Sstevel@tonic-gate NID_id_aca_accessIdentity,8,&(lvalues[2636]),0}, 13430Sstevel@tonic-gate {"id-aca-chargingIdentity","id-aca-chargingIdentity", 13440Sstevel@tonic-gate NID_id_aca_chargingIdentity,8,&(lvalues[2644]),0}, 13450Sstevel@tonic-gate {"id-aca-group","id-aca-group",NID_id_aca_group,8,&(lvalues[2652]),0}, 13460Sstevel@tonic-gate {"id-aca-role","id-aca-role",NID_id_aca_role,8,&(lvalues[2660]),0}, 13470Sstevel@tonic-gate {"id-qcs-pkixQCSyntax-v1","id-qcs-pkixQCSyntax-v1", 13480Sstevel@tonic-gate NID_id_qcs_pkixQCSyntax_v1,8,&(lvalues[2668]),0}, 13490Sstevel@tonic-gate {"id-cct-crs","id-cct-crs",NID_id_cct_crs,8,&(lvalues[2676]),0}, 13500Sstevel@tonic-gate {"id-cct-PKIData","id-cct-PKIData",NID_id_cct_PKIData,8, 13510Sstevel@tonic-gate &(lvalues[2684]),0}, 13520Sstevel@tonic-gate {"id-cct-PKIResponse","id-cct-PKIResponse",NID_id_cct_PKIResponse,8, 13530Sstevel@tonic-gate &(lvalues[2692]),0}, 13540Sstevel@tonic-gate {"ad_timestamping","AD Time Stamping",NID_ad_timeStamping,8, 13550Sstevel@tonic-gate &(lvalues[2700]),0}, 13560Sstevel@tonic-gate {"AD_DVCS","ad dvcs",NID_ad_dvcs,8,&(lvalues[2708]),0}, 13570Sstevel@tonic-gate {"basicOCSPResponse","Basic OCSP Response",NID_id_pkix_OCSP_basic,9, 13580Sstevel@tonic-gate &(lvalues[2716]),0}, 13590Sstevel@tonic-gate {"Nonce","OCSP Nonce",NID_id_pkix_OCSP_Nonce,9,&(lvalues[2725]),0}, 13600Sstevel@tonic-gate {"CrlID","OCSP CRL ID",NID_id_pkix_OCSP_CrlID,9,&(lvalues[2734]),0}, 13610Sstevel@tonic-gate {"acceptableResponses","Acceptable OCSP Responses", 13620Sstevel@tonic-gate NID_id_pkix_OCSP_acceptableResponses,9,&(lvalues[2743]),0}, 13630Sstevel@tonic-gate {"noCheck","OCSP No Check",NID_id_pkix_OCSP_noCheck,9,&(lvalues[2752]),0}, 13640Sstevel@tonic-gate {"archiveCutoff","OCSP Archive Cutoff",NID_id_pkix_OCSP_archiveCutoff, 13650Sstevel@tonic-gate 9,&(lvalues[2761]),0}, 13660Sstevel@tonic-gate {"serviceLocator","OCSP Service Locator", 13670Sstevel@tonic-gate NID_id_pkix_OCSP_serviceLocator,9,&(lvalues[2770]),0}, 13680Sstevel@tonic-gate {"extendedStatus","Extended OCSP Status", 13690Sstevel@tonic-gate NID_id_pkix_OCSP_extendedStatus,9,&(lvalues[2779]),0}, 13700Sstevel@tonic-gate {"valid","valid",NID_id_pkix_OCSP_valid,9,&(lvalues[2788]),0}, 13710Sstevel@tonic-gate {"path","path",NID_id_pkix_OCSP_path,9,&(lvalues[2797]),0}, 13720Sstevel@tonic-gate {"trustRoot","Trust Root",NID_id_pkix_OCSP_trustRoot,9, 13730Sstevel@tonic-gate &(lvalues[2806]),0}, 13740Sstevel@tonic-gate {"algorithm","algorithm",NID_algorithm,4,&(lvalues[2815]),0}, 13750Sstevel@tonic-gate {"rsaSignature","rsaSignature",NID_rsaSignature,5,&(lvalues[2819]),0}, 13760Sstevel@tonic-gate {"X500algorithms","directory services - algorithms", 13770Sstevel@tonic-gate NID_X500algorithms,2,&(lvalues[2824]),0}, 13780Sstevel@tonic-gate {"ORG","org",NID_org,1,&(lvalues[2826]),0}, 13790Sstevel@tonic-gate {"DOD","dod",NID_dod,2,&(lvalues[2827]),0}, 13800Sstevel@tonic-gate {"IANA","iana",NID_iana,3,&(lvalues[2829]),0}, 13810Sstevel@tonic-gate {"directory","Directory",NID_Directory,4,&(lvalues[2832]),0}, 13820Sstevel@tonic-gate {"mgmt","Management",NID_Management,4,&(lvalues[2836]),0}, 13830Sstevel@tonic-gate {"experimental","Experimental",NID_Experimental,4,&(lvalues[2840]),0}, 13840Sstevel@tonic-gate {"private","Private",NID_Private,4,&(lvalues[2844]),0}, 13850Sstevel@tonic-gate {"security","Security",NID_Security,4,&(lvalues[2848]),0}, 13860Sstevel@tonic-gate {"snmpv2","SNMPv2",NID_SNMPv2,4,&(lvalues[2852]),0}, 13870Sstevel@tonic-gate {"Mail","Mail",NID_Mail,4,&(lvalues[2856]),0}, 13880Sstevel@tonic-gate {"enterprises","Enterprises",NID_Enterprises,5,&(lvalues[2860]),0}, 13890Sstevel@tonic-gate {"dcobject","dcObject",NID_dcObject,9,&(lvalues[2865]),0}, 13900Sstevel@tonic-gate {"DC","domainComponent",NID_domainComponent,10,&(lvalues[2874]),0}, 13910Sstevel@tonic-gate {"domain","Domain",NID_Domain,10,&(lvalues[2884]),0}, 1392*2139Sjp161948 {"NULL","NULL",NID_joint_iso_ccitt,1,&(lvalues[2894]),0}, 13930Sstevel@tonic-gate {"selected-attribute-types","Selected Attribute Types", 13940Sstevel@tonic-gate NID_selected_attribute_types,3,&(lvalues[2895]),0}, 13950Sstevel@tonic-gate {"clearance","clearance",NID_clearance,4,&(lvalues[2898]),0}, 13960Sstevel@tonic-gate {"RSA-MD4","md4WithRSAEncryption",NID_md4WithRSAEncryption,9, 13970Sstevel@tonic-gate &(lvalues[2902]),0}, 13980Sstevel@tonic-gate {"ac-proxying","ac-proxying",NID_ac_proxying,8,&(lvalues[2911]),0}, 13990Sstevel@tonic-gate {"subjectInfoAccess","Subject Information Access",NID_sinfo_access,8, 14000Sstevel@tonic-gate &(lvalues[2919]),0}, 14010Sstevel@tonic-gate {"id-aca-encAttrs","id-aca-encAttrs",NID_id_aca_encAttrs,8, 14020Sstevel@tonic-gate &(lvalues[2927]),0}, 14030Sstevel@tonic-gate {"role","role",NID_role,3,&(lvalues[2935]),0}, 14040Sstevel@tonic-gate {"policyConstraints","X509v3 Policy Constraints", 14050Sstevel@tonic-gate NID_policy_constraints,3,&(lvalues[2938]),0}, 14060Sstevel@tonic-gate {"targetInformation","X509v3 AC Targeting",NID_target_information,3, 14070Sstevel@tonic-gate &(lvalues[2941]),0}, 14080Sstevel@tonic-gate {"noRevAvail","X509v3 No Revocation Available",NID_no_rev_avail,3, 14090Sstevel@tonic-gate &(lvalues[2944]),0}, 1410*2139Sjp161948 {"NULL","NULL",NID_ccitt,1,&(lvalues[2947]),0}, 14110Sstevel@tonic-gate {"ansi-X9-62","ANSI X9.62",NID_ansi_X9_62,5,&(lvalues[2948]),0}, 14120Sstevel@tonic-gate {"prime-field","prime-field",NID_X9_62_prime_field,7,&(lvalues[2953]),0}, 14130Sstevel@tonic-gate {"characteristic-two-field","characteristic-two-field", 14140Sstevel@tonic-gate NID_X9_62_characteristic_two_field,7,&(lvalues[2960]),0}, 14150Sstevel@tonic-gate {"id-ecPublicKey","id-ecPublicKey",NID_X9_62_id_ecPublicKey,7, 14160Sstevel@tonic-gate &(lvalues[2967]),0}, 14170Sstevel@tonic-gate {"prime192v1","prime192v1",NID_X9_62_prime192v1,8,&(lvalues[2974]),0}, 14180Sstevel@tonic-gate {"prime192v2","prime192v2",NID_X9_62_prime192v2,8,&(lvalues[2982]),0}, 14190Sstevel@tonic-gate {"prime192v3","prime192v3",NID_X9_62_prime192v3,8,&(lvalues[2990]),0}, 14200Sstevel@tonic-gate {"prime239v1","prime239v1",NID_X9_62_prime239v1,8,&(lvalues[2998]),0}, 14210Sstevel@tonic-gate {"prime239v2","prime239v2",NID_X9_62_prime239v2,8,&(lvalues[3006]),0}, 14220Sstevel@tonic-gate {"prime239v3","prime239v3",NID_X9_62_prime239v3,8,&(lvalues[3014]),0}, 14230Sstevel@tonic-gate {"prime256v1","prime256v1",NID_X9_62_prime256v1,8,&(lvalues[3022]),0}, 14240Sstevel@tonic-gate {"ecdsa-with-SHA1","ecdsa-with-SHA1",NID_ecdsa_with_SHA1,7, 14250Sstevel@tonic-gate &(lvalues[3030]),0}, 14260Sstevel@tonic-gate {"CSPName","Microsoft CSP Name",NID_ms_csp_name,9,&(lvalues[3037]),0}, 14270Sstevel@tonic-gate {"AES-128-ECB","aes-128-ecb",NID_aes_128_ecb,9,&(lvalues[3046]),0}, 14280Sstevel@tonic-gate {"AES-128-CBC","aes-128-cbc",NID_aes_128_cbc,9,&(lvalues[3055]),0}, 14290Sstevel@tonic-gate {"AES-128-OFB","aes-128-ofb",NID_aes_128_ofb128,9,&(lvalues[3064]),0}, 14300Sstevel@tonic-gate {"AES-128-CFB","aes-128-cfb",NID_aes_128_cfb128,9,&(lvalues[3073]),0}, 14310Sstevel@tonic-gate {"AES-192-ECB","aes-192-ecb",NID_aes_192_ecb,9,&(lvalues[3082]),0}, 14320Sstevel@tonic-gate {"AES-192-CBC","aes-192-cbc",NID_aes_192_cbc,9,&(lvalues[3091]),0}, 14330Sstevel@tonic-gate {"AES-192-OFB","aes-192-ofb",NID_aes_192_ofb128,9,&(lvalues[3100]),0}, 14340Sstevel@tonic-gate {"AES-192-CFB","aes-192-cfb",NID_aes_192_cfb128,9,&(lvalues[3109]),0}, 14350Sstevel@tonic-gate {"AES-256-ECB","aes-256-ecb",NID_aes_256_ecb,9,&(lvalues[3118]),0}, 14360Sstevel@tonic-gate {"AES-256-CBC","aes-256-cbc",NID_aes_256_cbc,9,&(lvalues[3127]),0}, 14370Sstevel@tonic-gate {"AES-256-OFB","aes-256-ofb",NID_aes_256_ofb128,9,&(lvalues[3136]),0}, 14380Sstevel@tonic-gate {"AES-256-CFB","aes-256-cfb",NID_aes_256_cfb128,9,&(lvalues[3145]),0}, 14390Sstevel@tonic-gate {"holdInstructionCode","Hold Instruction Code", 14400Sstevel@tonic-gate NID_hold_instruction_code,3,&(lvalues[3154]),0}, 14410Sstevel@tonic-gate {"holdInstructionNone","Hold Instruction None", 14420Sstevel@tonic-gate NID_hold_instruction_none,7,&(lvalues[3157]),0}, 14430Sstevel@tonic-gate {"holdInstructionCallIssuer","Hold Instruction Call Issuer", 14440Sstevel@tonic-gate NID_hold_instruction_call_issuer,7,&(lvalues[3164]),0}, 14450Sstevel@tonic-gate {"holdInstructionReject","Hold Instruction Reject", 14460Sstevel@tonic-gate NID_hold_instruction_reject,7,&(lvalues[3171]),0}, 14470Sstevel@tonic-gate {"data","data",NID_data,1,&(lvalues[3178]),0}, 14480Sstevel@tonic-gate {"pss","pss",NID_pss,3,&(lvalues[3179]),0}, 14490Sstevel@tonic-gate {"ucl","ucl",NID_ucl,7,&(lvalues[3182]),0}, 14500Sstevel@tonic-gate {"pilot","pilot",NID_pilot,8,&(lvalues[3189]),0}, 14510Sstevel@tonic-gate {"pilotAttributeType","pilotAttributeType",NID_pilotAttributeType,9, 14520Sstevel@tonic-gate &(lvalues[3197]),0}, 14530Sstevel@tonic-gate {"pilotAttributeSyntax","pilotAttributeSyntax", 14540Sstevel@tonic-gate NID_pilotAttributeSyntax,9,&(lvalues[3206]),0}, 14550Sstevel@tonic-gate {"pilotObjectClass","pilotObjectClass",NID_pilotObjectClass,9, 14560Sstevel@tonic-gate &(lvalues[3215]),0}, 14570Sstevel@tonic-gate {"pilotGroups","pilotGroups",NID_pilotGroups,9,&(lvalues[3224]),0}, 14580Sstevel@tonic-gate {"iA5StringSyntax","iA5StringSyntax",NID_iA5StringSyntax,10, 14590Sstevel@tonic-gate &(lvalues[3233]),0}, 14600Sstevel@tonic-gate {"caseIgnoreIA5StringSyntax","caseIgnoreIA5StringSyntax", 14610Sstevel@tonic-gate NID_caseIgnoreIA5StringSyntax,10,&(lvalues[3243]),0}, 14620Sstevel@tonic-gate {"pilotObject","pilotObject",NID_pilotObject,10,&(lvalues[3253]),0}, 14630Sstevel@tonic-gate {"pilotPerson","pilotPerson",NID_pilotPerson,10,&(lvalues[3263]),0}, 14640Sstevel@tonic-gate {"account","account",NID_account,10,&(lvalues[3273]),0}, 14650Sstevel@tonic-gate {"document","document",NID_document,10,&(lvalues[3283]),0}, 14660Sstevel@tonic-gate {"room","room",NID_room,10,&(lvalues[3293]),0}, 14670Sstevel@tonic-gate {"documentSeries","documentSeries",NID_documentSeries,10, 14680Sstevel@tonic-gate &(lvalues[3303]),0}, 14690Sstevel@tonic-gate {"rFC822localPart","rFC822localPart",NID_rFC822localPart,10, 14700Sstevel@tonic-gate &(lvalues[3313]),0}, 14710Sstevel@tonic-gate {"dNSDomain","dNSDomain",NID_dNSDomain,10,&(lvalues[3323]),0}, 14720Sstevel@tonic-gate {"domainRelatedObject","domainRelatedObject",NID_domainRelatedObject, 14730Sstevel@tonic-gate 10,&(lvalues[3333]),0}, 14740Sstevel@tonic-gate {"friendlyCountry","friendlyCountry",NID_friendlyCountry,10, 14750Sstevel@tonic-gate &(lvalues[3343]),0}, 14760Sstevel@tonic-gate {"simpleSecurityObject","simpleSecurityObject", 14770Sstevel@tonic-gate NID_simpleSecurityObject,10,&(lvalues[3353]),0}, 14780Sstevel@tonic-gate {"pilotOrganization","pilotOrganization",NID_pilotOrganization,10, 14790Sstevel@tonic-gate &(lvalues[3363]),0}, 14800Sstevel@tonic-gate {"pilotDSA","pilotDSA",NID_pilotDSA,10,&(lvalues[3373]),0}, 14810Sstevel@tonic-gate {"qualityLabelledData","qualityLabelledData",NID_qualityLabelledData, 14820Sstevel@tonic-gate 10,&(lvalues[3383]),0}, 14830Sstevel@tonic-gate {"UID","userId",NID_userId,10,&(lvalues[3393]),0}, 14840Sstevel@tonic-gate {"textEncodedORAddress","textEncodedORAddress", 14850Sstevel@tonic-gate NID_textEncodedORAddress,10,&(lvalues[3403]),0}, 14860Sstevel@tonic-gate {"mail","rfc822Mailbox",NID_rfc822Mailbox,10,&(lvalues[3413]),0}, 14870Sstevel@tonic-gate {"info","info",NID_info,10,&(lvalues[3423]),0}, 14880Sstevel@tonic-gate {"favouriteDrink","favouriteDrink",NID_favouriteDrink,10, 14890Sstevel@tonic-gate &(lvalues[3433]),0}, 14900Sstevel@tonic-gate {"roomNumber","roomNumber",NID_roomNumber,10,&(lvalues[3443]),0}, 14910Sstevel@tonic-gate {"photo","photo",NID_photo,10,&(lvalues[3453]),0}, 14920Sstevel@tonic-gate {"userClass","userClass",NID_userClass,10,&(lvalues[3463]),0}, 14930Sstevel@tonic-gate {"host","host",NID_host,10,&(lvalues[3473]),0}, 14940Sstevel@tonic-gate {"manager","manager",NID_manager,10,&(lvalues[3483]),0}, 14950Sstevel@tonic-gate {"documentIdentifier","documentIdentifier",NID_documentIdentifier,10, 14960Sstevel@tonic-gate &(lvalues[3493]),0}, 14970Sstevel@tonic-gate {"documentTitle","documentTitle",NID_documentTitle,10,&(lvalues[3503]),0}, 14980Sstevel@tonic-gate {"documentVersion","documentVersion",NID_documentVersion,10, 14990Sstevel@tonic-gate &(lvalues[3513]),0}, 15000Sstevel@tonic-gate {"documentAuthor","documentAuthor",NID_documentAuthor,10, 15010Sstevel@tonic-gate &(lvalues[3523]),0}, 15020Sstevel@tonic-gate {"documentLocation","documentLocation",NID_documentLocation,10, 15030Sstevel@tonic-gate &(lvalues[3533]),0}, 15040Sstevel@tonic-gate {"homeTelephoneNumber","homeTelephoneNumber",NID_homeTelephoneNumber, 15050Sstevel@tonic-gate 10,&(lvalues[3543]),0}, 15060Sstevel@tonic-gate {"secretary","secretary",NID_secretary,10,&(lvalues[3553]),0}, 15070Sstevel@tonic-gate {"otherMailbox","otherMailbox",NID_otherMailbox,10,&(lvalues[3563]),0}, 15080Sstevel@tonic-gate {"lastModifiedTime","lastModifiedTime",NID_lastModifiedTime,10, 15090Sstevel@tonic-gate &(lvalues[3573]),0}, 15100Sstevel@tonic-gate {"lastModifiedBy","lastModifiedBy",NID_lastModifiedBy,10, 15110Sstevel@tonic-gate &(lvalues[3583]),0}, 15120Sstevel@tonic-gate {"aRecord","aRecord",NID_aRecord,10,&(lvalues[3593]),0}, 15130Sstevel@tonic-gate {"pilotAttributeType27","pilotAttributeType27", 15140Sstevel@tonic-gate NID_pilotAttributeType27,10,&(lvalues[3603]),0}, 15150Sstevel@tonic-gate {"mXRecord","mXRecord",NID_mXRecord,10,&(lvalues[3613]),0}, 15160Sstevel@tonic-gate {"nSRecord","nSRecord",NID_nSRecord,10,&(lvalues[3623]),0}, 15170Sstevel@tonic-gate {"sOARecord","sOARecord",NID_sOARecord,10,&(lvalues[3633]),0}, 15180Sstevel@tonic-gate {"cNAMERecord","cNAMERecord",NID_cNAMERecord,10,&(lvalues[3643]),0}, 15190Sstevel@tonic-gate {"associatedDomain","associatedDomain",NID_associatedDomain,10, 15200Sstevel@tonic-gate &(lvalues[3653]),0}, 15210Sstevel@tonic-gate {"associatedName","associatedName",NID_associatedName,10, 15220Sstevel@tonic-gate &(lvalues[3663]),0}, 15230Sstevel@tonic-gate {"homePostalAddress","homePostalAddress",NID_homePostalAddress,10, 15240Sstevel@tonic-gate &(lvalues[3673]),0}, 15250Sstevel@tonic-gate {"personalTitle","personalTitle",NID_personalTitle,10,&(lvalues[3683]),0}, 15260Sstevel@tonic-gate {"mobileTelephoneNumber","mobileTelephoneNumber", 15270Sstevel@tonic-gate NID_mobileTelephoneNumber,10,&(lvalues[3693]),0}, 15280Sstevel@tonic-gate {"pagerTelephoneNumber","pagerTelephoneNumber", 15290Sstevel@tonic-gate NID_pagerTelephoneNumber,10,&(lvalues[3703]),0}, 15300Sstevel@tonic-gate {"friendlyCountryName","friendlyCountryName",NID_friendlyCountryName, 15310Sstevel@tonic-gate 10,&(lvalues[3713]),0}, 15320Sstevel@tonic-gate {"organizationalStatus","organizationalStatus", 15330Sstevel@tonic-gate NID_organizationalStatus,10,&(lvalues[3723]),0}, 15340Sstevel@tonic-gate {"janetMailbox","janetMailbox",NID_janetMailbox,10,&(lvalues[3733]),0}, 15350Sstevel@tonic-gate {"mailPreferenceOption","mailPreferenceOption", 15360Sstevel@tonic-gate NID_mailPreferenceOption,10,&(lvalues[3743]),0}, 15370Sstevel@tonic-gate {"buildingName","buildingName",NID_buildingName,10,&(lvalues[3753]),0}, 15380Sstevel@tonic-gate {"dSAQuality","dSAQuality",NID_dSAQuality,10,&(lvalues[3763]),0}, 15390Sstevel@tonic-gate {"singleLevelQuality","singleLevelQuality",NID_singleLevelQuality,10, 15400Sstevel@tonic-gate &(lvalues[3773]),0}, 15410Sstevel@tonic-gate {"subtreeMinimumQuality","subtreeMinimumQuality", 15420Sstevel@tonic-gate NID_subtreeMinimumQuality,10,&(lvalues[3783]),0}, 15430Sstevel@tonic-gate {"subtreeMaximumQuality","subtreeMaximumQuality", 15440Sstevel@tonic-gate NID_subtreeMaximumQuality,10,&(lvalues[3793]),0}, 15450Sstevel@tonic-gate {"personalSignature","personalSignature",NID_personalSignature,10, 15460Sstevel@tonic-gate &(lvalues[3803]),0}, 15470Sstevel@tonic-gate {"dITRedirect","dITRedirect",NID_dITRedirect,10,&(lvalues[3813]),0}, 15480Sstevel@tonic-gate {"audio","audio",NID_audio,10,&(lvalues[3823]),0}, 15490Sstevel@tonic-gate {"documentPublisher","documentPublisher",NID_documentPublisher,10, 15500Sstevel@tonic-gate &(lvalues[3833]),0}, 15510Sstevel@tonic-gate {"x500UniqueIdentifier","x500UniqueIdentifier", 15520Sstevel@tonic-gate NID_x500UniqueIdentifier,3,&(lvalues[3843]),0}, 15530Sstevel@tonic-gate {"mime-mhs","MIME MHS",NID_mime_mhs,5,&(lvalues[3846]),0}, 15540Sstevel@tonic-gate {"mime-mhs-headings","mime-mhs-headings",NID_mime_mhs_headings,6, 15550Sstevel@tonic-gate &(lvalues[3851]),0}, 15560Sstevel@tonic-gate {"mime-mhs-bodies","mime-mhs-bodies",NID_mime_mhs_bodies,6, 15570Sstevel@tonic-gate &(lvalues[3857]),0}, 15580Sstevel@tonic-gate {"id-hex-partial-message","id-hex-partial-message", 15590Sstevel@tonic-gate NID_id_hex_partial_message,7,&(lvalues[3863]),0}, 15600Sstevel@tonic-gate {"id-hex-multipart-message","id-hex-multipart-message", 15610Sstevel@tonic-gate NID_id_hex_multipart_message,7,&(lvalues[3870]),0}, 15620Sstevel@tonic-gate {"generationQualifier","generationQualifier",NID_generationQualifier, 15630Sstevel@tonic-gate 3,&(lvalues[3877]),0}, 15640Sstevel@tonic-gate {"pseudonym","pseudonym",NID_pseudonym,3,&(lvalues[3880]),0}, 1565*2139Sjp161948 {NULL,NULL,NID_undef,0,NULL,0}, 15660Sstevel@tonic-gate {"id-set","Secure Electronic Transactions",NID_id_set,2, 15670Sstevel@tonic-gate &(lvalues[3883]),0}, 15680Sstevel@tonic-gate {"set-ctype","content types",NID_set_ctype,3,&(lvalues[3885]),0}, 15690Sstevel@tonic-gate {"set-msgExt","message extensions",NID_set_msgExt,3,&(lvalues[3888]),0}, 15700Sstevel@tonic-gate {"set-attr","set-attr",NID_set_attr,3,&(lvalues[3891]),0}, 15710Sstevel@tonic-gate {"set-policy","set-policy",NID_set_policy,3,&(lvalues[3894]),0}, 15720Sstevel@tonic-gate {"set-certExt","certificate extensions",NID_set_certExt,3, 15730Sstevel@tonic-gate &(lvalues[3897]),0}, 15740Sstevel@tonic-gate {"set-brand","set-brand",NID_set_brand,3,&(lvalues[3900]),0}, 15750Sstevel@tonic-gate {"setct-PANData","setct-PANData",NID_setct_PANData,4,&(lvalues[3903]),0}, 15760Sstevel@tonic-gate {"setct-PANToken","setct-PANToken",NID_setct_PANToken,4, 15770Sstevel@tonic-gate &(lvalues[3907]),0}, 15780Sstevel@tonic-gate {"setct-PANOnly","setct-PANOnly",NID_setct_PANOnly,4,&(lvalues[3911]),0}, 15790Sstevel@tonic-gate {"setct-OIData","setct-OIData",NID_setct_OIData,4,&(lvalues[3915]),0}, 15800Sstevel@tonic-gate {"setct-PI","setct-PI",NID_setct_PI,4,&(lvalues[3919]),0}, 15810Sstevel@tonic-gate {"setct-PIData","setct-PIData",NID_setct_PIData,4,&(lvalues[3923]),0}, 15820Sstevel@tonic-gate {"setct-PIDataUnsigned","setct-PIDataUnsigned", 15830Sstevel@tonic-gate NID_setct_PIDataUnsigned,4,&(lvalues[3927]),0}, 15840Sstevel@tonic-gate {"setct-HODInput","setct-HODInput",NID_setct_HODInput,4, 15850Sstevel@tonic-gate &(lvalues[3931]),0}, 15860Sstevel@tonic-gate {"setct-AuthResBaggage","setct-AuthResBaggage", 15870Sstevel@tonic-gate NID_setct_AuthResBaggage,4,&(lvalues[3935]),0}, 15880Sstevel@tonic-gate {"setct-AuthRevReqBaggage","setct-AuthRevReqBaggage", 15890Sstevel@tonic-gate NID_setct_AuthRevReqBaggage,4,&(lvalues[3939]),0}, 15900Sstevel@tonic-gate {"setct-AuthRevResBaggage","setct-AuthRevResBaggage", 15910Sstevel@tonic-gate NID_setct_AuthRevResBaggage,4,&(lvalues[3943]),0}, 15920Sstevel@tonic-gate {"setct-CapTokenSeq","setct-CapTokenSeq",NID_setct_CapTokenSeq,4, 15930Sstevel@tonic-gate &(lvalues[3947]),0}, 15940Sstevel@tonic-gate {"setct-PInitResData","setct-PInitResData",NID_setct_PInitResData,4, 15950Sstevel@tonic-gate &(lvalues[3951]),0}, 15960Sstevel@tonic-gate {"setct-PI-TBS","setct-PI-TBS",NID_setct_PI_TBS,4,&(lvalues[3955]),0}, 15970Sstevel@tonic-gate {"setct-PResData","setct-PResData",NID_setct_PResData,4, 15980Sstevel@tonic-gate &(lvalues[3959]),0}, 15990Sstevel@tonic-gate {"setct-AuthReqTBS","setct-AuthReqTBS",NID_setct_AuthReqTBS,4, 16000Sstevel@tonic-gate &(lvalues[3963]),0}, 16010Sstevel@tonic-gate {"setct-AuthResTBS","setct-AuthResTBS",NID_setct_AuthResTBS,4, 16020Sstevel@tonic-gate &(lvalues[3967]),0}, 16030Sstevel@tonic-gate {"setct-AuthResTBSX","setct-AuthResTBSX",NID_setct_AuthResTBSX,4, 16040Sstevel@tonic-gate &(lvalues[3971]),0}, 16050Sstevel@tonic-gate {"setct-AuthTokenTBS","setct-AuthTokenTBS",NID_setct_AuthTokenTBS,4, 16060Sstevel@tonic-gate &(lvalues[3975]),0}, 16070Sstevel@tonic-gate {"setct-CapTokenData","setct-CapTokenData",NID_setct_CapTokenData,4, 16080Sstevel@tonic-gate &(lvalues[3979]),0}, 16090Sstevel@tonic-gate {"setct-CapTokenTBS","setct-CapTokenTBS",NID_setct_CapTokenTBS,4, 16100Sstevel@tonic-gate &(lvalues[3983]),0}, 16110Sstevel@tonic-gate {"setct-AcqCardCodeMsg","setct-AcqCardCodeMsg", 16120Sstevel@tonic-gate NID_setct_AcqCardCodeMsg,4,&(lvalues[3987]),0}, 16130Sstevel@tonic-gate {"setct-AuthRevReqTBS","setct-AuthRevReqTBS",NID_setct_AuthRevReqTBS, 16140Sstevel@tonic-gate 4,&(lvalues[3991]),0}, 16150Sstevel@tonic-gate {"setct-AuthRevResData","setct-AuthRevResData", 16160Sstevel@tonic-gate NID_setct_AuthRevResData,4,&(lvalues[3995]),0}, 16170Sstevel@tonic-gate {"setct-AuthRevResTBS","setct-AuthRevResTBS",NID_setct_AuthRevResTBS, 16180Sstevel@tonic-gate 4,&(lvalues[3999]),0}, 16190Sstevel@tonic-gate {"setct-CapReqTBS","setct-CapReqTBS",NID_setct_CapReqTBS,4, 16200Sstevel@tonic-gate &(lvalues[4003]),0}, 16210Sstevel@tonic-gate {"setct-CapReqTBSX","setct-CapReqTBSX",NID_setct_CapReqTBSX,4, 16220Sstevel@tonic-gate &(lvalues[4007]),0}, 16230Sstevel@tonic-gate {"setct-CapResData","setct-CapResData",NID_setct_CapResData,4, 16240Sstevel@tonic-gate &(lvalues[4011]),0}, 16250Sstevel@tonic-gate {"setct-CapRevReqTBS","setct-CapRevReqTBS",NID_setct_CapRevReqTBS,4, 16260Sstevel@tonic-gate &(lvalues[4015]),0}, 16270Sstevel@tonic-gate {"setct-CapRevReqTBSX","setct-CapRevReqTBSX",NID_setct_CapRevReqTBSX, 16280Sstevel@tonic-gate 4,&(lvalues[4019]),0}, 16290Sstevel@tonic-gate {"setct-CapRevResData","setct-CapRevResData",NID_setct_CapRevResData, 16300Sstevel@tonic-gate 4,&(lvalues[4023]),0}, 16310Sstevel@tonic-gate {"setct-CredReqTBS","setct-CredReqTBS",NID_setct_CredReqTBS,4, 16320Sstevel@tonic-gate &(lvalues[4027]),0}, 16330Sstevel@tonic-gate {"setct-CredReqTBSX","setct-CredReqTBSX",NID_setct_CredReqTBSX,4, 16340Sstevel@tonic-gate &(lvalues[4031]),0}, 16350Sstevel@tonic-gate {"setct-CredResData","setct-CredResData",NID_setct_CredResData,4, 16360Sstevel@tonic-gate &(lvalues[4035]),0}, 16370Sstevel@tonic-gate {"setct-CredRevReqTBS","setct-CredRevReqTBS",NID_setct_CredRevReqTBS, 16380Sstevel@tonic-gate 4,&(lvalues[4039]),0}, 16390Sstevel@tonic-gate {"setct-CredRevReqTBSX","setct-CredRevReqTBSX", 16400Sstevel@tonic-gate NID_setct_CredRevReqTBSX,4,&(lvalues[4043]),0}, 16410Sstevel@tonic-gate {"setct-CredRevResData","setct-CredRevResData", 16420Sstevel@tonic-gate NID_setct_CredRevResData,4,&(lvalues[4047]),0}, 16430Sstevel@tonic-gate {"setct-PCertReqData","setct-PCertReqData",NID_setct_PCertReqData,4, 16440Sstevel@tonic-gate &(lvalues[4051]),0}, 16450Sstevel@tonic-gate {"setct-PCertResTBS","setct-PCertResTBS",NID_setct_PCertResTBS,4, 16460Sstevel@tonic-gate &(lvalues[4055]),0}, 16470Sstevel@tonic-gate {"setct-BatchAdminReqData","setct-BatchAdminReqData", 16480Sstevel@tonic-gate NID_setct_BatchAdminReqData,4,&(lvalues[4059]),0}, 16490Sstevel@tonic-gate {"setct-BatchAdminResData","setct-BatchAdminResData", 16500Sstevel@tonic-gate NID_setct_BatchAdminResData,4,&(lvalues[4063]),0}, 16510Sstevel@tonic-gate {"setct-CardCInitResTBS","setct-CardCInitResTBS", 16520Sstevel@tonic-gate NID_setct_CardCInitResTBS,4,&(lvalues[4067]),0}, 16530Sstevel@tonic-gate {"setct-MeAqCInitResTBS","setct-MeAqCInitResTBS", 16540Sstevel@tonic-gate NID_setct_MeAqCInitResTBS,4,&(lvalues[4071]),0}, 16550Sstevel@tonic-gate {"setct-RegFormResTBS","setct-RegFormResTBS",NID_setct_RegFormResTBS, 16560Sstevel@tonic-gate 4,&(lvalues[4075]),0}, 16570Sstevel@tonic-gate {"setct-CertReqData","setct-CertReqData",NID_setct_CertReqData,4, 16580Sstevel@tonic-gate &(lvalues[4079]),0}, 16590Sstevel@tonic-gate {"setct-CertReqTBS","setct-CertReqTBS",NID_setct_CertReqTBS,4, 16600Sstevel@tonic-gate &(lvalues[4083]),0}, 16610Sstevel@tonic-gate {"setct-CertResData","setct-CertResData",NID_setct_CertResData,4, 16620Sstevel@tonic-gate &(lvalues[4087]),0}, 16630Sstevel@tonic-gate {"setct-CertInqReqTBS","setct-CertInqReqTBS",NID_setct_CertInqReqTBS, 16640Sstevel@tonic-gate 4,&(lvalues[4091]),0}, 16650Sstevel@tonic-gate {"setct-ErrorTBS","setct-ErrorTBS",NID_setct_ErrorTBS,4, 16660Sstevel@tonic-gate &(lvalues[4095]),0}, 16670Sstevel@tonic-gate {"setct-PIDualSignedTBE","setct-PIDualSignedTBE", 16680Sstevel@tonic-gate NID_setct_PIDualSignedTBE,4,&(lvalues[4099]),0}, 16690Sstevel@tonic-gate {"setct-PIUnsignedTBE","setct-PIUnsignedTBE",NID_setct_PIUnsignedTBE, 16700Sstevel@tonic-gate 4,&(lvalues[4103]),0}, 16710Sstevel@tonic-gate {"setct-AuthReqTBE","setct-AuthReqTBE",NID_setct_AuthReqTBE,4, 16720Sstevel@tonic-gate &(lvalues[4107]),0}, 16730Sstevel@tonic-gate {"setct-AuthResTBE","setct-AuthResTBE",NID_setct_AuthResTBE,4, 16740Sstevel@tonic-gate &(lvalues[4111]),0}, 16750Sstevel@tonic-gate {"setct-AuthResTBEX","setct-AuthResTBEX",NID_setct_AuthResTBEX,4, 16760Sstevel@tonic-gate &(lvalues[4115]),0}, 16770Sstevel@tonic-gate {"setct-AuthTokenTBE","setct-AuthTokenTBE",NID_setct_AuthTokenTBE,4, 16780Sstevel@tonic-gate &(lvalues[4119]),0}, 16790Sstevel@tonic-gate {"setct-CapTokenTBE","setct-CapTokenTBE",NID_setct_CapTokenTBE,4, 16800Sstevel@tonic-gate &(lvalues[4123]),0}, 16810Sstevel@tonic-gate {"setct-CapTokenTBEX","setct-CapTokenTBEX",NID_setct_CapTokenTBEX,4, 16820Sstevel@tonic-gate &(lvalues[4127]),0}, 16830Sstevel@tonic-gate {"setct-AcqCardCodeMsgTBE","setct-AcqCardCodeMsgTBE", 16840Sstevel@tonic-gate NID_setct_AcqCardCodeMsgTBE,4,&(lvalues[4131]),0}, 16850Sstevel@tonic-gate {"setct-AuthRevReqTBE","setct-AuthRevReqTBE",NID_setct_AuthRevReqTBE, 16860Sstevel@tonic-gate 4,&(lvalues[4135]),0}, 16870Sstevel@tonic-gate {"setct-AuthRevResTBE","setct-AuthRevResTBE",NID_setct_AuthRevResTBE, 16880Sstevel@tonic-gate 4,&(lvalues[4139]),0}, 16890Sstevel@tonic-gate {"setct-AuthRevResTBEB","setct-AuthRevResTBEB", 16900Sstevel@tonic-gate NID_setct_AuthRevResTBEB,4,&(lvalues[4143]),0}, 16910Sstevel@tonic-gate {"setct-CapReqTBE","setct-CapReqTBE",NID_setct_CapReqTBE,4, 16920Sstevel@tonic-gate &(lvalues[4147]),0}, 16930Sstevel@tonic-gate {"setct-CapReqTBEX","setct-CapReqTBEX",NID_setct_CapReqTBEX,4, 16940Sstevel@tonic-gate &(lvalues[4151]),0}, 16950Sstevel@tonic-gate {"setct-CapResTBE","setct-CapResTBE",NID_setct_CapResTBE,4, 16960Sstevel@tonic-gate &(lvalues[4155]),0}, 16970Sstevel@tonic-gate {"setct-CapRevReqTBE","setct-CapRevReqTBE",NID_setct_CapRevReqTBE,4, 16980Sstevel@tonic-gate &(lvalues[4159]),0}, 16990Sstevel@tonic-gate {"setct-CapRevReqTBEX","setct-CapRevReqTBEX",NID_setct_CapRevReqTBEX, 17000Sstevel@tonic-gate 4,&(lvalues[4163]),0}, 17010Sstevel@tonic-gate {"setct-CapRevResTBE","setct-CapRevResTBE",NID_setct_CapRevResTBE,4, 17020Sstevel@tonic-gate &(lvalues[4167]),0}, 17030Sstevel@tonic-gate {"setct-CredReqTBE","setct-CredReqTBE",NID_setct_CredReqTBE,4, 17040Sstevel@tonic-gate &(lvalues[4171]),0}, 17050Sstevel@tonic-gate {"setct-CredReqTBEX","setct-CredReqTBEX",NID_setct_CredReqTBEX,4, 17060Sstevel@tonic-gate &(lvalues[4175]),0}, 17070Sstevel@tonic-gate {"setct-CredResTBE","setct-CredResTBE",NID_setct_CredResTBE,4, 17080Sstevel@tonic-gate &(lvalues[4179]),0}, 17090Sstevel@tonic-gate {"setct-CredRevReqTBE","setct-CredRevReqTBE",NID_setct_CredRevReqTBE, 17100Sstevel@tonic-gate 4,&(lvalues[4183]),0}, 17110Sstevel@tonic-gate {"setct-CredRevReqTBEX","setct-CredRevReqTBEX", 17120Sstevel@tonic-gate NID_setct_CredRevReqTBEX,4,&(lvalues[4187]),0}, 17130Sstevel@tonic-gate {"setct-CredRevResTBE","setct-CredRevResTBE",NID_setct_CredRevResTBE, 17140Sstevel@tonic-gate 4,&(lvalues[4191]),0}, 17150Sstevel@tonic-gate {"setct-BatchAdminReqTBE","setct-BatchAdminReqTBE", 17160Sstevel@tonic-gate NID_setct_BatchAdminReqTBE,4,&(lvalues[4195]),0}, 17170Sstevel@tonic-gate {"setct-BatchAdminResTBE","setct-BatchAdminResTBE", 17180Sstevel@tonic-gate NID_setct_BatchAdminResTBE,4,&(lvalues[4199]),0}, 17190Sstevel@tonic-gate {"setct-RegFormReqTBE","setct-RegFormReqTBE",NID_setct_RegFormReqTBE, 17200Sstevel@tonic-gate 4,&(lvalues[4203]),0}, 17210Sstevel@tonic-gate {"setct-CertReqTBE","setct-CertReqTBE",NID_setct_CertReqTBE,4, 17220Sstevel@tonic-gate &(lvalues[4207]),0}, 17230Sstevel@tonic-gate {"setct-CertReqTBEX","setct-CertReqTBEX",NID_setct_CertReqTBEX,4, 17240Sstevel@tonic-gate &(lvalues[4211]),0}, 17250Sstevel@tonic-gate {"setct-CertResTBE","setct-CertResTBE",NID_setct_CertResTBE,4, 17260Sstevel@tonic-gate &(lvalues[4215]),0}, 17270Sstevel@tonic-gate {"setct-CRLNotificationTBS","setct-CRLNotificationTBS", 17280Sstevel@tonic-gate NID_setct_CRLNotificationTBS,4,&(lvalues[4219]),0}, 17290Sstevel@tonic-gate {"setct-CRLNotificationResTBS","setct-CRLNotificationResTBS", 17300Sstevel@tonic-gate NID_setct_CRLNotificationResTBS,4,&(lvalues[4223]),0}, 17310Sstevel@tonic-gate {"setct-BCIDistributionTBS","setct-BCIDistributionTBS", 17320Sstevel@tonic-gate NID_setct_BCIDistributionTBS,4,&(lvalues[4227]),0}, 17330Sstevel@tonic-gate {"setext-genCrypt","generic cryptogram",NID_setext_genCrypt,4, 17340Sstevel@tonic-gate &(lvalues[4231]),0}, 17350Sstevel@tonic-gate {"setext-miAuth","merchant initiated auth",NID_setext_miAuth,4, 17360Sstevel@tonic-gate &(lvalues[4235]),0}, 17370Sstevel@tonic-gate {"setext-pinSecure","setext-pinSecure",NID_setext_pinSecure,4, 17380Sstevel@tonic-gate &(lvalues[4239]),0}, 17390Sstevel@tonic-gate {"setext-pinAny","setext-pinAny",NID_setext_pinAny,4,&(lvalues[4243]),0}, 17400Sstevel@tonic-gate {"setext-track2","setext-track2",NID_setext_track2,4,&(lvalues[4247]),0}, 17410Sstevel@tonic-gate {"setext-cv","additional verification",NID_setext_cv,4, 17420Sstevel@tonic-gate &(lvalues[4251]),0}, 17430Sstevel@tonic-gate {"set-policy-root","set-policy-root",NID_set_policy_root,4, 17440Sstevel@tonic-gate &(lvalues[4255]),0}, 17450Sstevel@tonic-gate {"setCext-hashedRoot","setCext-hashedRoot",NID_setCext_hashedRoot,4, 17460Sstevel@tonic-gate &(lvalues[4259]),0}, 17470Sstevel@tonic-gate {"setCext-certType","setCext-certType",NID_setCext_certType,4, 17480Sstevel@tonic-gate &(lvalues[4263]),0}, 17490Sstevel@tonic-gate {"setCext-merchData","setCext-merchData",NID_setCext_merchData,4, 17500Sstevel@tonic-gate &(lvalues[4267]),0}, 17510Sstevel@tonic-gate {"setCext-cCertRequired","setCext-cCertRequired", 17520Sstevel@tonic-gate NID_setCext_cCertRequired,4,&(lvalues[4271]),0}, 17530Sstevel@tonic-gate {"setCext-tunneling","setCext-tunneling",NID_setCext_tunneling,4, 17540Sstevel@tonic-gate &(lvalues[4275]),0}, 17550Sstevel@tonic-gate {"setCext-setExt","setCext-setExt",NID_setCext_setExt,4, 17560Sstevel@tonic-gate &(lvalues[4279]),0}, 17570Sstevel@tonic-gate {"setCext-setQualf","setCext-setQualf",NID_setCext_setQualf,4, 17580Sstevel@tonic-gate &(lvalues[4283]),0}, 17590Sstevel@tonic-gate {"setCext-PGWYcapabilities","setCext-PGWYcapabilities", 17600Sstevel@tonic-gate NID_setCext_PGWYcapabilities,4,&(lvalues[4287]),0}, 17610Sstevel@tonic-gate {"setCext-TokenIdentifier","setCext-TokenIdentifier", 17620Sstevel@tonic-gate NID_setCext_TokenIdentifier,4,&(lvalues[4291]),0}, 17630Sstevel@tonic-gate {"setCext-Track2Data","setCext-Track2Data",NID_setCext_Track2Data,4, 17640Sstevel@tonic-gate &(lvalues[4295]),0}, 17650Sstevel@tonic-gate {"setCext-TokenType","setCext-TokenType",NID_setCext_TokenType,4, 17660Sstevel@tonic-gate &(lvalues[4299]),0}, 17670Sstevel@tonic-gate {"setCext-IssuerCapabilities","setCext-IssuerCapabilities", 17680Sstevel@tonic-gate NID_setCext_IssuerCapabilities,4,&(lvalues[4303]),0}, 17690Sstevel@tonic-gate {"setAttr-Cert","setAttr-Cert",NID_setAttr_Cert,4,&(lvalues[4307]),0}, 17700Sstevel@tonic-gate {"setAttr-PGWYcap","payment gateway capabilities",NID_setAttr_PGWYcap, 17710Sstevel@tonic-gate 4,&(lvalues[4311]),0}, 17720Sstevel@tonic-gate {"setAttr-TokenType","setAttr-TokenType",NID_setAttr_TokenType,4, 17730Sstevel@tonic-gate &(lvalues[4315]),0}, 17740Sstevel@tonic-gate {"setAttr-IssCap","issuer capabilities",NID_setAttr_IssCap,4, 17750Sstevel@tonic-gate &(lvalues[4319]),0}, 17760Sstevel@tonic-gate {"set-rootKeyThumb","set-rootKeyThumb",NID_set_rootKeyThumb,5, 17770Sstevel@tonic-gate &(lvalues[4323]),0}, 17780Sstevel@tonic-gate {"set-addPolicy","set-addPolicy",NID_set_addPolicy,5,&(lvalues[4328]),0}, 17790Sstevel@tonic-gate {"setAttr-Token-EMV","setAttr-Token-EMV",NID_setAttr_Token_EMV,5, 17800Sstevel@tonic-gate &(lvalues[4333]),0}, 17810Sstevel@tonic-gate {"setAttr-Token-B0Prime","setAttr-Token-B0Prime", 17820Sstevel@tonic-gate NID_setAttr_Token_B0Prime,5,&(lvalues[4338]),0}, 17830Sstevel@tonic-gate {"setAttr-IssCap-CVM","setAttr-IssCap-CVM",NID_setAttr_IssCap_CVM,5, 17840Sstevel@tonic-gate &(lvalues[4343]),0}, 17850Sstevel@tonic-gate {"setAttr-IssCap-T2","setAttr-IssCap-T2",NID_setAttr_IssCap_T2,5, 17860Sstevel@tonic-gate &(lvalues[4348]),0}, 17870Sstevel@tonic-gate {"setAttr-IssCap-Sig","setAttr-IssCap-Sig",NID_setAttr_IssCap_Sig,5, 17880Sstevel@tonic-gate &(lvalues[4353]),0}, 17890Sstevel@tonic-gate {"setAttr-GenCryptgrm","generate cryptogram",NID_setAttr_GenCryptgrm, 17900Sstevel@tonic-gate 6,&(lvalues[4358]),0}, 17910Sstevel@tonic-gate {"setAttr-T2Enc","encrypted track 2",NID_setAttr_T2Enc,6, 17920Sstevel@tonic-gate &(lvalues[4364]),0}, 17930Sstevel@tonic-gate {"setAttr-T2cleartxt","cleartext track 2",NID_setAttr_T2cleartxt,6, 17940Sstevel@tonic-gate &(lvalues[4370]),0}, 17950Sstevel@tonic-gate {"setAttr-TokICCsig","ICC or token signature",NID_setAttr_TokICCsig,6, 17960Sstevel@tonic-gate &(lvalues[4376]),0}, 17970Sstevel@tonic-gate {"setAttr-SecDevSig","secure device signature",NID_setAttr_SecDevSig, 17980Sstevel@tonic-gate 6,&(lvalues[4382]),0}, 17990Sstevel@tonic-gate {"set-brand-IATA-ATA","set-brand-IATA-ATA",NID_set_brand_IATA_ATA,4, 18000Sstevel@tonic-gate &(lvalues[4388]),0}, 18010Sstevel@tonic-gate {"set-brand-Diners","set-brand-Diners",NID_set_brand_Diners,4, 18020Sstevel@tonic-gate &(lvalues[4392]),0}, 18030Sstevel@tonic-gate {"set-brand-AmericanExpress","set-brand-AmericanExpress", 18040Sstevel@tonic-gate NID_set_brand_AmericanExpress,4,&(lvalues[4396]),0}, 18050Sstevel@tonic-gate {"set-brand-JCB","set-brand-JCB",NID_set_brand_JCB,4,&(lvalues[4400]),0}, 18060Sstevel@tonic-gate {"set-brand-Visa","set-brand-Visa",NID_set_brand_Visa,4, 18070Sstevel@tonic-gate &(lvalues[4404]),0}, 18080Sstevel@tonic-gate {"set-brand-MasterCard","set-brand-MasterCard", 18090Sstevel@tonic-gate NID_set_brand_MasterCard,4,&(lvalues[4408]),0}, 18100Sstevel@tonic-gate {"set-brand-Novus","set-brand-Novus",NID_set_brand_Novus,5, 18110Sstevel@tonic-gate &(lvalues[4412]),0}, 18120Sstevel@tonic-gate {"DES-CDMF","des-cdmf",NID_des_cdmf,8,&(lvalues[4417]),0}, 18130Sstevel@tonic-gate {"rsaOAEPEncryptionSET","rsaOAEPEncryptionSET", 18140Sstevel@tonic-gate NID_rsaOAEPEncryptionSET,9,&(lvalues[4425]),0}, 1815*2139Sjp161948 {"ITU-T","itu-t",NID_itu_t,1,&(lvalues[4434]),0}, 1816*2139Sjp161948 {"JOINT-ISO-ITU-T","joint-iso-itu-t",NID_joint_iso_itu_t,1, 1817*2139Sjp161948 &(lvalues[4435]),0}, 1818*2139Sjp161948 {"international-organizations","International Organizations", 1819*2139Sjp161948 NID_international_organizations,1,&(lvalues[4436]),0}, 18200Sstevel@tonic-gate {"msSmartcardLogin","Microsoft Smartcardlogin",NID_ms_smartcard_login, 1821*2139Sjp161948 10,&(lvalues[4437]),0}, 18220Sstevel@tonic-gate {"msUPN","Microsoft Universal Principal Name",NID_ms_upn,10, 1823*2139Sjp161948 &(lvalues[4447]),0}, 1824*2139Sjp161948 {"AES-128-CFB1","aes-128-cfb1",NID_aes_128_cfb1,0,NULL,0}, 1825*2139Sjp161948 {"AES-192-CFB1","aes-192-cfb1",NID_aes_192_cfb1,0,NULL,0}, 1826*2139Sjp161948 {"AES-256-CFB1","aes-256-cfb1",NID_aes_256_cfb1,0,NULL,0}, 1827*2139Sjp161948 {"AES-128-CFB8","aes-128-cfb8",NID_aes_128_cfb8,0,NULL,0}, 1828*2139Sjp161948 {"AES-192-CFB8","aes-192-cfb8",NID_aes_192_cfb8,0,NULL,0}, 1829*2139Sjp161948 {"AES-256-CFB8","aes-256-cfb8",NID_aes_256_cfb8,0,NULL,0}, 1830*2139Sjp161948 {"DES-CFB1","des-cfb1",NID_des_cfb1,0,NULL,0}, 1831*2139Sjp161948 {"DES-CFB8","des-cfb8",NID_des_cfb8,0,NULL,0}, 1832*2139Sjp161948 {"DES-EDE3-CFB1","des-ede3-cfb1",NID_des_ede3_cfb1,0,NULL,0}, 1833*2139Sjp161948 {"DES-EDE3-CFB8","des-ede3-cfb8",NID_des_ede3_cfb8,0,NULL,0}, 1834*2139Sjp161948 {"streetAddress","streetAddress",NID_streetAddress,3,&(lvalues[4457]),0}, 1835*2139Sjp161948 {"postalCode","postalCode",NID_postalCode,3,&(lvalues[4460]),0}, 1836*2139Sjp161948 {"id-ppl","id-ppl",NID_id_ppl,7,&(lvalues[4463]),0}, 1837*2139Sjp161948 {"proxyCertInfo","Proxy Certificate Information",NID_proxyCertInfo,8, 1838*2139Sjp161948 &(lvalues[4470]),0}, 1839*2139Sjp161948 {"id-ppl-anyLanguage","Any language",NID_id_ppl_anyLanguage,8, 1840*2139Sjp161948 &(lvalues[4478]),0}, 1841*2139Sjp161948 {"id-ppl-inheritAll","Inherit all",NID_id_ppl_inheritAll,8, 1842*2139Sjp161948 &(lvalues[4486]),0}, 1843*2139Sjp161948 {"nameConstraints","X509v3 Name Constraints",NID_name_constraints,3, 1844*2139Sjp161948 &(lvalues[4494]),0}, 1845*2139Sjp161948 {"id-ppl-independent","Independent",NID_Independent,8,&(lvalues[4497]),0}, 1846*2139Sjp161948 {"RSA-SHA256","sha256WithRSAEncryption",NID_sha256WithRSAEncryption,9, 1847*2139Sjp161948 &(lvalues[4505]),0}, 1848*2139Sjp161948 {"RSA-SHA384","sha384WithRSAEncryption",NID_sha384WithRSAEncryption,9, 1849*2139Sjp161948 &(lvalues[4514]),0}, 1850*2139Sjp161948 {"RSA-SHA512","sha512WithRSAEncryption",NID_sha512WithRSAEncryption,9, 1851*2139Sjp161948 &(lvalues[4523]),0}, 1852*2139Sjp161948 {"RSA-SHA224","sha224WithRSAEncryption",NID_sha224WithRSAEncryption,9, 1853*2139Sjp161948 &(lvalues[4532]),0}, 1854*2139Sjp161948 {"SHA256","sha256",NID_sha256,9,&(lvalues[4541]),0}, 1855*2139Sjp161948 {"SHA384","sha384",NID_sha384,9,&(lvalues[4550]),0}, 1856*2139Sjp161948 {"SHA512","sha512",NID_sha512,9,&(lvalues[4559]),0}, 1857*2139Sjp161948 {"SHA224","sha224",NID_sha224,9,&(lvalues[4568]),0}, 1858*2139Sjp161948 {"identified-organization","identified-organization", 1859*2139Sjp161948 NID_identified_organization,1,&(lvalues[4577]),0}, 1860*2139Sjp161948 {"certicom-arc","certicom-arc",NID_certicom_arc,3,&(lvalues[4578]),0}, 1861*2139Sjp161948 {"wap","wap",NID_wap,2,&(lvalues[4581]),0}, 1862*2139Sjp161948 {"wap-wsg","wap-wsg",NID_wap_wsg,3,&(lvalues[4583]),0}, 1863*2139Sjp161948 {"id-characteristic-two-basis","id-characteristic-two-basis", 1864*2139Sjp161948 NID_X9_62_id_characteristic_two_basis,8,&(lvalues[4586]),0}, 1865*2139Sjp161948 {"onBasis","onBasis",NID_X9_62_onBasis,9,&(lvalues[4594]),0}, 1866*2139Sjp161948 {"tpBasis","tpBasis",NID_X9_62_tpBasis,9,&(lvalues[4603]),0}, 1867*2139Sjp161948 {"ppBasis","ppBasis",NID_X9_62_ppBasis,9,&(lvalues[4612]),0}, 1868*2139Sjp161948 {"c2pnb163v1","c2pnb163v1",NID_X9_62_c2pnb163v1,8,&(lvalues[4621]),0}, 1869*2139Sjp161948 {"c2pnb163v2","c2pnb163v2",NID_X9_62_c2pnb163v2,8,&(lvalues[4629]),0}, 1870*2139Sjp161948 {"c2pnb163v3","c2pnb163v3",NID_X9_62_c2pnb163v3,8,&(lvalues[4637]),0}, 1871*2139Sjp161948 {"c2pnb176v1","c2pnb176v1",NID_X9_62_c2pnb176v1,8,&(lvalues[4645]),0}, 1872*2139Sjp161948 {"c2tnb191v1","c2tnb191v1",NID_X9_62_c2tnb191v1,8,&(lvalues[4653]),0}, 1873*2139Sjp161948 {"c2tnb191v2","c2tnb191v2",NID_X9_62_c2tnb191v2,8,&(lvalues[4661]),0}, 1874*2139Sjp161948 {"c2tnb191v3","c2tnb191v3",NID_X9_62_c2tnb191v3,8,&(lvalues[4669]),0}, 1875*2139Sjp161948 {"c2onb191v4","c2onb191v4",NID_X9_62_c2onb191v4,8,&(lvalues[4677]),0}, 1876*2139Sjp161948 {"c2onb191v5","c2onb191v5",NID_X9_62_c2onb191v5,8,&(lvalues[4685]),0}, 1877*2139Sjp161948 {"c2pnb208w1","c2pnb208w1",NID_X9_62_c2pnb208w1,8,&(lvalues[4693]),0}, 1878*2139Sjp161948 {"c2tnb239v1","c2tnb239v1",NID_X9_62_c2tnb239v1,8,&(lvalues[4701]),0}, 1879*2139Sjp161948 {"c2tnb239v2","c2tnb239v2",NID_X9_62_c2tnb239v2,8,&(lvalues[4709]),0}, 1880*2139Sjp161948 {"c2tnb239v3","c2tnb239v3",NID_X9_62_c2tnb239v3,8,&(lvalues[4717]),0}, 1881*2139Sjp161948 {"c2onb239v4","c2onb239v4",NID_X9_62_c2onb239v4,8,&(lvalues[4725]),0}, 1882*2139Sjp161948 {"c2onb239v5","c2onb239v5",NID_X9_62_c2onb239v5,8,&(lvalues[4733]),0}, 1883*2139Sjp161948 {"c2pnb272w1","c2pnb272w1",NID_X9_62_c2pnb272w1,8,&(lvalues[4741]),0}, 1884*2139Sjp161948 {"c2pnb304w1","c2pnb304w1",NID_X9_62_c2pnb304w1,8,&(lvalues[4749]),0}, 1885*2139Sjp161948 {"c2tnb359v1","c2tnb359v1",NID_X9_62_c2tnb359v1,8,&(lvalues[4757]),0}, 1886*2139Sjp161948 {"c2pnb368w1","c2pnb368w1",NID_X9_62_c2pnb368w1,8,&(lvalues[4765]),0}, 1887*2139Sjp161948 {"c2tnb431r1","c2tnb431r1",NID_X9_62_c2tnb431r1,8,&(lvalues[4773]),0}, 1888*2139Sjp161948 {"secp112r1","secp112r1",NID_secp112r1,5,&(lvalues[4781]),0}, 1889*2139Sjp161948 {"secp112r2","secp112r2",NID_secp112r2,5,&(lvalues[4786]),0}, 1890*2139Sjp161948 {"secp128r1","secp128r1",NID_secp128r1,5,&(lvalues[4791]),0}, 1891*2139Sjp161948 {"secp128r2","secp128r2",NID_secp128r2,5,&(lvalues[4796]),0}, 1892*2139Sjp161948 {"secp160k1","secp160k1",NID_secp160k1,5,&(lvalues[4801]),0}, 1893*2139Sjp161948 {"secp160r1","secp160r1",NID_secp160r1,5,&(lvalues[4806]),0}, 1894*2139Sjp161948 {"secp160r2","secp160r2",NID_secp160r2,5,&(lvalues[4811]),0}, 1895*2139Sjp161948 {"secp192k1","secp192k1",NID_secp192k1,5,&(lvalues[4816]),0}, 1896*2139Sjp161948 {"secp224k1","secp224k1",NID_secp224k1,5,&(lvalues[4821]),0}, 1897*2139Sjp161948 {"secp224r1","secp224r1",NID_secp224r1,5,&(lvalues[4826]),0}, 1898*2139Sjp161948 {"secp256k1","secp256k1",NID_secp256k1,5,&(lvalues[4831]),0}, 1899*2139Sjp161948 {"secp384r1","secp384r1",NID_secp384r1,5,&(lvalues[4836]),0}, 1900*2139Sjp161948 {"secp521r1","secp521r1",NID_secp521r1,5,&(lvalues[4841]),0}, 1901*2139Sjp161948 {"sect113r1","sect113r1",NID_sect113r1,5,&(lvalues[4846]),0}, 1902*2139Sjp161948 {"sect113r2","sect113r2",NID_sect113r2,5,&(lvalues[4851]),0}, 1903*2139Sjp161948 {"sect131r1","sect131r1",NID_sect131r1,5,&(lvalues[4856]),0}, 1904*2139Sjp161948 {"sect131r2","sect131r2",NID_sect131r2,5,&(lvalues[4861]),0}, 1905*2139Sjp161948 {"sect163k1","sect163k1",NID_sect163k1,5,&(lvalues[4866]),0}, 1906*2139Sjp161948 {"sect163r1","sect163r1",NID_sect163r1,5,&(lvalues[4871]),0}, 1907*2139Sjp161948 {"sect163r2","sect163r2",NID_sect163r2,5,&(lvalues[4876]),0}, 1908*2139Sjp161948 {"sect193r1","sect193r1",NID_sect193r1,5,&(lvalues[4881]),0}, 1909*2139Sjp161948 {"sect193r2","sect193r2",NID_sect193r2,5,&(lvalues[4886]),0}, 1910*2139Sjp161948 {"sect233k1","sect233k1",NID_sect233k1,5,&(lvalues[4891]),0}, 1911*2139Sjp161948 {"sect233r1","sect233r1",NID_sect233r1,5,&(lvalues[4896]),0}, 1912*2139Sjp161948 {"sect239k1","sect239k1",NID_sect239k1,5,&(lvalues[4901]),0}, 1913*2139Sjp161948 {"sect283k1","sect283k1",NID_sect283k1,5,&(lvalues[4906]),0}, 1914*2139Sjp161948 {"sect283r1","sect283r1",NID_sect283r1,5,&(lvalues[4911]),0}, 1915*2139Sjp161948 {"sect409k1","sect409k1",NID_sect409k1,5,&(lvalues[4916]),0}, 1916*2139Sjp161948 {"sect409r1","sect409r1",NID_sect409r1,5,&(lvalues[4921]),0}, 1917*2139Sjp161948 {"sect571k1","sect571k1",NID_sect571k1,5,&(lvalues[4926]),0}, 1918*2139Sjp161948 {"sect571r1","sect571r1",NID_sect571r1,5,&(lvalues[4931]),0}, 1919*2139Sjp161948 {"wap-wsg-idm-ecid-wtls1","wap-wsg-idm-ecid-wtls1", 1920*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls1,5,&(lvalues[4936]),0}, 1921*2139Sjp161948 {"wap-wsg-idm-ecid-wtls3","wap-wsg-idm-ecid-wtls3", 1922*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls3,5,&(lvalues[4941]),0}, 1923*2139Sjp161948 {"wap-wsg-idm-ecid-wtls4","wap-wsg-idm-ecid-wtls4", 1924*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls4,5,&(lvalues[4946]),0}, 1925*2139Sjp161948 {"wap-wsg-idm-ecid-wtls5","wap-wsg-idm-ecid-wtls5", 1926*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls5,5,&(lvalues[4951]),0}, 1927*2139Sjp161948 {"wap-wsg-idm-ecid-wtls6","wap-wsg-idm-ecid-wtls6", 1928*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls6,5,&(lvalues[4956]),0}, 1929*2139Sjp161948 {"wap-wsg-idm-ecid-wtls7","wap-wsg-idm-ecid-wtls7", 1930*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls7,5,&(lvalues[4961]),0}, 1931*2139Sjp161948 {"wap-wsg-idm-ecid-wtls8","wap-wsg-idm-ecid-wtls8", 1932*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls8,5,&(lvalues[4966]),0}, 1933*2139Sjp161948 {"wap-wsg-idm-ecid-wtls9","wap-wsg-idm-ecid-wtls9", 1934*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls9,5,&(lvalues[4971]),0}, 1935*2139Sjp161948 {"wap-wsg-idm-ecid-wtls10","wap-wsg-idm-ecid-wtls10", 1936*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls10,5,&(lvalues[4976]),0}, 1937*2139Sjp161948 {"wap-wsg-idm-ecid-wtls11","wap-wsg-idm-ecid-wtls11", 1938*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls11,5,&(lvalues[4981]),0}, 1939*2139Sjp161948 {"wap-wsg-idm-ecid-wtls12","wap-wsg-idm-ecid-wtls12", 1940*2139Sjp161948 NID_wap_wsg_idm_ecid_wtls12,5,&(lvalues[4986]),0}, 1941*2139Sjp161948 {"anyPolicy","X509v3 Any Policy",NID_any_policy,4,&(lvalues[4991]),0}, 1942*2139Sjp161948 {"policyMappings","X509v3 Policy Mappings",NID_policy_mappings,3, 1943*2139Sjp161948 &(lvalues[4995]),0}, 1944*2139Sjp161948 {"inhibitAnyPolicy","X509v3 Inhibit Any Policy", 1945*2139Sjp161948 NID_inhibit_any_policy,3,&(lvalues[4998]),0}, 1946*2139Sjp161948 {"Oakley-EC2N-3","ipsec3",NID_ipsec3,0,NULL,0}, 1947*2139Sjp161948 {"Oakley-EC2N-4","ipsec4",NID_ipsec4,0,NULL,0}, 19480Sstevel@tonic-gate }; 19490Sstevel@tonic-gate 19500Sstevel@tonic-gate static ASN1_OBJECT *sn_objs[NUM_SN]={ 19510Sstevel@tonic-gate &(nid_objs[364]),/* "AD_DVCS" */ 19520Sstevel@tonic-gate &(nid_objs[419]),/* "AES-128-CBC" */ 19530Sstevel@tonic-gate &(nid_objs[421]),/* "AES-128-CFB" */ 1954*2139Sjp161948 &(nid_objs[650]),/* "AES-128-CFB1" */ 1955*2139Sjp161948 &(nid_objs[653]),/* "AES-128-CFB8" */ 19560Sstevel@tonic-gate &(nid_objs[418]),/* "AES-128-ECB" */ 19570Sstevel@tonic-gate &(nid_objs[420]),/* "AES-128-OFB" */ 19580Sstevel@tonic-gate &(nid_objs[423]),/* "AES-192-CBC" */ 19590Sstevel@tonic-gate &(nid_objs[425]),/* "AES-192-CFB" */ 1960*2139Sjp161948 &(nid_objs[651]),/* "AES-192-CFB1" */ 1961*2139Sjp161948 &(nid_objs[654]),/* "AES-192-CFB8" */ 19620Sstevel@tonic-gate &(nid_objs[422]),/* "AES-192-ECB" */ 19630Sstevel@tonic-gate &(nid_objs[424]),/* "AES-192-OFB" */ 19640Sstevel@tonic-gate &(nid_objs[427]),/* "AES-256-CBC" */ 19650Sstevel@tonic-gate &(nid_objs[429]),/* "AES-256-CFB" */ 1966*2139Sjp161948 &(nid_objs[652]),/* "AES-256-CFB1" */ 1967*2139Sjp161948 &(nid_objs[655]),/* "AES-256-CFB8" */ 19680Sstevel@tonic-gate &(nid_objs[426]),/* "AES-256-ECB" */ 19690Sstevel@tonic-gate &(nid_objs[428]),/* "AES-256-OFB" */ 19700Sstevel@tonic-gate &(nid_objs[91]),/* "BF-CBC" */ 19710Sstevel@tonic-gate &(nid_objs[93]),/* "BF-CFB" */ 19720Sstevel@tonic-gate &(nid_objs[92]),/* "BF-ECB" */ 19730Sstevel@tonic-gate &(nid_objs[94]),/* "BF-OFB" */ 19740Sstevel@tonic-gate &(nid_objs[14]),/* "C" */ 19750Sstevel@tonic-gate &(nid_objs[108]),/* "CAST5-CBC" */ 19760Sstevel@tonic-gate &(nid_objs[110]),/* "CAST5-CFB" */ 19770Sstevel@tonic-gate &(nid_objs[109]),/* "CAST5-ECB" */ 19780Sstevel@tonic-gate &(nid_objs[111]),/* "CAST5-OFB" */ 19790Sstevel@tonic-gate &(nid_objs[13]),/* "CN" */ 19800Sstevel@tonic-gate &(nid_objs[141]),/* "CRLReason" */ 19810Sstevel@tonic-gate &(nid_objs[417]),/* "CSPName" */ 19820Sstevel@tonic-gate &(nid_objs[367]),/* "CrlID" */ 19830Sstevel@tonic-gate &(nid_objs[391]),/* "DC" */ 19840Sstevel@tonic-gate &(nid_objs[31]),/* "DES-CBC" */ 19850Sstevel@tonic-gate &(nid_objs[643]),/* "DES-CDMF" */ 19860Sstevel@tonic-gate &(nid_objs[30]),/* "DES-CFB" */ 1987*2139Sjp161948 &(nid_objs[656]),/* "DES-CFB1" */ 1988*2139Sjp161948 &(nid_objs[657]),/* "DES-CFB8" */ 19890Sstevel@tonic-gate &(nid_objs[29]),/* "DES-ECB" */ 19900Sstevel@tonic-gate &(nid_objs[32]),/* "DES-EDE" */ 19910Sstevel@tonic-gate &(nid_objs[43]),/* "DES-EDE-CBC" */ 19920Sstevel@tonic-gate &(nid_objs[60]),/* "DES-EDE-CFB" */ 19930Sstevel@tonic-gate &(nid_objs[62]),/* "DES-EDE-OFB" */ 19940Sstevel@tonic-gate &(nid_objs[33]),/* "DES-EDE3" */ 19950Sstevel@tonic-gate &(nid_objs[44]),/* "DES-EDE3-CBC" */ 19960Sstevel@tonic-gate &(nid_objs[61]),/* "DES-EDE3-CFB" */ 1997*2139Sjp161948 &(nid_objs[658]),/* "DES-EDE3-CFB1" */ 1998*2139Sjp161948 &(nid_objs[659]),/* "DES-EDE3-CFB8" */ 19990Sstevel@tonic-gate &(nid_objs[63]),/* "DES-EDE3-OFB" */ 20000Sstevel@tonic-gate &(nid_objs[45]),/* "DES-OFB" */ 20010Sstevel@tonic-gate &(nid_objs[80]),/* "DESX-CBC" */ 20020Sstevel@tonic-gate &(nid_objs[380]),/* "DOD" */ 20030Sstevel@tonic-gate &(nid_objs[116]),/* "DSA" */ 20040Sstevel@tonic-gate &(nid_objs[66]),/* "DSA-SHA" */ 20050Sstevel@tonic-gate &(nid_objs[113]),/* "DSA-SHA1" */ 20060Sstevel@tonic-gate &(nid_objs[70]),/* "DSA-SHA1-old" */ 20070Sstevel@tonic-gate &(nid_objs[67]),/* "DSA-old" */ 20080Sstevel@tonic-gate &(nid_objs[297]),/* "DVCS" */ 20090Sstevel@tonic-gate &(nid_objs[99]),/* "GN" */ 20100Sstevel@tonic-gate &(nid_objs[381]),/* "IANA" */ 20110Sstevel@tonic-gate &(nid_objs[34]),/* "IDEA-CBC" */ 20120Sstevel@tonic-gate &(nid_objs[35]),/* "IDEA-CFB" */ 20130Sstevel@tonic-gate &(nid_objs[36]),/* "IDEA-ECB" */ 20140Sstevel@tonic-gate &(nid_objs[46]),/* "IDEA-OFB" */ 20150Sstevel@tonic-gate &(nid_objs[181]),/* "ISO" */ 20160Sstevel@tonic-gate &(nid_objs[183]),/* "ISO-US" */ 2017*2139Sjp161948 &(nid_objs[645]),/* "ITU-T" */ 2018*2139Sjp161948 &(nid_objs[646]),/* "JOINT-ISO-ITU-T" */ 20190Sstevel@tonic-gate &(nid_objs[15]),/* "L" */ 20200Sstevel@tonic-gate &(nid_objs[ 3]),/* "MD2" */ 20210Sstevel@tonic-gate &(nid_objs[257]),/* "MD4" */ 20220Sstevel@tonic-gate &(nid_objs[ 4]),/* "MD5" */ 20230Sstevel@tonic-gate &(nid_objs[114]),/* "MD5-SHA1" */ 20240Sstevel@tonic-gate &(nid_objs[95]),/* "MDC2" */ 20250Sstevel@tonic-gate &(nid_objs[388]),/* "Mail" */ 2026*2139Sjp161948 &(nid_objs[393]),/* "NULL" */ 2027*2139Sjp161948 &(nid_objs[404]),/* "NULL" */ 20280Sstevel@tonic-gate &(nid_objs[57]),/* "Netscape" */ 20290Sstevel@tonic-gate &(nid_objs[366]),/* "Nonce" */ 20300Sstevel@tonic-gate &(nid_objs[17]),/* "O" */ 20310Sstevel@tonic-gate &(nid_objs[178]),/* "OCSP" */ 20320Sstevel@tonic-gate &(nid_objs[180]),/* "OCSPSigning" */ 20330Sstevel@tonic-gate &(nid_objs[379]),/* "ORG" */ 20340Sstevel@tonic-gate &(nid_objs[18]),/* "OU" */ 2035*2139Sjp161948 &(nid_objs[749]),/* "Oakley-EC2N-3" */ 2036*2139Sjp161948 &(nid_objs[750]),/* "Oakley-EC2N-4" */ 20370Sstevel@tonic-gate &(nid_objs[ 9]),/* "PBE-MD2-DES" */ 20380Sstevel@tonic-gate &(nid_objs[168]),/* "PBE-MD2-RC2-64" */ 20390Sstevel@tonic-gate &(nid_objs[10]),/* "PBE-MD5-DES" */ 20400Sstevel@tonic-gate &(nid_objs[169]),/* "PBE-MD5-RC2-64" */ 20410Sstevel@tonic-gate &(nid_objs[147]),/* "PBE-SHA1-2DES" */ 20420Sstevel@tonic-gate &(nid_objs[146]),/* "PBE-SHA1-3DES" */ 20430Sstevel@tonic-gate &(nid_objs[170]),/* "PBE-SHA1-DES" */ 20440Sstevel@tonic-gate &(nid_objs[148]),/* "PBE-SHA1-RC2-128" */ 20450Sstevel@tonic-gate &(nid_objs[149]),/* "PBE-SHA1-RC2-40" */ 20460Sstevel@tonic-gate &(nid_objs[68]),/* "PBE-SHA1-RC2-64" */ 20470Sstevel@tonic-gate &(nid_objs[144]),/* "PBE-SHA1-RC4-128" */ 20480Sstevel@tonic-gate &(nid_objs[145]),/* "PBE-SHA1-RC4-40" */ 20490Sstevel@tonic-gate &(nid_objs[161]),/* "PBES2" */ 20500Sstevel@tonic-gate &(nid_objs[69]),/* "PBKDF2" */ 20510Sstevel@tonic-gate &(nid_objs[162]),/* "PBMAC1" */ 20520Sstevel@tonic-gate &(nid_objs[127]),/* "PKIX" */ 20530Sstevel@tonic-gate &(nid_objs[98]),/* "RC2-40-CBC" */ 20540Sstevel@tonic-gate &(nid_objs[166]),/* "RC2-64-CBC" */ 20550Sstevel@tonic-gate &(nid_objs[37]),/* "RC2-CBC" */ 20560Sstevel@tonic-gate &(nid_objs[39]),/* "RC2-CFB" */ 20570Sstevel@tonic-gate &(nid_objs[38]),/* "RC2-ECB" */ 20580Sstevel@tonic-gate &(nid_objs[40]),/* "RC2-OFB" */ 20590Sstevel@tonic-gate &(nid_objs[ 5]),/* "RC4" */ 20600Sstevel@tonic-gate &(nid_objs[97]),/* "RC4-40" */ 20610Sstevel@tonic-gate &(nid_objs[120]),/* "RC5-CBC" */ 20620Sstevel@tonic-gate &(nid_objs[122]),/* "RC5-CFB" */ 20630Sstevel@tonic-gate &(nid_objs[121]),/* "RC5-ECB" */ 20640Sstevel@tonic-gate &(nid_objs[123]),/* "RC5-OFB" */ 20650Sstevel@tonic-gate &(nid_objs[117]),/* "RIPEMD160" */ 20660Sstevel@tonic-gate &(nid_objs[124]),/* "RLE" */ 20670Sstevel@tonic-gate &(nid_objs[19]),/* "RSA" */ 20680Sstevel@tonic-gate &(nid_objs[ 7]),/* "RSA-MD2" */ 20690Sstevel@tonic-gate &(nid_objs[396]),/* "RSA-MD4" */ 20700Sstevel@tonic-gate &(nid_objs[ 8]),/* "RSA-MD5" */ 20710Sstevel@tonic-gate &(nid_objs[96]),/* "RSA-MDC2" */ 20720Sstevel@tonic-gate &(nid_objs[104]),/* "RSA-NP-MD5" */ 20730Sstevel@tonic-gate &(nid_objs[119]),/* "RSA-RIPEMD160" */ 20740Sstevel@tonic-gate &(nid_objs[42]),/* "RSA-SHA" */ 20750Sstevel@tonic-gate &(nid_objs[65]),/* "RSA-SHA1" */ 20760Sstevel@tonic-gate &(nid_objs[115]),/* "RSA-SHA1-2" */ 2077*2139Sjp161948 &(nid_objs[671]),/* "RSA-SHA224" */ 2078*2139Sjp161948 &(nid_objs[668]),/* "RSA-SHA256" */ 2079*2139Sjp161948 &(nid_objs[669]),/* "RSA-SHA384" */ 2080*2139Sjp161948 &(nid_objs[670]),/* "RSA-SHA512" */ 20810Sstevel@tonic-gate &(nid_objs[41]),/* "SHA" */ 20820Sstevel@tonic-gate &(nid_objs[64]),/* "SHA1" */ 2083*2139Sjp161948 &(nid_objs[675]),/* "SHA224" */ 2084*2139Sjp161948 &(nid_objs[672]),/* "SHA256" */ 2085*2139Sjp161948 &(nid_objs[673]),/* "SHA384" */ 2086*2139Sjp161948 &(nid_objs[674]),/* "SHA512" */ 20870Sstevel@tonic-gate &(nid_objs[188]),/* "SMIME" */ 20880Sstevel@tonic-gate &(nid_objs[167]),/* "SMIME-CAPS" */ 20890Sstevel@tonic-gate &(nid_objs[100]),/* "SN" */ 20900Sstevel@tonic-gate &(nid_objs[16]),/* "ST" */ 20910Sstevel@tonic-gate &(nid_objs[143]),/* "SXNetID" */ 20920Sstevel@tonic-gate &(nid_objs[458]),/* "UID" */ 20930Sstevel@tonic-gate &(nid_objs[ 0]),/* "UNDEF" */ 20940Sstevel@tonic-gate &(nid_objs[11]),/* "X500" */ 20950Sstevel@tonic-gate &(nid_objs[378]),/* "X500algorithms" */ 20960Sstevel@tonic-gate &(nid_objs[12]),/* "X509" */ 20970Sstevel@tonic-gate &(nid_objs[184]),/* "X9-57" */ 20980Sstevel@tonic-gate &(nid_objs[185]),/* "X9cm" */ 20990Sstevel@tonic-gate &(nid_objs[125]),/* "ZLIB" */ 21000Sstevel@tonic-gate &(nid_objs[478]),/* "aRecord" */ 21010Sstevel@tonic-gate &(nid_objs[289]),/* "aaControls" */ 21020Sstevel@tonic-gate &(nid_objs[287]),/* "ac-auditEntity" */ 21030Sstevel@tonic-gate &(nid_objs[397]),/* "ac-proxying" */ 21040Sstevel@tonic-gate &(nid_objs[288]),/* "ac-targeting" */ 21050Sstevel@tonic-gate &(nid_objs[368]),/* "acceptableResponses" */ 21060Sstevel@tonic-gate &(nid_objs[446]),/* "account" */ 21070Sstevel@tonic-gate &(nid_objs[363]),/* "ad_timestamping" */ 21080Sstevel@tonic-gate &(nid_objs[376]),/* "algorithm" */ 21090Sstevel@tonic-gate &(nid_objs[405]),/* "ansi-X9-62" */ 2110*2139Sjp161948 &(nid_objs[746]),/* "anyPolicy" */ 21110Sstevel@tonic-gate &(nid_objs[370]),/* "archiveCutoff" */ 21120Sstevel@tonic-gate &(nid_objs[484]),/* "associatedDomain" */ 21130Sstevel@tonic-gate &(nid_objs[485]),/* "associatedName" */ 21140Sstevel@tonic-gate &(nid_objs[501]),/* "audio" */ 21150Sstevel@tonic-gate &(nid_objs[177]),/* "authorityInfoAccess" */ 21160Sstevel@tonic-gate &(nid_objs[90]),/* "authorityKeyIdentifier" */ 21170Sstevel@tonic-gate &(nid_objs[87]),/* "basicConstraints" */ 21180Sstevel@tonic-gate &(nid_objs[365]),/* "basicOCSPResponse" */ 21190Sstevel@tonic-gate &(nid_objs[285]),/* "biometricInfo" */ 21200Sstevel@tonic-gate &(nid_objs[494]),/* "buildingName" */ 2121*2139Sjp161948 &(nid_objs[691]),/* "c2onb191v4" */ 2122*2139Sjp161948 &(nid_objs[692]),/* "c2onb191v5" */ 2123*2139Sjp161948 &(nid_objs[697]),/* "c2onb239v4" */ 2124*2139Sjp161948 &(nid_objs[698]),/* "c2onb239v5" */ 2125*2139Sjp161948 &(nid_objs[684]),/* "c2pnb163v1" */ 2126*2139Sjp161948 &(nid_objs[685]),/* "c2pnb163v2" */ 2127*2139Sjp161948 &(nid_objs[686]),/* "c2pnb163v3" */ 2128*2139Sjp161948 &(nid_objs[687]),/* "c2pnb176v1" */ 2129*2139Sjp161948 &(nid_objs[693]),/* "c2pnb208w1" */ 2130*2139Sjp161948 &(nid_objs[699]),/* "c2pnb272w1" */ 2131*2139Sjp161948 &(nid_objs[700]),/* "c2pnb304w1" */ 2132*2139Sjp161948 &(nid_objs[702]),/* "c2pnb368w1" */ 2133*2139Sjp161948 &(nid_objs[688]),/* "c2tnb191v1" */ 2134*2139Sjp161948 &(nid_objs[689]),/* "c2tnb191v2" */ 2135*2139Sjp161948 &(nid_objs[690]),/* "c2tnb191v3" */ 2136*2139Sjp161948 &(nid_objs[694]),/* "c2tnb239v1" */ 2137*2139Sjp161948 &(nid_objs[695]),/* "c2tnb239v2" */ 2138*2139Sjp161948 &(nid_objs[696]),/* "c2tnb239v3" */ 2139*2139Sjp161948 &(nid_objs[701]),/* "c2tnb359v1" */ 2140*2139Sjp161948 &(nid_objs[703]),/* "c2tnb431r1" */ 21410Sstevel@tonic-gate &(nid_objs[483]),/* "cNAMERecord" */ 21420Sstevel@tonic-gate &(nid_objs[179]),/* "caIssuers" */ 21430Sstevel@tonic-gate &(nid_objs[443]),/* "caseIgnoreIA5StringSyntax" */ 21440Sstevel@tonic-gate &(nid_objs[152]),/* "certBag" */ 2145*2139Sjp161948 &(nid_objs[677]),/* "certicom-arc" */ 21460Sstevel@tonic-gate &(nid_objs[89]),/* "certificatePolicies" */ 21470Sstevel@tonic-gate &(nid_objs[54]),/* "challengePassword" */ 21480Sstevel@tonic-gate &(nid_objs[407]),/* "characteristic-two-field" */ 21490Sstevel@tonic-gate &(nid_objs[395]),/* "clearance" */ 21500Sstevel@tonic-gate &(nid_objs[130]),/* "clientAuth" */ 21510Sstevel@tonic-gate &(nid_objs[131]),/* "codeSigning" */ 21520Sstevel@tonic-gate &(nid_objs[50]),/* "contentType" */ 21530Sstevel@tonic-gate &(nid_objs[53]),/* "countersignature" */ 21540Sstevel@tonic-gate &(nid_objs[153]),/* "crlBag" */ 21550Sstevel@tonic-gate &(nid_objs[103]),/* "crlDistributionPoints" */ 21560Sstevel@tonic-gate &(nid_objs[88]),/* "crlNumber" */ 21570Sstevel@tonic-gate &(nid_objs[500]),/* "dITRedirect" */ 21580Sstevel@tonic-gate &(nid_objs[451]),/* "dNSDomain" */ 21590Sstevel@tonic-gate &(nid_objs[495]),/* "dSAQuality" */ 21600Sstevel@tonic-gate &(nid_objs[434]),/* "data" */ 21610Sstevel@tonic-gate &(nid_objs[390]),/* "dcobject" */ 21620Sstevel@tonic-gate &(nid_objs[140]),/* "deltaCRL" */ 21630Sstevel@tonic-gate &(nid_objs[107]),/* "description" */ 21640Sstevel@tonic-gate &(nid_objs[28]),/* "dhKeyAgreement" */ 21650Sstevel@tonic-gate &(nid_objs[382]),/* "directory" */ 21660Sstevel@tonic-gate &(nid_objs[174]),/* "dnQualifier" */ 21670Sstevel@tonic-gate &(nid_objs[447]),/* "document" */ 21680Sstevel@tonic-gate &(nid_objs[471]),/* "documentAuthor" */ 21690Sstevel@tonic-gate &(nid_objs[468]),/* "documentIdentifier" */ 21700Sstevel@tonic-gate &(nid_objs[472]),/* "documentLocation" */ 21710Sstevel@tonic-gate &(nid_objs[502]),/* "documentPublisher" */ 21720Sstevel@tonic-gate &(nid_objs[449]),/* "documentSeries" */ 21730Sstevel@tonic-gate &(nid_objs[469]),/* "documentTitle" */ 21740Sstevel@tonic-gate &(nid_objs[470]),/* "documentVersion" */ 21750Sstevel@tonic-gate &(nid_objs[392]),/* "domain" */ 21760Sstevel@tonic-gate &(nid_objs[452]),/* "domainRelatedObject" */ 21770Sstevel@tonic-gate &(nid_objs[416]),/* "ecdsa-with-SHA1" */ 21780Sstevel@tonic-gate &(nid_objs[48]),/* "emailAddress" */ 21790Sstevel@tonic-gate &(nid_objs[132]),/* "emailProtection" */ 21800Sstevel@tonic-gate &(nid_objs[389]),/* "enterprises" */ 21810Sstevel@tonic-gate &(nid_objs[384]),/* "experimental" */ 21820Sstevel@tonic-gate &(nid_objs[172]),/* "extReq" */ 21830Sstevel@tonic-gate &(nid_objs[56]),/* "extendedCertificateAttributes" */ 21840Sstevel@tonic-gate &(nid_objs[126]),/* "extendedKeyUsage" */ 21850Sstevel@tonic-gate &(nid_objs[372]),/* "extendedStatus" */ 21860Sstevel@tonic-gate &(nid_objs[462]),/* "favouriteDrink" */ 21870Sstevel@tonic-gate &(nid_objs[453]),/* "friendlyCountry" */ 21880Sstevel@tonic-gate &(nid_objs[490]),/* "friendlyCountryName" */ 21890Sstevel@tonic-gate &(nid_objs[156]),/* "friendlyName" */ 21900Sstevel@tonic-gate &(nid_objs[509]),/* "generationQualifier" */ 21910Sstevel@tonic-gate &(nid_objs[163]),/* "hmacWithSHA1" */ 21920Sstevel@tonic-gate &(nid_objs[432]),/* "holdInstructionCallIssuer" */ 21930Sstevel@tonic-gate &(nid_objs[430]),/* "holdInstructionCode" */ 21940Sstevel@tonic-gate &(nid_objs[431]),/* "holdInstructionNone" */ 21950Sstevel@tonic-gate &(nid_objs[433]),/* "holdInstructionReject" */ 21960Sstevel@tonic-gate &(nid_objs[486]),/* "homePostalAddress" */ 21970Sstevel@tonic-gate &(nid_objs[473]),/* "homeTelephoneNumber" */ 21980Sstevel@tonic-gate &(nid_objs[466]),/* "host" */ 21990Sstevel@tonic-gate &(nid_objs[442]),/* "iA5StringSyntax" */ 22000Sstevel@tonic-gate &(nid_objs[266]),/* "id-aca" */ 22010Sstevel@tonic-gate &(nid_objs[355]),/* "id-aca-accessIdentity" */ 22020Sstevel@tonic-gate &(nid_objs[354]),/* "id-aca-authenticationInfo" */ 22030Sstevel@tonic-gate &(nid_objs[356]),/* "id-aca-chargingIdentity" */ 22040Sstevel@tonic-gate &(nid_objs[399]),/* "id-aca-encAttrs" */ 22050Sstevel@tonic-gate &(nid_objs[357]),/* "id-aca-group" */ 22060Sstevel@tonic-gate &(nid_objs[358]),/* "id-aca-role" */ 22070Sstevel@tonic-gate &(nid_objs[176]),/* "id-ad" */ 22080Sstevel@tonic-gate &(nid_objs[262]),/* "id-alg" */ 22090Sstevel@tonic-gate &(nid_objs[323]),/* "id-alg-des40" */ 22100Sstevel@tonic-gate &(nid_objs[326]),/* "id-alg-dh-pop" */ 22110Sstevel@tonic-gate &(nid_objs[325]),/* "id-alg-dh-sig-hmac-sha1" */ 22120Sstevel@tonic-gate &(nid_objs[324]),/* "id-alg-noSignature" */ 22130Sstevel@tonic-gate &(nid_objs[268]),/* "id-cct" */ 22140Sstevel@tonic-gate &(nid_objs[361]),/* "id-cct-PKIData" */ 22150Sstevel@tonic-gate &(nid_objs[362]),/* "id-cct-PKIResponse" */ 22160Sstevel@tonic-gate &(nid_objs[360]),/* "id-cct-crs" */ 22170Sstevel@tonic-gate &(nid_objs[81]),/* "id-ce" */ 2218*2139Sjp161948 &(nid_objs[680]),/* "id-characteristic-two-basis" */ 22190Sstevel@tonic-gate &(nid_objs[263]),/* "id-cmc" */ 22200Sstevel@tonic-gate &(nid_objs[334]),/* "id-cmc-addExtensions" */ 22210Sstevel@tonic-gate &(nid_objs[346]),/* "id-cmc-confirmCertAcceptance" */ 22220Sstevel@tonic-gate &(nid_objs[330]),/* "id-cmc-dataReturn" */ 22230Sstevel@tonic-gate &(nid_objs[336]),/* "id-cmc-decryptedPOP" */ 22240Sstevel@tonic-gate &(nid_objs[335]),/* "id-cmc-encryptedPOP" */ 22250Sstevel@tonic-gate &(nid_objs[339]),/* "id-cmc-getCRL" */ 22260Sstevel@tonic-gate &(nid_objs[338]),/* "id-cmc-getCert" */ 22270Sstevel@tonic-gate &(nid_objs[328]),/* "id-cmc-identification" */ 22280Sstevel@tonic-gate &(nid_objs[329]),/* "id-cmc-identityProof" */ 22290Sstevel@tonic-gate &(nid_objs[337]),/* "id-cmc-lraPOPWitness" */ 22300Sstevel@tonic-gate &(nid_objs[344]),/* "id-cmc-popLinkRandom" */ 22310Sstevel@tonic-gate &(nid_objs[345]),/* "id-cmc-popLinkWitness" */ 22320Sstevel@tonic-gate &(nid_objs[343]),/* "id-cmc-queryPending" */ 22330Sstevel@tonic-gate &(nid_objs[333]),/* "id-cmc-recipientNonce" */ 22340Sstevel@tonic-gate &(nid_objs[341]),/* "id-cmc-regInfo" */ 22350Sstevel@tonic-gate &(nid_objs[342]),/* "id-cmc-responseInfo" */ 22360Sstevel@tonic-gate &(nid_objs[340]),/* "id-cmc-revokeRequest" */ 22370Sstevel@tonic-gate &(nid_objs[332]),/* "id-cmc-senderNonce" */ 22380Sstevel@tonic-gate &(nid_objs[327]),/* "id-cmc-statusInfo" */ 22390Sstevel@tonic-gate &(nid_objs[331]),/* "id-cmc-transactionId" */ 22400Sstevel@tonic-gate &(nid_objs[408]),/* "id-ecPublicKey" */ 22410Sstevel@tonic-gate &(nid_objs[508]),/* "id-hex-multipart-message" */ 22420Sstevel@tonic-gate &(nid_objs[507]),/* "id-hex-partial-message" */ 22430Sstevel@tonic-gate &(nid_objs[260]),/* "id-it" */ 22440Sstevel@tonic-gate &(nid_objs[302]),/* "id-it-caKeyUpdateInfo" */ 22450Sstevel@tonic-gate &(nid_objs[298]),/* "id-it-caProtEncCert" */ 22460Sstevel@tonic-gate &(nid_objs[311]),/* "id-it-confirmWaitTime" */ 22470Sstevel@tonic-gate &(nid_objs[303]),/* "id-it-currentCRL" */ 22480Sstevel@tonic-gate &(nid_objs[300]),/* "id-it-encKeyPairTypes" */ 22490Sstevel@tonic-gate &(nid_objs[310]),/* "id-it-implicitConfirm" */ 22500Sstevel@tonic-gate &(nid_objs[308]),/* "id-it-keyPairParamRep" */ 22510Sstevel@tonic-gate &(nid_objs[307]),/* "id-it-keyPairParamReq" */ 22520Sstevel@tonic-gate &(nid_objs[312]),/* "id-it-origPKIMessage" */ 22530Sstevel@tonic-gate &(nid_objs[301]),/* "id-it-preferredSymmAlg" */ 22540Sstevel@tonic-gate &(nid_objs[309]),/* "id-it-revPassphrase" */ 22550Sstevel@tonic-gate &(nid_objs[299]),/* "id-it-signKeyPairTypes" */ 22560Sstevel@tonic-gate &(nid_objs[305]),/* "id-it-subscriptionRequest" */ 22570Sstevel@tonic-gate &(nid_objs[306]),/* "id-it-subscriptionResponse" */ 22580Sstevel@tonic-gate &(nid_objs[304]),/* "id-it-unsupportedOIDs" */ 22590Sstevel@tonic-gate &(nid_objs[128]),/* "id-kp" */ 22600Sstevel@tonic-gate &(nid_objs[280]),/* "id-mod-attribute-cert" */ 22610Sstevel@tonic-gate &(nid_objs[274]),/* "id-mod-cmc" */ 22620Sstevel@tonic-gate &(nid_objs[277]),/* "id-mod-cmp" */ 22630Sstevel@tonic-gate &(nid_objs[284]),/* "id-mod-cmp2000" */ 22640Sstevel@tonic-gate &(nid_objs[273]),/* "id-mod-crmf" */ 22650Sstevel@tonic-gate &(nid_objs[283]),/* "id-mod-dvcs" */ 22660Sstevel@tonic-gate &(nid_objs[275]),/* "id-mod-kea-profile-88" */ 22670Sstevel@tonic-gate &(nid_objs[276]),/* "id-mod-kea-profile-93" */ 22680Sstevel@tonic-gate &(nid_objs[282]),/* "id-mod-ocsp" */ 22690Sstevel@tonic-gate &(nid_objs[278]),/* "id-mod-qualified-cert-88" */ 22700Sstevel@tonic-gate &(nid_objs[279]),/* "id-mod-qualified-cert-93" */ 22710Sstevel@tonic-gate &(nid_objs[281]),/* "id-mod-timestamp-protocol" */ 22720Sstevel@tonic-gate &(nid_objs[264]),/* "id-on" */ 22730Sstevel@tonic-gate &(nid_objs[347]),/* "id-on-personalData" */ 22740Sstevel@tonic-gate &(nid_objs[265]),/* "id-pda" */ 22750Sstevel@tonic-gate &(nid_objs[352]),/* "id-pda-countryOfCitizenship" */ 22760Sstevel@tonic-gate &(nid_objs[353]),/* "id-pda-countryOfResidence" */ 22770Sstevel@tonic-gate &(nid_objs[348]),/* "id-pda-dateOfBirth" */ 22780Sstevel@tonic-gate &(nid_objs[351]),/* "id-pda-gender" */ 22790Sstevel@tonic-gate &(nid_objs[349]),/* "id-pda-placeOfBirth" */ 22800Sstevel@tonic-gate &(nid_objs[175]),/* "id-pe" */ 22810Sstevel@tonic-gate &(nid_objs[261]),/* "id-pkip" */ 22820Sstevel@tonic-gate &(nid_objs[258]),/* "id-pkix-mod" */ 22830Sstevel@tonic-gate &(nid_objs[269]),/* "id-pkix1-explicit-88" */ 22840Sstevel@tonic-gate &(nid_objs[271]),/* "id-pkix1-explicit-93" */ 22850Sstevel@tonic-gate &(nid_objs[270]),/* "id-pkix1-implicit-88" */ 22860Sstevel@tonic-gate &(nid_objs[272]),/* "id-pkix1-implicit-93" */ 2287*2139Sjp161948 &(nid_objs[662]),/* "id-ppl" */ 2288*2139Sjp161948 &(nid_objs[664]),/* "id-ppl-anyLanguage" */ 2289*2139Sjp161948 &(nid_objs[667]),/* "id-ppl-independent" */ 2290*2139Sjp161948 &(nid_objs[665]),/* "id-ppl-inheritAll" */ 22910Sstevel@tonic-gate &(nid_objs[267]),/* "id-qcs" */ 22920Sstevel@tonic-gate &(nid_objs[359]),/* "id-qcs-pkixQCSyntax-v1" */ 22930Sstevel@tonic-gate &(nid_objs[259]),/* "id-qt" */ 22940Sstevel@tonic-gate &(nid_objs[164]),/* "id-qt-cps" */ 22950Sstevel@tonic-gate &(nid_objs[165]),/* "id-qt-unotice" */ 22960Sstevel@tonic-gate &(nid_objs[313]),/* "id-regCtrl" */ 22970Sstevel@tonic-gate &(nid_objs[316]),/* "id-regCtrl-authenticator" */ 22980Sstevel@tonic-gate &(nid_objs[319]),/* "id-regCtrl-oldCertID" */ 22990Sstevel@tonic-gate &(nid_objs[318]),/* "id-regCtrl-pkiArchiveOptions" */ 23000Sstevel@tonic-gate &(nid_objs[317]),/* "id-regCtrl-pkiPublicationInfo" */ 23010Sstevel@tonic-gate &(nid_objs[320]),/* "id-regCtrl-protocolEncrKey" */ 23020Sstevel@tonic-gate &(nid_objs[315]),/* "id-regCtrl-regToken" */ 23030Sstevel@tonic-gate &(nid_objs[314]),/* "id-regInfo" */ 23040Sstevel@tonic-gate &(nid_objs[322]),/* "id-regInfo-certReq" */ 23050Sstevel@tonic-gate &(nid_objs[321]),/* "id-regInfo-utf8Pairs" */ 23060Sstevel@tonic-gate &(nid_objs[512]),/* "id-set" */ 23070Sstevel@tonic-gate &(nid_objs[191]),/* "id-smime-aa" */ 23080Sstevel@tonic-gate &(nid_objs[215]),/* "id-smime-aa-contentHint" */ 23090Sstevel@tonic-gate &(nid_objs[218]),/* "id-smime-aa-contentIdentifier" */ 23100Sstevel@tonic-gate &(nid_objs[221]),/* "id-smime-aa-contentReference" */ 23110Sstevel@tonic-gate &(nid_objs[240]),/* "id-smime-aa-dvcs-dvc" */ 23120Sstevel@tonic-gate &(nid_objs[217]),/* "id-smime-aa-encapContentType" */ 23130Sstevel@tonic-gate &(nid_objs[222]),/* "id-smime-aa-encrypKeyPref" */ 23140Sstevel@tonic-gate &(nid_objs[220]),/* "id-smime-aa-equivalentLabels" */ 23150Sstevel@tonic-gate &(nid_objs[232]),/* "id-smime-aa-ets-CertificateRefs" */ 23160Sstevel@tonic-gate &(nid_objs[233]),/* "id-smime-aa-ets-RevocationRefs" */ 23170Sstevel@tonic-gate &(nid_objs[238]),/* "id-smime-aa-ets-archiveTimeStamp" */ 23180Sstevel@tonic-gate &(nid_objs[237]),/* "id-smime-aa-ets-certCRLTimestamp" */ 23190Sstevel@tonic-gate &(nid_objs[234]),/* "id-smime-aa-ets-certValues" */ 23200Sstevel@tonic-gate &(nid_objs[227]),/* "id-smime-aa-ets-commitmentType" */ 23210Sstevel@tonic-gate &(nid_objs[231]),/* "id-smime-aa-ets-contentTimestamp" */ 23220Sstevel@tonic-gate &(nid_objs[236]),/* "id-smime-aa-ets-escTimeStamp" */ 23230Sstevel@tonic-gate &(nid_objs[230]),/* "id-smime-aa-ets-otherSigCert" */ 23240Sstevel@tonic-gate &(nid_objs[235]),/* "id-smime-aa-ets-revocationValues" */ 23250Sstevel@tonic-gate &(nid_objs[226]),/* "id-smime-aa-ets-sigPolicyId" */ 23260Sstevel@tonic-gate &(nid_objs[229]),/* "id-smime-aa-ets-signerAttr" */ 23270Sstevel@tonic-gate &(nid_objs[228]),/* "id-smime-aa-ets-signerLocation" */ 23280Sstevel@tonic-gate &(nid_objs[219]),/* "id-smime-aa-macValue" */ 23290Sstevel@tonic-gate &(nid_objs[214]),/* "id-smime-aa-mlExpandHistory" */ 23300Sstevel@tonic-gate &(nid_objs[216]),/* "id-smime-aa-msgSigDigest" */ 23310Sstevel@tonic-gate &(nid_objs[212]),/* "id-smime-aa-receiptRequest" */ 23320Sstevel@tonic-gate &(nid_objs[213]),/* "id-smime-aa-securityLabel" */ 23330Sstevel@tonic-gate &(nid_objs[239]),/* "id-smime-aa-signatureType" */ 23340Sstevel@tonic-gate &(nid_objs[223]),/* "id-smime-aa-signingCertificate" */ 23350Sstevel@tonic-gate &(nid_objs[224]),/* "id-smime-aa-smimeEncryptCerts" */ 23360Sstevel@tonic-gate &(nid_objs[225]),/* "id-smime-aa-timeStampToken" */ 23370Sstevel@tonic-gate &(nid_objs[192]),/* "id-smime-alg" */ 23380Sstevel@tonic-gate &(nid_objs[243]),/* "id-smime-alg-3DESwrap" */ 23390Sstevel@tonic-gate &(nid_objs[246]),/* "id-smime-alg-CMS3DESwrap" */ 23400Sstevel@tonic-gate &(nid_objs[247]),/* "id-smime-alg-CMSRC2wrap" */ 23410Sstevel@tonic-gate &(nid_objs[245]),/* "id-smime-alg-ESDH" */ 23420Sstevel@tonic-gate &(nid_objs[241]),/* "id-smime-alg-ESDHwith3DES" */ 23430Sstevel@tonic-gate &(nid_objs[242]),/* "id-smime-alg-ESDHwithRC2" */ 23440Sstevel@tonic-gate &(nid_objs[244]),/* "id-smime-alg-RC2wrap" */ 23450Sstevel@tonic-gate &(nid_objs[193]),/* "id-smime-cd" */ 23460Sstevel@tonic-gate &(nid_objs[248]),/* "id-smime-cd-ldap" */ 23470Sstevel@tonic-gate &(nid_objs[190]),/* "id-smime-ct" */ 23480Sstevel@tonic-gate &(nid_objs[210]),/* "id-smime-ct-DVCSRequestData" */ 23490Sstevel@tonic-gate &(nid_objs[211]),/* "id-smime-ct-DVCSResponseData" */ 23500Sstevel@tonic-gate &(nid_objs[208]),/* "id-smime-ct-TDTInfo" */ 23510Sstevel@tonic-gate &(nid_objs[207]),/* "id-smime-ct-TSTInfo" */ 23520Sstevel@tonic-gate &(nid_objs[205]),/* "id-smime-ct-authData" */ 23530Sstevel@tonic-gate &(nid_objs[209]),/* "id-smime-ct-contentInfo" */ 23540Sstevel@tonic-gate &(nid_objs[206]),/* "id-smime-ct-publishCert" */ 23550Sstevel@tonic-gate &(nid_objs[204]),/* "id-smime-ct-receipt" */ 23560Sstevel@tonic-gate &(nid_objs[195]),/* "id-smime-cti" */ 23570Sstevel@tonic-gate &(nid_objs[255]),/* "id-smime-cti-ets-proofOfApproval" */ 23580Sstevel@tonic-gate &(nid_objs[256]),/* "id-smime-cti-ets-proofOfCreation" */ 23590Sstevel@tonic-gate &(nid_objs[253]),/* "id-smime-cti-ets-proofOfDelivery" */ 23600Sstevel@tonic-gate &(nid_objs[251]),/* "id-smime-cti-ets-proofOfOrigin" */ 23610Sstevel@tonic-gate &(nid_objs[252]),/* "id-smime-cti-ets-proofOfReceipt" */ 23620Sstevel@tonic-gate &(nid_objs[254]),/* "id-smime-cti-ets-proofOfSender" */ 23630Sstevel@tonic-gate &(nid_objs[189]),/* "id-smime-mod" */ 23640Sstevel@tonic-gate &(nid_objs[196]),/* "id-smime-mod-cms" */ 23650Sstevel@tonic-gate &(nid_objs[197]),/* "id-smime-mod-ess" */ 23660Sstevel@tonic-gate &(nid_objs[202]),/* "id-smime-mod-ets-eSigPolicy-88" */ 23670Sstevel@tonic-gate &(nid_objs[203]),/* "id-smime-mod-ets-eSigPolicy-97" */ 23680Sstevel@tonic-gate &(nid_objs[200]),/* "id-smime-mod-ets-eSignature-88" */ 23690Sstevel@tonic-gate &(nid_objs[201]),/* "id-smime-mod-ets-eSignature-97" */ 23700Sstevel@tonic-gate &(nid_objs[199]),/* "id-smime-mod-msg-v3" */ 23710Sstevel@tonic-gate &(nid_objs[198]),/* "id-smime-mod-oid" */ 23720Sstevel@tonic-gate &(nid_objs[194]),/* "id-smime-spq" */ 23730Sstevel@tonic-gate &(nid_objs[250]),/* "id-smime-spq-ets-sqt-unotice" */ 23740Sstevel@tonic-gate &(nid_objs[249]),/* "id-smime-spq-ets-sqt-uri" */ 2375*2139Sjp161948 &(nid_objs[676]),/* "identified-organization" */ 23760Sstevel@tonic-gate &(nid_objs[461]),/* "info" */ 2377*2139Sjp161948 &(nid_objs[748]),/* "inhibitAnyPolicy" */ 23780Sstevel@tonic-gate &(nid_objs[101]),/* "initials" */ 2379*2139Sjp161948 &(nid_objs[647]),/* "international-organizations" */ 23800Sstevel@tonic-gate &(nid_objs[142]),/* "invalidityDate" */ 23810Sstevel@tonic-gate &(nid_objs[294]),/* "ipsecEndSystem" */ 23820Sstevel@tonic-gate &(nid_objs[295]),/* "ipsecTunnel" */ 23830Sstevel@tonic-gate &(nid_objs[296]),/* "ipsecUser" */ 23840Sstevel@tonic-gate &(nid_objs[86]),/* "issuerAltName" */ 23850Sstevel@tonic-gate &(nid_objs[492]),/* "janetMailbox" */ 23860Sstevel@tonic-gate &(nid_objs[150]),/* "keyBag" */ 23870Sstevel@tonic-gate &(nid_objs[83]),/* "keyUsage" */ 23880Sstevel@tonic-gate &(nid_objs[477]),/* "lastModifiedBy" */ 23890Sstevel@tonic-gate &(nid_objs[476]),/* "lastModifiedTime" */ 23900Sstevel@tonic-gate &(nid_objs[157]),/* "localKeyID" */ 23910Sstevel@tonic-gate &(nid_objs[480]),/* "mXRecord" */ 23920Sstevel@tonic-gate &(nid_objs[460]),/* "mail" */ 23930Sstevel@tonic-gate &(nid_objs[493]),/* "mailPreferenceOption" */ 23940Sstevel@tonic-gate &(nid_objs[467]),/* "manager" */ 23950Sstevel@tonic-gate &(nid_objs[182]),/* "member-body" */ 23960Sstevel@tonic-gate &(nid_objs[51]),/* "messageDigest" */ 23970Sstevel@tonic-gate &(nid_objs[383]),/* "mgmt" */ 23980Sstevel@tonic-gate &(nid_objs[504]),/* "mime-mhs" */ 23990Sstevel@tonic-gate &(nid_objs[506]),/* "mime-mhs-bodies" */ 24000Sstevel@tonic-gate &(nid_objs[505]),/* "mime-mhs-headings" */ 24010Sstevel@tonic-gate &(nid_objs[488]),/* "mobileTelephoneNumber" */ 24020Sstevel@tonic-gate &(nid_objs[136]),/* "msCTLSign" */ 24030Sstevel@tonic-gate &(nid_objs[135]),/* "msCodeCom" */ 24040Sstevel@tonic-gate &(nid_objs[134]),/* "msCodeInd" */ 24050Sstevel@tonic-gate &(nid_objs[138]),/* "msEFS" */ 24060Sstevel@tonic-gate &(nid_objs[171]),/* "msExtReq" */ 24070Sstevel@tonic-gate &(nid_objs[137]),/* "msSGC" */ 24080Sstevel@tonic-gate &(nid_objs[648]),/* "msSmartcardLogin" */ 24090Sstevel@tonic-gate &(nid_objs[649]),/* "msUPN" */ 24100Sstevel@tonic-gate &(nid_objs[481]),/* "nSRecord" */ 24110Sstevel@tonic-gate &(nid_objs[173]),/* "name" */ 2412*2139Sjp161948 &(nid_objs[666]),/* "nameConstraints" */ 24130Sstevel@tonic-gate &(nid_objs[369]),/* "noCheck" */ 24140Sstevel@tonic-gate &(nid_objs[403]),/* "noRevAvail" */ 24150Sstevel@tonic-gate &(nid_objs[72]),/* "nsBaseUrl" */ 24160Sstevel@tonic-gate &(nid_objs[76]),/* "nsCaPolicyUrl" */ 24170Sstevel@tonic-gate &(nid_objs[74]),/* "nsCaRevocationUrl" */ 24180Sstevel@tonic-gate &(nid_objs[58]),/* "nsCertExt" */ 24190Sstevel@tonic-gate &(nid_objs[79]),/* "nsCertSequence" */ 24200Sstevel@tonic-gate &(nid_objs[71]),/* "nsCertType" */ 24210Sstevel@tonic-gate &(nid_objs[78]),/* "nsComment" */ 24220Sstevel@tonic-gate &(nid_objs[59]),/* "nsDataType" */ 24230Sstevel@tonic-gate &(nid_objs[75]),/* "nsRenewalUrl" */ 24240Sstevel@tonic-gate &(nid_objs[73]),/* "nsRevocationUrl" */ 24250Sstevel@tonic-gate &(nid_objs[139]),/* "nsSGC" */ 24260Sstevel@tonic-gate &(nid_objs[77]),/* "nsSslServerName" */ 2427*2139Sjp161948 &(nid_objs[681]),/* "onBasis" */ 24280Sstevel@tonic-gate &(nid_objs[491]),/* "organizationalStatus" */ 24290Sstevel@tonic-gate &(nid_objs[475]),/* "otherMailbox" */ 24300Sstevel@tonic-gate &(nid_objs[489]),/* "pagerTelephoneNumber" */ 24310Sstevel@tonic-gate &(nid_objs[374]),/* "path" */ 24320Sstevel@tonic-gate &(nid_objs[112]),/* "pbeWithMD5AndCast5CBC" */ 24330Sstevel@tonic-gate &(nid_objs[499]),/* "personalSignature" */ 24340Sstevel@tonic-gate &(nid_objs[487]),/* "personalTitle" */ 24350Sstevel@tonic-gate &(nid_objs[464]),/* "photo" */ 24360Sstevel@tonic-gate &(nid_objs[437]),/* "pilot" */ 24370Sstevel@tonic-gate &(nid_objs[439]),/* "pilotAttributeSyntax" */ 24380Sstevel@tonic-gate &(nid_objs[438]),/* "pilotAttributeType" */ 24390Sstevel@tonic-gate &(nid_objs[479]),/* "pilotAttributeType27" */ 24400Sstevel@tonic-gate &(nid_objs[456]),/* "pilotDSA" */ 24410Sstevel@tonic-gate &(nid_objs[441]),/* "pilotGroups" */ 24420Sstevel@tonic-gate &(nid_objs[444]),/* "pilotObject" */ 24430Sstevel@tonic-gate &(nid_objs[440]),/* "pilotObjectClass" */ 24440Sstevel@tonic-gate &(nid_objs[455]),/* "pilotOrganization" */ 24450Sstevel@tonic-gate &(nid_objs[445]),/* "pilotPerson" */ 24460Sstevel@tonic-gate &(nid_objs[ 2]),/* "pkcs" */ 24470Sstevel@tonic-gate &(nid_objs[186]),/* "pkcs1" */ 24480Sstevel@tonic-gate &(nid_objs[27]),/* "pkcs3" */ 24490Sstevel@tonic-gate &(nid_objs[187]),/* "pkcs5" */ 24500Sstevel@tonic-gate &(nid_objs[20]),/* "pkcs7" */ 24510Sstevel@tonic-gate &(nid_objs[21]),/* "pkcs7-data" */ 24520Sstevel@tonic-gate &(nid_objs[25]),/* "pkcs7-digestData" */ 24530Sstevel@tonic-gate &(nid_objs[26]),/* "pkcs7-encryptedData" */ 24540Sstevel@tonic-gate &(nid_objs[23]),/* "pkcs7-envelopedData" */ 24550Sstevel@tonic-gate &(nid_objs[24]),/* "pkcs7-signedAndEnvelopedData" */ 24560Sstevel@tonic-gate &(nid_objs[22]),/* "pkcs7-signedData" */ 24570Sstevel@tonic-gate &(nid_objs[151]),/* "pkcs8ShroudedKeyBag" */ 24580Sstevel@tonic-gate &(nid_objs[47]),/* "pkcs9" */ 24590Sstevel@tonic-gate &(nid_objs[401]),/* "policyConstraints" */ 2460*2139Sjp161948 &(nid_objs[747]),/* "policyMappings" */ 2461*2139Sjp161948 &(nid_objs[661]),/* "postalCode" */ 2462*2139Sjp161948 &(nid_objs[683]),/* "ppBasis" */ 24630Sstevel@tonic-gate &(nid_objs[406]),/* "prime-field" */ 24640Sstevel@tonic-gate &(nid_objs[409]),/* "prime192v1" */ 24650Sstevel@tonic-gate &(nid_objs[410]),/* "prime192v2" */ 24660Sstevel@tonic-gate &(nid_objs[411]),/* "prime192v3" */ 24670Sstevel@tonic-gate &(nid_objs[412]),/* "prime239v1" */ 24680Sstevel@tonic-gate &(nid_objs[413]),/* "prime239v2" */ 24690Sstevel@tonic-gate &(nid_objs[414]),/* "prime239v3" */ 24700Sstevel@tonic-gate &(nid_objs[415]),/* "prime256v1" */ 24710Sstevel@tonic-gate &(nid_objs[385]),/* "private" */ 24720Sstevel@tonic-gate &(nid_objs[84]),/* "privateKeyUsagePeriod" */ 2473*2139Sjp161948 &(nid_objs[663]),/* "proxyCertInfo" */ 24740Sstevel@tonic-gate &(nid_objs[510]),/* "pseudonym" */ 24750Sstevel@tonic-gate &(nid_objs[435]),/* "pss" */ 24760Sstevel@tonic-gate &(nid_objs[286]),/* "qcStatements" */ 24770Sstevel@tonic-gate &(nid_objs[457]),/* "qualityLabelledData" */ 24780Sstevel@tonic-gate &(nid_objs[450]),/* "rFC822localPart" */ 24790Sstevel@tonic-gate &(nid_objs[400]),/* "role" */ 24800Sstevel@tonic-gate &(nid_objs[448]),/* "room" */ 24810Sstevel@tonic-gate &(nid_objs[463]),/* "roomNumber" */ 24820Sstevel@tonic-gate &(nid_objs[ 6]),/* "rsaEncryption" */ 24830Sstevel@tonic-gate &(nid_objs[644]),/* "rsaOAEPEncryptionSET" */ 24840Sstevel@tonic-gate &(nid_objs[377]),/* "rsaSignature" */ 24850Sstevel@tonic-gate &(nid_objs[ 1]),/* "rsadsi" */ 24860Sstevel@tonic-gate &(nid_objs[482]),/* "sOARecord" */ 24870Sstevel@tonic-gate &(nid_objs[155]),/* "safeContentsBag" */ 2488*2139Sjp161948 &(nid_objs[291]),/* "sbgp-autonomousSysNum" */ 2489*2139Sjp161948 &(nid_objs[290]),/* "sbgp-ipAddrBlock" */ 2490*2139Sjp161948 &(nid_objs[292]),/* "sbgp-routerIdentifier" */ 24910Sstevel@tonic-gate &(nid_objs[159]),/* "sdsiCertificate" */ 2492*2139Sjp161948 &(nid_objs[704]),/* "secp112r1" */ 2493*2139Sjp161948 &(nid_objs[705]),/* "secp112r2" */ 2494*2139Sjp161948 &(nid_objs[706]),/* "secp128r1" */ 2495*2139Sjp161948 &(nid_objs[707]),/* "secp128r2" */ 2496*2139Sjp161948 &(nid_objs[708]),/* "secp160k1" */ 2497*2139Sjp161948 &(nid_objs[709]),/* "secp160r1" */ 2498*2139Sjp161948 &(nid_objs[710]),/* "secp160r2" */ 2499*2139Sjp161948 &(nid_objs[711]),/* "secp192k1" */ 2500*2139Sjp161948 &(nid_objs[712]),/* "secp224k1" */ 2501*2139Sjp161948 &(nid_objs[713]),/* "secp224r1" */ 2502*2139Sjp161948 &(nid_objs[714]),/* "secp256k1" */ 2503*2139Sjp161948 &(nid_objs[715]),/* "secp384r1" */ 2504*2139Sjp161948 &(nid_objs[716]),/* "secp521r1" */ 25050Sstevel@tonic-gate &(nid_objs[154]),/* "secretBag" */ 25060Sstevel@tonic-gate &(nid_objs[474]),/* "secretary" */ 2507*2139Sjp161948 &(nid_objs[717]),/* "sect113r1" */ 2508*2139Sjp161948 &(nid_objs[718]),/* "sect113r2" */ 2509*2139Sjp161948 &(nid_objs[719]),/* "sect131r1" */ 2510*2139Sjp161948 &(nid_objs[720]),/* "sect131r2" */ 2511*2139Sjp161948 &(nid_objs[721]),/* "sect163k1" */ 2512*2139Sjp161948 &(nid_objs[722]),/* "sect163r1" */ 2513*2139Sjp161948 &(nid_objs[723]),/* "sect163r2" */ 2514*2139Sjp161948 &(nid_objs[724]),/* "sect193r1" */ 2515*2139Sjp161948 &(nid_objs[725]),/* "sect193r2" */ 2516*2139Sjp161948 &(nid_objs[726]),/* "sect233k1" */ 2517*2139Sjp161948 &(nid_objs[727]),/* "sect233r1" */ 2518*2139Sjp161948 &(nid_objs[728]),/* "sect239k1" */ 2519*2139Sjp161948 &(nid_objs[729]),/* "sect283k1" */ 2520*2139Sjp161948 &(nid_objs[730]),/* "sect283r1" */ 2521*2139Sjp161948 &(nid_objs[731]),/* "sect409k1" */ 2522*2139Sjp161948 &(nid_objs[732]),/* "sect409r1" */ 2523*2139Sjp161948 &(nid_objs[733]),/* "sect571k1" */ 2524*2139Sjp161948 &(nid_objs[734]),/* "sect571r1" */ 25250Sstevel@tonic-gate &(nid_objs[386]),/* "security" */ 25260Sstevel@tonic-gate &(nid_objs[394]),/* "selected-attribute-types" */ 25270Sstevel@tonic-gate &(nid_objs[105]),/* "serialNumber" */ 25280Sstevel@tonic-gate &(nid_objs[129]),/* "serverAuth" */ 25290Sstevel@tonic-gate &(nid_objs[371]),/* "serviceLocator" */ 25300Sstevel@tonic-gate &(nid_objs[625]),/* "set-addPolicy" */ 25310Sstevel@tonic-gate &(nid_objs[515]),/* "set-attr" */ 25320Sstevel@tonic-gate &(nid_objs[518]),/* "set-brand" */ 25330Sstevel@tonic-gate &(nid_objs[638]),/* "set-brand-AmericanExpress" */ 25340Sstevel@tonic-gate &(nid_objs[637]),/* "set-brand-Diners" */ 25350Sstevel@tonic-gate &(nid_objs[636]),/* "set-brand-IATA-ATA" */ 25360Sstevel@tonic-gate &(nid_objs[639]),/* "set-brand-JCB" */ 25370Sstevel@tonic-gate &(nid_objs[641]),/* "set-brand-MasterCard" */ 25380Sstevel@tonic-gate &(nid_objs[642]),/* "set-brand-Novus" */ 25390Sstevel@tonic-gate &(nid_objs[640]),/* "set-brand-Visa" */ 25400Sstevel@tonic-gate &(nid_objs[517]),/* "set-certExt" */ 25410Sstevel@tonic-gate &(nid_objs[513]),/* "set-ctype" */ 25420Sstevel@tonic-gate &(nid_objs[514]),/* "set-msgExt" */ 25430Sstevel@tonic-gate &(nid_objs[516]),/* "set-policy" */ 25440Sstevel@tonic-gate &(nid_objs[607]),/* "set-policy-root" */ 25450Sstevel@tonic-gate &(nid_objs[624]),/* "set-rootKeyThumb" */ 25460Sstevel@tonic-gate &(nid_objs[620]),/* "setAttr-Cert" */ 25470Sstevel@tonic-gate &(nid_objs[631]),/* "setAttr-GenCryptgrm" */ 25480Sstevel@tonic-gate &(nid_objs[623]),/* "setAttr-IssCap" */ 25490Sstevel@tonic-gate &(nid_objs[628]),/* "setAttr-IssCap-CVM" */ 25500Sstevel@tonic-gate &(nid_objs[630]),/* "setAttr-IssCap-Sig" */ 25510Sstevel@tonic-gate &(nid_objs[629]),/* "setAttr-IssCap-T2" */ 25520Sstevel@tonic-gate &(nid_objs[621]),/* "setAttr-PGWYcap" */ 25530Sstevel@tonic-gate &(nid_objs[635]),/* "setAttr-SecDevSig" */ 25540Sstevel@tonic-gate &(nid_objs[632]),/* "setAttr-T2Enc" */ 25550Sstevel@tonic-gate &(nid_objs[633]),/* "setAttr-T2cleartxt" */ 25560Sstevel@tonic-gate &(nid_objs[634]),/* "setAttr-TokICCsig" */ 25570Sstevel@tonic-gate &(nid_objs[627]),/* "setAttr-Token-B0Prime" */ 25580Sstevel@tonic-gate &(nid_objs[626]),/* "setAttr-Token-EMV" */ 25590Sstevel@tonic-gate &(nid_objs[622]),/* "setAttr-TokenType" */ 25600Sstevel@tonic-gate &(nid_objs[619]),/* "setCext-IssuerCapabilities" */ 25610Sstevel@tonic-gate &(nid_objs[615]),/* "setCext-PGWYcapabilities" */ 25620Sstevel@tonic-gate &(nid_objs[616]),/* "setCext-TokenIdentifier" */ 25630Sstevel@tonic-gate &(nid_objs[618]),/* "setCext-TokenType" */ 25640Sstevel@tonic-gate &(nid_objs[617]),/* "setCext-Track2Data" */ 25650Sstevel@tonic-gate &(nid_objs[611]),/* "setCext-cCertRequired" */ 25660Sstevel@tonic-gate &(nid_objs[609]),/* "setCext-certType" */ 25670Sstevel@tonic-gate &(nid_objs[608]),/* "setCext-hashedRoot" */ 25680Sstevel@tonic-gate &(nid_objs[610]),/* "setCext-merchData" */ 25690Sstevel@tonic-gate &(nid_objs[613]),/* "setCext-setExt" */ 25700Sstevel@tonic-gate &(nid_objs[614]),/* "setCext-setQualf" */ 25710Sstevel@tonic-gate &(nid_objs[612]),/* "setCext-tunneling" */ 25720Sstevel@tonic-gate &(nid_objs[540]),/* "setct-AcqCardCodeMsg" */ 25730Sstevel@tonic-gate &(nid_objs[576]),/* "setct-AcqCardCodeMsgTBE" */ 25740Sstevel@tonic-gate &(nid_objs[570]),/* "setct-AuthReqTBE" */ 25750Sstevel@tonic-gate &(nid_objs[534]),/* "setct-AuthReqTBS" */ 25760Sstevel@tonic-gate &(nid_objs[527]),/* "setct-AuthResBaggage" */ 25770Sstevel@tonic-gate &(nid_objs[571]),/* "setct-AuthResTBE" */ 25780Sstevel@tonic-gate &(nid_objs[572]),/* "setct-AuthResTBEX" */ 25790Sstevel@tonic-gate &(nid_objs[535]),/* "setct-AuthResTBS" */ 25800Sstevel@tonic-gate &(nid_objs[536]),/* "setct-AuthResTBSX" */ 25810Sstevel@tonic-gate &(nid_objs[528]),/* "setct-AuthRevReqBaggage" */ 25820Sstevel@tonic-gate &(nid_objs[577]),/* "setct-AuthRevReqTBE" */ 25830Sstevel@tonic-gate &(nid_objs[541]),/* "setct-AuthRevReqTBS" */ 25840Sstevel@tonic-gate &(nid_objs[529]),/* "setct-AuthRevResBaggage" */ 25850Sstevel@tonic-gate &(nid_objs[542]),/* "setct-AuthRevResData" */ 25860Sstevel@tonic-gate &(nid_objs[578]),/* "setct-AuthRevResTBE" */ 25870Sstevel@tonic-gate &(nid_objs[579]),/* "setct-AuthRevResTBEB" */ 25880Sstevel@tonic-gate &(nid_objs[543]),/* "setct-AuthRevResTBS" */ 25890Sstevel@tonic-gate &(nid_objs[573]),/* "setct-AuthTokenTBE" */ 25900Sstevel@tonic-gate &(nid_objs[537]),/* "setct-AuthTokenTBS" */ 25910Sstevel@tonic-gate &(nid_objs[600]),/* "setct-BCIDistributionTBS" */ 25920Sstevel@tonic-gate &(nid_objs[558]),/* "setct-BatchAdminReqData" */ 25930Sstevel@tonic-gate &(nid_objs[592]),/* "setct-BatchAdminReqTBE" */ 25940Sstevel@tonic-gate &(nid_objs[559]),/* "setct-BatchAdminResData" */ 25950Sstevel@tonic-gate &(nid_objs[593]),/* "setct-BatchAdminResTBE" */ 25960Sstevel@tonic-gate &(nid_objs[599]),/* "setct-CRLNotificationResTBS" */ 25970Sstevel@tonic-gate &(nid_objs[598]),/* "setct-CRLNotificationTBS" */ 25980Sstevel@tonic-gate &(nid_objs[580]),/* "setct-CapReqTBE" */ 25990Sstevel@tonic-gate &(nid_objs[581]),/* "setct-CapReqTBEX" */ 26000Sstevel@tonic-gate &(nid_objs[544]),/* "setct-CapReqTBS" */ 26010Sstevel@tonic-gate &(nid_objs[545]),/* "setct-CapReqTBSX" */ 26020Sstevel@tonic-gate &(nid_objs[546]),/* "setct-CapResData" */ 26030Sstevel@tonic-gate &(nid_objs[582]),/* "setct-CapResTBE" */ 26040Sstevel@tonic-gate &(nid_objs[583]),/* "setct-CapRevReqTBE" */ 26050Sstevel@tonic-gate &(nid_objs[584]),/* "setct-CapRevReqTBEX" */ 26060Sstevel@tonic-gate &(nid_objs[547]),/* "setct-CapRevReqTBS" */ 26070Sstevel@tonic-gate &(nid_objs[548]),/* "setct-CapRevReqTBSX" */ 26080Sstevel@tonic-gate &(nid_objs[549]),/* "setct-CapRevResData" */ 26090Sstevel@tonic-gate &(nid_objs[585]),/* "setct-CapRevResTBE" */ 26100Sstevel@tonic-gate &(nid_objs[538]),/* "setct-CapTokenData" */ 26110Sstevel@tonic-gate &(nid_objs[530]),/* "setct-CapTokenSeq" */ 26120Sstevel@tonic-gate &(nid_objs[574]),/* "setct-CapTokenTBE" */ 26130Sstevel@tonic-gate &(nid_objs[575]),/* "setct-CapTokenTBEX" */ 26140Sstevel@tonic-gate &(nid_objs[539]),/* "setct-CapTokenTBS" */ 26150Sstevel@tonic-gate &(nid_objs[560]),/* "setct-CardCInitResTBS" */ 26160Sstevel@tonic-gate &(nid_objs[566]),/* "setct-CertInqReqTBS" */ 26170Sstevel@tonic-gate &(nid_objs[563]),/* "setct-CertReqData" */ 26180Sstevel@tonic-gate &(nid_objs[595]),/* "setct-CertReqTBE" */ 26190Sstevel@tonic-gate &(nid_objs[596]),/* "setct-CertReqTBEX" */ 26200Sstevel@tonic-gate &(nid_objs[564]),/* "setct-CertReqTBS" */ 26210Sstevel@tonic-gate &(nid_objs[565]),/* "setct-CertResData" */ 26220Sstevel@tonic-gate &(nid_objs[597]),/* "setct-CertResTBE" */ 26230Sstevel@tonic-gate &(nid_objs[586]),/* "setct-CredReqTBE" */ 26240Sstevel@tonic-gate &(nid_objs[587]),/* "setct-CredReqTBEX" */ 26250Sstevel@tonic-gate &(nid_objs[550]),/* "setct-CredReqTBS" */ 26260Sstevel@tonic-gate &(nid_objs[551]),/* "setct-CredReqTBSX" */ 26270Sstevel@tonic-gate &(nid_objs[552]),/* "setct-CredResData" */ 26280Sstevel@tonic-gate &(nid_objs[588]),/* "setct-CredResTBE" */ 26290Sstevel@tonic-gate &(nid_objs[589]),/* "setct-CredRevReqTBE" */ 26300Sstevel@tonic-gate &(nid_objs[590]),/* "setct-CredRevReqTBEX" */ 26310Sstevel@tonic-gate &(nid_objs[553]),/* "setct-CredRevReqTBS" */ 26320Sstevel@tonic-gate &(nid_objs[554]),/* "setct-CredRevReqTBSX" */ 26330Sstevel@tonic-gate &(nid_objs[555]),/* "setct-CredRevResData" */ 26340Sstevel@tonic-gate &(nid_objs[591]),/* "setct-CredRevResTBE" */ 26350Sstevel@tonic-gate &(nid_objs[567]),/* "setct-ErrorTBS" */ 26360Sstevel@tonic-gate &(nid_objs[526]),/* "setct-HODInput" */ 26370Sstevel@tonic-gate &(nid_objs[561]),/* "setct-MeAqCInitResTBS" */ 26380Sstevel@tonic-gate &(nid_objs[522]),/* "setct-OIData" */ 26390Sstevel@tonic-gate &(nid_objs[519]),/* "setct-PANData" */ 26400Sstevel@tonic-gate &(nid_objs[521]),/* "setct-PANOnly" */ 26410Sstevel@tonic-gate &(nid_objs[520]),/* "setct-PANToken" */ 26420Sstevel@tonic-gate &(nid_objs[556]),/* "setct-PCertReqData" */ 26430Sstevel@tonic-gate &(nid_objs[557]),/* "setct-PCertResTBS" */ 26440Sstevel@tonic-gate &(nid_objs[523]),/* "setct-PI" */ 26450Sstevel@tonic-gate &(nid_objs[532]),/* "setct-PI-TBS" */ 26460Sstevel@tonic-gate &(nid_objs[524]),/* "setct-PIData" */ 26470Sstevel@tonic-gate &(nid_objs[525]),/* "setct-PIDataUnsigned" */ 26480Sstevel@tonic-gate &(nid_objs[568]),/* "setct-PIDualSignedTBE" */ 26490Sstevel@tonic-gate &(nid_objs[569]),/* "setct-PIUnsignedTBE" */ 26500Sstevel@tonic-gate &(nid_objs[531]),/* "setct-PInitResData" */ 26510Sstevel@tonic-gate &(nid_objs[533]),/* "setct-PResData" */ 26520Sstevel@tonic-gate &(nid_objs[594]),/* "setct-RegFormReqTBE" */ 26530Sstevel@tonic-gate &(nid_objs[562]),/* "setct-RegFormResTBS" */ 26540Sstevel@tonic-gate &(nid_objs[606]),/* "setext-cv" */ 26550Sstevel@tonic-gate &(nid_objs[601]),/* "setext-genCrypt" */ 26560Sstevel@tonic-gate &(nid_objs[602]),/* "setext-miAuth" */ 26570Sstevel@tonic-gate &(nid_objs[604]),/* "setext-pinAny" */ 26580Sstevel@tonic-gate &(nid_objs[603]),/* "setext-pinSecure" */ 26590Sstevel@tonic-gate &(nid_objs[605]),/* "setext-track2" */ 26600Sstevel@tonic-gate &(nid_objs[52]),/* "signingTime" */ 26610Sstevel@tonic-gate &(nid_objs[454]),/* "simpleSecurityObject" */ 26620Sstevel@tonic-gate &(nid_objs[496]),/* "singleLevelQuality" */ 26630Sstevel@tonic-gate &(nid_objs[387]),/* "snmpv2" */ 2664*2139Sjp161948 &(nid_objs[660]),/* "streetAddress" */ 26650Sstevel@tonic-gate &(nid_objs[85]),/* "subjectAltName" */ 26660Sstevel@tonic-gate &(nid_objs[398]),/* "subjectInfoAccess" */ 26670Sstevel@tonic-gate &(nid_objs[82]),/* "subjectKeyIdentifier" */ 26680Sstevel@tonic-gate &(nid_objs[498]),/* "subtreeMaximumQuality" */ 26690Sstevel@tonic-gate &(nid_objs[497]),/* "subtreeMinimumQuality" */ 26700Sstevel@tonic-gate &(nid_objs[402]),/* "targetInformation" */ 26710Sstevel@tonic-gate &(nid_objs[459]),/* "textEncodedORAddress" */ 26720Sstevel@tonic-gate &(nid_objs[293]),/* "textNotice" */ 26730Sstevel@tonic-gate &(nid_objs[133]),/* "timeStamping" */ 26740Sstevel@tonic-gate &(nid_objs[106]),/* "title" */ 2675*2139Sjp161948 &(nid_objs[682]),/* "tpBasis" */ 26760Sstevel@tonic-gate &(nid_objs[375]),/* "trustRoot" */ 26770Sstevel@tonic-gate &(nid_objs[436]),/* "ucl" */ 26780Sstevel@tonic-gate &(nid_objs[55]),/* "unstructuredAddress" */ 26790Sstevel@tonic-gate &(nid_objs[49]),/* "unstructuredName" */ 26800Sstevel@tonic-gate &(nid_objs[465]),/* "userClass" */ 26810Sstevel@tonic-gate &(nid_objs[373]),/* "valid" */ 2682*2139Sjp161948 &(nid_objs[678]),/* "wap" */ 2683*2139Sjp161948 &(nid_objs[679]),/* "wap-wsg" */ 2684*2139Sjp161948 &(nid_objs[735]),/* "wap-wsg-idm-ecid-wtls1" */ 2685*2139Sjp161948 &(nid_objs[743]),/* "wap-wsg-idm-ecid-wtls10" */ 2686*2139Sjp161948 &(nid_objs[744]),/* "wap-wsg-idm-ecid-wtls11" */ 2687*2139Sjp161948 &(nid_objs[745]),/* "wap-wsg-idm-ecid-wtls12" */ 2688*2139Sjp161948 &(nid_objs[736]),/* "wap-wsg-idm-ecid-wtls3" */ 2689*2139Sjp161948 &(nid_objs[737]),/* "wap-wsg-idm-ecid-wtls4" */ 2690*2139Sjp161948 &(nid_objs[738]),/* "wap-wsg-idm-ecid-wtls5" */ 2691*2139Sjp161948 &(nid_objs[739]),/* "wap-wsg-idm-ecid-wtls6" */ 2692*2139Sjp161948 &(nid_objs[740]),/* "wap-wsg-idm-ecid-wtls7" */ 2693*2139Sjp161948 &(nid_objs[741]),/* "wap-wsg-idm-ecid-wtls8" */ 2694*2139Sjp161948 &(nid_objs[742]),/* "wap-wsg-idm-ecid-wtls9" */ 26950Sstevel@tonic-gate &(nid_objs[503]),/* "x500UniqueIdentifier" */ 26960Sstevel@tonic-gate &(nid_objs[158]),/* "x509Certificate" */ 26970Sstevel@tonic-gate &(nid_objs[160]),/* "x509Crl" */ 26980Sstevel@tonic-gate }; 26990Sstevel@tonic-gate 27000Sstevel@tonic-gate static ASN1_OBJECT *ln_objs[NUM_LN]={ 27010Sstevel@tonic-gate &(nid_objs[363]),/* "AD Time Stamping" */ 27020Sstevel@tonic-gate &(nid_objs[405]),/* "ANSI X9.62" */ 27030Sstevel@tonic-gate &(nid_objs[368]),/* "Acceptable OCSP Responses" */ 2704*2139Sjp161948 &(nid_objs[664]),/* "Any language" */ 27050Sstevel@tonic-gate &(nid_objs[177]),/* "Authority Information Access" */ 27060Sstevel@tonic-gate &(nid_objs[365]),/* "Basic OCSP Response" */ 27070Sstevel@tonic-gate &(nid_objs[285]),/* "Biometric Info" */ 27080Sstevel@tonic-gate &(nid_objs[179]),/* "CA Issuers" */ 27090Sstevel@tonic-gate &(nid_objs[131]),/* "Code Signing" */ 27100Sstevel@tonic-gate &(nid_objs[382]),/* "Directory" */ 27110Sstevel@tonic-gate &(nid_objs[392]),/* "Domain" */ 27120Sstevel@tonic-gate &(nid_objs[132]),/* "E-mail Protection" */ 27130Sstevel@tonic-gate &(nid_objs[389]),/* "Enterprises" */ 27140Sstevel@tonic-gate &(nid_objs[384]),/* "Experimental" */ 27150Sstevel@tonic-gate &(nid_objs[372]),/* "Extended OCSP Status" */ 27160Sstevel@tonic-gate &(nid_objs[172]),/* "Extension Request" */ 27170Sstevel@tonic-gate &(nid_objs[432]),/* "Hold Instruction Call Issuer" */ 27180Sstevel@tonic-gate &(nid_objs[430]),/* "Hold Instruction Code" */ 27190Sstevel@tonic-gate &(nid_objs[431]),/* "Hold Instruction None" */ 27200Sstevel@tonic-gate &(nid_objs[433]),/* "Hold Instruction Reject" */ 27210Sstevel@tonic-gate &(nid_objs[634]),/* "ICC or token signature" */ 27220Sstevel@tonic-gate &(nid_objs[294]),/* "IPSec End System" */ 27230Sstevel@tonic-gate &(nid_objs[295]),/* "IPSec Tunnel" */ 27240Sstevel@tonic-gate &(nid_objs[296]),/* "IPSec User" */ 27250Sstevel@tonic-gate &(nid_objs[182]),/* "ISO Member Body" */ 27260Sstevel@tonic-gate &(nid_objs[183]),/* "ISO US Member Body" */ 2727*2139Sjp161948 &(nid_objs[667]),/* "Independent" */ 2728*2139Sjp161948 &(nid_objs[665]),/* "Inherit all" */ 2729*2139Sjp161948 &(nid_objs[647]),/* "International Organizations" */ 27300Sstevel@tonic-gate &(nid_objs[142]),/* "Invalidity Date" */ 27310Sstevel@tonic-gate &(nid_objs[504]),/* "MIME MHS" */ 27320Sstevel@tonic-gate &(nid_objs[388]),/* "Mail" */ 27330Sstevel@tonic-gate &(nid_objs[383]),/* "Management" */ 27340Sstevel@tonic-gate &(nid_objs[417]),/* "Microsoft CSP Name" */ 27350Sstevel@tonic-gate &(nid_objs[135]),/* "Microsoft Commercial Code Signing" */ 27360Sstevel@tonic-gate &(nid_objs[138]),/* "Microsoft Encrypted File System" */ 27370Sstevel@tonic-gate &(nid_objs[171]),/* "Microsoft Extension Request" */ 27380Sstevel@tonic-gate &(nid_objs[134]),/* "Microsoft Individual Code Signing" */ 27390Sstevel@tonic-gate &(nid_objs[137]),/* "Microsoft Server Gated Crypto" */ 27400Sstevel@tonic-gate &(nid_objs[648]),/* "Microsoft Smartcardlogin" */ 27410Sstevel@tonic-gate &(nid_objs[136]),/* "Microsoft Trust List Signing" */ 27420Sstevel@tonic-gate &(nid_objs[649]),/* "Microsoft Universal Principal Name" */ 2743*2139Sjp161948 &(nid_objs[393]),/* "NULL" */ 2744*2139Sjp161948 &(nid_objs[404]),/* "NULL" */ 27450Sstevel@tonic-gate &(nid_objs[72]),/* "Netscape Base Url" */ 27460Sstevel@tonic-gate &(nid_objs[76]),/* "Netscape CA Policy Url" */ 27470Sstevel@tonic-gate &(nid_objs[74]),/* "Netscape CA Revocation Url" */ 27480Sstevel@tonic-gate &(nid_objs[71]),/* "Netscape Cert Type" */ 27490Sstevel@tonic-gate &(nid_objs[58]),/* "Netscape Certificate Extension" */ 27500Sstevel@tonic-gate &(nid_objs[79]),/* "Netscape Certificate Sequence" */ 27510Sstevel@tonic-gate &(nid_objs[78]),/* "Netscape Comment" */ 27520Sstevel@tonic-gate &(nid_objs[57]),/* "Netscape Communications Corp." */ 27530Sstevel@tonic-gate &(nid_objs[59]),/* "Netscape Data Type" */ 27540Sstevel@tonic-gate &(nid_objs[75]),/* "Netscape Renewal Url" */ 27550Sstevel@tonic-gate &(nid_objs[73]),/* "Netscape Revocation Url" */ 27560Sstevel@tonic-gate &(nid_objs[77]),/* "Netscape SSL Server Name" */ 27570Sstevel@tonic-gate &(nid_objs[139]),/* "Netscape Server Gated Crypto" */ 27580Sstevel@tonic-gate &(nid_objs[178]),/* "OCSP" */ 27590Sstevel@tonic-gate &(nid_objs[370]),/* "OCSP Archive Cutoff" */ 27600Sstevel@tonic-gate &(nid_objs[367]),/* "OCSP CRL ID" */ 27610Sstevel@tonic-gate &(nid_objs[369]),/* "OCSP No Check" */ 27620Sstevel@tonic-gate &(nid_objs[366]),/* "OCSP Nonce" */ 27630Sstevel@tonic-gate &(nid_objs[371]),/* "OCSP Service Locator" */ 27640Sstevel@tonic-gate &(nid_objs[180]),/* "OCSP Signing" */ 27650Sstevel@tonic-gate &(nid_objs[161]),/* "PBES2" */ 27660Sstevel@tonic-gate &(nid_objs[69]),/* "PBKDF2" */ 27670Sstevel@tonic-gate &(nid_objs[162]),/* "PBMAC1" */ 27680Sstevel@tonic-gate &(nid_objs[127]),/* "PKIX" */ 27690Sstevel@tonic-gate &(nid_objs[164]),/* "Policy Qualifier CPS" */ 27700Sstevel@tonic-gate &(nid_objs[165]),/* "Policy Qualifier User Notice" */ 27710Sstevel@tonic-gate &(nid_objs[385]),/* "Private" */ 2772*2139Sjp161948 &(nid_objs[663]),/* "Proxy Certificate Information" */ 27730Sstevel@tonic-gate &(nid_objs[ 1]),/* "RSA Data Security, Inc." */ 27740Sstevel@tonic-gate &(nid_objs[ 2]),/* "RSA Data Security, Inc. PKCS" */ 27750Sstevel@tonic-gate &(nid_objs[188]),/* "S/MIME" */ 27760Sstevel@tonic-gate &(nid_objs[167]),/* "S/MIME Capabilities" */ 27770Sstevel@tonic-gate &(nid_objs[387]),/* "SNMPv2" */ 27780Sstevel@tonic-gate &(nid_objs[512]),/* "Secure Electronic Transactions" */ 27790Sstevel@tonic-gate &(nid_objs[386]),/* "Security" */ 27800Sstevel@tonic-gate &(nid_objs[394]),/* "Selected Attribute Types" */ 27810Sstevel@tonic-gate &(nid_objs[143]),/* "Strong Extranet ID" */ 27820Sstevel@tonic-gate &(nid_objs[398]),/* "Subject Information Access" */ 27830Sstevel@tonic-gate &(nid_objs[130]),/* "TLS Web Client Authentication" */ 27840Sstevel@tonic-gate &(nid_objs[129]),/* "TLS Web Server Authentication" */ 27850Sstevel@tonic-gate &(nid_objs[133]),/* "Time Stamping" */ 27860Sstevel@tonic-gate &(nid_objs[375]),/* "Trust Root" */ 27870Sstevel@tonic-gate &(nid_objs[12]),/* "X509" */ 27880Sstevel@tonic-gate &(nid_objs[402]),/* "X509v3 AC Targeting" */ 2789*2139Sjp161948 &(nid_objs[746]),/* "X509v3 Any Policy" */ 27900Sstevel@tonic-gate &(nid_objs[90]),/* "X509v3 Authority Key Identifier" */ 27910Sstevel@tonic-gate &(nid_objs[87]),/* "X509v3 Basic Constraints" */ 27920Sstevel@tonic-gate &(nid_objs[103]),/* "X509v3 CRL Distribution Points" */ 27930Sstevel@tonic-gate &(nid_objs[88]),/* "X509v3 CRL Number" */ 27940Sstevel@tonic-gate &(nid_objs[141]),/* "X509v3 CRL Reason Code" */ 27950Sstevel@tonic-gate &(nid_objs[89]),/* "X509v3 Certificate Policies" */ 27960Sstevel@tonic-gate &(nid_objs[140]),/* "X509v3 Delta CRL Indicator" */ 27970Sstevel@tonic-gate &(nid_objs[126]),/* "X509v3 Extended Key Usage" */ 2798*2139Sjp161948 &(nid_objs[748]),/* "X509v3 Inhibit Any Policy" */ 27990Sstevel@tonic-gate &(nid_objs[86]),/* "X509v3 Issuer Alternative Name" */ 28000Sstevel@tonic-gate &(nid_objs[83]),/* "X509v3 Key Usage" */ 2801*2139Sjp161948 &(nid_objs[666]),/* "X509v3 Name Constraints" */ 28020Sstevel@tonic-gate &(nid_objs[403]),/* "X509v3 No Revocation Available" */ 28030Sstevel@tonic-gate &(nid_objs[401]),/* "X509v3 Policy Constraints" */ 2804*2139Sjp161948 &(nid_objs[747]),/* "X509v3 Policy Mappings" */ 28050Sstevel@tonic-gate &(nid_objs[84]),/* "X509v3 Private Key Usage Period" */ 28060Sstevel@tonic-gate &(nid_objs[85]),/* "X509v3 Subject Alternative Name" */ 28070Sstevel@tonic-gate &(nid_objs[82]),/* "X509v3 Subject Key Identifier" */ 28080Sstevel@tonic-gate &(nid_objs[184]),/* "X9.57" */ 28090Sstevel@tonic-gate &(nid_objs[185]),/* "X9.57 CM ?" */ 28100Sstevel@tonic-gate &(nid_objs[478]),/* "aRecord" */ 28110Sstevel@tonic-gate &(nid_objs[289]),/* "aaControls" */ 28120Sstevel@tonic-gate &(nid_objs[287]),/* "ac-auditEntity" */ 28130Sstevel@tonic-gate &(nid_objs[397]),/* "ac-proxying" */ 28140Sstevel@tonic-gate &(nid_objs[288]),/* "ac-targeting" */ 28150Sstevel@tonic-gate &(nid_objs[446]),/* "account" */ 28160Sstevel@tonic-gate &(nid_objs[364]),/* "ad dvcs" */ 28170Sstevel@tonic-gate &(nid_objs[606]),/* "additional verification" */ 28180Sstevel@tonic-gate &(nid_objs[419]),/* "aes-128-cbc" */ 28190Sstevel@tonic-gate &(nid_objs[421]),/* "aes-128-cfb" */ 2820*2139Sjp161948 &(nid_objs[650]),/* "aes-128-cfb1" */ 2821*2139Sjp161948 &(nid_objs[653]),/* "aes-128-cfb8" */ 28220Sstevel@tonic-gate &(nid_objs[418]),/* "aes-128-ecb" */ 28230Sstevel@tonic-gate &(nid_objs[420]),/* "aes-128-ofb" */ 28240Sstevel@tonic-gate &(nid_objs[423]),/* "aes-192-cbc" */ 28250Sstevel@tonic-gate &(nid_objs[425]),/* "aes-192-cfb" */ 2826*2139Sjp161948 &(nid_objs[651]),/* "aes-192-cfb1" */ 2827*2139Sjp161948 &(nid_objs[654]),/* "aes-192-cfb8" */ 28280Sstevel@tonic-gate &(nid_objs[422]),/* "aes-192-ecb" */ 28290Sstevel@tonic-gate &(nid_objs[424]),/* "aes-192-ofb" */ 28300Sstevel@tonic-gate &(nid_objs[427]),/* "aes-256-cbc" */ 28310Sstevel@tonic-gate &(nid_objs[429]),/* "aes-256-cfb" */ 2832*2139Sjp161948 &(nid_objs[652]),/* "aes-256-cfb1" */ 2833*2139Sjp161948 &(nid_objs[655]),/* "aes-256-cfb8" */ 28340Sstevel@tonic-gate &(nid_objs[426]),/* "aes-256-ecb" */ 28350Sstevel@tonic-gate &(nid_objs[428]),/* "aes-256-ofb" */ 28360Sstevel@tonic-gate &(nid_objs[376]),/* "algorithm" */ 28370Sstevel@tonic-gate &(nid_objs[484]),/* "associatedDomain" */ 28380Sstevel@tonic-gate &(nid_objs[485]),/* "associatedName" */ 28390Sstevel@tonic-gate &(nid_objs[501]),/* "audio" */ 28400Sstevel@tonic-gate &(nid_objs[91]),/* "bf-cbc" */ 28410Sstevel@tonic-gate &(nid_objs[93]),/* "bf-cfb" */ 28420Sstevel@tonic-gate &(nid_objs[92]),/* "bf-ecb" */ 28430Sstevel@tonic-gate &(nid_objs[94]),/* "bf-ofb" */ 28440Sstevel@tonic-gate &(nid_objs[494]),/* "buildingName" */ 2845*2139Sjp161948 &(nid_objs[691]),/* "c2onb191v4" */ 2846*2139Sjp161948 &(nid_objs[692]),/* "c2onb191v5" */ 2847*2139Sjp161948 &(nid_objs[697]),/* "c2onb239v4" */ 2848*2139Sjp161948 &(nid_objs[698]),/* "c2onb239v5" */ 2849*2139Sjp161948 &(nid_objs[684]),/* "c2pnb163v1" */ 2850*2139Sjp161948 &(nid_objs[685]),/* "c2pnb163v2" */ 2851*2139Sjp161948 &(nid_objs[686]),/* "c2pnb163v3" */ 2852*2139Sjp161948 &(nid_objs[687]),/* "c2pnb176v1" */ 2853*2139Sjp161948 &(nid_objs[693]),/* "c2pnb208w1" */ 2854*2139Sjp161948 &(nid_objs[699]),/* "c2pnb272w1" */ 2855*2139Sjp161948 &(nid_objs[700]),/* "c2pnb304w1" */ 2856*2139Sjp161948 &(nid_objs[702]),/* "c2pnb368w1" */ 2857*2139Sjp161948 &(nid_objs[688]),/* "c2tnb191v1" */ 2858*2139Sjp161948 &(nid_objs[689]),/* "c2tnb191v2" */ 2859*2139Sjp161948 &(nid_objs[690]),/* "c2tnb191v3" */ 2860*2139Sjp161948 &(nid_objs[694]),/* "c2tnb239v1" */ 2861*2139Sjp161948 &(nid_objs[695]),/* "c2tnb239v2" */ 2862*2139Sjp161948 &(nid_objs[696]),/* "c2tnb239v3" */ 2863*2139Sjp161948 &(nid_objs[701]),/* "c2tnb359v1" */ 2864*2139Sjp161948 &(nid_objs[703]),/* "c2tnb431r1" */ 28650Sstevel@tonic-gate &(nid_objs[483]),/* "cNAMERecord" */ 28660Sstevel@tonic-gate &(nid_objs[443]),/* "caseIgnoreIA5StringSyntax" */ 28670Sstevel@tonic-gate &(nid_objs[108]),/* "cast5-cbc" */ 28680Sstevel@tonic-gate &(nid_objs[110]),/* "cast5-cfb" */ 28690Sstevel@tonic-gate &(nid_objs[109]),/* "cast5-ecb" */ 28700Sstevel@tonic-gate &(nid_objs[111]),/* "cast5-ofb" */ 28710Sstevel@tonic-gate &(nid_objs[152]),/* "certBag" */ 2872*2139Sjp161948 &(nid_objs[677]),/* "certicom-arc" */ 28730Sstevel@tonic-gate &(nid_objs[517]),/* "certificate extensions" */ 28740Sstevel@tonic-gate &(nid_objs[54]),/* "challengePassword" */ 28750Sstevel@tonic-gate &(nid_objs[407]),/* "characteristic-two-field" */ 28760Sstevel@tonic-gate &(nid_objs[395]),/* "clearance" */ 28770Sstevel@tonic-gate &(nid_objs[633]),/* "cleartext track 2" */ 28780Sstevel@tonic-gate &(nid_objs[13]),/* "commonName" */ 28790Sstevel@tonic-gate &(nid_objs[513]),/* "content types" */ 28800Sstevel@tonic-gate &(nid_objs[50]),/* "contentType" */ 28810Sstevel@tonic-gate &(nid_objs[53]),/* "countersignature" */ 28820Sstevel@tonic-gate &(nid_objs[14]),/* "countryName" */ 28830Sstevel@tonic-gate &(nid_objs[153]),/* "crlBag" */ 28840Sstevel@tonic-gate &(nid_objs[500]),/* "dITRedirect" */ 28850Sstevel@tonic-gate &(nid_objs[451]),/* "dNSDomain" */ 28860Sstevel@tonic-gate &(nid_objs[495]),/* "dSAQuality" */ 28870Sstevel@tonic-gate &(nid_objs[434]),/* "data" */ 28880Sstevel@tonic-gate &(nid_objs[390]),/* "dcObject" */ 28890Sstevel@tonic-gate &(nid_objs[31]),/* "des-cbc" */ 28900Sstevel@tonic-gate &(nid_objs[643]),/* "des-cdmf" */ 28910Sstevel@tonic-gate &(nid_objs[30]),/* "des-cfb" */ 2892*2139Sjp161948 &(nid_objs[656]),/* "des-cfb1" */ 2893*2139Sjp161948 &(nid_objs[657]),/* "des-cfb8" */ 28940Sstevel@tonic-gate &(nid_objs[29]),/* "des-ecb" */ 28950Sstevel@tonic-gate &(nid_objs[32]),/* "des-ede" */ 28960Sstevel@tonic-gate &(nid_objs[43]),/* "des-ede-cbc" */ 28970Sstevel@tonic-gate &(nid_objs[60]),/* "des-ede-cfb" */ 28980Sstevel@tonic-gate &(nid_objs[62]),/* "des-ede-ofb" */ 28990Sstevel@tonic-gate &(nid_objs[33]),/* "des-ede3" */ 29000Sstevel@tonic-gate &(nid_objs[44]),/* "des-ede3-cbc" */ 29010Sstevel@tonic-gate &(nid_objs[61]),/* "des-ede3-cfb" */ 2902*2139Sjp161948 &(nid_objs[658]),/* "des-ede3-cfb1" */ 2903*2139Sjp161948 &(nid_objs[659]),/* "des-ede3-cfb8" */ 29040Sstevel@tonic-gate &(nid_objs[63]),/* "des-ede3-ofb" */ 29050Sstevel@tonic-gate &(nid_objs[45]),/* "des-ofb" */ 29060Sstevel@tonic-gate &(nid_objs[107]),/* "description" */ 29070Sstevel@tonic-gate &(nid_objs[80]),/* "desx-cbc" */ 29080Sstevel@tonic-gate &(nid_objs[28]),/* "dhKeyAgreement" */ 29090Sstevel@tonic-gate &(nid_objs[11]),/* "directory services (X.500)" */ 29100Sstevel@tonic-gate &(nid_objs[378]),/* "directory services - algorithms" */ 29110Sstevel@tonic-gate &(nid_objs[174]),/* "dnQualifier" */ 29120Sstevel@tonic-gate &(nid_objs[447]),/* "document" */ 29130Sstevel@tonic-gate &(nid_objs[471]),/* "documentAuthor" */ 29140Sstevel@tonic-gate &(nid_objs[468]),/* "documentIdentifier" */ 29150Sstevel@tonic-gate &(nid_objs[472]),/* "documentLocation" */ 29160Sstevel@tonic-gate &(nid_objs[502]),/* "documentPublisher" */ 29170Sstevel@tonic-gate &(nid_objs[449]),/* "documentSeries" */ 29180Sstevel@tonic-gate &(nid_objs[469]),/* "documentTitle" */ 29190Sstevel@tonic-gate &(nid_objs[470]),/* "documentVersion" */ 29200Sstevel@tonic-gate &(nid_objs[380]),/* "dod" */ 29210Sstevel@tonic-gate &(nid_objs[391]),/* "domainComponent" */ 29220Sstevel@tonic-gate &(nid_objs[452]),/* "domainRelatedObject" */ 29230Sstevel@tonic-gate &(nid_objs[116]),/* "dsaEncryption" */ 29240Sstevel@tonic-gate &(nid_objs[67]),/* "dsaEncryption-old" */ 29250Sstevel@tonic-gate &(nid_objs[66]),/* "dsaWithSHA" */ 29260Sstevel@tonic-gate &(nid_objs[113]),/* "dsaWithSHA1" */ 29270Sstevel@tonic-gate &(nid_objs[70]),/* "dsaWithSHA1-old" */ 29280Sstevel@tonic-gate &(nid_objs[297]),/* "dvcs" */ 29290Sstevel@tonic-gate &(nid_objs[416]),/* "ecdsa-with-SHA1" */ 29300Sstevel@tonic-gate &(nid_objs[48]),/* "emailAddress" */ 29310Sstevel@tonic-gate &(nid_objs[632]),/* "encrypted track 2" */ 29320Sstevel@tonic-gate &(nid_objs[56]),/* "extendedCertificateAttributes" */ 29330Sstevel@tonic-gate &(nid_objs[462]),/* "favouriteDrink" */ 29340Sstevel@tonic-gate &(nid_objs[453]),/* "friendlyCountry" */ 29350Sstevel@tonic-gate &(nid_objs[490]),/* "friendlyCountryName" */ 29360Sstevel@tonic-gate &(nid_objs[156]),/* "friendlyName" */ 29370Sstevel@tonic-gate &(nid_objs[631]),/* "generate cryptogram" */ 29380Sstevel@tonic-gate &(nid_objs[509]),/* "generationQualifier" */ 29390Sstevel@tonic-gate &(nid_objs[601]),/* "generic cryptogram" */ 29400Sstevel@tonic-gate &(nid_objs[99]),/* "givenName" */ 29410Sstevel@tonic-gate &(nid_objs[163]),/* "hmacWithSHA1" */ 29420Sstevel@tonic-gate &(nid_objs[486]),/* "homePostalAddress" */ 29430Sstevel@tonic-gate &(nid_objs[473]),/* "homeTelephoneNumber" */ 29440Sstevel@tonic-gate &(nid_objs[466]),/* "host" */ 29450Sstevel@tonic-gate &(nid_objs[442]),/* "iA5StringSyntax" */ 29460Sstevel@tonic-gate &(nid_objs[381]),/* "iana" */ 29470Sstevel@tonic-gate &(nid_objs[266]),/* "id-aca" */ 29480Sstevel@tonic-gate &(nid_objs[355]),/* "id-aca-accessIdentity" */ 29490Sstevel@tonic-gate &(nid_objs[354]),/* "id-aca-authenticationInfo" */ 29500Sstevel@tonic-gate &(nid_objs[356]),/* "id-aca-chargingIdentity" */ 29510Sstevel@tonic-gate &(nid_objs[399]),/* "id-aca-encAttrs" */ 29520Sstevel@tonic-gate &(nid_objs[357]),/* "id-aca-group" */ 29530Sstevel@tonic-gate &(nid_objs[358]),/* "id-aca-role" */ 29540Sstevel@tonic-gate &(nid_objs[176]),/* "id-ad" */ 29550Sstevel@tonic-gate &(nid_objs[262]),/* "id-alg" */ 29560Sstevel@tonic-gate &(nid_objs[323]),/* "id-alg-des40" */ 29570Sstevel@tonic-gate &(nid_objs[326]),/* "id-alg-dh-pop" */ 29580Sstevel@tonic-gate &(nid_objs[325]),/* "id-alg-dh-sig-hmac-sha1" */ 29590Sstevel@tonic-gate &(nid_objs[324]),/* "id-alg-noSignature" */ 29600Sstevel@tonic-gate &(nid_objs[268]),/* "id-cct" */ 29610Sstevel@tonic-gate &(nid_objs[361]),/* "id-cct-PKIData" */ 29620Sstevel@tonic-gate &(nid_objs[362]),/* "id-cct-PKIResponse" */ 29630Sstevel@tonic-gate &(nid_objs[360]),/* "id-cct-crs" */ 29640Sstevel@tonic-gate &(nid_objs[81]),/* "id-ce" */ 2965*2139Sjp161948 &(nid_objs[680]),/* "id-characteristic-two-basis" */ 29660Sstevel@tonic-gate &(nid_objs[263]),/* "id-cmc" */ 29670Sstevel@tonic-gate &(nid_objs[334]),/* "id-cmc-addExtensions" */ 29680Sstevel@tonic-gate &(nid_objs[346]),/* "id-cmc-confirmCertAcceptance" */ 29690Sstevel@tonic-gate &(nid_objs[330]),/* "id-cmc-dataReturn" */ 29700Sstevel@tonic-gate &(nid_objs[336]),/* "id-cmc-decryptedPOP" */ 29710Sstevel@tonic-gate &(nid_objs[335]),/* "id-cmc-encryptedPOP" */ 29720Sstevel@tonic-gate &(nid_objs[339]),/* "id-cmc-getCRL" */ 29730Sstevel@tonic-gate &(nid_objs[338]),/* "id-cmc-getCert" */ 29740Sstevel@tonic-gate &(nid_objs[328]),/* "id-cmc-identification" */ 29750Sstevel@tonic-gate &(nid_objs[329]),/* "id-cmc-identityProof" */ 29760Sstevel@tonic-gate &(nid_objs[337]),/* "id-cmc-lraPOPWitness" */ 29770Sstevel@tonic-gate &(nid_objs[344]),/* "id-cmc-popLinkRandom" */ 29780Sstevel@tonic-gate &(nid_objs[345]),/* "id-cmc-popLinkWitness" */ 29790Sstevel@tonic-gate &(nid_objs[343]),/* "id-cmc-queryPending" */ 29800Sstevel@tonic-gate &(nid_objs[333]),/* "id-cmc-recipientNonce" */ 29810Sstevel@tonic-gate &(nid_objs[341]),/* "id-cmc-regInfo" */ 29820Sstevel@tonic-gate &(nid_objs[342]),/* "id-cmc-responseInfo" */ 29830Sstevel@tonic-gate &(nid_objs[340]),/* "id-cmc-revokeRequest" */ 29840Sstevel@tonic-gate &(nid_objs[332]),/* "id-cmc-senderNonce" */ 29850Sstevel@tonic-gate &(nid_objs[327]),/* "id-cmc-statusInfo" */ 29860Sstevel@tonic-gate &(nid_objs[331]),/* "id-cmc-transactionId" */ 29870Sstevel@tonic-gate &(nid_objs[408]),/* "id-ecPublicKey" */ 29880Sstevel@tonic-gate &(nid_objs[508]),/* "id-hex-multipart-message" */ 29890Sstevel@tonic-gate &(nid_objs[507]),/* "id-hex-partial-message" */ 29900Sstevel@tonic-gate &(nid_objs[260]),/* "id-it" */ 29910Sstevel@tonic-gate &(nid_objs[302]),/* "id-it-caKeyUpdateInfo" */ 29920Sstevel@tonic-gate &(nid_objs[298]),/* "id-it-caProtEncCert" */ 29930Sstevel@tonic-gate &(nid_objs[311]),/* "id-it-confirmWaitTime" */ 29940Sstevel@tonic-gate &(nid_objs[303]),/* "id-it-currentCRL" */ 29950Sstevel@tonic-gate &(nid_objs[300]),/* "id-it-encKeyPairTypes" */ 29960Sstevel@tonic-gate &(nid_objs[310]),/* "id-it-implicitConfirm" */ 29970Sstevel@tonic-gate &(nid_objs[308]),/* "id-it-keyPairParamRep" */ 29980Sstevel@tonic-gate &(nid_objs[307]),/* "id-it-keyPairParamReq" */ 29990Sstevel@tonic-gate &(nid_objs[312]),/* "id-it-origPKIMessage" */ 30000Sstevel@tonic-gate &(nid_objs[301]),/* "id-it-preferredSymmAlg" */ 30010Sstevel@tonic-gate &(nid_objs[309]),/* "id-it-revPassphrase" */ 30020Sstevel@tonic-gate &(nid_objs[299]),/* "id-it-signKeyPairTypes" */ 30030Sstevel@tonic-gate &(nid_objs[305]),/* "id-it-subscriptionRequest" */ 30040Sstevel@tonic-gate &(nid_objs[306]),/* "id-it-subscriptionResponse" */ 30050Sstevel@tonic-gate &(nid_objs[304]),/* "id-it-unsupportedOIDs" */ 30060Sstevel@tonic-gate &(nid_objs[128]),/* "id-kp" */ 30070Sstevel@tonic-gate &(nid_objs[280]),/* "id-mod-attribute-cert" */ 30080Sstevel@tonic-gate &(nid_objs[274]),/* "id-mod-cmc" */ 30090Sstevel@tonic-gate &(nid_objs[277]),/* "id-mod-cmp" */ 30100Sstevel@tonic-gate &(nid_objs[284]),/* "id-mod-cmp2000" */ 30110Sstevel@tonic-gate &(nid_objs[273]),/* "id-mod-crmf" */ 30120Sstevel@tonic-gate &(nid_objs[283]),/* "id-mod-dvcs" */ 30130Sstevel@tonic-gate &(nid_objs[275]),/* "id-mod-kea-profile-88" */ 30140Sstevel@tonic-gate &(nid_objs[276]),/* "id-mod-kea-profile-93" */ 30150Sstevel@tonic-gate &(nid_objs[282]),/* "id-mod-ocsp" */ 30160Sstevel@tonic-gate &(nid_objs[278]),/* "id-mod-qualified-cert-88" */ 30170Sstevel@tonic-gate &(nid_objs[279]),/* "id-mod-qualified-cert-93" */ 30180Sstevel@tonic-gate &(nid_objs[281]),/* "id-mod-timestamp-protocol" */ 30190Sstevel@tonic-gate &(nid_objs[264]),/* "id-on" */ 30200Sstevel@tonic-gate &(nid_objs[347]),/* "id-on-personalData" */ 30210Sstevel@tonic-gate &(nid_objs[265]),/* "id-pda" */ 30220Sstevel@tonic-gate &(nid_objs[352]),/* "id-pda-countryOfCitizenship" */ 30230Sstevel@tonic-gate &(nid_objs[353]),/* "id-pda-countryOfResidence" */ 30240Sstevel@tonic-gate &(nid_objs[348]),/* "id-pda-dateOfBirth" */ 30250Sstevel@tonic-gate &(nid_objs[351]),/* "id-pda-gender" */ 30260Sstevel@tonic-gate &(nid_objs[349]),/* "id-pda-placeOfBirth" */ 30270Sstevel@tonic-gate &(nid_objs[175]),/* "id-pe" */ 30280Sstevel@tonic-gate &(nid_objs[261]),/* "id-pkip" */ 30290Sstevel@tonic-gate &(nid_objs[258]),/* "id-pkix-mod" */ 30300Sstevel@tonic-gate &(nid_objs[269]),/* "id-pkix1-explicit-88" */ 30310Sstevel@tonic-gate &(nid_objs[271]),/* "id-pkix1-explicit-93" */ 30320Sstevel@tonic-gate &(nid_objs[270]),/* "id-pkix1-implicit-88" */ 30330Sstevel@tonic-gate &(nid_objs[272]),/* "id-pkix1-implicit-93" */ 3034*2139Sjp161948 &(nid_objs[662]),/* "id-ppl" */ 30350Sstevel@tonic-gate &(nid_objs[267]),/* "id-qcs" */ 30360Sstevel@tonic-gate &(nid_objs[359]),/* "id-qcs-pkixQCSyntax-v1" */ 30370Sstevel@tonic-gate &(nid_objs[259]),/* "id-qt" */ 30380Sstevel@tonic-gate &(nid_objs[313]),/* "id-regCtrl" */ 30390Sstevel@tonic-gate &(nid_objs[316]),/* "id-regCtrl-authenticator" */ 30400Sstevel@tonic-gate &(nid_objs[319]),/* "id-regCtrl-oldCertID" */ 30410Sstevel@tonic-gate &(nid_objs[318]),/* "id-regCtrl-pkiArchiveOptions" */ 30420Sstevel@tonic-gate &(nid_objs[317]),/* "id-regCtrl-pkiPublicationInfo" */ 30430Sstevel@tonic-gate &(nid_objs[320]),/* "id-regCtrl-protocolEncrKey" */ 30440Sstevel@tonic-gate &(nid_objs[315]),/* "id-regCtrl-regToken" */ 30450Sstevel@tonic-gate &(nid_objs[314]),/* "id-regInfo" */ 30460Sstevel@tonic-gate &(nid_objs[322]),/* "id-regInfo-certReq" */ 30470Sstevel@tonic-gate &(nid_objs[321]),/* "id-regInfo-utf8Pairs" */ 30480Sstevel@tonic-gate &(nid_objs[191]),/* "id-smime-aa" */ 30490Sstevel@tonic-gate &(nid_objs[215]),/* "id-smime-aa-contentHint" */ 30500Sstevel@tonic-gate &(nid_objs[218]),/* "id-smime-aa-contentIdentifier" */ 30510Sstevel@tonic-gate &(nid_objs[221]),/* "id-smime-aa-contentReference" */ 30520Sstevel@tonic-gate &(nid_objs[240]),/* "id-smime-aa-dvcs-dvc" */ 30530Sstevel@tonic-gate &(nid_objs[217]),/* "id-smime-aa-encapContentType" */ 30540Sstevel@tonic-gate &(nid_objs[222]),/* "id-smime-aa-encrypKeyPref" */ 30550Sstevel@tonic-gate &(nid_objs[220]),/* "id-smime-aa-equivalentLabels" */ 30560Sstevel@tonic-gate &(nid_objs[232]),/* "id-smime-aa-ets-CertificateRefs" */ 30570Sstevel@tonic-gate &(nid_objs[233]),/* "id-smime-aa-ets-RevocationRefs" */ 30580Sstevel@tonic-gate &(nid_objs[238]),/* "id-smime-aa-ets-archiveTimeStamp" */ 30590Sstevel@tonic-gate &(nid_objs[237]),/* "id-smime-aa-ets-certCRLTimestamp" */ 30600Sstevel@tonic-gate &(nid_objs[234]),/* "id-smime-aa-ets-certValues" */ 30610Sstevel@tonic-gate &(nid_objs[227]),/* "id-smime-aa-ets-commitmentType" */ 30620Sstevel@tonic-gate &(nid_objs[231]),/* "id-smime-aa-ets-contentTimestamp" */ 30630Sstevel@tonic-gate &(nid_objs[236]),/* "id-smime-aa-ets-escTimeStamp" */ 30640Sstevel@tonic-gate &(nid_objs[230]),/* "id-smime-aa-ets-otherSigCert" */ 30650Sstevel@tonic-gate &(nid_objs[235]),/* "id-smime-aa-ets-revocationValues" */ 30660Sstevel@tonic-gate &(nid_objs[226]),/* "id-smime-aa-ets-sigPolicyId" */ 30670Sstevel@tonic-gate &(nid_objs[229]),/* "id-smime-aa-ets-signerAttr" */ 30680Sstevel@tonic-gate &(nid_objs[228]),/* "id-smime-aa-ets-signerLocation" */ 30690Sstevel@tonic-gate &(nid_objs[219]),/* "id-smime-aa-macValue" */ 30700Sstevel@tonic-gate &(nid_objs[214]),/* "id-smime-aa-mlExpandHistory" */ 30710Sstevel@tonic-gate &(nid_objs[216]),/* "id-smime-aa-msgSigDigest" */ 30720Sstevel@tonic-gate &(nid_objs[212]),/* "id-smime-aa-receiptRequest" */ 30730Sstevel@tonic-gate &(nid_objs[213]),/* "id-smime-aa-securityLabel" */ 30740Sstevel@tonic-gate &(nid_objs[239]),/* "id-smime-aa-signatureType" */ 30750Sstevel@tonic-gate &(nid_objs[223]),/* "id-smime-aa-signingCertificate" */ 30760Sstevel@tonic-gate &(nid_objs[224]),/* "id-smime-aa-smimeEncryptCerts" */ 30770Sstevel@tonic-gate &(nid_objs[225]),/* "id-smime-aa-timeStampToken" */ 30780Sstevel@tonic-gate &(nid_objs[192]),/* "id-smime-alg" */ 30790Sstevel@tonic-gate &(nid_objs[243]),/* "id-smime-alg-3DESwrap" */ 30800Sstevel@tonic-gate &(nid_objs[246]),/* "id-smime-alg-CMS3DESwrap" */ 30810Sstevel@tonic-gate &(nid_objs[247]),/* "id-smime-alg-CMSRC2wrap" */ 30820Sstevel@tonic-gate &(nid_objs[245]),/* "id-smime-alg-ESDH" */ 30830Sstevel@tonic-gate &(nid_objs[241]),/* "id-smime-alg-ESDHwith3DES" */ 30840Sstevel@tonic-gate &(nid_objs[242]),/* "id-smime-alg-ESDHwithRC2" */ 30850Sstevel@tonic-gate &(nid_objs[244]),/* "id-smime-alg-RC2wrap" */ 30860Sstevel@tonic-gate &(nid_objs[193]),/* "id-smime-cd" */ 30870Sstevel@tonic-gate &(nid_objs[248]),/* "id-smime-cd-ldap" */ 30880Sstevel@tonic-gate &(nid_objs[190]),/* "id-smime-ct" */ 30890Sstevel@tonic-gate &(nid_objs[210]),/* "id-smime-ct-DVCSRequestData" */ 30900Sstevel@tonic-gate &(nid_objs[211]),/* "id-smime-ct-DVCSResponseData" */ 30910Sstevel@tonic-gate &(nid_objs[208]),/* "id-smime-ct-TDTInfo" */ 30920Sstevel@tonic-gate &(nid_objs[207]),/* "id-smime-ct-TSTInfo" */ 30930Sstevel@tonic-gate &(nid_objs[205]),/* "id-smime-ct-authData" */ 30940Sstevel@tonic-gate &(nid_objs[209]),/* "id-smime-ct-contentInfo" */ 30950Sstevel@tonic-gate &(nid_objs[206]),/* "id-smime-ct-publishCert" */ 30960Sstevel@tonic-gate &(nid_objs[204]),/* "id-smime-ct-receipt" */ 30970Sstevel@tonic-gate &(nid_objs[195]),/* "id-smime-cti" */ 30980Sstevel@tonic-gate &(nid_objs[255]),/* "id-smime-cti-ets-proofOfApproval" */ 30990Sstevel@tonic-gate &(nid_objs[256]),/* "id-smime-cti-ets-proofOfCreation" */ 31000Sstevel@tonic-gate &(nid_objs[253]),/* "id-smime-cti-ets-proofOfDelivery" */ 31010Sstevel@tonic-gate &(nid_objs[251]),/* "id-smime-cti-ets-proofOfOrigin" */ 31020Sstevel@tonic-gate &(nid_objs[252]),/* "id-smime-cti-ets-proofOfReceipt" */ 31030Sstevel@tonic-gate &(nid_objs[254]),/* "id-smime-cti-ets-proofOfSender" */ 31040Sstevel@tonic-gate &(nid_objs[189]),/* "id-smime-mod" */ 31050Sstevel@tonic-gate &(nid_objs[196]),/* "id-smime-mod-cms" */ 31060Sstevel@tonic-gate &(nid_objs[197]),/* "id-smime-mod-ess" */ 31070Sstevel@tonic-gate &(nid_objs[202]),/* "id-smime-mod-ets-eSigPolicy-88" */ 31080Sstevel@tonic-gate &(nid_objs[203]),/* "id-smime-mod-ets-eSigPolicy-97" */ 31090Sstevel@tonic-gate &(nid_objs[200]),/* "id-smime-mod-ets-eSignature-88" */ 31100Sstevel@tonic-gate &(nid_objs[201]),/* "id-smime-mod-ets-eSignature-97" */ 31110Sstevel@tonic-gate &(nid_objs[199]),/* "id-smime-mod-msg-v3" */ 31120Sstevel@tonic-gate &(nid_objs[198]),/* "id-smime-mod-oid" */ 31130Sstevel@tonic-gate &(nid_objs[194]),/* "id-smime-spq" */ 31140Sstevel@tonic-gate &(nid_objs[250]),/* "id-smime-spq-ets-sqt-unotice" */ 31150Sstevel@tonic-gate &(nid_objs[249]),/* "id-smime-spq-ets-sqt-uri" */ 31160Sstevel@tonic-gate &(nid_objs[34]),/* "idea-cbc" */ 31170Sstevel@tonic-gate &(nid_objs[35]),/* "idea-cfb" */ 31180Sstevel@tonic-gate &(nid_objs[36]),/* "idea-ecb" */ 31190Sstevel@tonic-gate &(nid_objs[46]),/* "idea-ofb" */ 3120*2139Sjp161948 &(nid_objs[676]),/* "identified-organization" */ 31210Sstevel@tonic-gate &(nid_objs[461]),/* "info" */ 31220Sstevel@tonic-gate &(nid_objs[101]),/* "initials" */ 3123*2139Sjp161948 &(nid_objs[749]),/* "ipsec3" */ 3124*2139Sjp161948 &(nid_objs[750]),/* "ipsec4" */ 31250Sstevel@tonic-gate &(nid_objs[181]),/* "iso" */ 31260Sstevel@tonic-gate &(nid_objs[623]),/* "issuer capabilities" */ 3127*2139Sjp161948 &(nid_objs[645]),/* "itu-t" */ 31280Sstevel@tonic-gate &(nid_objs[492]),/* "janetMailbox" */ 3129*2139Sjp161948 &(nid_objs[646]),/* "joint-iso-itu-t" */ 31300Sstevel@tonic-gate &(nid_objs[150]),/* "keyBag" */ 31310Sstevel@tonic-gate &(nid_objs[477]),/* "lastModifiedBy" */ 31320Sstevel@tonic-gate &(nid_objs[476]),/* "lastModifiedTime" */ 31330Sstevel@tonic-gate &(nid_objs[157]),/* "localKeyID" */ 31340Sstevel@tonic-gate &(nid_objs[15]),/* "localityName" */ 31350Sstevel@tonic-gate &(nid_objs[480]),/* "mXRecord" */ 31360Sstevel@tonic-gate &(nid_objs[493]),/* "mailPreferenceOption" */ 31370Sstevel@tonic-gate &(nid_objs[467]),/* "manager" */ 31380Sstevel@tonic-gate &(nid_objs[ 3]),/* "md2" */ 31390Sstevel@tonic-gate &(nid_objs[ 7]),/* "md2WithRSAEncryption" */ 31400Sstevel@tonic-gate &(nid_objs[257]),/* "md4" */ 31410Sstevel@tonic-gate &(nid_objs[396]),/* "md4WithRSAEncryption" */ 31420Sstevel@tonic-gate &(nid_objs[ 4]),/* "md5" */ 31430Sstevel@tonic-gate &(nid_objs[114]),/* "md5-sha1" */ 31440Sstevel@tonic-gate &(nid_objs[104]),/* "md5WithRSA" */ 31450Sstevel@tonic-gate &(nid_objs[ 8]),/* "md5WithRSAEncryption" */ 31460Sstevel@tonic-gate &(nid_objs[95]),/* "mdc2" */ 31470Sstevel@tonic-gate &(nid_objs[96]),/* "mdc2WithRSA" */ 31480Sstevel@tonic-gate &(nid_objs[602]),/* "merchant initiated auth" */ 31490Sstevel@tonic-gate &(nid_objs[514]),/* "message extensions" */ 31500Sstevel@tonic-gate &(nid_objs[51]),/* "messageDigest" */ 31510Sstevel@tonic-gate &(nid_objs[506]),/* "mime-mhs-bodies" */ 31520Sstevel@tonic-gate &(nid_objs[505]),/* "mime-mhs-headings" */ 31530Sstevel@tonic-gate &(nid_objs[488]),/* "mobileTelephoneNumber" */ 31540Sstevel@tonic-gate &(nid_objs[481]),/* "nSRecord" */ 31550Sstevel@tonic-gate &(nid_objs[173]),/* "name" */ 3156*2139Sjp161948 &(nid_objs[681]),/* "onBasis" */ 31570Sstevel@tonic-gate &(nid_objs[379]),/* "org" */ 31580Sstevel@tonic-gate &(nid_objs[17]),/* "organizationName" */ 31590Sstevel@tonic-gate &(nid_objs[491]),/* "organizationalStatus" */ 31600Sstevel@tonic-gate &(nid_objs[18]),/* "organizationalUnitName" */ 31610Sstevel@tonic-gate &(nid_objs[475]),/* "otherMailbox" */ 31620Sstevel@tonic-gate &(nid_objs[489]),/* "pagerTelephoneNumber" */ 31630Sstevel@tonic-gate &(nid_objs[374]),/* "path" */ 31640Sstevel@tonic-gate &(nid_objs[621]),/* "payment gateway capabilities" */ 31650Sstevel@tonic-gate &(nid_objs[ 9]),/* "pbeWithMD2AndDES-CBC" */ 31660Sstevel@tonic-gate &(nid_objs[168]),/* "pbeWithMD2AndRC2-CBC" */ 31670Sstevel@tonic-gate &(nid_objs[112]),/* "pbeWithMD5AndCast5CBC" */ 31680Sstevel@tonic-gate &(nid_objs[10]),/* "pbeWithMD5AndDES-CBC" */ 31690Sstevel@tonic-gate &(nid_objs[169]),/* "pbeWithMD5AndRC2-CBC" */ 31700Sstevel@tonic-gate &(nid_objs[148]),/* "pbeWithSHA1And128BitRC2-CBC" */ 31710Sstevel@tonic-gate &(nid_objs[144]),/* "pbeWithSHA1And128BitRC4" */ 31720Sstevel@tonic-gate &(nid_objs[147]),/* "pbeWithSHA1And2-KeyTripleDES-CBC" */ 31730Sstevel@tonic-gate &(nid_objs[146]),/* "pbeWithSHA1And3-KeyTripleDES-CBC" */ 31740Sstevel@tonic-gate &(nid_objs[149]),/* "pbeWithSHA1And40BitRC2-CBC" */ 31750Sstevel@tonic-gate &(nid_objs[145]),/* "pbeWithSHA1And40BitRC4" */ 31760Sstevel@tonic-gate &(nid_objs[170]),/* "pbeWithSHA1AndDES-CBC" */ 31770Sstevel@tonic-gate &(nid_objs[68]),/* "pbeWithSHA1AndRC2-CBC" */ 31780Sstevel@tonic-gate &(nid_objs[499]),/* "personalSignature" */ 31790Sstevel@tonic-gate &(nid_objs[487]),/* "personalTitle" */ 31800Sstevel@tonic-gate &(nid_objs[464]),/* "photo" */ 31810Sstevel@tonic-gate &(nid_objs[437]),/* "pilot" */ 31820Sstevel@tonic-gate &(nid_objs[439]),/* "pilotAttributeSyntax" */ 31830Sstevel@tonic-gate &(nid_objs[438]),/* "pilotAttributeType" */ 31840Sstevel@tonic-gate &(nid_objs[479]),/* "pilotAttributeType27" */ 31850Sstevel@tonic-gate &(nid_objs[456]),/* "pilotDSA" */ 31860Sstevel@tonic-gate &(nid_objs[441]),/* "pilotGroups" */ 31870Sstevel@tonic-gate &(nid_objs[444]),/* "pilotObject" */ 31880Sstevel@tonic-gate &(nid_objs[440]),/* "pilotObjectClass" */ 31890Sstevel@tonic-gate &(nid_objs[455]),/* "pilotOrganization" */ 31900Sstevel@tonic-gate &(nid_objs[445]),/* "pilotPerson" */ 31910Sstevel@tonic-gate &(nid_objs[186]),/* "pkcs1" */ 31920Sstevel@tonic-gate &(nid_objs[27]),/* "pkcs3" */ 31930Sstevel@tonic-gate &(nid_objs[187]),/* "pkcs5" */ 31940Sstevel@tonic-gate &(nid_objs[20]),/* "pkcs7" */ 31950Sstevel@tonic-gate &(nid_objs[21]),/* "pkcs7-data" */ 31960Sstevel@tonic-gate &(nid_objs[25]),/* "pkcs7-digestData" */ 31970Sstevel@tonic-gate &(nid_objs[26]),/* "pkcs7-encryptedData" */ 31980Sstevel@tonic-gate &(nid_objs[23]),/* "pkcs7-envelopedData" */ 31990Sstevel@tonic-gate &(nid_objs[24]),/* "pkcs7-signedAndEnvelopedData" */ 32000Sstevel@tonic-gate &(nid_objs[22]),/* "pkcs7-signedData" */ 32010Sstevel@tonic-gate &(nid_objs[151]),/* "pkcs8ShroudedKeyBag" */ 32020Sstevel@tonic-gate &(nid_objs[47]),/* "pkcs9" */ 3203*2139Sjp161948 &(nid_objs[661]),/* "postalCode" */ 3204*2139Sjp161948 &(nid_objs[683]),/* "ppBasis" */ 32050Sstevel@tonic-gate &(nid_objs[406]),/* "prime-field" */ 32060Sstevel@tonic-gate &(nid_objs[409]),/* "prime192v1" */ 32070Sstevel@tonic-gate &(nid_objs[410]),/* "prime192v2" */ 32080Sstevel@tonic-gate &(nid_objs[411]),/* "prime192v3" */ 32090Sstevel@tonic-gate &(nid_objs[412]),/* "prime239v1" */ 32100Sstevel@tonic-gate &(nid_objs[413]),/* "prime239v2" */ 32110Sstevel@tonic-gate &(nid_objs[414]),/* "prime239v3" */ 32120Sstevel@tonic-gate &(nid_objs[415]),/* "prime256v1" */ 32130Sstevel@tonic-gate &(nid_objs[510]),/* "pseudonym" */ 32140Sstevel@tonic-gate &(nid_objs[435]),/* "pss" */ 32150Sstevel@tonic-gate &(nid_objs[286]),/* "qcStatements" */ 32160Sstevel@tonic-gate &(nid_objs[457]),/* "qualityLabelledData" */ 32170Sstevel@tonic-gate &(nid_objs[450]),/* "rFC822localPart" */ 32180Sstevel@tonic-gate &(nid_objs[98]),/* "rc2-40-cbc" */ 32190Sstevel@tonic-gate &(nid_objs[166]),/* "rc2-64-cbc" */ 32200Sstevel@tonic-gate &(nid_objs[37]),/* "rc2-cbc" */ 32210Sstevel@tonic-gate &(nid_objs[39]),/* "rc2-cfb" */ 32220Sstevel@tonic-gate &(nid_objs[38]),/* "rc2-ecb" */ 32230Sstevel@tonic-gate &(nid_objs[40]),/* "rc2-ofb" */ 32240Sstevel@tonic-gate &(nid_objs[ 5]),/* "rc4" */ 32250Sstevel@tonic-gate &(nid_objs[97]),/* "rc4-40" */ 32260Sstevel@tonic-gate &(nid_objs[120]),/* "rc5-cbc" */ 32270Sstevel@tonic-gate &(nid_objs[122]),/* "rc5-cfb" */ 32280Sstevel@tonic-gate &(nid_objs[121]),/* "rc5-ecb" */ 32290Sstevel@tonic-gate &(nid_objs[123]),/* "rc5-ofb" */ 32300Sstevel@tonic-gate &(nid_objs[460]),/* "rfc822Mailbox" */ 32310Sstevel@tonic-gate &(nid_objs[117]),/* "ripemd160" */ 32320Sstevel@tonic-gate &(nid_objs[119]),/* "ripemd160WithRSA" */ 32330Sstevel@tonic-gate &(nid_objs[400]),/* "role" */ 32340Sstevel@tonic-gate &(nid_objs[448]),/* "room" */ 32350Sstevel@tonic-gate &(nid_objs[463]),/* "roomNumber" */ 32360Sstevel@tonic-gate &(nid_objs[19]),/* "rsa" */ 32370Sstevel@tonic-gate &(nid_objs[ 6]),/* "rsaEncryption" */ 32380Sstevel@tonic-gate &(nid_objs[644]),/* "rsaOAEPEncryptionSET" */ 32390Sstevel@tonic-gate &(nid_objs[377]),/* "rsaSignature" */ 32400Sstevel@tonic-gate &(nid_objs[124]),/* "run length compression" */ 32410Sstevel@tonic-gate &(nid_objs[482]),/* "sOARecord" */ 32420Sstevel@tonic-gate &(nid_objs[155]),/* "safeContentsBag" */ 3243*2139Sjp161948 &(nid_objs[291]),/* "sbgp-autonomousSysNum" */ 3244*2139Sjp161948 &(nid_objs[290]),/* "sbgp-ipAddrBlock" */ 3245*2139Sjp161948 &(nid_objs[292]),/* "sbgp-routerIdentifier" */ 32460Sstevel@tonic-gate &(nid_objs[159]),/* "sdsiCertificate" */ 3247*2139Sjp161948 &(nid_objs[704]),/* "secp112r1" */ 3248*2139Sjp161948 &(nid_objs[705]),/* "secp112r2" */ 3249*2139Sjp161948 &(nid_objs[706]),/* "secp128r1" */ 3250*2139Sjp161948 &(nid_objs[707]),/* "secp128r2" */ 3251*2139Sjp161948 &(nid_objs[708]),/* "secp160k1" */ 3252*2139Sjp161948 &(nid_objs[709]),/* "secp160r1" */ 3253*2139Sjp161948 &(nid_objs[710]),/* "secp160r2" */ 3254*2139Sjp161948 &(nid_objs[711]),/* "secp192k1" */ 3255*2139Sjp161948 &(nid_objs[712]),/* "secp224k1" */ 3256*2139Sjp161948 &(nid_objs[713]),/* "secp224r1" */ 3257*2139Sjp161948 &(nid_objs[714]),/* "secp256k1" */ 3258*2139Sjp161948 &(nid_objs[715]),/* "secp384r1" */ 3259*2139Sjp161948 &(nid_objs[716]),/* "secp521r1" */ 32600Sstevel@tonic-gate &(nid_objs[154]),/* "secretBag" */ 32610Sstevel@tonic-gate &(nid_objs[474]),/* "secretary" */ 3262*2139Sjp161948 &(nid_objs[717]),/* "sect113r1" */ 3263*2139Sjp161948 &(nid_objs[718]),/* "sect113r2" */ 3264*2139Sjp161948 &(nid_objs[719]),/* "sect131r1" */ 3265*2139Sjp161948 &(nid_objs[720]),/* "sect131r2" */ 3266*2139Sjp161948 &(nid_objs[721]),/* "sect163k1" */ 3267*2139Sjp161948 &(nid_objs[722]),/* "sect163r1" */ 3268*2139Sjp161948 &(nid_objs[723]),/* "sect163r2" */ 3269*2139Sjp161948 &(nid_objs[724]),/* "sect193r1" */ 3270*2139Sjp161948 &(nid_objs[725]),/* "sect193r2" */ 3271*2139Sjp161948 &(nid_objs[726]),/* "sect233k1" */ 3272*2139Sjp161948 &(nid_objs[727]),/* "sect233r1" */ 3273*2139Sjp161948 &(nid_objs[728]),/* "sect239k1" */ 3274*2139Sjp161948 &(nid_objs[729]),/* "sect283k1" */ 3275*2139Sjp161948 &(nid_objs[730]),/* "sect283r1" */ 3276*2139Sjp161948 &(nid_objs[731]),/* "sect409k1" */ 3277*2139Sjp161948 &(nid_objs[732]),/* "sect409r1" */ 3278*2139Sjp161948 &(nid_objs[733]),/* "sect571k1" */ 3279*2139Sjp161948 &(nid_objs[734]),/* "sect571r1" */ 32800Sstevel@tonic-gate &(nid_objs[635]),/* "secure device signature" */ 32810Sstevel@tonic-gate &(nid_objs[105]),/* "serialNumber" */ 32820Sstevel@tonic-gate &(nid_objs[625]),/* "set-addPolicy" */ 32830Sstevel@tonic-gate &(nid_objs[515]),/* "set-attr" */ 32840Sstevel@tonic-gate &(nid_objs[518]),/* "set-brand" */ 32850Sstevel@tonic-gate &(nid_objs[638]),/* "set-brand-AmericanExpress" */ 32860Sstevel@tonic-gate &(nid_objs[637]),/* "set-brand-Diners" */ 32870Sstevel@tonic-gate &(nid_objs[636]),/* "set-brand-IATA-ATA" */ 32880Sstevel@tonic-gate &(nid_objs[639]),/* "set-brand-JCB" */ 32890Sstevel@tonic-gate &(nid_objs[641]),/* "set-brand-MasterCard" */ 32900Sstevel@tonic-gate &(nid_objs[642]),/* "set-brand-Novus" */ 32910Sstevel@tonic-gate &(nid_objs[640]),/* "set-brand-Visa" */ 32920Sstevel@tonic-gate &(nid_objs[516]),/* "set-policy" */ 32930Sstevel@tonic-gate &(nid_objs[607]),/* "set-policy-root" */ 32940Sstevel@tonic-gate &(nid_objs[624]),/* "set-rootKeyThumb" */ 32950Sstevel@tonic-gate &(nid_objs[620]),/* "setAttr-Cert" */ 32960Sstevel@tonic-gate &(nid_objs[628]),/* "setAttr-IssCap-CVM" */ 32970Sstevel@tonic-gate &(nid_objs[630]),/* "setAttr-IssCap-Sig" */ 32980Sstevel@tonic-gate &(nid_objs[629]),/* "setAttr-IssCap-T2" */ 32990Sstevel@tonic-gate &(nid_objs[627]),/* "setAttr-Token-B0Prime" */ 33000Sstevel@tonic-gate &(nid_objs[626]),/* "setAttr-Token-EMV" */ 33010Sstevel@tonic-gate &(nid_objs[622]),/* "setAttr-TokenType" */ 33020Sstevel@tonic-gate &(nid_objs[619]),/* "setCext-IssuerCapabilities" */ 33030Sstevel@tonic-gate &(nid_objs[615]),/* "setCext-PGWYcapabilities" */ 33040Sstevel@tonic-gate &(nid_objs[616]),/* "setCext-TokenIdentifier" */ 33050Sstevel@tonic-gate &(nid_objs[618]),/* "setCext-TokenType" */ 33060Sstevel@tonic-gate &(nid_objs[617]),/* "setCext-Track2Data" */ 33070Sstevel@tonic-gate &(nid_objs[611]),/* "setCext-cCertRequired" */ 33080Sstevel@tonic-gate &(nid_objs[609]),/* "setCext-certType" */ 33090Sstevel@tonic-gate &(nid_objs[608]),/* "setCext-hashedRoot" */ 33100Sstevel@tonic-gate &(nid_objs[610]),/* "setCext-merchData" */ 33110Sstevel@tonic-gate &(nid_objs[613]),/* "setCext-setExt" */ 33120Sstevel@tonic-gate &(nid_objs[614]),/* "setCext-setQualf" */ 33130Sstevel@tonic-gate &(nid_objs[612]),/* "setCext-tunneling" */ 33140Sstevel@tonic-gate &(nid_objs[540]),/* "setct-AcqCardCodeMsg" */ 33150Sstevel@tonic-gate &(nid_objs[576]),/* "setct-AcqCardCodeMsgTBE" */ 33160Sstevel@tonic-gate &(nid_objs[570]),/* "setct-AuthReqTBE" */ 33170Sstevel@tonic-gate &(nid_objs[534]),/* "setct-AuthReqTBS" */ 33180Sstevel@tonic-gate &(nid_objs[527]),/* "setct-AuthResBaggage" */ 33190Sstevel@tonic-gate &(nid_objs[571]),/* "setct-AuthResTBE" */ 33200Sstevel@tonic-gate &(nid_objs[572]),/* "setct-AuthResTBEX" */ 33210Sstevel@tonic-gate &(nid_objs[535]),/* "setct-AuthResTBS" */ 33220Sstevel@tonic-gate &(nid_objs[536]),/* "setct-AuthResTBSX" */ 33230Sstevel@tonic-gate &(nid_objs[528]),/* "setct-AuthRevReqBaggage" */ 33240Sstevel@tonic-gate &(nid_objs[577]),/* "setct-AuthRevReqTBE" */ 33250Sstevel@tonic-gate &(nid_objs[541]),/* "setct-AuthRevReqTBS" */ 33260Sstevel@tonic-gate &(nid_objs[529]),/* "setct-AuthRevResBaggage" */ 33270Sstevel@tonic-gate &(nid_objs[542]),/* "setct-AuthRevResData" */ 33280Sstevel@tonic-gate &(nid_objs[578]),/* "setct-AuthRevResTBE" */ 33290Sstevel@tonic-gate &(nid_objs[579]),/* "setct-AuthRevResTBEB" */ 33300Sstevel@tonic-gate &(nid_objs[543]),/* "setct-AuthRevResTBS" */ 33310Sstevel@tonic-gate &(nid_objs[573]),/* "setct-AuthTokenTBE" */ 33320Sstevel@tonic-gate &(nid_objs[537]),/* "setct-AuthTokenTBS" */ 33330Sstevel@tonic-gate &(nid_objs[600]),/* "setct-BCIDistributionTBS" */ 33340Sstevel@tonic-gate &(nid_objs[558]),/* "setct-BatchAdminReqData" */ 33350Sstevel@tonic-gate &(nid_objs[592]),/* "setct-BatchAdminReqTBE" */ 33360Sstevel@tonic-gate &(nid_objs[559]),/* "setct-BatchAdminResData" */ 33370Sstevel@tonic-gate &(nid_objs[593]),/* "setct-BatchAdminResTBE" */ 33380Sstevel@tonic-gate &(nid_objs[599]),/* "setct-CRLNotificationResTBS" */ 33390Sstevel@tonic-gate &(nid_objs[598]),/* "setct-CRLNotificationTBS" */ 33400Sstevel@tonic-gate &(nid_objs[580]),/* "setct-CapReqTBE" */ 33410Sstevel@tonic-gate &(nid_objs[581]),/* "setct-CapReqTBEX" */ 33420Sstevel@tonic-gate &(nid_objs[544]),/* "setct-CapReqTBS" */ 33430Sstevel@tonic-gate &(nid_objs[545]),/* "setct-CapReqTBSX" */ 33440Sstevel@tonic-gate &(nid_objs[546]),/* "setct-CapResData" */ 33450Sstevel@tonic-gate &(nid_objs[582]),/* "setct-CapResTBE" */ 33460Sstevel@tonic-gate &(nid_objs[583]),/* "setct-CapRevReqTBE" */ 33470Sstevel@tonic-gate &(nid_objs[584]),/* "setct-CapRevReqTBEX" */ 33480Sstevel@tonic-gate &(nid_objs[547]),/* "setct-CapRevReqTBS" */ 33490Sstevel@tonic-gate &(nid_objs[548]),/* "setct-CapRevReqTBSX" */ 33500Sstevel@tonic-gate &(nid_objs[549]),/* "setct-CapRevResData" */ 33510Sstevel@tonic-gate &(nid_objs[585]),/* "setct-CapRevResTBE" */ 33520Sstevel@tonic-gate &(nid_objs[538]),/* "setct-CapTokenData" */ 33530Sstevel@tonic-gate &(nid_objs[530]),/* "setct-CapTokenSeq" */ 33540Sstevel@tonic-gate &(nid_objs[574]),/* "setct-CapTokenTBE" */ 33550Sstevel@tonic-gate &(nid_objs[575]),/* "setct-CapTokenTBEX" */ 33560Sstevel@tonic-gate &(nid_objs[539]),/* "setct-CapTokenTBS" */ 33570Sstevel@tonic-gate &(nid_objs[560]),/* "setct-CardCInitResTBS" */ 33580Sstevel@tonic-gate &(nid_objs[566]),/* "setct-CertInqReqTBS" */ 33590Sstevel@tonic-gate &(nid_objs[563]),/* "setct-CertReqData" */ 33600Sstevel@tonic-gate &(nid_objs[595]),/* "setct-CertReqTBE" */ 33610Sstevel@tonic-gate &(nid_objs[596]),/* "setct-CertReqTBEX" */ 33620Sstevel@tonic-gate &(nid_objs[564]),/* "setct-CertReqTBS" */ 33630Sstevel@tonic-gate &(nid_objs[565]),/* "setct-CertResData" */ 33640Sstevel@tonic-gate &(nid_objs[597]),/* "setct-CertResTBE" */ 33650Sstevel@tonic-gate &(nid_objs[586]),/* "setct-CredReqTBE" */ 33660Sstevel@tonic-gate &(nid_objs[587]),/* "setct-CredReqTBEX" */ 33670Sstevel@tonic-gate &(nid_objs[550]),/* "setct-CredReqTBS" */ 33680Sstevel@tonic-gate &(nid_objs[551]),/* "setct-CredReqTBSX" */ 33690Sstevel@tonic-gate &(nid_objs[552]),/* "setct-CredResData" */ 33700Sstevel@tonic-gate &(nid_objs[588]),/* "setct-CredResTBE" */ 33710Sstevel@tonic-gate &(nid_objs[589]),/* "setct-CredRevReqTBE" */ 33720Sstevel@tonic-gate &(nid_objs[590]),/* "setct-CredRevReqTBEX" */ 33730Sstevel@tonic-gate &(nid_objs[553]),/* "setct-CredRevReqTBS" */ 33740Sstevel@tonic-gate &(nid_objs[554]),/* "setct-CredRevReqTBSX" */ 33750Sstevel@tonic-gate &(nid_objs[555]),/* "setct-CredRevResData" */ 33760Sstevel@tonic-gate &(nid_objs[591]),/* "setct-CredRevResTBE" */ 33770Sstevel@tonic-gate &(nid_objs[567]),/* "setct-ErrorTBS" */ 33780Sstevel@tonic-gate &(nid_objs[526]),/* "setct-HODInput" */ 33790Sstevel@tonic-gate &(nid_objs[561]),/* "setct-MeAqCInitResTBS" */ 33800Sstevel@tonic-gate &(nid_objs[522]),/* "setct-OIData" */ 33810Sstevel@tonic-gate &(nid_objs[519]),/* "setct-PANData" */ 33820Sstevel@tonic-gate &(nid_objs[521]),/* "setct-PANOnly" */ 33830Sstevel@tonic-gate &(nid_objs[520]),/* "setct-PANToken" */ 33840Sstevel@tonic-gate &(nid_objs[556]),/* "setct-PCertReqData" */ 33850Sstevel@tonic-gate &(nid_objs[557]),/* "setct-PCertResTBS" */ 33860Sstevel@tonic-gate &(nid_objs[523]),/* "setct-PI" */ 33870Sstevel@tonic-gate &(nid_objs[532]),/* "setct-PI-TBS" */ 33880Sstevel@tonic-gate &(nid_objs[524]),/* "setct-PIData" */ 33890Sstevel@tonic-gate &(nid_objs[525]),/* "setct-PIDataUnsigned" */ 33900Sstevel@tonic-gate &(nid_objs[568]),/* "setct-PIDualSignedTBE" */ 33910Sstevel@tonic-gate &(nid_objs[569]),/* "setct-PIUnsignedTBE" */ 33920Sstevel@tonic-gate &(nid_objs[531]),/* "setct-PInitResData" */ 33930Sstevel@tonic-gate &(nid_objs[533]),/* "setct-PResData" */ 33940Sstevel@tonic-gate &(nid_objs[594]),/* "setct-RegFormReqTBE" */ 33950Sstevel@tonic-gate &(nid_objs[562]),/* "setct-RegFormResTBS" */ 33960Sstevel@tonic-gate &(nid_objs[604]),/* "setext-pinAny" */ 33970Sstevel@tonic-gate &(nid_objs[603]),/* "setext-pinSecure" */ 33980Sstevel@tonic-gate &(nid_objs[605]),/* "setext-track2" */ 33990Sstevel@tonic-gate &(nid_objs[41]),/* "sha" */ 34000Sstevel@tonic-gate &(nid_objs[64]),/* "sha1" */ 34010Sstevel@tonic-gate &(nid_objs[115]),/* "sha1WithRSA" */ 34020Sstevel@tonic-gate &(nid_objs[65]),/* "sha1WithRSAEncryption" */ 3403*2139Sjp161948 &(nid_objs[675]),/* "sha224" */ 3404*2139Sjp161948 &(nid_objs[671]),/* "sha224WithRSAEncryption" */ 3405*2139Sjp161948 &(nid_objs[672]),/* "sha256" */ 3406*2139Sjp161948 &(nid_objs[668]),/* "sha256WithRSAEncryption" */ 3407*2139Sjp161948 &(nid_objs[673]),/* "sha384" */ 3408*2139Sjp161948 &(nid_objs[669]),/* "sha384WithRSAEncryption" */ 3409*2139Sjp161948 &(nid_objs[674]),/* "sha512" */ 3410*2139Sjp161948 &(nid_objs[670]),/* "sha512WithRSAEncryption" */ 34110Sstevel@tonic-gate &(nid_objs[42]),/* "shaWithRSAEncryption" */ 34120Sstevel@tonic-gate &(nid_objs[52]),/* "signingTime" */ 34130Sstevel@tonic-gate &(nid_objs[454]),/* "simpleSecurityObject" */ 34140Sstevel@tonic-gate &(nid_objs[496]),/* "singleLevelQuality" */ 34150Sstevel@tonic-gate &(nid_objs[16]),/* "stateOrProvinceName" */ 3416*2139Sjp161948 &(nid_objs[660]),/* "streetAddress" */ 34170Sstevel@tonic-gate &(nid_objs[498]),/* "subtreeMaximumQuality" */ 34180Sstevel@tonic-gate &(nid_objs[497]),/* "subtreeMinimumQuality" */ 34190Sstevel@tonic-gate &(nid_objs[100]),/* "surname" */ 34200Sstevel@tonic-gate &(nid_objs[459]),/* "textEncodedORAddress" */ 34210Sstevel@tonic-gate &(nid_objs[293]),/* "textNotice" */ 34220Sstevel@tonic-gate &(nid_objs[106]),/* "title" */ 3423*2139Sjp161948 &(nid_objs[682]),/* "tpBasis" */ 34240Sstevel@tonic-gate &(nid_objs[436]),/* "ucl" */ 34250Sstevel@tonic-gate &(nid_objs[ 0]),/* "undefined" */ 34260Sstevel@tonic-gate &(nid_objs[55]),/* "unstructuredAddress" */ 34270Sstevel@tonic-gate &(nid_objs[49]),/* "unstructuredName" */ 34280Sstevel@tonic-gate &(nid_objs[465]),/* "userClass" */ 34290Sstevel@tonic-gate &(nid_objs[458]),/* "userId" */ 34300Sstevel@tonic-gate &(nid_objs[373]),/* "valid" */ 3431*2139Sjp161948 &(nid_objs[678]),/* "wap" */ 3432*2139Sjp161948 &(nid_objs[679]),/* "wap-wsg" */ 3433*2139Sjp161948 &(nid_objs[735]),/* "wap-wsg-idm-ecid-wtls1" */ 3434*2139Sjp161948 &(nid_objs[743]),/* "wap-wsg-idm-ecid-wtls10" */ 3435*2139Sjp161948 &(nid_objs[744]),/* "wap-wsg-idm-ecid-wtls11" */ 3436*2139Sjp161948 &(nid_objs[745]),/* "wap-wsg-idm-ecid-wtls12" */ 3437*2139Sjp161948 &(nid_objs[736]),/* "wap-wsg-idm-ecid-wtls3" */ 3438*2139Sjp161948 &(nid_objs[737]),/* "wap-wsg-idm-ecid-wtls4" */ 3439*2139Sjp161948 &(nid_objs[738]),/* "wap-wsg-idm-ecid-wtls5" */ 3440*2139Sjp161948 &(nid_objs[739]),/* "wap-wsg-idm-ecid-wtls6" */ 3441*2139Sjp161948 &(nid_objs[740]),/* "wap-wsg-idm-ecid-wtls7" */ 3442*2139Sjp161948 &(nid_objs[741]),/* "wap-wsg-idm-ecid-wtls8" */ 3443*2139Sjp161948 &(nid_objs[742]),/* "wap-wsg-idm-ecid-wtls9" */ 34440Sstevel@tonic-gate &(nid_objs[503]),/* "x500UniqueIdentifier" */ 34450Sstevel@tonic-gate &(nid_objs[158]),/* "x509Certificate" */ 34460Sstevel@tonic-gate &(nid_objs[160]),/* "x509Crl" */ 34470Sstevel@tonic-gate &(nid_objs[125]),/* "zlib compression" */ 34480Sstevel@tonic-gate }; 34490Sstevel@tonic-gate 34500Sstevel@tonic-gate static ASN1_OBJECT *obj_objs[NUM_OBJ]={ 34510Sstevel@tonic-gate &(nid_objs[ 0]),/* OBJ_undef 0 */ 3452*2139Sjp161948 &(nid_objs[393]),/* OBJ_joint_iso_ccitt OBJ_joint_iso_itu_t */ 3453*2139Sjp161948 &(nid_objs[404]),/* OBJ_ccitt OBJ_itu_t */ 3454*2139Sjp161948 &(nid_objs[645]),/* OBJ_itu_t 0 */ 34550Sstevel@tonic-gate &(nid_objs[434]),/* OBJ_data 0 9 */ 34560Sstevel@tonic-gate &(nid_objs[181]),/* OBJ_iso 1 */ 34570Sstevel@tonic-gate &(nid_objs[182]),/* OBJ_member_body 1 2 */ 34580Sstevel@tonic-gate &(nid_objs[379]),/* OBJ_org 1 3 */ 3459*2139Sjp161948 &(nid_objs[676]),/* OBJ_identified_organization 1 3 */ 3460*2139Sjp161948 &(nid_objs[646]),/* OBJ_joint_iso_itu_t 2 */ 34610Sstevel@tonic-gate &(nid_objs[11]),/* OBJ_X500 2 5 */ 3462*2139Sjp161948 &(nid_objs[647]),/* OBJ_international_organizations 2 23 */ 34630Sstevel@tonic-gate &(nid_objs[380]),/* OBJ_dod 1 3 6 */ 34640Sstevel@tonic-gate &(nid_objs[12]),/* OBJ_X509 2 5 4 */ 34650Sstevel@tonic-gate &(nid_objs[378]),/* OBJ_X500algorithms 2 5 8 */ 34660Sstevel@tonic-gate &(nid_objs[81]),/* OBJ_id_ce 2 5 29 */ 34670Sstevel@tonic-gate &(nid_objs[512]),/* OBJ_id_set 2 23 42 */ 3468*2139Sjp161948 &(nid_objs[678]),/* OBJ_wap 2 23 43 */ 34690Sstevel@tonic-gate &(nid_objs[435]),/* OBJ_pss 0 9 2342 */ 34700Sstevel@tonic-gate &(nid_objs[183]),/* OBJ_ISO_US 1 2 840 */ 34710Sstevel@tonic-gate &(nid_objs[381]),/* OBJ_iana 1 3 6 1 */ 3472*2139Sjp161948 &(nid_objs[677]),/* OBJ_certicom_arc 1 3 132 */ 34730Sstevel@tonic-gate &(nid_objs[394]),/* OBJ_selected_attribute_types 2 5 1 5 */ 34740Sstevel@tonic-gate &(nid_objs[13]),/* OBJ_commonName 2 5 4 3 */ 34750Sstevel@tonic-gate &(nid_objs[100]),/* OBJ_surname 2 5 4 4 */ 34760Sstevel@tonic-gate &(nid_objs[105]),/* OBJ_serialNumber 2 5 4 5 */ 34770Sstevel@tonic-gate &(nid_objs[14]),/* OBJ_countryName 2 5 4 6 */ 34780Sstevel@tonic-gate &(nid_objs[15]),/* OBJ_localityName 2 5 4 7 */ 34790Sstevel@tonic-gate &(nid_objs[16]),/* OBJ_stateOrProvinceName 2 5 4 8 */ 3480*2139Sjp161948 &(nid_objs[660]),/* OBJ_streetAddress 2 5 4 9 */ 34810Sstevel@tonic-gate &(nid_objs[17]),/* OBJ_organizationName 2 5 4 10 */ 34820Sstevel@tonic-gate &(nid_objs[18]),/* OBJ_organizationalUnitName 2 5 4 11 */ 34830Sstevel@tonic-gate &(nid_objs[106]),/* OBJ_title 2 5 4 12 */ 34840Sstevel@tonic-gate &(nid_objs[107]),/* OBJ_description 2 5 4 13 */ 3485*2139Sjp161948 &(nid_objs[661]),/* OBJ_postalCode 2 5 4 17 */ 34860Sstevel@tonic-gate &(nid_objs[173]),/* OBJ_name 2 5 4 41 */ 34870Sstevel@tonic-gate &(nid_objs[99]),/* OBJ_givenName 2 5 4 42 */ 34880Sstevel@tonic-gate &(nid_objs[101]),/* OBJ_initials 2 5 4 43 */ 34890Sstevel@tonic-gate &(nid_objs[509]),/* OBJ_generationQualifier 2 5 4 44 */ 34900Sstevel@tonic-gate &(nid_objs[503]),/* OBJ_x500UniqueIdentifier 2 5 4 45 */ 34910Sstevel@tonic-gate &(nid_objs[174]),/* OBJ_dnQualifier 2 5 4 46 */ 34920Sstevel@tonic-gate &(nid_objs[510]),/* OBJ_pseudonym 2 5 4 65 */ 34930Sstevel@tonic-gate &(nid_objs[400]),/* OBJ_role 2 5 4 72 */ 34940Sstevel@tonic-gate &(nid_objs[82]),/* OBJ_subject_key_identifier 2 5 29 14 */ 34950Sstevel@tonic-gate &(nid_objs[83]),/* OBJ_key_usage 2 5 29 15 */ 34960Sstevel@tonic-gate &(nid_objs[84]),/* OBJ_private_key_usage_period 2 5 29 16 */ 34970Sstevel@tonic-gate &(nid_objs[85]),/* OBJ_subject_alt_name 2 5 29 17 */ 34980Sstevel@tonic-gate &(nid_objs[86]),/* OBJ_issuer_alt_name 2 5 29 18 */ 34990Sstevel@tonic-gate &(nid_objs[87]),/* OBJ_basic_constraints 2 5 29 19 */ 35000Sstevel@tonic-gate &(nid_objs[88]),/* OBJ_crl_number 2 5 29 20 */ 35010Sstevel@tonic-gate &(nid_objs[141]),/* OBJ_crl_reason 2 5 29 21 */ 35020Sstevel@tonic-gate &(nid_objs[430]),/* OBJ_hold_instruction_code 2 5 29 23 */ 35030Sstevel@tonic-gate &(nid_objs[142]),/* OBJ_invalidity_date 2 5 29 24 */ 35040Sstevel@tonic-gate &(nid_objs[140]),/* OBJ_delta_crl 2 5 29 27 */ 3505*2139Sjp161948 &(nid_objs[666]),/* OBJ_name_constraints 2 5 29 30 */ 35060Sstevel@tonic-gate &(nid_objs[103]),/* OBJ_crl_distribution_points 2 5 29 31 */ 35070Sstevel@tonic-gate &(nid_objs[89]),/* OBJ_certificate_policies 2 5 29 32 */ 3508*2139Sjp161948 &(nid_objs[747]),/* OBJ_policy_mappings 2 5 29 33 */ 35090Sstevel@tonic-gate &(nid_objs[90]),/* OBJ_authority_key_identifier 2 5 29 35 */ 35100Sstevel@tonic-gate &(nid_objs[401]),/* OBJ_policy_constraints 2 5 29 36 */ 35110Sstevel@tonic-gate &(nid_objs[126]),/* OBJ_ext_key_usage 2 5 29 37 */ 3512*2139Sjp161948 &(nid_objs[748]),/* OBJ_inhibit_any_policy 2 5 29 54 */ 35130Sstevel@tonic-gate &(nid_objs[402]),/* OBJ_target_information 2 5 29 55 */ 35140Sstevel@tonic-gate &(nid_objs[403]),/* OBJ_no_rev_avail 2 5 29 56 */ 35150Sstevel@tonic-gate &(nid_objs[513]),/* OBJ_set_ctype 2 23 42 0 */ 35160Sstevel@tonic-gate &(nid_objs[514]),/* OBJ_set_msgExt 2 23 42 1 */ 35170Sstevel@tonic-gate &(nid_objs[515]),/* OBJ_set_attr 2 23 42 3 */ 35180Sstevel@tonic-gate &(nid_objs[516]),/* OBJ_set_policy 2 23 42 5 */ 35190Sstevel@tonic-gate &(nid_objs[517]),/* OBJ_set_certExt 2 23 42 7 */ 35200Sstevel@tonic-gate &(nid_objs[518]),/* OBJ_set_brand 2 23 42 8 */ 3521*2139Sjp161948 &(nid_objs[679]),/* OBJ_wap_wsg 2 23 43 13 */ 35220Sstevel@tonic-gate &(nid_objs[382]),/* OBJ_Directory 1 3 6 1 1 */ 35230Sstevel@tonic-gate &(nid_objs[383]),/* OBJ_Management 1 3 6 1 2 */ 35240Sstevel@tonic-gate &(nid_objs[384]),/* OBJ_Experimental 1 3 6 1 3 */ 35250Sstevel@tonic-gate &(nid_objs[385]),/* OBJ_Private 1 3 6 1 4 */ 35260Sstevel@tonic-gate &(nid_objs[386]),/* OBJ_Security 1 3 6 1 5 */ 35270Sstevel@tonic-gate &(nid_objs[387]),/* OBJ_SNMPv2 1 3 6 1 6 */ 35280Sstevel@tonic-gate &(nid_objs[388]),/* OBJ_Mail 1 3 6 1 7 */ 35290Sstevel@tonic-gate &(nid_objs[376]),/* OBJ_algorithm 1 3 14 3 2 */ 35300Sstevel@tonic-gate &(nid_objs[395]),/* OBJ_clearance 2 5 1 5 55 */ 35310Sstevel@tonic-gate &(nid_objs[19]),/* OBJ_rsa 2 5 8 1 1 */ 35320Sstevel@tonic-gate &(nid_objs[96]),/* OBJ_mdc2WithRSA 2 5 8 3 100 */ 35330Sstevel@tonic-gate &(nid_objs[95]),/* OBJ_mdc2 2 5 8 3 101 */ 3534*2139Sjp161948 &(nid_objs[746]),/* OBJ_any_policy 2 5 29 32 0 */ 35350Sstevel@tonic-gate &(nid_objs[519]),/* OBJ_setct_PANData 2 23 42 0 0 */ 35360Sstevel@tonic-gate &(nid_objs[520]),/* OBJ_setct_PANToken 2 23 42 0 1 */ 35370Sstevel@tonic-gate &(nid_objs[521]),/* OBJ_setct_PANOnly 2 23 42 0 2 */ 35380Sstevel@tonic-gate &(nid_objs[522]),/* OBJ_setct_OIData 2 23 42 0 3 */ 35390Sstevel@tonic-gate &(nid_objs[523]),/* OBJ_setct_PI 2 23 42 0 4 */ 35400Sstevel@tonic-gate &(nid_objs[524]),/* OBJ_setct_PIData 2 23 42 0 5 */ 35410Sstevel@tonic-gate &(nid_objs[525]),/* OBJ_setct_PIDataUnsigned 2 23 42 0 6 */ 35420Sstevel@tonic-gate &(nid_objs[526]),/* OBJ_setct_HODInput 2 23 42 0 7 */ 35430Sstevel@tonic-gate &(nid_objs[527]),/* OBJ_setct_AuthResBaggage 2 23 42 0 8 */ 35440Sstevel@tonic-gate &(nid_objs[528]),/* OBJ_setct_AuthRevReqBaggage 2 23 42 0 9 */ 35450Sstevel@tonic-gate &(nid_objs[529]),/* OBJ_setct_AuthRevResBaggage 2 23 42 0 10 */ 35460Sstevel@tonic-gate &(nid_objs[530]),/* OBJ_setct_CapTokenSeq 2 23 42 0 11 */ 35470Sstevel@tonic-gate &(nid_objs[531]),/* OBJ_setct_PInitResData 2 23 42 0 12 */ 35480Sstevel@tonic-gate &(nid_objs[532]),/* OBJ_setct_PI_TBS 2 23 42 0 13 */ 35490Sstevel@tonic-gate &(nid_objs[533]),/* OBJ_setct_PResData 2 23 42 0 14 */ 35500Sstevel@tonic-gate &(nid_objs[534]),/* OBJ_setct_AuthReqTBS 2 23 42 0 16 */ 35510Sstevel@tonic-gate &(nid_objs[535]),/* OBJ_setct_AuthResTBS 2 23 42 0 17 */ 35520Sstevel@tonic-gate &(nid_objs[536]),/* OBJ_setct_AuthResTBSX 2 23 42 0 18 */ 35530Sstevel@tonic-gate &(nid_objs[537]),/* OBJ_setct_AuthTokenTBS 2 23 42 0 19 */ 35540Sstevel@tonic-gate &(nid_objs[538]),/* OBJ_setct_CapTokenData 2 23 42 0 20 */ 35550Sstevel@tonic-gate &(nid_objs[539]),/* OBJ_setct_CapTokenTBS 2 23 42 0 21 */ 35560Sstevel@tonic-gate &(nid_objs[540]),/* OBJ_setct_AcqCardCodeMsg 2 23 42 0 22 */ 35570Sstevel@tonic-gate &(nid_objs[541]),/* OBJ_setct_AuthRevReqTBS 2 23 42 0 23 */ 35580Sstevel@tonic-gate &(nid_objs[542]),/* OBJ_setct_AuthRevResData 2 23 42 0 24 */ 35590Sstevel@tonic-gate &(nid_objs[543]),/* OBJ_setct_AuthRevResTBS 2 23 42 0 25 */ 35600Sstevel@tonic-gate &(nid_objs[544]),/* OBJ_setct_CapReqTBS 2 23 42 0 26 */ 35610Sstevel@tonic-gate &(nid_objs[545]),/* OBJ_setct_CapReqTBSX 2 23 42 0 27 */ 35620Sstevel@tonic-gate &(nid_objs[546]),/* OBJ_setct_CapResData 2 23 42 0 28 */ 35630Sstevel@tonic-gate &(nid_objs[547]),/* OBJ_setct_CapRevReqTBS 2 23 42 0 29 */ 35640Sstevel@tonic-gate &(nid_objs[548]),/* OBJ_setct_CapRevReqTBSX 2 23 42 0 30 */ 35650Sstevel@tonic-gate &(nid_objs[549]),/* OBJ_setct_CapRevResData 2 23 42 0 31 */ 35660Sstevel@tonic-gate &(nid_objs[550]),/* OBJ_setct_CredReqTBS 2 23 42 0 32 */ 35670Sstevel@tonic-gate &(nid_objs[551]),/* OBJ_setct_CredReqTBSX 2 23 42 0 33 */ 35680Sstevel@tonic-gate &(nid_objs[552]),/* OBJ_setct_CredResData 2 23 42 0 34 */ 35690Sstevel@tonic-gate &(nid_objs[553]),/* OBJ_setct_CredRevReqTBS 2 23 42 0 35 */ 35700Sstevel@tonic-gate &(nid_objs[554]),/* OBJ_setct_CredRevReqTBSX 2 23 42 0 36 */ 35710Sstevel@tonic-gate &(nid_objs[555]),/* OBJ_setct_CredRevResData 2 23 42 0 37 */ 35720Sstevel@tonic-gate &(nid_objs[556]),/* OBJ_setct_PCertReqData 2 23 42 0 38 */ 35730Sstevel@tonic-gate &(nid_objs[557]),/* OBJ_setct_PCertResTBS 2 23 42 0 39 */ 35740Sstevel@tonic-gate &(nid_objs[558]),/* OBJ_setct_BatchAdminReqData 2 23 42 0 40 */ 35750Sstevel@tonic-gate &(nid_objs[559]),/* OBJ_setct_BatchAdminResData 2 23 42 0 41 */ 35760Sstevel@tonic-gate &(nid_objs[560]),/* OBJ_setct_CardCInitResTBS 2 23 42 0 42 */ 35770Sstevel@tonic-gate &(nid_objs[561]),/* OBJ_setct_MeAqCInitResTBS 2 23 42 0 43 */ 35780Sstevel@tonic-gate &(nid_objs[562]),/* OBJ_setct_RegFormResTBS 2 23 42 0 44 */ 35790Sstevel@tonic-gate &(nid_objs[563]),/* OBJ_setct_CertReqData 2 23 42 0 45 */ 35800Sstevel@tonic-gate &(nid_objs[564]),/* OBJ_setct_CertReqTBS 2 23 42 0 46 */ 35810Sstevel@tonic-gate &(nid_objs[565]),/* OBJ_setct_CertResData 2 23 42 0 47 */ 35820Sstevel@tonic-gate &(nid_objs[566]),/* OBJ_setct_CertInqReqTBS 2 23 42 0 48 */ 35830Sstevel@tonic-gate &(nid_objs[567]),/* OBJ_setct_ErrorTBS 2 23 42 0 49 */ 35840Sstevel@tonic-gate &(nid_objs[568]),/* OBJ_setct_PIDualSignedTBE 2 23 42 0 50 */ 35850Sstevel@tonic-gate &(nid_objs[569]),/* OBJ_setct_PIUnsignedTBE 2 23 42 0 51 */ 35860Sstevel@tonic-gate &(nid_objs[570]),/* OBJ_setct_AuthReqTBE 2 23 42 0 52 */ 35870Sstevel@tonic-gate &(nid_objs[571]),/* OBJ_setct_AuthResTBE 2 23 42 0 53 */ 35880Sstevel@tonic-gate &(nid_objs[572]),/* OBJ_setct_AuthResTBEX 2 23 42 0 54 */ 35890Sstevel@tonic-gate &(nid_objs[573]),/* OBJ_setct_AuthTokenTBE 2 23 42 0 55 */ 35900Sstevel@tonic-gate &(nid_objs[574]),/* OBJ_setct_CapTokenTBE 2 23 42 0 56 */ 35910Sstevel@tonic-gate &(nid_objs[575]),/* OBJ_setct_CapTokenTBEX 2 23 42 0 57 */ 35920Sstevel@tonic-gate &(nid_objs[576]),/* OBJ_setct_AcqCardCodeMsgTBE 2 23 42 0 58 */ 35930Sstevel@tonic-gate &(nid_objs[577]),/* OBJ_setct_AuthRevReqTBE 2 23 42 0 59 */ 35940Sstevel@tonic-gate &(nid_objs[578]),/* OBJ_setct_AuthRevResTBE 2 23 42 0 60 */ 35950Sstevel@tonic-gate &(nid_objs[579]),/* OBJ_setct_AuthRevResTBEB 2 23 42 0 61 */ 35960Sstevel@tonic-gate &(nid_objs[580]),/* OBJ_setct_CapReqTBE 2 23 42 0 62 */ 35970Sstevel@tonic-gate &(nid_objs[581]),/* OBJ_setct_CapReqTBEX 2 23 42 0 63 */ 35980Sstevel@tonic-gate &(nid_objs[582]),/* OBJ_setct_CapResTBE 2 23 42 0 64 */ 35990Sstevel@tonic-gate &(nid_objs[583]),/* OBJ_setct_CapRevReqTBE 2 23 42 0 65 */ 36000Sstevel@tonic-gate &(nid_objs[584]),/* OBJ_setct_CapRevReqTBEX 2 23 42 0 66 */ 36010Sstevel@tonic-gate &(nid_objs[585]),/* OBJ_setct_CapRevResTBE 2 23 42 0 67 */ 36020Sstevel@tonic-gate &(nid_objs[586]),/* OBJ_setct_CredReqTBE 2 23 42 0 68 */ 36030Sstevel@tonic-gate &(nid_objs[587]),/* OBJ_setct_CredReqTBEX 2 23 42 0 69 */ 36040Sstevel@tonic-gate &(nid_objs[588]),/* OBJ_setct_CredResTBE 2 23 42 0 70 */ 36050Sstevel@tonic-gate &(nid_objs[589]),/* OBJ_setct_CredRevReqTBE 2 23 42 0 71 */ 36060Sstevel@tonic-gate &(nid_objs[590]),/* OBJ_setct_CredRevReqTBEX 2 23 42 0 72 */ 36070Sstevel@tonic-gate &(nid_objs[591]),/* OBJ_setct_CredRevResTBE 2 23 42 0 73 */ 36080Sstevel@tonic-gate &(nid_objs[592]),/* OBJ_setct_BatchAdminReqTBE 2 23 42 0 74 */ 36090Sstevel@tonic-gate &(nid_objs[593]),/* OBJ_setct_BatchAdminResTBE 2 23 42 0 75 */ 36100Sstevel@tonic-gate &(nid_objs[594]),/* OBJ_setct_RegFormReqTBE 2 23 42 0 76 */ 36110Sstevel@tonic-gate &(nid_objs[595]),/* OBJ_setct_CertReqTBE 2 23 42 0 77 */ 36120Sstevel@tonic-gate &(nid_objs[596]),/* OBJ_setct_CertReqTBEX 2 23 42 0 78 */ 36130Sstevel@tonic-gate &(nid_objs[597]),/* OBJ_setct_CertResTBE 2 23 42 0 79 */ 36140Sstevel@tonic-gate &(nid_objs[598]),/* OBJ_setct_CRLNotificationTBS 2 23 42 0 80 */ 36150Sstevel@tonic-gate &(nid_objs[599]),/* OBJ_setct_CRLNotificationResTBS 2 23 42 0 81 */ 36160Sstevel@tonic-gate &(nid_objs[600]),/* OBJ_setct_BCIDistributionTBS 2 23 42 0 82 */ 36170Sstevel@tonic-gate &(nid_objs[601]),/* OBJ_setext_genCrypt 2 23 42 1 1 */ 36180Sstevel@tonic-gate &(nid_objs[602]),/* OBJ_setext_miAuth 2 23 42 1 3 */ 36190Sstevel@tonic-gate &(nid_objs[603]),/* OBJ_setext_pinSecure 2 23 42 1 4 */ 36200Sstevel@tonic-gate &(nid_objs[604]),/* OBJ_setext_pinAny 2 23 42 1 5 */ 36210Sstevel@tonic-gate &(nid_objs[605]),/* OBJ_setext_track2 2 23 42 1 7 */ 36220Sstevel@tonic-gate &(nid_objs[606]),/* OBJ_setext_cv 2 23 42 1 8 */ 36230Sstevel@tonic-gate &(nid_objs[620]),/* OBJ_setAttr_Cert 2 23 42 3 0 */ 36240Sstevel@tonic-gate &(nid_objs[621]),/* OBJ_setAttr_PGWYcap 2 23 42 3 1 */ 36250Sstevel@tonic-gate &(nid_objs[622]),/* OBJ_setAttr_TokenType 2 23 42 3 2 */ 36260Sstevel@tonic-gate &(nid_objs[623]),/* OBJ_setAttr_IssCap 2 23 42 3 3 */ 36270Sstevel@tonic-gate &(nid_objs[607]),/* OBJ_set_policy_root 2 23 42 5 0 */ 36280Sstevel@tonic-gate &(nid_objs[608]),/* OBJ_setCext_hashedRoot 2 23 42 7 0 */ 36290Sstevel@tonic-gate &(nid_objs[609]),/* OBJ_setCext_certType 2 23 42 7 1 */ 36300Sstevel@tonic-gate &(nid_objs[610]),/* OBJ_setCext_merchData 2 23 42 7 2 */ 36310Sstevel@tonic-gate &(nid_objs[611]),/* OBJ_setCext_cCertRequired 2 23 42 7 3 */ 36320Sstevel@tonic-gate &(nid_objs[612]),/* OBJ_setCext_tunneling 2 23 42 7 4 */ 36330Sstevel@tonic-gate &(nid_objs[613]),/* OBJ_setCext_setExt 2 23 42 7 5 */ 36340Sstevel@tonic-gate &(nid_objs[614]),/* OBJ_setCext_setQualf 2 23 42 7 6 */ 36350Sstevel@tonic-gate &(nid_objs[615]),/* OBJ_setCext_PGWYcapabilities 2 23 42 7 7 */ 36360Sstevel@tonic-gate &(nid_objs[616]),/* OBJ_setCext_TokenIdentifier 2 23 42 7 8 */ 36370Sstevel@tonic-gate &(nid_objs[617]),/* OBJ_setCext_Track2Data 2 23 42 7 9 */ 36380Sstevel@tonic-gate &(nid_objs[618]),/* OBJ_setCext_TokenType 2 23 42 7 10 */ 36390Sstevel@tonic-gate &(nid_objs[619]),/* OBJ_setCext_IssuerCapabilities 2 23 42 7 11 */ 36400Sstevel@tonic-gate &(nid_objs[636]),/* OBJ_set_brand_IATA_ATA 2 23 42 8 1 */ 36410Sstevel@tonic-gate &(nid_objs[640]),/* OBJ_set_brand_Visa 2 23 42 8 4 */ 36420Sstevel@tonic-gate &(nid_objs[641]),/* OBJ_set_brand_MasterCard 2 23 42 8 5 */ 36430Sstevel@tonic-gate &(nid_objs[637]),/* OBJ_set_brand_Diners 2 23 42 8 30 */ 36440Sstevel@tonic-gate &(nid_objs[638]),/* OBJ_set_brand_AmericanExpress 2 23 42 8 34 */ 36450Sstevel@tonic-gate &(nid_objs[639]),/* OBJ_set_brand_JCB 2 23 42 8 35 */ 36460Sstevel@tonic-gate &(nid_objs[184]),/* OBJ_X9_57 1 2 840 10040 */ 36470Sstevel@tonic-gate &(nid_objs[405]),/* OBJ_ansi_X9_62 1 2 840 10045 */ 36480Sstevel@tonic-gate &(nid_objs[389]),/* OBJ_Enterprises 1 3 6 1 4 1 */ 36490Sstevel@tonic-gate &(nid_objs[504]),/* OBJ_mime_mhs 1 3 6 1 7 1 */ 36500Sstevel@tonic-gate &(nid_objs[104]),/* OBJ_md5WithRSA 1 3 14 3 2 3 */ 36510Sstevel@tonic-gate &(nid_objs[29]),/* OBJ_des_ecb 1 3 14 3 2 6 */ 36520Sstevel@tonic-gate &(nid_objs[31]),/* OBJ_des_cbc 1 3 14 3 2 7 */ 36530Sstevel@tonic-gate &(nid_objs[45]),/* OBJ_des_ofb64 1 3 14 3 2 8 */ 36540Sstevel@tonic-gate &(nid_objs[30]),/* OBJ_des_cfb64 1 3 14 3 2 9 */ 36550Sstevel@tonic-gate &(nid_objs[377]),/* OBJ_rsaSignature 1 3 14 3 2 11 */ 36560Sstevel@tonic-gate &(nid_objs[67]),/* OBJ_dsa_2 1 3 14 3 2 12 */ 36570Sstevel@tonic-gate &(nid_objs[66]),/* OBJ_dsaWithSHA 1 3 14 3 2 13 */ 36580Sstevel@tonic-gate &(nid_objs[42]),/* OBJ_shaWithRSAEncryption 1 3 14 3 2 15 */ 36590Sstevel@tonic-gate &(nid_objs[32]),/* OBJ_des_ede_ecb 1 3 14 3 2 17 */ 36600Sstevel@tonic-gate &(nid_objs[41]),/* OBJ_sha 1 3 14 3 2 18 */ 36610Sstevel@tonic-gate &(nid_objs[64]),/* OBJ_sha1 1 3 14 3 2 26 */ 36620Sstevel@tonic-gate &(nid_objs[70]),/* OBJ_dsaWithSHA1_2 1 3 14 3 2 27 */ 36630Sstevel@tonic-gate &(nid_objs[115]),/* OBJ_sha1WithRSA 1 3 14 3 2 29 */ 36640Sstevel@tonic-gate &(nid_objs[117]),/* OBJ_ripemd160 1 3 36 3 2 1 */ 36650Sstevel@tonic-gate &(nid_objs[143]),/* OBJ_sxnet 1 3 101 1 4 1 */ 3666*2139Sjp161948 &(nid_objs[721]),/* OBJ_sect163k1 1 3 132 0 1 */ 3667*2139Sjp161948 &(nid_objs[722]),/* OBJ_sect163r1 1 3 132 0 2 */ 3668*2139Sjp161948 &(nid_objs[728]),/* OBJ_sect239k1 1 3 132 0 3 */ 3669*2139Sjp161948 &(nid_objs[717]),/* OBJ_sect113r1 1 3 132 0 4 */ 3670*2139Sjp161948 &(nid_objs[718]),/* OBJ_sect113r2 1 3 132 0 5 */ 3671*2139Sjp161948 &(nid_objs[704]),/* OBJ_secp112r1 1 3 132 0 6 */ 3672*2139Sjp161948 &(nid_objs[705]),/* OBJ_secp112r2 1 3 132 0 7 */ 3673*2139Sjp161948 &(nid_objs[709]),/* OBJ_secp160r1 1 3 132 0 8 */ 3674*2139Sjp161948 &(nid_objs[708]),/* OBJ_secp160k1 1 3 132 0 9 */ 3675*2139Sjp161948 &(nid_objs[714]),/* OBJ_secp256k1 1 3 132 0 10 */ 3676*2139Sjp161948 &(nid_objs[723]),/* OBJ_sect163r2 1 3 132 0 15 */ 3677*2139Sjp161948 &(nid_objs[729]),/* OBJ_sect283k1 1 3 132 0 16 */ 3678*2139Sjp161948 &(nid_objs[730]),/* OBJ_sect283r1 1 3 132 0 17 */ 3679*2139Sjp161948 &(nid_objs[719]),/* OBJ_sect131r1 1 3 132 0 22 */ 3680*2139Sjp161948 &(nid_objs[720]),/* OBJ_sect131r2 1 3 132 0 23 */ 3681*2139Sjp161948 &(nid_objs[724]),/* OBJ_sect193r1 1 3 132 0 24 */ 3682*2139Sjp161948 &(nid_objs[725]),/* OBJ_sect193r2 1 3 132 0 25 */ 3683*2139Sjp161948 &(nid_objs[726]),/* OBJ_sect233k1 1 3 132 0 26 */ 3684*2139Sjp161948 &(nid_objs[727]),/* OBJ_sect233r1 1 3 132 0 27 */ 3685*2139Sjp161948 &(nid_objs[706]),/* OBJ_secp128r1 1 3 132 0 28 */ 3686*2139Sjp161948 &(nid_objs[707]),/* OBJ_secp128r2 1 3 132 0 29 */ 3687*2139Sjp161948 &(nid_objs[710]),/* OBJ_secp160r2 1 3 132 0 30 */ 3688*2139Sjp161948 &(nid_objs[711]),/* OBJ_secp192k1 1 3 132 0 31 */ 3689*2139Sjp161948 &(nid_objs[712]),/* OBJ_secp224k1 1 3 132 0 32 */ 3690*2139Sjp161948 &(nid_objs[713]),/* OBJ_secp224r1 1 3 132 0 33 */ 3691*2139Sjp161948 &(nid_objs[715]),/* OBJ_secp384r1 1 3 132 0 34 */ 3692*2139Sjp161948 &(nid_objs[716]),/* OBJ_secp521r1 1 3 132 0 35 */ 3693*2139Sjp161948 &(nid_objs[731]),/* OBJ_sect409k1 1 3 132 0 36 */ 3694*2139Sjp161948 &(nid_objs[732]),/* OBJ_sect409r1 1 3 132 0 37 */ 3695*2139Sjp161948 &(nid_objs[733]),/* OBJ_sect571k1 1 3 132 0 38 */ 3696*2139Sjp161948 &(nid_objs[734]),/* OBJ_sect571r1 1 3 132 0 39 */ 36970Sstevel@tonic-gate &(nid_objs[624]),/* OBJ_set_rootKeyThumb 2 23 42 3 0 0 */ 36980Sstevel@tonic-gate &(nid_objs[625]),/* OBJ_set_addPolicy 2 23 42 3 0 1 */ 36990Sstevel@tonic-gate &(nid_objs[626]),/* OBJ_setAttr_Token_EMV 2 23 42 3 2 1 */ 37000Sstevel@tonic-gate &(nid_objs[627]),/* OBJ_setAttr_Token_B0Prime 2 23 42 3 2 2 */ 37010Sstevel@tonic-gate &(nid_objs[628]),/* OBJ_setAttr_IssCap_CVM 2 23 42 3 3 3 */ 37020Sstevel@tonic-gate &(nid_objs[629]),/* OBJ_setAttr_IssCap_T2 2 23 42 3 3 4 */ 37030Sstevel@tonic-gate &(nid_objs[630]),/* OBJ_setAttr_IssCap_Sig 2 23 42 3 3 5 */ 37040Sstevel@tonic-gate &(nid_objs[642]),/* OBJ_set_brand_Novus 2 23 42 8 6011 */ 3705*2139Sjp161948 &(nid_objs[735]),/* OBJ_wap_wsg_idm_ecid_wtls1 2 23 43 13 4 1 */ 3706*2139Sjp161948 &(nid_objs[736]),/* OBJ_wap_wsg_idm_ecid_wtls3 2 23 43 13 4 3 */ 3707*2139Sjp161948 &(nid_objs[737]),/* OBJ_wap_wsg_idm_ecid_wtls4 2 23 43 13 4 4 */ 3708*2139Sjp161948 &(nid_objs[738]),/* OBJ_wap_wsg_idm_ecid_wtls5 2 23 43 13 4 5 */ 3709*2139Sjp161948 &(nid_objs[739]),/* OBJ_wap_wsg_idm_ecid_wtls6 2 23 43 13 4 6 */ 3710*2139Sjp161948 &(nid_objs[740]),/* OBJ_wap_wsg_idm_ecid_wtls7 2 23 43 13 4 7 */ 3711*2139Sjp161948 &(nid_objs[741]),/* OBJ_wap_wsg_idm_ecid_wtls8 2 23 43 13 4 8 */ 3712*2139Sjp161948 &(nid_objs[742]),/* OBJ_wap_wsg_idm_ecid_wtls9 2 23 43 13 4 9 */ 3713*2139Sjp161948 &(nid_objs[743]),/* OBJ_wap_wsg_idm_ecid_wtls10 2 23 43 13 4 10 */ 3714*2139Sjp161948 &(nid_objs[744]),/* OBJ_wap_wsg_idm_ecid_wtls11 2 23 43 13 4 11 */ 3715*2139Sjp161948 &(nid_objs[745]),/* OBJ_wap_wsg_idm_ecid_wtls12 2 23 43 13 4 12 */ 37160Sstevel@tonic-gate &(nid_objs[124]),/* OBJ_rle_compression 1 1 1 1 666 1 */ 37170Sstevel@tonic-gate &(nid_objs[125]),/* OBJ_zlib_compression 1 1 1 1 666 2 */ 37180Sstevel@tonic-gate &(nid_objs[ 1]),/* OBJ_rsadsi 1 2 840 113549 */ 37190Sstevel@tonic-gate &(nid_objs[185]),/* OBJ_X9cm 1 2 840 10040 4 */ 37200Sstevel@tonic-gate &(nid_objs[127]),/* OBJ_id_pkix 1 3 6 1 5 5 7 */ 37210Sstevel@tonic-gate &(nid_objs[505]),/* OBJ_mime_mhs_headings 1 3 6 1 7 1 1 */ 37220Sstevel@tonic-gate &(nid_objs[506]),/* OBJ_mime_mhs_bodies 1 3 6 1 7 1 2 */ 37230Sstevel@tonic-gate &(nid_objs[119]),/* OBJ_ripemd160WithRSA 1 3 36 3 3 1 2 */ 37240Sstevel@tonic-gate &(nid_objs[631]),/* OBJ_setAttr_GenCryptgrm 2 23 42 3 3 3 1 */ 37250Sstevel@tonic-gate &(nid_objs[632]),/* OBJ_setAttr_T2Enc 2 23 42 3 3 4 1 */ 37260Sstevel@tonic-gate &(nid_objs[633]),/* OBJ_setAttr_T2cleartxt 2 23 42 3 3 4 2 */ 37270Sstevel@tonic-gate &(nid_objs[634]),/* OBJ_setAttr_TokICCsig 2 23 42 3 3 5 1 */ 37280Sstevel@tonic-gate &(nid_objs[635]),/* OBJ_setAttr_SecDevSig 2 23 42 3 3 5 2 */ 37290Sstevel@tonic-gate &(nid_objs[436]),/* OBJ_ucl 0 9 2342 19200300 */ 37300Sstevel@tonic-gate &(nid_objs[ 2]),/* OBJ_pkcs 1 2 840 113549 1 */ 37310Sstevel@tonic-gate &(nid_objs[431]),/* OBJ_hold_instruction_none 1 2 840 10040 2 1 */ 37320Sstevel@tonic-gate &(nid_objs[432]),/* OBJ_hold_instruction_call_issuer 1 2 840 10040 2 2 */ 37330Sstevel@tonic-gate &(nid_objs[433]),/* OBJ_hold_instruction_reject 1 2 840 10040 2 3 */ 37340Sstevel@tonic-gate &(nid_objs[116]),/* OBJ_dsa 1 2 840 10040 4 1 */ 37350Sstevel@tonic-gate &(nid_objs[113]),/* OBJ_dsaWithSHA1 1 2 840 10040 4 3 */ 37360Sstevel@tonic-gate &(nid_objs[406]),/* OBJ_X9_62_prime_field 1 2 840 10045 1 1 */ 37370Sstevel@tonic-gate &(nid_objs[407]),/* OBJ_X9_62_characteristic_two_field 1 2 840 10045 1 2 */ 37380Sstevel@tonic-gate &(nid_objs[408]),/* OBJ_X9_62_id_ecPublicKey 1 2 840 10045 2 1 */ 37390Sstevel@tonic-gate &(nid_objs[416]),/* OBJ_ecdsa_with_SHA1 1 2 840 10045 4 1 */ 37400Sstevel@tonic-gate &(nid_objs[258]),/* OBJ_id_pkix_mod 1 3 6 1 5 5 7 0 */ 37410Sstevel@tonic-gate &(nid_objs[175]),/* OBJ_id_pe 1 3 6 1 5 5 7 1 */ 37420Sstevel@tonic-gate &(nid_objs[259]),/* OBJ_id_qt 1 3 6 1 5 5 7 2 */ 37430Sstevel@tonic-gate &(nid_objs[128]),/* OBJ_id_kp 1 3 6 1 5 5 7 3 */ 37440Sstevel@tonic-gate &(nid_objs[260]),/* OBJ_id_it 1 3 6 1 5 5 7 4 */ 37450Sstevel@tonic-gate &(nid_objs[261]),/* OBJ_id_pkip 1 3 6 1 5 5 7 5 */ 37460Sstevel@tonic-gate &(nid_objs[262]),/* OBJ_id_alg 1 3 6 1 5 5 7 6 */ 37470Sstevel@tonic-gate &(nid_objs[263]),/* OBJ_id_cmc 1 3 6 1 5 5 7 7 */ 37480Sstevel@tonic-gate &(nid_objs[264]),/* OBJ_id_on 1 3 6 1 5 5 7 8 */ 37490Sstevel@tonic-gate &(nid_objs[265]),/* OBJ_id_pda 1 3 6 1 5 5 7 9 */ 37500Sstevel@tonic-gate &(nid_objs[266]),/* OBJ_id_aca 1 3 6 1 5 5 7 10 */ 37510Sstevel@tonic-gate &(nid_objs[267]),/* OBJ_id_qcs 1 3 6 1 5 5 7 11 */ 37520Sstevel@tonic-gate &(nid_objs[268]),/* OBJ_id_cct 1 3 6 1 5 5 7 12 */ 3753*2139Sjp161948 &(nid_objs[662]),/* OBJ_id_ppl 1 3 6 1 5 5 7 21 */ 37540Sstevel@tonic-gate &(nid_objs[176]),/* OBJ_id_ad 1 3 6 1 5 5 7 48 */ 37550Sstevel@tonic-gate &(nid_objs[507]),/* OBJ_id_hex_partial_message 1 3 6 1 7 1 1 1 */ 37560Sstevel@tonic-gate &(nid_objs[508]),/* OBJ_id_hex_multipart_message 1 3 6 1 7 1 1 2 */ 37570Sstevel@tonic-gate &(nid_objs[57]),/* OBJ_netscape 2 16 840 1 113730 */ 37580Sstevel@tonic-gate &(nid_objs[437]),/* OBJ_pilot 0 9 2342 19200300 100 */ 37590Sstevel@tonic-gate &(nid_objs[186]),/* OBJ_pkcs1 1 2 840 113549 1 1 */ 37600Sstevel@tonic-gate &(nid_objs[27]),/* OBJ_pkcs3 1 2 840 113549 1 3 */ 37610Sstevel@tonic-gate &(nid_objs[187]),/* OBJ_pkcs5 1 2 840 113549 1 5 */ 37620Sstevel@tonic-gate &(nid_objs[20]),/* OBJ_pkcs7 1 2 840 113549 1 7 */ 37630Sstevel@tonic-gate &(nid_objs[47]),/* OBJ_pkcs9 1 2 840 113549 1 9 */ 37640Sstevel@tonic-gate &(nid_objs[ 3]),/* OBJ_md2 1 2 840 113549 2 2 */ 37650Sstevel@tonic-gate &(nid_objs[257]),/* OBJ_md4 1 2 840 113549 2 4 */ 37660Sstevel@tonic-gate &(nid_objs[ 4]),/* OBJ_md5 1 2 840 113549 2 5 */ 37670Sstevel@tonic-gate &(nid_objs[163]),/* OBJ_hmacWithSHA1 1 2 840 113549 2 7 */ 37680Sstevel@tonic-gate &(nid_objs[37]),/* OBJ_rc2_cbc 1 2 840 113549 3 2 */ 37690Sstevel@tonic-gate &(nid_objs[ 5]),/* OBJ_rc4 1 2 840 113549 3 4 */ 37700Sstevel@tonic-gate &(nid_objs[44]),/* OBJ_des_ede3_cbc 1 2 840 113549 3 7 */ 37710Sstevel@tonic-gate &(nid_objs[120]),/* OBJ_rc5_cbc 1 2 840 113549 3 8 */ 37720Sstevel@tonic-gate &(nid_objs[643]),/* OBJ_des_cdmf 1 2 840 113549 3 10 */ 3773*2139Sjp161948 &(nid_objs[680]),/* OBJ_X9_62_id_characteristic_two_basis 1 2 840 10045 1 2 3 */ 3774*2139Sjp161948 &(nid_objs[684]),/* OBJ_X9_62_c2pnb163v1 1 2 840 10045 3 0 1 */ 3775*2139Sjp161948 &(nid_objs[685]),/* OBJ_X9_62_c2pnb163v2 1 2 840 10045 3 0 2 */ 3776*2139Sjp161948 &(nid_objs[686]),/* OBJ_X9_62_c2pnb163v3 1 2 840 10045 3 0 3 */ 3777*2139Sjp161948 &(nid_objs[687]),/* OBJ_X9_62_c2pnb176v1 1 2 840 10045 3 0 4 */ 3778*2139Sjp161948 &(nid_objs[688]),/* OBJ_X9_62_c2tnb191v1 1 2 840 10045 3 0 5 */ 3779*2139Sjp161948 &(nid_objs[689]),/* OBJ_X9_62_c2tnb191v2 1 2 840 10045 3 0 6 */ 3780*2139Sjp161948 &(nid_objs[690]),/* OBJ_X9_62_c2tnb191v3 1 2 840 10045 3 0 7 */ 3781*2139Sjp161948 &(nid_objs[691]),/* OBJ_X9_62_c2onb191v4 1 2 840 10045 3 0 8 */ 3782*2139Sjp161948 &(nid_objs[692]),/* OBJ_X9_62_c2onb191v5 1 2 840 10045 3 0 9 */ 3783*2139Sjp161948 &(nid_objs[693]),/* OBJ_X9_62_c2pnb208w1 1 2 840 10045 3 0 10 */ 3784*2139Sjp161948 &(nid_objs[694]),/* OBJ_X9_62_c2tnb239v1 1 2 840 10045 3 0 11 */ 3785*2139Sjp161948 &(nid_objs[695]),/* OBJ_X9_62_c2tnb239v2 1 2 840 10045 3 0 12 */ 3786*2139Sjp161948 &(nid_objs[696]),/* OBJ_X9_62_c2tnb239v3 1 2 840 10045 3 0 13 */ 3787*2139Sjp161948 &(nid_objs[697]),/* OBJ_X9_62_c2onb239v4 1 2 840 10045 3 0 14 */ 3788*2139Sjp161948 &(nid_objs[698]),/* OBJ_X9_62_c2onb239v5 1 2 840 10045 3 0 15 */ 3789*2139Sjp161948 &(nid_objs[699]),/* OBJ_X9_62_c2pnb272w1 1 2 840 10045 3 0 16 */ 3790*2139Sjp161948 &(nid_objs[700]),/* OBJ_X9_62_c2pnb304w1 1 2 840 10045 3 0 17 */ 3791*2139Sjp161948 &(nid_objs[701]),/* OBJ_X9_62_c2tnb359v1 1 2 840 10045 3 0 18 */ 3792*2139Sjp161948 &(nid_objs[702]),/* OBJ_X9_62_c2pnb368w1 1 2 840 10045 3 0 19 */ 3793*2139Sjp161948 &(nid_objs[703]),/* OBJ_X9_62_c2tnb431r1 1 2 840 10045 3 0 20 */ 37940Sstevel@tonic-gate &(nid_objs[409]),/* OBJ_X9_62_prime192v1 1 2 840 10045 3 1 1 */ 37950Sstevel@tonic-gate &(nid_objs[410]),/* OBJ_X9_62_prime192v2 1 2 840 10045 3 1 2 */ 37960Sstevel@tonic-gate &(nid_objs[411]),/* OBJ_X9_62_prime192v3 1 2 840 10045 3 1 3 */ 37970Sstevel@tonic-gate &(nid_objs[412]),/* OBJ_X9_62_prime239v1 1 2 840 10045 3 1 4 */ 37980Sstevel@tonic-gate &(nid_objs[413]),/* OBJ_X9_62_prime239v2 1 2 840 10045 3 1 5 */ 37990Sstevel@tonic-gate &(nid_objs[414]),/* OBJ_X9_62_prime239v3 1 2 840 10045 3 1 6 */ 38000Sstevel@tonic-gate &(nid_objs[415]),/* OBJ_X9_62_prime256v1 1 2 840 10045 3 1 7 */ 38010Sstevel@tonic-gate &(nid_objs[269]),/* OBJ_id_pkix1_explicit_88 1 3 6 1 5 5 7 0 1 */ 38020Sstevel@tonic-gate &(nid_objs[270]),/* OBJ_id_pkix1_implicit_88 1 3 6 1 5 5 7 0 2 */ 38030Sstevel@tonic-gate &(nid_objs[271]),/* OBJ_id_pkix1_explicit_93 1 3 6 1 5 5 7 0 3 */ 38040Sstevel@tonic-gate &(nid_objs[272]),/* OBJ_id_pkix1_implicit_93 1 3 6 1 5 5 7 0 4 */ 38050Sstevel@tonic-gate &(nid_objs[273]),/* OBJ_id_mod_crmf 1 3 6 1 5 5 7 0 5 */ 38060Sstevel@tonic-gate &(nid_objs[274]),/* OBJ_id_mod_cmc 1 3 6 1 5 5 7 0 6 */ 38070Sstevel@tonic-gate &(nid_objs[275]),/* OBJ_id_mod_kea_profile_88 1 3 6 1 5 5 7 0 7 */ 38080Sstevel@tonic-gate &(nid_objs[276]),/* OBJ_id_mod_kea_profile_93 1 3 6 1 5 5 7 0 8 */ 38090Sstevel@tonic-gate &(nid_objs[277]),/* OBJ_id_mod_cmp 1 3 6 1 5 5 7 0 9 */ 38100Sstevel@tonic-gate &(nid_objs[278]),/* OBJ_id_mod_qualified_cert_88 1 3 6 1 5 5 7 0 10 */ 38110Sstevel@tonic-gate &(nid_objs[279]),/* OBJ_id_mod_qualified_cert_93 1 3 6 1 5 5 7 0 11 */ 38120Sstevel@tonic-gate &(nid_objs[280]),/* OBJ_id_mod_attribute_cert 1 3 6 1 5 5 7 0 12 */ 38130Sstevel@tonic-gate &(nid_objs[281]),/* OBJ_id_mod_timestamp_protocol 1 3 6 1 5 5 7 0 13 */ 38140Sstevel@tonic-gate &(nid_objs[282]),/* OBJ_id_mod_ocsp 1 3 6 1 5 5 7 0 14 */ 38150Sstevel@tonic-gate &(nid_objs[283]),/* OBJ_id_mod_dvcs 1 3 6 1 5 5 7 0 15 */ 38160Sstevel@tonic-gate &(nid_objs[284]),/* OBJ_id_mod_cmp2000 1 3 6 1 5 5 7 0 16 */ 38170Sstevel@tonic-gate &(nid_objs[177]),/* OBJ_info_access 1 3 6 1 5 5 7 1 1 */ 38180Sstevel@tonic-gate &(nid_objs[285]),/* OBJ_biometricInfo 1 3 6 1 5 5 7 1 2 */ 38190Sstevel@tonic-gate &(nid_objs[286]),/* OBJ_qcStatements 1 3 6 1 5 5 7 1 3 */ 38200Sstevel@tonic-gate &(nid_objs[287]),/* OBJ_ac_auditEntity 1 3 6 1 5 5 7 1 4 */ 38210Sstevel@tonic-gate &(nid_objs[288]),/* OBJ_ac_targeting 1 3 6 1 5 5 7 1 5 */ 38220Sstevel@tonic-gate &(nid_objs[289]),/* OBJ_aaControls 1 3 6 1 5 5 7 1 6 */ 3823*2139Sjp161948 &(nid_objs[290]),/* OBJ_sbgp_ipAddrBlock 1 3 6 1 5 5 7 1 7 */ 3824*2139Sjp161948 &(nid_objs[291]),/* OBJ_sbgp_autonomousSysNum 1 3 6 1 5 5 7 1 8 */ 3825*2139Sjp161948 &(nid_objs[292]),/* OBJ_sbgp_routerIdentifier 1 3 6 1 5 5 7 1 9 */ 38260Sstevel@tonic-gate &(nid_objs[397]),/* OBJ_ac_proxying 1 3 6 1 5 5 7 1 10 */ 38270Sstevel@tonic-gate &(nid_objs[398]),/* OBJ_sinfo_access 1 3 6 1 5 5 7 1 11 */ 3828*2139Sjp161948 &(nid_objs[663]),/* OBJ_proxyCertInfo 1 3 6 1 5 5 7 1 14 */ 38290Sstevel@tonic-gate &(nid_objs[164]),/* OBJ_id_qt_cps 1 3 6 1 5 5 7 2 1 */ 38300Sstevel@tonic-gate &(nid_objs[165]),/* OBJ_id_qt_unotice 1 3 6 1 5 5 7 2 2 */ 38310Sstevel@tonic-gate &(nid_objs[293]),/* OBJ_textNotice 1 3 6 1 5 5 7 2 3 */ 38320Sstevel@tonic-gate &(nid_objs[129]),/* OBJ_server_auth 1 3 6 1 5 5 7 3 1 */ 38330Sstevel@tonic-gate &(nid_objs[130]),/* OBJ_client_auth 1 3 6 1 5 5 7 3 2 */ 38340Sstevel@tonic-gate &(nid_objs[131]),/* OBJ_code_sign 1 3 6 1 5 5 7 3 3 */ 38350Sstevel@tonic-gate &(nid_objs[132]),/* OBJ_email_protect 1 3 6 1 5 5 7 3 4 */ 38360Sstevel@tonic-gate &(nid_objs[294]),/* OBJ_ipsecEndSystem 1 3 6 1 5 5 7 3 5 */ 38370Sstevel@tonic-gate &(nid_objs[295]),/* OBJ_ipsecTunnel 1 3 6 1 5 5 7 3 6 */ 38380Sstevel@tonic-gate &(nid_objs[296]),/* OBJ_ipsecUser 1 3 6 1 5 5 7 3 7 */ 38390Sstevel@tonic-gate &(nid_objs[133]),/* OBJ_time_stamp 1 3 6 1 5 5 7 3 8 */ 38400Sstevel@tonic-gate &(nid_objs[180]),/* OBJ_OCSP_sign 1 3 6 1 5 5 7 3 9 */ 38410Sstevel@tonic-gate &(nid_objs[297]),/* OBJ_dvcs 1 3 6 1 5 5 7 3 10 */ 38420Sstevel@tonic-gate &(nid_objs[298]),/* OBJ_id_it_caProtEncCert 1 3 6 1 5 5 7 4 1 */ 38430Sstevel@tonic-gate &(nid_objs[299]),/* OBJ_id_it_signKeyPairTypes 1 3 6 1 5 5 7 4 2 */ 38440Sstevel@tonic-gate &(nid_objs[300]),/* OBJ_id_it_encKeyPairTypes 1 3 6 1 5 5 7 4 3 */ 38450Sstevel@tonic-gate &(nid_objs[301]),/* OBJ_id_it_preferredSymmAlg 1 3 6 1 5 5 7 4 4 */ 38460Sstevel@tonic-gate &(nid_objs[302]),/* OBJ_id_it_caKeyUpdateInfo 1 3 6 1 5 5 7 4 5 */ 38470Sstevel@tonic-gate &(nid_objs[303]),/* OBJ_id_it_currentCRL 1 3 6 1 5 5 7 4 6 */ 38480Sstevel@tonic-gate &(nid_objs[304]),/* OBJ_id_it_unsupportedOIDs 1 3 6 1 5 5 7 4 7 */ 38490Sstevel@tonic-gate &(nid_objs[305]),/* OBJ_id_it_subscriptionRequest 1 3 6 1 5 5 7 4 8 */ 38500Sstevel@tonic-gate &(nid_objs[306]),/* OBJ_id_it_subscriptionResponse 1 3 6 1 5 5 7 4 9 */ 38510Sstevel@tonic-gate &(nid_objs[307]),/* OBJ_id_it_keyPairParamReq 1 3 6 1 5 5 7 4 10 */ 38520Sstevel@tonic-gate &(nid_objs[308]),/* OBJ_id_it_keyPairParamRep 1 3 6 1 5 5 7 4 11 */ 38530Sstevel@tonic-gate &(nid_objs[309]),/* OBJ_id_it_revPassphrase 1 3 6 1 5 5 7 4 12 */ 38540Sstevel@tonic-gate &(nid_objs[310]),/* OBJ_id_it_implicitConfirm 1 3 6 1 5 5 7 4 13 */ 38550Sstevel@tonic-gate &(nid_objs[311]),/* OBJ_id_it_confirmWaitTime 1 3 6 1 5 5 7 4 14 */ 38560Sstevel@tonic-gate &(nid_objs[312]),/* OBJ_id_it_origPKIMessage 1 3 6 1 5 5 7 4 15 */ 38570Sstevel@tonic-gate &(nid_objs[313]),/* OBJ_id_regCtrl 1 3 6 1 5 5 7 5 1 */ 38580Sstevel@tonic-gate &(nid_objs[314]),/* OBJ_id_regInfo 1 3 6 1 5 5 7 5 2 */ 38590Sstevel@tonic-gate &(nid_objs[323]),/* OBJ_id_alg_des40 1 3 6 1 5 5 7 6 1 */ 38600Sstevel@tonic-gate &(nid_objs[324]),/* OBJ_id_alg_noSignature 1 3 6 1 5 5 7 6 2 */ 38610Sstevel@tonic-gate &(nid_objs[325]),/* OBJ_id_alg_dh_sig_hmac_sha1 1 3 6 1 5 5 7 6 3 */ 38620Sstevel@tonic-gate &(nid_objs[326]),/* OBJ_id_alg_dh_pop 1 3 6 1 5 5 7 6 4 */ 38630Sstevel@tonic-gate &(nid_objs[327]),/* OBJ_id_cmc_statusInfo 1 3 6 1 5 5 7 7 1 */ 38640Sstevel@tonic-gate &(nid_objs[328]),/* OBJ_id_cmc_identification 1 3 6 1 5 5 7 7 2 */ 38650Sstevel@tonic-gate &(nid_objs[329]),/* OBJ_id_cmc_identityProof 1 3 6 1 5 5 7 7 3 */ 38660Sstevel@tonic-gate &(nid_objs[330]),/* OBJ_id_cmc_dataReturn 1 3 6 1 5 5 7 7 4 */ 38670Sstevel@tonic-gate &(nid_objs[331]),/* OBJ_id_cmc_transactionId 1 3 6 1 5 5 7 7 5 */ 38680Sstevel@tonic-gate &(nid_objs[332]),/* OBJ_id_cmc_senderNonce 1 3 6 1 5 5 7 7 6 */ 38690Sstevel@tonic-gate &(nid_objs[333]),/* OBJ_id_cmc_recipientNonce 1 3 6 1 5 5 7 7 7 */ 38700Sstevel@tonic-gate &(nid_objs[334]),/* OBJ_id_cmc_addExtensions 1 3 6 1 5 5 7 7 8 */ 38710Sstevel@tonic-gate &(nid_objs[335]),/* OBJ_id_cmc_encryptedPOP 1 3 6 1 5 5 7 7 9 */ 38720Sstevel@tonic-gate &(nid_objs[336]),/* OBJ_id_cmc_decryptedPOP 1 3 6 1 5 5 7 7 10 */ 38730Sstevel@tonic-gate &(nid_objs[337]),/* OBJ_id_cmc_lraPOPWitness 1 3 6 1 5 5 7 7 11 */ 38740Sstevel@tonic-gate &(nid_objs[338]),/* OBJ_id_cmc_getCert 1 3 6 1 5 5 7 7 15 */ 38750Sstevel@tonic-gate &(nid_objs[339]),/* OBJ_id_cmc_getCRL 1 3 6 1 5 5 7 7 16 */ 38760Sstevel@tonic-gate &(nid_objs[340]),/* OBJ_id_cmc_revokeRequest 1 3 6 1 5 5 7 7 17 */ 38770Sstevel@tonic-gate &(nid_objs[341]),/* OBJ_id_cmc_regInfo 1 3 6 1 5 5 7 7 18 */ 38780Sstevel@tonic-gate &(nid_objs[342]),/* OBJ_id_cmc_responseInfo 1 3 6 1 5 5 7 7 19 */ 38790Sstevel@tonic-gate &(nid_objs[343]),/* OBJ_id_cmc_queryPending 1 3 6 1 5 5 7 7 21 */ 38800Sstevel@tonic-gate &(nid_objs[344]),/* OBJ_id_cmc_popLinkRandom 1 3 6 1 5 5 7 7 22 */ 38810Sstevel@tonic-gate &(nid_objs[345]),/* OBJ_id_cmc_popLinkWitness 1 3 6 1 5 5 7 7 23 */ 38820Sstevel@tonic-gate &(nid_objs[346]),/* OBJ_id_cmc_confirmCertAcceptance 1 3 6 1 5 5 7 7 24 */ 38830Sstevel@tonic-gate &(nid_objs[347]),/* OBJ_id_on_personalData 1 3 6 1 5 5 7 8 1 */ 38840Sstevel@tonic-gate &(nid_objs[348]),/* OBJ_id_pda_dateOfBirth 1 3 6 1 5 5 7 9 1 */ 38850Sstevel@tonic-gate &(nid_objs[349]),/* OBJ_id_pda_placeOfBirth 1 3 6 1 5 5 7 9 2 */ 38860Sstevel@tonic-gate &(nid_objs[351]),/* OBJ_id_pda_gender 1 3 6 1 5 5 7 9 3 */ 38870Sstevel@tonic-gate &(nid_objs[352]),/* OBJ_id_pda_countryOfCitizenship 1 3 6 1 5 5 7 9 4 */ 38880Sstevel@tonic-gate &(nid_objs[353]),/* OBJ_id_pda_countryOfResidence 1 3 6 1 5 5 7 9 5 */ 38890Sstevel@tonic-gate &(nid_objs[354]),/* OBJ_id_aca_authenticationInfo 1 3 6 1 5 5 7 10 1 */ 38900Sstevel@tonic-gate &(nid_objs[355]),/* OBJ_id_aca_accessIdentity 1 3 6 1 5 5 7 10 2 */ 38910Sstevel@tonic-gate &(nid_objs[356]),/* OBJ_id_aca_chargingIdentity 1 3 6 1 5 5 7 10 3 */ 38920Sstevel@tonic-gate &(nid_objs[357]),/* OBJ_id_aca_group 1 3 6 1 5 5 7 10 4 */ 38930Sstevel@tonic-gate &(nid_objs[358]),/* OBJ_id_aca_role 1 3 6 1 5 5 7 10 5 */ 38940Sstevel@tonic-gate &(nid_objs[399]),/* OBJ_id_aca_encAttrs 1 3 6 1 5 5 7 10 6 */ 38950Sstevel@tonic-gate &(nid_objs[359]),/* OBJ_id_qcs_pkixQCSyntax_v1 1 3 6 1 5 5 7 11 1 */ 38960Sstevel@tonic-gate &(nid_objs[360]),/* OBJ_id_cct_crs 1 3 6 1 5 5 7 12 1 */ 38970Sstevel@tonic-gate &(nid_objs[361]),/* OBJ_id_cct_PKIData 1 3 6 1 5 5 7 12 2 */ 38980Sstevel@tonic-gate &(nid_objs[362]),/* OBJ_id_cct_PKIResponse 1 3 6 1 5 5 7 12 3 */ 3899*2139Sjp161948 &(nid_objs[664]),/* OBJ_id_ppl_anyLanguage 1 3 6 1 5 5 7 21 0 */ 3900*2139Sjp161948 &(nid_objs[665]),/* OBJ_id_ppl_inheritAll 1 3 6 1 5 5 7 21 1 */ 3901*2139Sjp161948 &(nid_objs[667]),/* OBJ_Independent 1 3 6 1 5 5 7 21 2 */ 39020Sstevel@tonic-gate &(nid_objs[178]),/* OBJ_ad_OCSP 1 3 6 1 5 5 7 48 1 */ 39030Sstevel@tonic-gate &(nid_objs[179]),/* OBJ_ad_ca_issuers 1 3 6 1 5 5 7 48 2 */ 39040Sstevel@tonic-gate &(nid_objs[363]),/* OBJ_ad_timeStamping 1 3 6 1 5 5 7 48 3 */ 39050Sstevel@tonic-gate &(nid_objs[364]),/* OBJ_ad_dvcs 1 3 6 1 5 5 7 48 4 */ 39060Sstevel@tonic-gate &(nid_objs[58]),/* OBJ_netscape_cert_extension 2 16 840 1 113730 1 */ 39070Sstevel@tonic-gate &(nid_objs[59]),/* OBJ_netscape_data_type 2 16 840 1 113730 2 */ 39080Sstevel@tonic-gate &(nid_objs[438]),/* OBJ_pilotAttributeType 0 9 2342 19200300 100 1 */ 39090Sstevel@tonic-gate &(nid_objs[439]),/* OBJ_pilotAttributeSyntax 0 9 2342 19200300 100 3 */ 39100Sstevel@tonic-gate &(nid_objs[440]),/* OBJ_pilotObjectClass 0 9 2342 19200300 100 4 */ 39110Sstevel@tonic-gate &(nid_objs[441]),/* OBJ_pilotGroups 0 9 2342 19200300 100 10 */ 39120Sstevel@tonic-gate &(nid_objs[108]),/* OBJ_cast5_cbc 1 2 840 113533 7 66 10 */ 39130Sstevel@tonic-gate &(nid_objs[112]),/* OBJ_pbeWithMD5AndCast5_CBC 1 2 840 113533 7 66 12 */ 39140Sstevel@tonic-gate &(nid_objs[ 6]),/* OBJ_rsaEncryption 1 2 840 113549 1 1 1 */ 39150Sstevel@tonic-gate &(nid_objs[ 7]),/* OBJ_md2WithRSAEncryption 1 2 840 113549 1 1 2 */ 39160Sstevel@tonic-gate &(nid_objs[396]),/* OBJ_md4WithRSAEncryption 1 2 840 113549 1 1 3 */ 39170Sstevel@tonic-gate &(nid_objs[ 8]),/* OBJ_md5WithRSAEncryption 1 2 840 113549 1 1 4 */ 39180Sstevel@tonic-gate &(nid_objs[65]),/* OBJ_sha1WithRSAEncryption 1 2 840 113549 1 1 5 */ 39190Sstevel@tonic-gate &(nid_objs[644]),/* OBJ_rsaOAEPEncryptionSET 1 2 840 113549 1 1 6 */ 3920*2139Sjp161948 &(nid_objs[668]),/* OBJ_sha256WithRSAEncryption 1 2 840 113549 1 1 11 */ 3921*2139Sjp161948 &(nid_objs[669]),/* OBJ_sha384WithRSAEncryption 1 2 840 113549 1 1 12 */ 3922*2139Sjp161948 &(nid_objs[670]),/* OBJ_sha512WithRSAEncryption 1 2 840 113549 1 1 13 */ 3923*2139Sjp161948 &(nid_objs[671]),/* OBJ_sha224WithRSAEncryption 1 2 840 113549 1 1 14 */ 39240Sstevel@tonic-gate &(nid_objs[28]),/* OBJ_dhKeyAgreement 1 2 840 113549 1 3 1 */ 39250Sstevel@tonic-gate &(nid_objs[ 9]),/* OBJ_pbeWithMD2AndDES_CBC 1 2 840 113549 1 5 1 */ 39260Sstevel@tonic-gate &(nid_objs[10]),/* OBJ_pbeWithMD5AndDES_CBC 1 2 840 113549 1 5 3 */ 39270Sstevel@tonic-gate &(nid_objs[168]),/* OBJ_pbeWithMD2AndRC2_CBC 1 2 840 113549 1 5 4 */ 39280Sstevel@tonic-gate &(nid_objs[169]),/* OBJ_pbeWithMD5AndRC2_CBC 1 2 840 113549 1 5 6 */ 39290Sstevel@tonic-gate &(nid_objs[170]),/* OBJ_pbeWithSHA1AndDES_CBC 1 2 840 113549 1 5 10 */ 39300Sstevel@tonic-gate &(nid_objs[68]),/* OBJ_pbeWithSHA1AndRC2_CBC 1 2 840 113549 1 5 11 */ 39310Sstevel@tonic-gate &(nid_objs[69]),/* OBJ_id_pbkdf2 1 2 840 113549 1 5 12 */ 39320Sstevel@tonic-gate &(nid_objs[161]),/* OBJ_pbes2 1 2 840 113549 1 5 13 */ 39330Sstevel@tonic-gate &(nid_objs[162]),/* OBJ_pbmac1 1 2 840 113549 1 5 14 */ 39340Sstevel@tonic-gate &(nid_objs[21]),/* OBJ_pkcs7_data 1 2 840 113549 1 7 1 */ 39350Sstevel@tonic-gate &(nid_objs[22]),/* OBJ_pkcs7_signed 1 2 840 113549 1 7 2 */ 39360Sstevel@tonic-gate &(nid_objs[23]),/* OBJ_pkcs7_enveloped 1 2 840 113549 1 7 3 */ 39370Sstevel@tonic-gate &(nid_objs[24]),/* OBJ_pkcs7_signedAndEnveloped 1 2 840 113549 1 7 4 */ 39380Sstevel@tonic-gate &(nid_objs[25]),/* OBJ_pkcs7_digest 1 2 840 113549 1 7 5 */ 39390Sstevel@tonic-gate &(nid_objs[26]),/* OBJ_pkcs7_encrypted 1 2 840 113549 1 7 6 */ 39400Sstevel@tonic-gate &(nid_objs[48]),/* OBJ_pkcs9_emailAddress 1 2 840 113549 1 9 1 */ 39410Sstevel@tonic-gate &(nid_objs[49]),/* OBJ_pkcs9_unstructuredName 1 2 840 113549 1 9 2 */ 39420Sstevel@tonic-gate &(nid_objs[50]),/* OBJ_pkcs9_contentType 1 2 840 113549 1 9 3 */ 39430Sstevel@tonic-gate &(nid_objs[51]),/* OBJ_pkcs9_messageDigest 1 2 840 113549 1 9 4 */ 39440Sstevel@tonic-gate &(nid_objs[52]),/* OBJ_pkcs9_signingTime 1 2 840 113549 1 9 5 */ 39450Sstevel@tonic-gate &(nid_objs[53]),/* OBJ_pkcs9_countersignature 1 2 840 113549 1 9 6 */ 39460Sstevel@tonic-gate &(nid_objs[54]),/* OBJ_pkcs9_challengePassword 1 2 840 113549 1 9 7 */ 39470Sstevel@tonic-gate &(nid_objs[55]),/* OBJ_pkcs9_unstructuredAddress 1 2 840 113549 1 9 8 */ 39480Sstevel@tonic-gate &(nid_objs[56]),/* OBJ_pkcs9_extCertAttributes 1 2 840 113549 1 9 9 */ 39490Sstevel@tonic-gate &(nid_objs[172]),/* OBJ_ext_req 1 2 840 113549 1 9 14 */ 39500Sstevel@tonic-gate &(nid_objs[167]),/* OBJ_SMIMECapabilities 1 2 840 113549 1 9 15 */ 39510Sstevel@tonic-gate &(nid_objs[188]),/* OBJ_SMIME 1 2 840 113549 1 9 16 */ 39520Sstevel@tonic-gate &(nid_objs[156]),/* OBJ_friendlyName 1 2 840 113549 1 9 20 */ 39530Sstevel@tonic-gate &(nid_objs[157]),/* OBJ_localKeyID 1 2 840 113549 1 9 21 */ 3954*2139Sjp161948 &(nid_objs[681]),/* OBJ_X9_62_onBasis 1 2 840 10045 1 2 3 1 */ 3955*2139Sjp161948 &(nid_objs[682]),/* OBJ_X9_62_tpBasis 1 2 840 10045 1 2 3 2 */ 3956*2139Sjp161948 &(nid_objs[683]),/* OBJ_X9_62_ppBasis 1 2 840 10045 1 2 3 3 */ 39570Sstevel@tonic-gate &(nid_objs[417]),/* OBJ_ms_csp_name 1 3 6 1 4 1 311 17 1 */ 39580Sstevel@tonic-gate &(nid_objs[390]),/* OBJ_dcObject 1 3 6 1 4 1 1466 344 */ 39590Sstevel@tonic-gate &(nid_objs[91]),/* OBJ_bf_cbc 1 3 6 1 4 1 3029 1 2 */ 39600Sstevel@tonic-gate &(nid_objs[315]),/* OBJ_id_regCtrl_regToken 1 3 6 1 5 5 7 5 1 1 */ 39610Sstevel@tonic-gate &(nid_objs[316]),/* OBJ_id_regCtrl_authenticator 1 3 6 1 5 5 7 5 1 2 */ 39620Sstevel@tonic-gate &(nid_objs[317]),/* OBJ_id_regCtrl_pkiPublicationInfo 1 3 6 1 5 5 7 5 1 3 */ 39630Sstevel@tonic-gate &(nid_objs[318]),/* OBJ_id_regCtrl_pkiArchiveOptions 1 3 6 1 5 5 7 5 1 4 */ 39640Sstevel@tonic-gate &(nid_objs[319]),/* OBJ_id_regCtrl_oldCertID 1 3 6 1 5 5 7 5 1 5 */ 39650Sstevel@tonic-gate &(nid_objs[320]),/* OBJ_id_regCtrl_protocolEncrKey 1 3 6 1 5 5 7 5 1 6 */ 39660Sstevel@tonic-gate &(nid_objs[321]),/* OBJ_id_regInfo_utf8Pairs 1 3 6 1 5 5 7 5 2 1 */ 39670Sstevel@tonic-gate &(nid_objs[322]),/* OBJ_id_regInfo_certReq 1 3 6 1 5 5 7 5 2 2 */ 39680Sstevel@tonic-gate &(nid_objs[365]),/* OBJ_id_pkix_OCSP_basic 1 3 6 1 5 5 7 48 1 1 */ 39690Sstevel@tonic-gate &(nid_objs[366]),/* OBJ_id_pkix_OCSP_Nonce 1 3 6 1 5 5 7 48 1 2 */ 39700Sstevel@tonic-gate &(nid_objs[367]),/* OBJ_id_pkix_OCSP_CrlID 1 3 6 1 5 5 7 48 1 3 */ 39710Sstevel@tonic-gate &(nid_objs[368]),/* OBJ_id_pkix_OCSP_acceptableResponses 1 3 6 1 5 5 7 48 1 4 */ 39720Sstevel@tonic-gate &(nid_objs[369]),/* OBJ_id_pkix_OCSP_noCheck 1 3 6 1 5 5 7 48 1 5 */ 39730Sstevel@tonic-gate &(nid_objs[370]),/* OBJ_id_pkix_OCSP_archiveCutoff 1 3 6 1 5 5 7 48 1 6 */ 39740Sstevel@tonic-gate &(nid_objs[371]),/* OBJ_id_pkix_OCSP_serviceLocator 1 3 6 1 5 5 7 48 1 7 */ 39750Sstevel@tonic-gate &(nid_objs[372]),/* OBJ_id_pkix_OCSP_extendedStatus 1 3 6 1 5 5 7 48 1 8 */ 39760Sstevel@tonic-gate &(nid_objs[373]),/* OBJ_id_pkix_OCSP_valid 1 3 6 1 5 5 7 48 1 9 */ 39770Sstevel@tonic-gate &(nid_objs[374]),/* OBJ_id_pkix_OCSP_path 1 3 6 1 5 5 7 48 1 10 */ 39780Sstevel@tonic-gate &(nid_objs[375]),/* OBJ_id_pkix_OCSP_trustRoot 1 3 6 1 5 5 7 48 1 11 */ 39790Sstevel@tonic-gate &(nid_objs[418]),/* OBJ_aes_128_ecb 2 16 840 1 101 3 4 1 1 */ 39800Sstevel@tonic-gate &(nid_objs[419]),/* OBJ_aes_128_cbc 2 16 840 1 101 3 4 1 2 */ 39810Sstevel@tonic-gate &(nid_objs[420]),/* OBJ_aes_128_ofb128 2 16 840 1 101 3 4 1 3 */ 39820Sstevel@tonic-gate &(nid_objs[421]),/* OBJ_aes_128_cfb128 2 16 840 1 101 3 4 1 4 */ 39830Sstevel@tonic-gate &(nid_objs[422]),/* OBJ_aes_192_ecb 2 16 840 1 101 3 4 1 21 */ 39840Sstevel@tonic-gate &(nid_objs[423]),/* OBJ_aes_192_cbc 2 16 840 1 101 3 4 1 22 */ 39850Sstevel@tonic-gate &(nid_objs[424]),/* OBJ_aes_192_ofb128 2 16 840 1 101 3 4 1 23 */ 39860Sstevel@tonic-gate &(nid_objs[425]),/* OBJ_aes_192_cfb128 2 16 840 1 101 3 4 1 24 */ 39870Sstevel@tonic-gate &(nid_objs[426]),/* OBJ_aes_256_ecb 2 16 840 1 101 3 4 1 41 */ 39880Sstevel@tonic-gate &(nid_objs[427]),/* OBJ_aes_256_cbc 2 16 840 1 101 3 4 1 42 */ 39890Sstevel@tonic-gate &(nid_objs[428]),/* OBJ_aes_256_ofb128 2 16 840 1 101 3 4 1 43 */ 39900Sstevel@tonic-gate &(nid_objs[429]),/* OBJ_aes_256_cfb128 2 16 840 1 101 3 4 1 44 */ 3991*2139Sjp161948 &(nid_objs[672]),/* OBJ_sha256 2 16 840 1 101 3 4 2 1 */ 3992*2139Sjp161948 &(nid_objs[673]),/* OBJ_sha384 2 16 840 1 101 3 4 2 2 */ 3993*2139Sjp161948 &(nid_objs[674]),/* OBJ_sha512 2 16 840 1 101 3 4 2 3 */ 3994*2139Sjp161948 &(nid_objs[675]),/* OBJ_sha224 2 16 840 1 101 3 4 2 4 */ 39950Sstevel@tonic-gate &(nid_objs[71]),/* OBJ_netscape_cert_type 2 16 840 1 113730 1 1 */ 39960Sstevel@tonic-gate &(nid_objs[72]),/* OBJ_netscape_base_url 2 16 840 1 113730 1 2 */ 39970Sstevel@tonic-gate &(nid_objs[73]),/* OBJ_netscape_revocation_url 2 16 840 1 113730 1 3 */ 39980Sstevel@tonic-gate &(nid_objs[74]),/* OBJ_netscape_ca_revocation_url 2 16 840 1 113730 1 4 */ 39990Sstevel@tonic-gate &(nid_objs[75]),/* OBJ_netscape_renewal_url 2 16 840 1 113730 1 7 */ 40000Sstevel@tonic-gate &(nid_objs[76]),/* OBJ_netscape_ca_policy_url 2 16 840 1 113730 1 8 */ 40010Sstevel@tonic-gate &(nid_objs[77]),/* OBJ_netscape_ssl_server_name 2 16 840 1 113730 1 12 */ 40020Sstevel@tonic-gate &(nid_objs[78]),/* OBJ_netscape_comment 2 16 840 1 113730 1 13 */ 40030Sstevel@tonic-gate &(nid_objs[79]),/* OBJ_netscape_cert_sequence 2 16 840 1 113730 2 5 */ 40040Sstevel@tonic-gate &(nid_objs[139]),/* OBJ_ns_sgc 2 16 840 1 113730 4 1 */ 40050Sstevel@tonic-gate &(nid_objs[458]),/* OBJ_userId 0 9 2342 19200300 100 1 1 */ 40060Sstevel@tonic-gate &(nid_objs[459]),/* OBJ_textEncodedORAddress 0 9 2342 19200300 100 1 2 */ 40070Sstevel@tonic-gate &(nid_objs[460]),/* OBJ_rfc822Mailbox 0 9 2342 19200300 100 1 3 */ 40080Sstevel@tonic-gate &(nid_objs[461]),/* OBJ_info 0 9 2342 19200300 100 1 4 */ 40090Sstevel@tonic-gate &(nid_objs[462]),/* OBJ_favouriteDrink 0 9 2342 19200300 100 1 5 */ 40100Sstevel@tonic-gate &(nid_objs[463]),/* OBJ_roomNumber 0 9 2342 19200300 100 1 6 */ 40110Sstevel@tonic-gate &(nid_objs[464]),/* OBJ_photo 0 9 2342 19200300 100 1 7 */ 40120Sstevel@tonic-gate &(nid_objs[465]),/* OBJ_userClass 0 9 2342 19200300 100 1 8 */ 40130Sstevel@tonic-gate &(nid_objs[466]),/* OBJ_host 0 9 2342 19200300 100 1 9 */ 40140Sstevel@tonic-gate &(nid_objs[467]),/* OBJ_manager 0 9 2342 19200300 100 1 10 */ 40150Sstevel@tonic-gate &(nid_objs[468]),/* OBJ_documentIdentifier 0 9 2342 19200300 100 1 11 */ 40160Sstevel@tonic-gate &(nid_objs[469]),/* OBJ_documentTitle 0 9 2342 19200300 100 1 12 */ 40170Sstevel@tonic-gate &(nid_objs[470]),/* OBJ_documentVersion 0 9 2342 19200300 100 1 13 */ 40180Sstevel@tonic-gate &(nid_objs[471]),/* OBJ_documentAuthor 0 9 2342 19200300 100 1 14 */ 40190Sstevel@tonic-gate &(nid_objs[472]),/* OBJ_documentLocation 0 9 2342 19200300 100 1 15 */ 40200Sstevel@tonic-gate &(nid_objs[473]),/* OBJ_homeTelephoneNumber 0 9 2342 19200300 100 1 20 */ 40210Sstevel@tonic-gate &(nid_objs[474]),/* OBJ_secretary 0 9 2342 19200300 100 1 21 */ 40220Sstevel@tonic-gate &(nid_objs[475]),/* OBJ_otherMailbox 0 9 2342 19200300 100 1 22 */ 40230Sstevel@tonic-gate &(nid_objs[476]),/* OBJ_lastModifiedTime 0 9 2342 19200300 100 1 23 */ 40240Sstevel@tonic-gate &(nid_objs[477]),/* OBJ_lastModifiedBy 0 9 2342 19200300 100 1 24 */ 40250Sstevel@tonic-gate &(nid_objs[391]),/* OBJ_domainComponent 0 9 2342 19200300 100 1 25 */ 40260Sstevel@tonic-gate &(nid_objs[478]),/* OBJ_aRecord 0 9 2342 19200300 100 1 26 */ 40270Sstevel@tonic-gate &(nid_objs[479]),/* OBJ_pilotAttributeType27 0 9 2342 19200300 100 1 27 */ 40280Sstevel@tonic-gate &(nid_objs[480]),/* OBJ_mXRecord 0 9 2342 19200300 100 1 28 */ 40290Sstevel@tonic-gate &(nid_objs[481]),/* OBJ_nSRecord 0 9 2342 19200300 100 1 29 */ 40300Sstevel@tonic-gate &(nid_objs[482]),/* OBJ_sOARecord 0 9 2342 19200300 100 1 30 */ 40310Sstevel@tonic-gate &(nid_objs[483]),/* OBJ_cNAMERecord 0 9 2342 19200300 100 1 31 */ 40320Sstevel@tonic-gate &(nid_objs[484]),/* OBJ_associatedDomain 0 9 2342 19200300 100 1 37 */ 40330Sstevel@tonic-gate &(nid_objs[485]),/* OBJ_associatedName 0 9 2342 19200300 100 1 38 */ 40340Sstevel@tonic-gate &(nid_objs[486]),/* OBJ_homePostalAddress 0 9 2342 19200300 100 1 39 */ 40350Sstevel@tonic-gate &(nid_objs[487]),/* OBJ_personalTitle 0 9 2342 19200300 100 1 40 */ 40360Sstevel@tonic-gate &(nid_objs[488]),/* OBJ_mobileTelephoneNumber 0 9 2342 19200300 100 1 41 */ 40370Sstevel@tonic-gate &(nid_objs[489]),/* OBJ_pagerTelephoneNumber 0 9 2342 19200300 100 1 42 */ 40380Sstevel@tonic-gate &(nid_objs[490]),/* OBJ_friendlyCountryName 0 9 2342 19200300 100 1 43 */ 40390Sstevel@tonic-gate &(nid_objs[491]),/* OBJ_organizationalStatus 0 9 2342 19200300 100 1 45 */ 40400Sstevel@tonic-gate &(nid_objs[492]),/* OBJ_janetMailbox 0 9 2342 19200300 100 1 46 */ 40410Sstevel@tonic-gate &(nid_objs[493]),/* OBJ_mailPreferenceOption 0 9 2342 19200300 100 1 47 */ 40420Sstevel@tonic-gate &(nid_objs[494]),/* OBJ_buildingName 0 9 2342 19200300 100 1 48 */ 40430Sstevel@tonic-gate &(nid_objs[495]),/* OBJ_dSAQuality 0 9 2342 19200300 100 1 49 */ 40440Sstevel@tonic-gate &(nid_objs[496]),/* OBJ_singleLevelQuality 0 9 2342 19200300 100 1 50 */ 40450Sstevel@tonic-gate &(nid_objs[497]),/* OBJ_subtreeMinimumQuality 0 9 2342 19200300 100 1 51 */ 40460Sstevel@tonic-gate &(nid_objs[498]),/* OBJ_subtreeMaximumQuality 0 9 2342 19200300 100 1 52 */ 40470Sstevel@tonic-gate &(nid_objs[499]),/* OBJ_personalSignature 0 9 2342 19200300 100 1 53 */ 40480Sstevel@tonic-gate &(nid_objs[500]),/* OBJ_dITRedirect 0 9 2342 19200300 100 1 54 */ 40490Sstevel@tonic-gate &(nid_objs[501]),/* OBJ_audio 0 9 2342 19200300 100 1 55 */ 40500Sstevel@tonic-gate &(nid_objs[502]),/* OBJ_documentPublisher 0 9 2342 19200300 100 1 56 */ 40510Sstevel@tonic-gate &(nid_objs[442]),/* OBJ_iA5StringSyntax 0 9 2342 19200300 100 3 4 */ 40520Sstevel@tonic-gate &(nid_objs[443]),/* OBJ_caseIgnoreIA5StringSyntax 0 9 2342 19200300 100 3 5 */ 40530Sstevel@tonic-gate &(nid_objs[444]),/* OBJ_pilotObject 0 9 2342 19200300 100 4 3 */ 40540Sstevel@tonic-gate &(nid_objs[445]),/* OBJ_pilotPerson 0 9 2342 19200300 100 4 4 */ 40550Sstevel@tonic-gate &(nid_objs[446]),/* OBJ_account 0 9 2342 19200300 100 4 5 */ 40560Sstevel@tonic-gate &(nid_objs[447]),/* OBJ_document 0 9 2342 19200300 100 4 6 */ 40570Sstevel@tonic-gate &(nid_objs[448]),/* OBJ_room 0 9 2342 19200300 100 4 7 */ 40580Sstevel@tonic-gate &(nid_objs[449]),/* OBJ_documentSeries 0 9 2342 19200300 100 4 9 */ 40590Sstevel@tonic-gate &(nid_objs[392]),/* OBJ_Domain 0 9 2342 19200300 100 4 13 */ 40600Sstevel@tonic-gate &(nid_objs[450]),/* OBJ_rFC822localPart 0 9 2342 19200300 100 4 14 */ 40610Sstevel@tonic-gate &(nid_objs[451]),/* OBJ_dNSDomain 0 9 2342 19200300 100 4 15 */ 40620Sstevel@tonic-gate &(nid_objs[452]),/* OBJ_domainRelatedObject 0 9 2342 19200300 100 4 17 */ 40630Sstevel@tonic-gate &(nid_objs[453]),/* OBJ_friendlyCountry 0 9 2342 19200300 100 4 18 */ 40640Sstevel@tonic-gate &(nid_objs[454]),/* OBJ_simpleSecurityObject 0 9 2342 19200300 100 4 19 */ 40650Sstevel@tonic-gate &(nid_objs[455]),/* OBJ_pilotOrganization 0 9 2342 19200300 100 4 20 */ 40660Sstevel@tonic-gate &(nid_objs[456]),/* OBJ_pilotDSA 0 9 2342 19200300 100 4 21 */ 40670Sstevel@tonic-gate &(nid_objs[457]),/* OBJ_qualityLabelledData 0 9 2342 19200300 100 4 22 */ 40680Sstevel@tonic-gate &(nid_objs[189]),/* OBJ_id_smime_mod 1 2 840 113549 1 9 16 0 */ 40690Sstevel@tonic-gate &(nid_objs[190]),/* OBJ_id_smime_ct 1 2 840 113549 1 9 16 1 */ 40700Sstevel@tonic-gate &(nid_objs[191]),/* OBJ_id_smime_aa 1 2 840 113549 1 9 16 2 */ 40710Sstevel@tonic-gate &(nid_objs[192]),/* OBJ_id_smime_alg 1 2 840 113549 1 9 16 3 */ 40720Sstevel@tonic-gate &(nid_objs[193]),/* OBJ_id_smime_cd 1 2 840 113549 1 9 16 4 */ 40730Sstevel@tonic-gate &(nid_objs[194]),/* OBJ_id_smime_spq 1 2 840 113549 1 9 16 5 */ 40740Sstevel@tonic-gate &(nid_objs[195]),/* OBJ_id_smime_cti 1 2 840 113549 1 9 16 6 */ 40750Sstevel@tonic-gate &(nid_objs[158]),/* OBJ_x509Certificate 1 2 840 113549 1 9 22 1 */ 40760Sstevel@tonic-gate &(nid_objs[159]),/* OBJ_sdsiCertificate 1 2 840 113549 1 9 22 2 */ 40770Sstevel@tonic-gate &(nid_objs[160]),/* OBJ_x509Crl 1 2 840 113549 1 9 23 1 */ 40780Sstevel@tonic-gate &(nid_objs[144]),/* OBJ_pbe_WithSHA1And128BitRC4 1 2 840 113549 1 12 1 1 */ 40790Sstevel@tonic-gate &(nid_objs[145]),/* OBJ_pbe_WithSHA1And40BitRC4 1 2 840 113549 1 12 1 2 */ 40800Sstevel@tonic-gate &(nid_objs[146]),/* OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC 1 2 840 113549 1 12 1 3 */ 40810Sstevel@tonic-gate &(nid_objs[147]),/* OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC 1 2 840 113549 1 12 1 4 */ 40820Sstevel@tonic-gate &(nid_objs[148]),/* OBJ_pbe_WithSHA1And128BitRC2_CBC 1 2 840 113549 1 12 1 5 */ 40830Sstevel@tonic-gate &(nid_objs[149]),/* OBJ_pbe_WithSHA1And40BitRC2_CBC 1 2 840 113549 1 12 1 6 */ 40840Sstevel@tonic-gate &(nid_objs[171]),/* OBJ_ms_ext_req 1 3 6 1 4 1 311 2 1 14 */ 40850Sstevel@tonic-gate &(nid_objs[134]),/* OBJ_ms_code_ind 1 3 6 1 4 1 311 2 1 21 */ 40860Sstevel@tonic-gate &(nid_objs[135]),/* OBJ_ms_code_com 1 3 6 1 4 1 311 2 1 22 */ 40870Sstevel@tonic-gate &(nid_objs[136]),/* OBJ_ms_ctl_sign 1 3 6 1 4 1 311 10 3 1 */ 40880Sstevel@tonic-gate &(nid_objs[137]),/* OBJ_ms_sgc 1 3 6 1 4 1 311 10 3 3 */ 40890Sstevel@tonic-gate &(nid_objs[138]),/* OBJ_ms_efs 1 3 6 1 4 1 311 10 3 4 */ 40900Sstevel@tonic-gate &(nid_objs[648]),/* OBJ_ms_smartcard_login 1 3 6 1 4 1 311 20 2 2 */ 40910Sstevel@tonic-gate &(nid_objs[649]),/* OBJ_ms_upn 1 3 6 1 4 1 311 20 2 3 */ 40920Sstevel@tonic-gate &(nid_objs[196]),/* OBJ_id_smime_mod_cms 1 2 840 113549 1 9 16 0 1 */ 40930Sstevel@tonic-gate &(nid_objs[197]),/* OBJ_id_smime_mod_ess 1 2 840 113549 1 9 16 0 2 */ 40940Sstevel@tonic-gate &(nid_objs[198]),/* OBJ_id_smime_mod_oid 1 2 840 113549 1 9 16 0 3 */ 40950Sstevel@tonic-gate &(nid_objs[199]),/* OBJ_id_smime_mod_msg_v3 1 2 840 113549 1 9 16 0 4 */ 40960Sstevel@tonic-gate &(nid_objs[200]),/* OBJ_id_smime_mod_ets_eSignature_88 1 2 840 113549 1 9 16 0 5 */ 40970Sstevel@tonic-gate &(nid_objs[201]),/* OBJ_id_smime_mod_ets_eSignature_97 1 2 840 113549 1 9 16 0 6 */ 40980Sstevel@tonic-gate &(nid_objs[202]),/* OBJ_id_smime_mod_ets_eSigPolicy_88 1 2 840 113549 1 9 16 0 7 */ 40990Sstevel@tonic-gate &(nid_objs[203]),/* OBJ_id_smime_mod_ets_eSigPolicy_97 1 2 840 113549 1 9 16 0 8 */ 41000Sstevel@tonic-gate &(nid_objs[204]),/* OBJ_id_smime_ct_receipt 1 2 840 113549 1 9 16 1 1 */ 41010Sstevel@tonic-gate &(nid_objs[205]),/* OBJ_id_smime_ct_authData 1 2 840 113549 1 9 16 1 2 */ 41020Sstevel@tonic-gate &(nid_objs[206]),/* OBJ_id_smime_ct_publishCert 1 2 840 113549 1 9 16 1 3 */ 41030Sstevel@tonic-gate &(nid_objs[207]),/* OBJ_id_smime_ct_TSTInfo 1 2 840 113549 1 9 16 1 4 */ 41040Sstevel@tonic-gate &(nid_objs[208]),/* OBJ_id_smime_ct_TDTInfo 1 2 840 113549 1 9 16 1 5 */ 41050Sstevel@tonic-gate &(nid_objs[209]),/* OBJ_id_smime_ct_contentInfo 1 2 840 113549 1 9 16 1 6 */ 41060Sstevel@tonic-gate &(nid_objs[210]),/* OBJ_id_smime_ct_DVCSRequestData 1 2 840 113549 1 9 16 1 7 */ 41070Sstevel@tonic-gate &(nid_objs[211]),/* OBJ_id_smime_ct_DVCSResponseData 1 2 840 113549 1 9 16 1 8 */ 41080Sstevel@tonic-gate &(nid_objs[212]),/* OBJ_id_smime_aa_receiptRequest 1 2 840 113549 1 9 16 2 1 */ 41090Sstevel@tonic-gate &(nid_objs[213]),/* OBJ_id_smime_aa_securityLabel 1 2 840 113549 1 9 16 2 2 */ 41100Sstevel@tonic-gate &(nid_objs[214]),/* OBJ_id_smime_aa_mlExpandHistory 1 2 840 113549 1 9 16 2 3 */ 41110Sstevel@tonic-gate &(nid_objs[215]),/* OBJ_id_smime_aa_contentHint 1 2 840 113549 1 9 16 2 4 */ 41120Sstevel@tonic-gate &(nid_objs[216]),/* OBJ_id_smime_aa_msgSigDigest 1 2 840 113549 1 9 16 2 5 */ 41130Sstevel@tonic-gate &(nid_objs[217]),/* OBJ_id_smime_aa_encapContentType 1 2 840 113549 1 9 16 2 6 */ 41140Sstevel@tonic-gate &(nid_objs[218]),/* OBJ_id_smime_aa_contentIdentifier 1 2 840 113549 1 9 16 2 7 */ 41150Sstevel@tonic-gate &(nid_objs[219]),/* OBJ_id_smime_aa_macValue 1 2 840 113549 1 9 16 2 8 */ 41160Sstevel@tonic-gate &(nid_objs[220]),/* OBJ_id_smime_aa_equivalentLabels 1 2 840 113549 1 9 16 2 9 */ 41170Sstevel@tonic-gate &(nid_objs[221]),/* OBJ_id_smime_aa_contentReference 1 2 840 113549 1 9 16 2 10 */ 41180Sstevel@tonic-gate &(nid_objs[222]),/* OBJ_id_smime_aa_encrypKeyPref 1 2 840 113549 1 9 16 2 11 */ 41190Sstevel@tonic-gate &(nid_objs[223]),/* OBJ_id_smime_aa_signingCertificate 1 2 840 113549 1 9 16 2 12 */ 41200Sstevel@tonic-gate &(nid_objs[224]),/* OBJ_id_smime_aa_smimeEncryptCerts 1 2 840 113549 1 9 16 2 13 */ 41210Sstevel@tonic-gate &(nid_objs[225]),/* OBJ_id_smime_aa_timeStampToken 1 2 840 113549 1 9 16 2 14 */ 41220Sstevel@tonic-gate &(nid_objs[226]),/* OBJ_id_smime_aa_ets_sigPolicyId 1 2 840 113549 1 9 16 2 15 */ 41230Sstevel@tonic-gate &(nid_objs[227]),/* OBJ_id_smime_aa_ets_commitmentType 1 2 840 113549 1 9 16 2 16 */ 41240Sstevel@tonic-gate &(nid_objs[228]),/* OBJ_id_smime_aa_ets_signerLocation 1 2 840 113549 1 9 16 2 17 */ 41250Sstevel@tonic-gate &(nid_objs[229]),/* OBJ_id_smime_aa_ets_signerAttr 1 2 840 113549 1 9 16 2 18 */ 41260Sstevel@tonic-gate &(nid_objs[230]),/* OBJ_id_smime_aa_ets_otherSigCert 1 2 840 113549 1 9 16 2 19 */ 41270Sstevel@tonic-gate &(nid_objs[231]),/* OBJ_id_smime_aa_ets_contentTimestamp 1 2 840 113549 1 9 16 2 20 */ 41280Sstevel@tonic-gate &(nid_objs[232]),/* OBJ_id_smime_aa_ets_CertificateRefs 1 2 840 113549 1 9 16 2 21 */ 41290Sstevel@tonic-gate &(nid_objs[233]),/* OBJ_id_smime_aa_ets_RevocationRefs 1 2 840 113549 1 9 16 2 22 */ 41300Sstevel@tonic-gate &(nid_objs[234]),/* OBJ_id_smime_aa_ets_certValues 1 2 840 113549 1 9 16 2 23 */ 41310Sstevel@tonic-gate &(nid_objs[235]),/* OBJ_id_smime_aa_ets_revocationValues 1 2 840 113549 1 9 16 2 24 */ 41320Sstevel@tonic-gate &(nid_objs[236]),/* OBJ_id_smime_aa_ets_escTimeStamp 1 2 840 113549 1 9 16 2 25 */ 41330Sstevel@tonic-gate &(nid_objs[237]),/* OBJ_id_smime_aa_ets_certCRLTimestamp 1 2 840 113549 1 9 16 2 26 */ 41340Sstevel@tonic-gate &(nid_objs[238]),/* OBJ_id_smime_aa_ets_archiveTimeStamp 1 2 840 113549 1 9 16 2 27 */ 41350Sstevel@tonic-gate &(nid_objs[239]),/* OBJ_id_smime_aa_signatureType 1 2 840 113549 1 9 16 2 28 */ 41360Sstevel@tonic-gate &(nid_objs[240]),/* OBJ_id_smime_aa_dvcs_dvc 1 2 840 113549 1 9 16 2 29 */ 41370Sstevel@tonic-gate &(nid_objs[241]),/* OBJ_id_smime_alg_ESDHwith3DES 1 2 840 113549 1 9 16 3 1 */ 41380Sstevel@tonic-gate &(nid_objs[242]),/* OBJ_id_smime_alg_ESDHwithRC2 1 2 840 113549 1 9 16 3 2 */ 41390Sstevel@tonic-gate &(nid_objs[243]),/* OBJ_id_smime_alg_3DESwrap 1 2 840 113549 1 9 16 3 3 */ 41400Sstevel@tonic-gate &(nid_objs[244]),/* OBJ_id_smime_alg_RC2wrap 1 2 840 113549 1 9 16 3 4 */ 41410Sstevel@tonic-gate &(nid_objs[245]),/* OBJ_id_smime_alg_ESDH 1 2 840 113549 1 9 16 3 5 */ 41420Sstevel@tonic-gate &(nid_objs[246]),/* OBJ_id_smime_alg_CMS3DESwrap 1 2 840 113549 1 9 16 3 6 */ 41430Sstevel@tonic-gate &(nid_objs[247]),/* OBJ_id_smime_alg_CMSRC2wrap 1 2 840 113549 1 9 16 3 7 */ 41440Sstevel@tonic-gate &(nid_objs[248]),/* OBJ_id_smime_cd_ldap 1 2 840 113549 1 9 16 4 1 */ 41450Sstevel@tonic-gate &(nid_objs[249]),/* OBJ_id_smime_spq_ets_sqt_uri 1 2 840 113549 1 9 16 5 1 */ 41460Sstevel@tonic-gate &(nid_objs[250]),/* OBJ_id_smime_spq_ets_sqt_unotice 1 2 840 113549 1 9 16 5 2 */ 41470Sstevel@tonic-gate &(nid_objs[251]),/* OBJ_id_smime_cti_ets_proofOfOrigin 1 2 840 113549 1 9 16 6 1 */ 41480Sstevel@tonic-gate &(nid_objs[252]),/* OBJ_id_smime_cti_ets_proofOfReceipt 1 2 840 113549 1 9 16 6 2 */ 41490Sstevel@tonic-gate &(nid_objs[253]),/* OBJ_id_smime_cti_ets_proofOfDelivery 1 2 840 113549 1 9 16 6 3 */ 41500Sstevel@tonic-gate &(nid_objs[254]),/* OBJ_id_smime_cti_ets_proofOfSender 1 2 840 113549 1 9 16 6 4 */ 41510Sstevel@tonic-gate &(nid_objs[255]),/* OBJ_id_smime_cti_ets_proofOfApproval 1 2 840 113549 1 9 16 6 5 */ 41520Sstevel@tonic-gate &(nid_objs[256]),/* OBJ_id_smime_cti_ets_proofOfCreation 1 2 840 113549 1 9 16 6 6 */ 41530Sstevel@tonic-gate &(nid_objs[150]),/* OBJ_keyBag 1 2 840 113549 1 12 10 1 1 */ 41540Sstevel@tonic-gate &(nid_objs[151]),/* OBJ_pkcs8ShroudedKeyBag 1 2 840 113549 1 12 10 1 2 */ 41550Sstevel@tonic-gate &(nid_objs[152]),/* OBJ_certBag 1 2 840 113549 1 12 10 1 3 */ 41560Sstevel@tonic-gate &(nid_objs[153]),/* OBJ_crlBag 1 2 840 113549 1 12 10 1 4 */ 41570Sstevel@tonic-gate &(nid_objs[154]),/* OBJ_secretBag 1 2 840 113549 1 12 10 1 5 */ 41580Sstevel@tonic-gate &(nid_objs[155]),/* OBJ_safeContentsBag 1 2 840 113549 1 12 10 1 6 */ 41590Sstevel@tonic-gate &(nid_objs[34]),/* OBJ_idea_cbc 1 3 6 1 4 1 188 7 1 1 2 */ 41600Sstevel@tonic-gate }; 41610Sstevel@tonic-gate 4162