xref: /onnv-gate/usr/src/common/openssl/crypto/ec/ec_err.c (revision 2864:0fad37eee08f)
10Sstevel@tonic-gate /* crypto/ec/ec_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/ec.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_EC,func,0)
692139Sjp161948 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_EC,0,reason)
702139Sjp161948 
710Sstevel@tonic-gate static ERR_STRING_DATA EC_str_functs[]=
720Sstevel@tonic-gate 	{
732139Sjp161948 {ERR_FUNC(EC_F_COMPUTE_WNAF),	"COMPUTE_WNAF"},
742139Sjp161948 {ERR_FUNC(EC_F_D2I_ECPARAMETERS),	"d2i_ECParameters"},
752139Sjp161948 {ERR_FUNC(EC_F_D2I_ECPKPARAMETERS),	"d2i_ECPKParameters"},
762139Sjp161948 {ERR_FUNC(EC_F_D2I_ECPRIVATEKEY),	"d2i_ECPrivateKey"},
772139Sjp161948 {ERR_FUNC(EC_F_ECPARAMETERS_PRINT),	"ECParameters_print"},
782139Sjp161948 {ERR_FUNC(EC_F_ECPARAMETERS_PRINT_FP),	"ECParameters_print_fp"},
792139Sjp161948 {ERR_FUNC(EC_F_ECPKPARAMETERS_PRINT),	"ECPKParameters_print"},
802139Sjp161948 {ERR_FUNC(EC_F_ECPKPARAMETERS_PRINT_FP),	"ECPKParameters_print_fp"},
812139Sjp161948 {ERR_FUNC(EC_F_ECP_NIST_MOD_192),	"ECP_NIST_MOD_192"},
822139Sjp161948 {ERR_FUNC(EC_F_ECP_NIST_MOD_224),	"ECP_NIST_MOD_224"},
832139Sjp161948 {ERR_FUNC(EC_F_ECP_NIST_MOD_256),	"ECP_NIST_MOD_256"},
842139Sjp161948 {ERR_FUNC(EC_F_ECP_NIST_MOD_521),	"ECP_NIST_MOD_521"},
852139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_GROUP2CURVE),	"EC_ASN1_GROUP2CURVE"},
862139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_GROUP2FIELDID),	"EC_ASN1_GROUP2FIELDID"},
872139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_GROUP2PARAMETERS),	"EC_ASN1_GROUP2PARAMETERS"},
882139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_GROUP2PKPARAMETERS),	"EC_ASN1_GROUP2PKPARAMETERS"},
892139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_PARAMETERS2GROUP),	"EC_ASN1_PARAMETERS2GROUP"},
902139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_PKPARAMETERS2GROUP),	"EC_ASN1_PKPARAMETERS2GROUP"},
912139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_MONTGOMERY_POINT_MULTIPLY),	"EC_GF2M_MONTGOMERY_POINT_MULTIPLY"},
922139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_GROUP_CHECK_DISCRIMINANT),	"ec_GF2m_simple_group_check_discriminant"},
932139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_GROUP_SET_CURVE),	"ec_GF2m_simple_group_set_curve"},
942139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_OCT2POINT),	"ec_GF2m_simple_oct2point"},
952139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_POINT2OCT),	"ec_GF2m_simple_point2oct"},
962139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_POINT_GET_AFFINE_COORDINATES),	"ec_GF2m_simple_point_get_affine_coordinates"},
972139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_POINT_SET_AFFINE_COORDINATES),	"ec_GF2m_simple_point_set_affine_coordinates"},
982139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_SET_COMPRESSED_COORDINATES),	"ec_GF2m_simple_set_compressed_coordinates"},
992139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_DECODE),	"ec_GFp_mont_field_decode"},
1002139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_ENCODE),	"ec_GFp_mont_field_encode"},
1012139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_MUL),	"ec_GFp_mont_field_mul"},
1022139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_SET_TO_ONE),	"ec_GFp_mont_field_set_to_one"},
1032139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_SQR),	"ec_GFp_mont_field_sqr"},
1042139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_GROUP_SET_CURVE),	"ec_GFp_mont_group_set_curve"},
1052139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_GROUP_SET_CURVE_GFP),	"EC_GFP_MONT_GROUP_SET_CURVE_GFP"},
1062139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_NIST_FIELD_MUL),	"ec_GFp_nist_field_mul"},
1072139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_NIST_FIELD_SQR),	"ec_GFp_nist_field_sqr"},
1082139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_NIST_GROUP_SET_CURVE),	"ec_GFp_nist_group_set_curve"},
1092139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_GROUP_CHECK_DISCRIMINANT),	"ec_GFp_simple_group_check_discriminant"},
1102139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE),	"ec_GFp_simple_group_set_curve"},
1112139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE_GFP),	"EC_GFP_SIMPLE_GROUP_SET_CURVE_GFP"},
1122139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_GROUP_SET_GENERATOR),	"EC_GFP_SIMPLE_GROUP_SET_GENERATOR"},
1132139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_MAKE_AFFINE),	"ec_GFp_simple_make_affine"},
1142139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_OCT2POINT),	"ec_GFp_simple_oct2point"},
1152139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT2OCT),	"ec_GFp_simple_point2oct"},
1162139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINTS_MAKE_AFFINE),	"ec_GFp_simple_points_make_affine"},
1172139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES),	"ec_GFp_simple_point_get_affine_coordinates"},
1182139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES_GFP),	"EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES_GFP"},
1192139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES),	"ec_GFp_simple_point_set_affine_coordinates"},
1202139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES_GFP),	"EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES_GFP"},
1212139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES),	"ec_GFp_simple_set_compressed_coordinates"},
1222139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES_GFP),	"EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES_GFP"},
1232139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_CHECK),	"EC_GROUP_check"},
1242139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_CHECK_DISCRIMINANT),	"EC_GROUP_check_discriminant"},
1252139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_COPY),	"EC_GROUP_copy"},
1262139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET0_GENERATOR),	"EC_GROUP_get0_generator"},
1272139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_COFACTOR),	"EC_GROUP_get_cofactor"},
1282139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_CURVE_GF2M),	"EC_GROUP_get_curve_GF2m"},
1292139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_CURVE_GFP),	"EC_GROUP_get_curve_GFp"},
1302139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_DEGREE),	"EC_GROUP_get_degree"},
1312139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_ORDER),	"EC_GROUP_get_order"},
1322139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_PENTANOMIAL_BASIS),	"EC_GROUP_get_pentanomial_basis"},
1332139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_TRINOMIAL_BASIS),	"EC_GROUP_get_trinomial_basis"},
1342139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GROUP2NID),	"EC_GROUP_GROUP2NID"},
1352139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_NEW),	"EC_GROUP_new"},
1362139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_NEW_BY_CURVE_NAME),	"EC_GROUP_new_by_curve_name"},
1372139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_NEW_FROM_DATA),	"EC_GROUP_NEW_FROM_DATA"},
1382139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_PRECOMPUTE_MULT),	"EC_GROUP_precompute_mult"},
1392139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_SET_CURVE_GF2M),	"EC_GROUP_set_curve_GF2m"},
1402139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_SET_CURVE_GFP),	"EC_GROUP_set_curve_GFp"},
1412139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_SET_EXTRA_DATA),	"EC_GROUP_set_extra_data"},
1422139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_SET_GENERATOR),	"EC_GROUP_set_generator"},
1432139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_CHECK_KEY),	"EC_KEY_check_key"},
1442139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_COPY),	"EC_KEY_copy"},
1452139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_GENERATE_KEY),	"EC_KEY_generate_key"},
1462139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_NEW),	"EC_KEY_new"},
1472139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_PRINT),	"EC_KEY_print"},
1482139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_PRINT_FP),	"EC_KEY_print_fp"},
1492139Sjp161948 {ERR_FUNC(EC_F_EC_POINTS_MAKE_AFFINE),	"EC_POINTs_make_affine"},
1502139Sjp161948 {ERR_FUNC(EC_F_EC_POINTS_MUL),	"EC_POINTs_mul"},
1512139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_ADD),	"EC_POINT_add"},
1522139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_CMP),	"EC_POINT_cmp"},
1532139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_COPY),	"EC_POINT_copy"},
1542139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_DBL),	"EC_POINT_dbl"},
1552139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M),	"EC_POINT_get_affine_coordinates_GF2m"},
1562139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP),	"EC_POINT_get_affine_coordinates_GFp"},
1572139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP),	"EC_POINT_get_Jprojective_coordinates_GFp"},
1582139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_INVERT),	"EC_POINT_invert"},
1592139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_IS_AT_INFINITY),	"EC_POINT_is_at_infinity"},
1602139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_IS_ON_CURVE),	"EC_POINT_is_on_curve"},
1612139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_MAKE_AFFINE),	"EC_POINT_make_affine"},
1622139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_MUL),	"EC_POINT_mul"},
1632139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_NEW),	"EC_POINT_new"},
1642139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_OCT2POINT),	"EC_POINT_oct2point"},
1652139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_POINT2OCT),	"EC_POINT_point2oct"},
1662139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M),	"EC_POINT_set_affine_coordinates_GF2m"},
1672139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP),	"EC_POINT_set_affine_coordinates_GFp"},
1682139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GF2M),	"EC_POINT_set_compressed_coordinates_GF2m"},
1692139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP),	"EC_POINT_set_compressed_coordinates_GFp"},
1702139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP),	"EC_POINT_set_Jprojective_coordinates_GFp"},
1712139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_TO_INFINITY),	"EC_POINT_set_to_infinity"},
1722139Sjp161948 {ERR_FUNC(EC_F_EC_PRE_COMP_DUP),	"EC_PRE_COMP_DUP"},
1732139Sjp161948 {ERR_FUNC(EC_F_EC_WNAF_MUL),	"ec_wNAF_mul"},
1742139Sjp161948 {ERR_FUNC(EC_F_EC_WNAF_PRECOMPUTE_MULT),	"ec_wNAF_precompute_mult"},
1752139Sjp161948 {ERR_FUNC(EC_F_I2D_ECPARAMETERS),	"i2d_ECParameters"},
1762139Sjp161948 {ERR_FUNC(EC_F_I2D_ECPKPARAMETERS),	"i2d_ECPKParameters"},
1772139Sjp161948 {ERR_FUNC(EC_F_I2D_ECPRIVATEKEY),	"i2d_ECPrivateKey"},
1782139Sjp161948 {ERR_FUNC(EC_F_I2O_ECPUBLICKEY),	"i2o_ECPublicKey"},
1792139Sjp161948 {ERR_FUNC(EC_F_O2I_ECPUBLICKEY),	"o2i_ECPublicKey"},
1800Sstevel@tonic-gate {0,NULL}
1810Sstevel@tonic-gate 	};
1820Sstevel@tonic-gate 
1830Sstevel@tonic-gate static ERR_STRING_DATA EC_str_reasons[]=
1840Sstevel@tonic-gate 	{
1852139Sjp161948 {ERR_REASON(EC_R_ASN1_ERROR)             ,"asn1 error"},
1862139Sjp161948 {ERR_REASON(EC_R_ASN1_UNKNOWN_FIELD)     ,"asn1 unknown field"},
1872139Sjp161948 {ERR_REASON(EC_R_BUFFER_TOO_SMALL)       ,"buffer too small"},
1882139Sjp161948 {ERR_REASON(EC_R_D2I_ECPKPARAMETERS_FAILURE),"d2i ecpkparameters failure"},
1892139Sjp161948 {ERR_REASON(EC_R_DISCRIMINANT_IS_ZERO)   ,"discriminant is zero"},
1902139Sjp161948 {ERR_REASON(EC_R_EC_GROUP_NEW_BY_NAME_FAILURE),"ec group new by name failure"},
191*2864Sjp161948 {ERR_REASON(EC_R_FIELD_TOO_LARGE)	 ,"field too large"},
1922139Sjp161948 {ERR_REASON(EC_R_GROUP2PKPARAMETERS_FAILURE),"group2pkparameters failure"},
1932139Sjp161948 {ERR_REASON(EC_R_I2D_ECPKPARAMETERS_FAILURE),"i2d ecpkparameters failure"},
1942139Sjp161948 {ERR_REASON(EC_R_INCOMPATIBLE_OBJECTS)   ,"incompatible objects"},
1952139Sjp161948 {ERR_REASON(EC_R_INVALID_ARGUMENT)       ,"invalid argument"},
1962139Sjp161948 {ERR_REASON(EC_R_INVALID_COMPRESSED_POINT),"invalid compressed point"},
1972139Sjp161948 {ERR_REASON(EC_R_INVALID_COMPRESSION_BIT),"invalid compression bit"},
1982139Sjp161948 {ERR_REASON(EC_R_INVALID_ENCODING)       ,"invalid encoding"},
1992139Sjp161948 {ERR_REASON(EC_R_INVALID_FIELD)          ,"invalid field"},
2002139Sjp161948 {ERR_REASON(EC_R_INVALID_FORM)           ,"invalid form"},
2012139Sjp161948 {ERR_REASON(EC_R_INVALID_GROUP_ORDER)    ,"invalid group order"},
202*2864Sjp161948 {ERR_REASON(EC_R_INVALID_PENTANOMIAL_BASIS),"invalid pentanomial basis"},
2032139Sjp161948 {ERR_REASON(EC_R_INVALID_PRIVATE_KEY)    ,"invalid private key"},
204*2864Sjp161948 {ERR_REASON(EC_R_INVALID_TRINOMIAL_BASIS),"invalid trinomial basis"},
2052139Sjp161948 {ERR_REASON(EC_R_MISSING_PARAMETERS)     ,"missing parameters"},
2062139Sjp161948 {ERR_REASON(EC_R_MISSING_PRIVATE_KEY)    ,"missing private key"},
2072139Sjp161948 {ERR_REASON(EC_R_NOT_A_NIST_PRIME)       ,"not a NIST prime"},
2082139Sjp161948 {ERR_REASON(EC_R_NOT_A_SUPPORTED_NIST_PRIME),"not a supported NIST prime"},
2092139Sjp161948 {ERR_REASON(EC_R_NOT_IMPLEMENTED)        ,"not implemented"},
2102139Sjp161948 {ERR_REASON(EC_R_NOT_INITIALIZED)        ,"not initialized"},
2112139Sjp161948 {ERR_REASON(EC_R_NO_FIELD_MOD)           ,"no field mod"},
2122139Sjp161948 {ERR_REASON(EC_R_PASSED_NULL_PARAMETER)  ,"passed null parameter"},
2132139Sjp161948 {ERR_REASON(EC_R_PKPARAMETERS2GROUP_FAILURE),"pkparameters2group failure"},
2142139Sjp161948 {ERR_REASON(EC_R_POINT_AT_INFINITY)      ,"point at infinity"},
2152139Sjp161948 {ERR_REASON(EC_R_POINT_IS_NOT_ON_CURVE)  ,"point is not on curve"},
2162139Sjp161948 {ERR_REASON(EC_R_SLOT_FULL)              ,"slot full"},
2172139Sjp161948 {ERR_REASON(EC_R_UNDEFINED_GENERATOR)    ,"undefined generator"},
2182139Sjp161948 {ERR_REASON(EC_R_UNDEFINED_ORDER)        ,"undefined order"},
2192139Sjp161948 {ERR_REASON(EC_R_UNKNOWN_GROUP)          ,"unknown group"},
2202139Sjp161948 {ERR_REASON(EC_R_UNKNOWN_ORDER)          ,"unknown order"},
2212139Sjp161948 {ERR_REASON(EC_R_UNSUPPORTED_FIELD)      ,"unsupported field"},
2222139Sjp161948 {ERR_REASON(EC_R_WRONG_ORDER)            ,"wrong order"},
2230Sstevel@tonic-gate {0,NULL}
2240Sstevel@tonic-gate 	};
2250Sstevel@tonic-gate 
2260Sstevel@tonic-gate #endif
2270Sstevel@tonic-gate 
ERR_load_EC_strings(void)2280Sstevel@tonic-gate void ERR_load_EC_strings(void)
2290Sstevel@tonic-gate 	{
2300Sstevel@tonic-gate 	static int init=1;
2310Sstevel@tonic-gate 
2320Sstevel@tonic-gate 	if (init)
2330Sstevel@tonic-gate 		{
2340Sstevel@tonic-gate 		init=0;
2350Sstevel@tonic-gate #ifndef OPENSSL_NO_ERR
2362139Sjp161948 		ERR_load_strings(0,EC_str_functs);
2372139Sjp161948 		ERR_load_strings(0,EC_str_reasons);
2380Sstevel@tonic-gate #endif
2390Sstevel@tonic-gate 
2400Sstevel@tonic-gate 		}
2410Sstevel@tonic-gate 	}
242