10Sstevel@tonic-gate /* crypto/asn1/asn1_err.c */
20Sstevel@tonic-gate /* ====================================================================
32139Sjp161948 * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved.
40Sstevel@tonic-gate *
50Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without
60Sstevel@tonic-gate * modification, are permitted provided that the following conditions
70Sstevel@tonic-gate * are met:
80Sstevel@tonic-gate *
90Sstevel@tonic-gate * 1. Redistributions of source code must retain the above copyright
100Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer.
110Sstevel@tonic-gate *
120Sstevel@tonic-gate * 2. Redistributions in binary form must reproduce the above copyright
130Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer in
140Sstevel@tonic-gate * the documentation and/or other materials provided with the
150Sstevel@tonic-gate * distribution.
160Sstevel@tonic-gate *
170Sstevel@tonic-gate * 3. All advertising materials mentioning features or use of this
180Sstevel@tonic-gate * software must display the following acknowledgment:
190Sstevel@tonic-gate * "This product includes software developed by the OpenSSL Project
200Sstevel@tonic-gate * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
210Sstevel@tonic-gate *
220Sstevel@tonic-gate * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
230Sstevel@tonic-gate * endorse or promote products derived from this software without
240Sstevel@tonic-gate * prior written permission. For written permission, please contact
250Sstevel@tonic-gate * openssl-core@OpenSSL.org.
260Sstevel@tonic-gate *
270Sstevel@tonic-gate * 5. Products derived from this software may not be called "OpenSSL"
280Sstevel@tonic-gate * nor may "OpenSSL" appear in their names without prior written
290Sstevel@tonic-gate * permission of the OpenSSL Project.
300Sstevel@tonic-gate *
310Sstevel@tonic-gate * 6. Redistributions of any form whatsoever must retain the following
320Sstevel@tonic-gate * acknowledgment:
330Sstevel@tonic-gate * "This product includes software developed by the OpenSSL Project
340Sstevel@tonic-gate * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
350Sstevel@tonic-gate *
360Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
370Sstevel@tonic-gate * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
380Sstevel@tonic-gate * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
390Sstevel@tonic-gate * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
400Sstevel@tonic-gate * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
410Sstevel@tonic-gate * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
420Sstevel@tonic-gate * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
430Sstevel@tonic-gate * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
440Sstevel@tonic-gate * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
450Sstevel@tonic-gate * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
460Sstevel@tonic-gate * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
470Sstevel@tonic-gate * OF THE POSSIBILITY OF SUCH DAMAGE.
480Sstevel@tonic-gate * ====================================================================
490Sstevel@tonic-gate *
500Sstevel@tonic-gate * This product includes cryptographic software written by Eric Young
510Sstevel@tonic-gate * (eay@cryptsoft.com). This product includes software written by Tim
520Sstevel@tonic-gate * Hudson (tjh@cryptsoft.com).
530Sstevel@tonic-gate *
540Sstevel@tonic-gate */
550Sstevel@tonic-gate
560Sstevel@tonic-gate /* NOTE: this file was auto generated by the mkerr.pl script: any changes
570Sstevel@tonic-gate * made to it will be overwritten when the script next updates this file,
580Sstevel@tonic-gate * only reason strings will be preserved.
590Sstevel@tonic-gate */
600Sstevel@tonic-gate
610Sstevel@tonic-gate #include <stdio.h>
620Sstevel@tonic-gate #include <openssl/err.h>
630Sstevel@tonic-gate #include <openssl/asn1.h>
640Sstevel@tonic-gate
650Sstevel@tonic-gate /* BEGIN ERROR CODES */
660Sstevel@tonic-gate #ifndef OPENSSL_NO_ERR
672139Sjp161948
682139Sjp161948 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_ASN1,func,0)
692139Sjp161948 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_ASN1,0,reason)
702139Sjp161948
710Sstevel@tonic-gate static ERR_STRING_DATA ASN1_str_functs[]=
720Sstevel@tonic-gate {
732139Sjp161948 {ERR_FUNC(ASN1_F_A2D_ASN1_OBJECT), "a2d_ASN1_OBJECT"},
742139Sjp161948 {ERR_FUNC(ASN1_F_A2I_ASN1_ENUMERATED), "a2i_ASN1_ENUMERATED"},
752139Sjp161948 {ERR_FUNC(ASN1_F_A2I_ASN1_INTEGER), "a2i_ASN1_INTEGER"},
762139Sjp161948 {ERR_FUNC(ASN1_F_A2I_ASN1_STRING), "a2i_ASN1_STRING"},
772139Sjp161948 {ERR_FUNC(ASN1_F_APPEND_EXP), "APPEND_EXP"},
782139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_BIT_STRING_SET_BIT), "ASN1_BIT_STRING_set_bit"},
792139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_CB), "ASN1_CB"},
802139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_CHECK_TLEN), "ASN1_CHECK_TLEN"},
812139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_COLLATE_PRIMITIVE), "ASN1_COLLATE_PRIMITIVE"},
822139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_COLLECT), "ASN1_COLLECT"},
832139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_D2I_EX_PRIMITIVE), "ASN1_D2I_EX_PRIMITIVE"},
842139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_D2I_FP), "ASN1_d2i_fp"},
852139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_D2I_READ_BIO), "ASN1_D2I_READ_BIO"},
862139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_DIGEST), "ASN1_digest"},
872139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_DO_ADB), "ASN1_DO_ADB"},
882139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_DUP), "ASN1_dup"},
892139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ENUMERATED_SET), "ASN1_ENUMERATED_set"},
902139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ENUMERATED_TO_BN), "ASN1_ENUMERATED_to_BN"},
912139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_EX_C2I), "ASN1_EX_C2I"},
922139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_FIND_END), "ASN1_FIND_END"},
932139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_GENERALIZEDTIME_SET), "ASN1_GENERALIZEDTIME_set"},
942139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_GENERATE_V3), "ASN1_generate_v3"},
952139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_GET_OBJECT), "ASN1_get_object"},
962139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_HEADER_NEW), "ASN1_HEADER_new"},
972139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_I2D_BIO), "ASN1_i2d_bio"},
982139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_I2D_FP), "ASN1_i2d_fp"},
992139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_INTEGER_SET), "ASN1_INTEGER_set"},
1002139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_INTEGER_TO_BN), "ASN1_INTEGER_to_BN"},
1012139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_D2I_FP), "ASN1_item_d2i_fp"},
1022139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_DUP), "ASN1_item_dup"},
1032139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_EX_COMBINE_NEW), "ASN1_ITEM_EX_COMBINE_NEW"},
1042139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_EX_D2I), "ASN1_ITEM_EX_D2I"},
1052139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_I2D_BIO), "ASN1_item_i2d_bio"},
1062139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_I2D_FP), "ASN1_item_i2d_fp"},
1072139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_PACK), "ASN1_item_pack"},
1082139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_SIGN), "ASN1_item_sign"},
1092139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_UNPACK), "ASN1_item_unpack"},
1102139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_ITEM_VERIFY), "ASN1_item_verify"},
1112139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_MBSTRING_NCOPY), "ASN1_mbstring_ncopy"},
1122139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_OBJECT_NEW), "ASN1_OBJECT_new"},
1132139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_PACK_STRING), "ASN1_pack_string"},
1142139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_PCTX_NEW), "ASN1_PCTX_NEW"},
1152139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_PKCS5_PBE_SET), "ASN1_PKCS5_PBE_SET"},
1162139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_SEQ_PACK), "ASN1_seq_pack"},
1172139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_SEQ_UNPACK), "ASN1_seq_unpack"},
1182139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_SIGN), "ASN1_sign"},
1192139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_STR2TYPE), "ASN1_STR2TYPE"},
1202139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_STRING_SET), "ASN1_STRING_set"},
1212139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_STRING_TABLE_ADD), "ASN1_STRING_TABLE_add"},
1222139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_STRING_TYPE_NEW), "ASN1_STRING_type_new"},
1232139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_TEMPLATE_EX_D2I), "ASN1_TEMPLATE_EX_D2I"},
1242139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_TEMPLATE_NEW), "ASN1_TEMPLATE_NEW"},
1252139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_TEMPLATE_NOEXP_D2I), "ASN1_TEMPLATE_NOEXP_D2I"},
1262139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_TIME_SET), "ASN1_TIME_set"},
1272139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_TYPE_GET_INT_OCTETSTRING), "ASN1_TYPE_get_int_octetstring"},
1282139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_TYPE_GET_OCTETSTRING), "ASN1_TYPE_get_octetstring"},
1292139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_UNPACK_STRING), "ASN1_unpack_string"},
1302139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_UTCTIME_SET), "ASN1_UTCTIME_set"},
1312139Sjp161948 {ERR_FUNC(ASN1_F_ASN1_VERIFY), "ASN1_verify"},
1322139Sjp161948 {ERR_FUNC(ASN1_F_BITSTR_CB), "BITSTR_CB"},
1332139Sjp161948 {ERR_FUNC(ASN1_F_BN_TO_ASN1_ENUMERATED), "BN_to_ASN1_ENUMERATED"},
1342139Sjp161948 {ERR_FUNC(ASN1_F_BN_TO_ASN1_INTEGER), "BN_to_ASN1_INTEGER"},
1352139Sjp161948 {ERR_FUNC(ASN1_F_C2I_ASN1_BIT_STRING), "c2i_ASN1_BIT_STRING"},
1362139Sjp161948 {ERR_FUNC(ASN1_F_C2I_ASN1_INTEGER), "c2i_ASN1_INTEGER"},
1372139Sjp161948 {ERR_FUNC(ASN1_F_C2I_ASN1_OBJECT), "c2i_ASN1_OBJECT"},
1382139Sjp161948 {ERR_FUNC(ASN1_F_COLLECT_DATA), "COLLECT_DATA"},
1392139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_BIT_STRING), "D2I_ASN1_BIT_STRING"},
1402139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_BOOLEAN), "d2i_ASN1_BOOLEAN"},
1412139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_BYTES), "d2i_ASN1_bytes"},
1422139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_GENERALIZEDTIME), "D2I_ASN1_GENERALIZEDTIME"},
1432139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_HEADER), "d2i_ASN1_HEADER"},
1442139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_INTEGER), "D2I_ASN1_INTEGER"},
1452139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_OBJECT), "d2i_ASN1_OBJECT"},
1462139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_SET), "d2i_ASN1_SET"},
1472139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_TYPE_BYTES), "d2i_ASN1_type_bytes"},
1482139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_UINTEGER), "d2i_ASN1_UINTEGER"},
1492139Sjp161948 {ERR_FUNC(ASN1_F_D2I_ASN1_UTCTIME), "D2I_ASN1_UTCTIME"},
1502139Sjp161948 {ERR_FUNC(ASN1_F_D2I_NETSCAPE_RSA), "d2i_Netscape_RSA"},
1512139Sjp161948 {ERR_FUNC(ASN1_F_D2I_NETSCAPE_RSA_2), "D2I_NETSCAPE_RSA_2"},
1522139Sjp161948 {ERR_FUNC(ASN1_F_D2I_PRIVATEKEY), "d2i_PrivateKey"},
1532139Sjp161948 {ERR_FUNC(ASN1_F_D2I_PUBLICKEY), "d2i_PublicKey"},
1542139Sjp161948 {ERR_FUNC(ASN1_F_D2I_RSA_NET), "d2i_RSA_NET"},
1552139Sjp161948 {ERR_FUNC(ASN1_F_D2I_RSA_NET_2), "D2I_RSA_NET_2"},
1562139Sjp161948 {ERR_FUNC(ASN1_F_D2I_X509), "D2I_X509"},
1572139Sjp161948 {ERR_FUNC(ASN1_F_D2I_X509_CINF), "D2I_X509_CINF"},
1582139Sjp161948 {ERR_FUNC(ASN1_F_D2I_X509_PKEY), "d2i_X509_PKEY"},
1592139Sjp161948 {ERR_FUNC(ASN1_F_I2D_ASN1_SET), "i2d_ASN1_SET"},
1602139Sjp161948 {ERR_FUNC(ASN1_F_I2D_ASN1_TIME), "I2D_ASN1_TIME"},
1612139Sjp161948 {ERR_FUNC(ASN1_F_I2D_DSA_PUBKEY), "i2d_DSA_PUBKEY"},
1622139Sjp161948 {ERR_FUNC(ASN1_F_I2D_EC_PUBKEY), "i2d_EC_PUBKEY"},
1632139Sjp161948 {ERR_FUNC(ASN1_F_I2D_PRIVATEKEY), "i2d_PrivateKey"},
1642139Sjp161948 {ERR_FUNC(ASN1_F_I2D_PUBLICKEY), "i2d_PublicKey"},
1652139Sjp161948 {ERR_FUNC(ASN1_F_I2D_RSA_NET), "i2d_RSA_NET"},
1662139Sjp161948 {ERR_FUNC(ASN1_F_I2D_RSA_PUBKEY), "i2d_RSA_PUBKEY"},
1672139Sjp161948 {ERR_FUNC(ASN1_F_LONG_C2I), "LONG_C2I"},
1682139Sjp161948 {ERR_FUNC(ASN1_F_OID_MODULE_INIT), "OID_MODULE_INIT"},
1692139Sjp161948 {ERR_FUNC(ASN1_F_PARSE_TAGGING), "PARSE_TAGGING"},
1702139Sjp161948 {ERR_FUNC(ASN1_F_PKCS5_PBE2_SET), "PKCS5_pbe2_set"},
1712139Sjp161948 {ERR_FUNC(ASN1_F_PKCS5_PBE_SET), "PKCS5_pbe_set"},
1722139Sjp161948 {ERR_FUNC(ASN1_F_X509_CINF_NEW), "X509_CINF_NEW"},
1732139Sjp161948 {ERR_FUNC(ASN1_F_X509_CRL_ADD0_REVOKED), "X509_CRL_add0_revoked"},
1742139Sjp161948 {ERR_FUNC(ASN1_F_X509_INFO_NEW), "X509_INFO_new"},
1752139Sjp161948 {ERR_FUNC(ASN1_F_X509_NAME_ENCODE), "X509_NAME_ENCODE"},
1762139Sjp161948 {ERR_FUNC(ASN1_F_X509_NAME_EX_D2I), "X509_NAME_EX_D2I"},
1772139Sjp161948 {ERR_FUNC(ASN1_F_X509_NAME_EX_NEW), "X509_NAME_EX_NEW"},
1782139Sjp161948 {ERR_FUNC(ASN1_F_X509_NEW), "X509_NEW"},
1792139Sjp161948 {ERR_FUNC(ASN1_F_X509_PKEY_NEW), "X509_PKEY_new"},
1800Sstevel@tonic-gate {0,NULL}
1810Sstevel@tonic-gate };
1820Sstevel@tonic-gate
1830Sstevel@tonic-gate static ERR_STRING_DATA ASN1_str_reasons[]=
1840Sstevel@tonic-gate {
1852139Sjp161948 {ERR_REASON(ASN1_R_ADDING_OBJECT) ,"adding object"},
1862139Sjp161948 {ERR_REASON(ASN1_R_AUX_ERROR) ,"aux error"},
1872139Sjp161948 {ERR_REASON(ASN1_R_BAD_CLASS) ,"bad class"},
1882139Sjp161948 {ERR_REASON(ASN1_R_BAD_OBJECT_HEADER) ,"bad object header"},
1892139Sjp161948 {ERR_REASON(ASN1_R_BAD_PASSWORD_READ) ,"bad password read"},
1902139Sjp161948 {ERR_REASON(ASN1_R_BAD_TAG) ,"bad tag"},
191*9318SJan.Pechanec@Sun.COM {ERR_REASON(ASN1_R_BMPSTRING_IS_WRONG_LENGTH),"bmpstring is wrong length"},
1922139Sjp161948 {ERR_REASON(ASN1_R_BN_LIB) ,"bn lib"},
1932139Sjp161948 {ERR_REASON(ASN1_R_BOOLEAN_IS_WRONG_LENGTH),"boolean is wrong length"},
1942139Sjp161948 {ERR_REASON(ASN1_R_BUFFER_TOO_SMALL) ,"buffer too small"},
1952139Sjp161948 {ERR_REASON(ASN1_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER),"cipher has no object identifier"},
1962139Sjp161948 {ERR_REASON(ASN1_R_DATA_IS_WRONG) ,"data is wrong"},
1972139Sjp161948 {ERR_REASON(ASN1_R_DECODE_ERROR) ,"decode error"},
1982139Sjp161948 {ERR_REASON(ASN1_R_DECODING_ERROR) ,"decoding error"},
1992139Sjp161948 {ERR_REASON(ASN1_R_DEPTH_EXCEEDED) ,"depth exceeded"},
2002139Sjp161948 {ERR_REASON(ASN1_R_ENCODE_ERROR) ,"encode error"},
2012139Sjp161948 {ERR_REASON(ASN1_R_ERROR_GETTING_TIME) ,"error getting time"},
2022139Sjp161948 {ERR_REASON(ASN1_R_ERROR_LOADING_SECTION),"error loading section"},
2032139Sjp161948 {ERR_REASON(ASN1_R_ERROR_PARSING_SET_ELEMENT),"error parsing set element"},
2042139Sjp161948 {ERR_REASON(ASN1_R_ERROR_SETTING_CIPHER_PARAMS),"error setting cipher params"},
2052139Sjp161948 {ERR_REASON(ASN1_R_EXPECTING_AN_INTEGER) ,"expecting an integer"},
2062139Sjp161948 {ERR_REASON(ASN1_R_EXPECTING_AN_OBJECT) ,"expecting an object"},
2072139Sjp161948 {ERR_REASON(ASN1_R_EXPECTING_A_BOOLEAN) ,"expecting a boolean"},
2082139Sjp161948 {ERR_REASON(ASN1_R_EXPECTING_A_TIME) ,"expecting a time"},
2092139Sjp161948 {ERR_REASON(ASN1_R_EXPLICIT_LENGTH_MISMATCH),"explicit length mismatch"},
2102139Sjp161948 {ERR_REASON(ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED),"explicit tag not constructed"},
2112139Sjp161948 {ERR_REASON(ASN1_R_FIELD_MISSING) ,"field missing"},
2122139Sjp161948 {ERR_REASON(ASN1_R_FIRST_NUM_TOO_LARGE) ,"first num too large"},
2132139Sjp161948 {ERR_REASON(ASN1_R_HEADER_TOO_LONG) ,"header too long"},
2142139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_BITSTRING_FORMAT),"illegal bitstring format"},
2152139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_BOOLEAN) ,"illegal boolean"},
2162139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_CHARACTERS) ,"illegal characters"},
2172139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_FORMAT) ,"illegal format"},
2182139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_HEX) ,"illegal hex"},
2192139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_IMPLICIT_TAG) ,"illegal implicit tag"},
2202139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_INTEGER) ,"illegal integer"},
2212139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_NESTED_TAGGING),"illegal nested tagging"},
2222139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_NULL) ,"illegal null"},
2232139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_NULL_VALUE) ,"illegal null value"},
2242139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_OBJECT) ,"illegal object"},
2252139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_OPTIONAL_ANY) ,"illegal optional any"},
2262139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE),"illegal options on item template"},
2272139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_TAGGED_ANY) ,"illegal tagged any"},
2282139Sjp161948 {ERR_REASON(ASN1_R_ILLEGAL_TIME_VALUE) ,"illegal time value"},
2292139Sjp161948 {ERR_REASON(ASN1_R_INTEGER_NOT_ASCII_FORMAT),"integer not ascii format"},
2302139Sjp161948 {ERR_REASON(ASN1_R_INTEGER_TOO_LARGE_FOR_LONG),"integer too large for long"},
2312139Sjp161948 {ERR_REASON(ASN1_R_INVALID_BMPSTRING_LENGTH),"invalid bmpstring length"},
2322139Sjp161948 {ERR_REASON(ASN1_R_INVALID_DIGIT) ,"invalid digit"},
2332139Sjp161948 {ERR_REASON(ASN1_R_INVALID_MODIFIER) ,"invalid modifier"},
2342139Sjp161948 {ERR_REASON(ASN1_R_INVALID_NUMBER) ,"invalid number"},
2352139Sjp161948 {ERR_REASON(ASN1_R_INVALID_SEPARATOR) ,"invalid separator"},
2362139Sjp161948 {ERR_REASON(ASN1_R_INVALID_TIME_FORMAT) ,"invalid time format"},
2372139Sjp161948 {ERR_REASON(ASN1_R_INVALID_UNIVERSALSTRING_LENGTH),"invalid universalstring length"},
2382139Sjp161948 {ERR_REASON(ASN1_R_INVALID_UTF8STRING) ,"invalid utf8string"},
2392139Sjp161948 {ERR_REASON(ASN1_R_IV_TOO_LARGE) ,"iv too large"},
2402139Sjp161948 {ERR_REASON(ASN1_R_LENGTH_ERROR) ,"length error"},
2412139Sjp161948 {ERR_REASON(ASN1_R_LIST_ERROR) ,"list error"},
2422139Sjp161948 {ERR_REASON(ASN1_R_MISSING_EOC) ,"missing eoc"},
2432139Sjp161948 {ERR_REASON(ASN1_R_MISSING_SECOND_NUMBER),"missing second number"},
2442139Sjp161948 {ERR_REASON(ASN1_R_MISSING_VALUE) ,"missing value"},
2452139Sjp161948 {ERR_REASON(ASN1_R_MSTRING_NOT_UNIVERSAL),"mstring not universal"},
2462139Sjp161948 {ERR_REASON(ASN1_R_MSTRING_WRONG_TAG) ,"mstring wrong tag"},
2472139Sjp161948 {ERR_REASON(ASN1_R_NESTED_ASN1_STRING) ,"nested asn1 string"},
2482139Sjp161948 {ERR_REASON(ASN1_R_NON_HEX_CHARACTERS) ,"non hex characters"},
2492139Sjp161948 {ERR_REASON(ASN1_R_NOT_ASCII_FORMAT) ,"not ascii format"},
2502139Sjp161948 {ERR_REASON(ASN1_R_NOT_ENOUGH_DATA) ,"not enough data"},
2512139Sjp161948 {ERR_REASON(ASN1_R_NO_MATCHING_CHOICE_TYPE),"no matching choice type"},
2522139Sjp161948 {ERR_REASON(ASN1_R_NULL_IS_WRONG_LENGTH) ,"null is wrong length"},
2532139Sjp161948 {ERR_REASON(ASN1_R_OBJECT_NOT_ASCII_FORMAT),"object not ascii format"},
2542139Sjp161948 {ERR_REASON(ASN1_R_ODD_NUMBER_OF_CHARS) ,"odd number of chars"},
2552139Sjp161948 {ERR_REASON(ASN1_R_PRIVATE_KEY_HEADER_MISSING),"private key header missing"},
2562139Sjp161948 {ERR_REASON(ASN1_R_SECOND_NUMBER_TOO_LARGE),"second number too large"},
2572139Sjp161948 {ERR_REASON(ASN1_R_SEQUENCE_LENGTH_MISMATCH),"sequence length mismatch"},
2582139Sjp161948 {ERR_REASON(ASN1_R_SEQUENCE_NOT_CONSTRUCTED),"sequence not constructed"},
2592139Sjp161948 {ERR_REASON(ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG),"sequence or set needs config"},
2602139Sjp161948 {ERR_REASON(ASN1_R_SHORT_LINE) ,"short line"},
2612139Sjp161948 {ERR_REASON(ASN1_R_STRING_TOO_LONG) ,"string too long"},
2622139Sjp161948 {ERR_REASON(ASN1_R_STRING_TOO_SHORT) ,"string too short"},
2632139Sjp161948 {ERR_REASON(ASN1_R_TAG_VALUE_TOO_HIGH) ,"tag value too high"},
2642139Sjp161948 {ERR_REASON(ASN1_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD),"the asn1 object identifier is not known for this md"},
2652139Sjp161948 {ERR_REASON(ASN1_R_TIME_NOT_ASCII_FORMAT),"time not ascii format"},
2662139Sjp161948 {ERR_REASON(ASN1_R_TOO_LONG) ,"too long"},
2672139Sjp161948 {ERR_REASON(ASN1_R_TYPE_NOT_CONSTRUCTED) ,"type not constructed"},
2682139Sjp161948 {ERR_REASON(ASN1_R_UNABLE_TO_DECODE_RSA_KEY),"unable to decode rsa key"},
2692139Sjp161948 {ERR_REASON(ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY),"unable to decode rsa private key"},
2702139Sjp161948 {ERR_REASON(ASN1_R_UNEXPECTED_EOC) ,"unexpected eoc"},
271*9318SJan.Pechanec@Sun.COM {ERR_REASON(ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH),"universalstring is wrong length"},
2722139Sjp161948 {ERR_REASON(ASN1_R_UNKNOWN_FORMAT) ,"unknown format"},
2732139Sjp161948 {ERR_REASON(ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM),"unknown message digest algorithm"},
2742139Sjp161948 {ERR_REASON(ASN1_R_UNKNOWN_OBJECT_TYPE) ,"unknown object type"},
2752139Sjp161948 {ERR_REASON(ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE),"unknown public key type"},
2762139Sjp161948 {ERR_REASON(ASN1_R_UNKNOWN_TAG) ,"unknown tag"},
2772139Sjp161948 {ERR_REASON(ASN1_R_UNKOWN_FORMAT) ,"unkown format"},
2782139Sjp161948 {ERR_REASON(ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE),"unsupported any defined by type"},
2792139Sjp161948 {ERR_REASON(ASN1_R_UNSUPPORTED_CIPHER) ,"unsupported cipher"},
2802139Sjp161948 {ERR_REASON(ASN1_R_UNSUPPORTED_ENCRYPTION_ALGORITHM),"unsupported encryption algorithm"},
2812139Sjp161948 {ERR_REASON(ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE),"unsupported public key type"},
2822139Sjp161948 {ERR_REASON(ASN1_R_UNSUPPORTED_TYPE) ,"unsupported type"},
2832139Sjp161948 {ERR_REASON(ASN1_R_WRONG_TAG) ,"wrong tag"},
2842139Sjp161948 {ERR_REASON(ASN1_R_WRONG_TYPE) ,"wrong type"},
2850Sstevel@tonic-gate {0,NULL}
2860Sstevel@tonic-gate };
2870Sstevel@tonic-gate
2880Sstevel@tonic-gate #endif
2890Sstevel@tonic-gate
ERR_load_ASN1_strings(void)2900Sstevel@tonic-gate void ERR_load_ASN1_strings(void)
2910Sstevel@tonic-gate {
2920Sstevel@tonic-gate static int init=1;
2930Sstevel@tonic-gate
2940Sstevel@tonic-gate if (init)
2950Sstevel@tonic-gate {
2960Sstevel@tonic-gate init=0;
2970Sstevel@tonic-gate #ifndef OPENSSL_NO_ERR
2982139Sjp161948 ERR_load_strings(0,ASN1_str_functs);
2992139Sjp161948 ERR_load_strings(0,ASN1_str_reasons);
3000Sstevel@tonic-gate #endif
3010Sstevel@tonic-gate
3020Sstevel@tonic-gate }
3030Sstevel@tonic-gate }
304