10Sstevel@tonic-gate /* crypto/ec/ec_err.c */ 20Sstevel@tonic-gate /* ==================================================================== 3*2139Sjp161948 * 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 67*2139Sjp161948 68*2139Sjp161948 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_EC,func,0) 69*2139Sjp161948 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_EC,0,reason) 70*2139Sjp161948 710Sstevel@tonic-gate static ERR_STRING_DATA EC_str_functs[]= 720Sstevel@tonic-gate { 73*2139Sjp161948 {ERR_FUNC(EC_F_COMPUTE_WNAF), "COMPUTE_WNAF"}, 74*2139Sjp161948 {ERR_FUNC(EC_F_D2I_ECPARAMETERS), "d2i_ECParameters"}, 75*2139Sjp161948 {ERR_FUNC(EC_F_D2I_ECPKPARAMETERS), "d2i_ECPKParameters"}, 76*2139Sjp161948 {ERR_FUNC(EC_F_D2I_ECPRIVATEKEY), "d2i_ECPrivateKey"}, 77*2139Sjp161948 {ERR_FUNC(EC_F_ECPARAMETERS_PRINT), "ECParameters_print"}, 78*2139Sjp161948 {ERR_FUNC(EC_F_ECPARAMETERS_PRINT_FP), "ECParameters_print_fp"}, 79*2139Sjp161948 {ERR_FUNC(EC_F_ECPKPARAMETERS_PRINT), "ECPKParameters_print"}, 80*2139Sjp161948 {ERR_FUNC(EC_F_ECPKPARAMETERS_PRINT_FP), "ECPKParameters_print_fp"}, 81*2139Sjp161948 {ERR_FUNC(EC_F_ECP_NIST_MOD_192), "ECP_NIST_MOD_192"}, 82*2139Sjp161948 {ERR_FUNC(EC_F_ECP_NIST_MOD_224), "ECP_NIST_MOD_224"}, 83*2139Sjp161948 {ERR_FUNC(EC_F_ECP_NIST_MOD_256), "ECP_NIST_MOD_256"}, 84*2139Sjp161948 {ERR_FUNC(EC_F_ECP_NIST_MOD_521), "ECP_NIST_MOD_521"}, 85*2139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_GROUP2CURVE), "EC_ASN1_GROUP2CURVE"}, 86*2139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_GROUP2FIELDID), "EC_ASN1_GROUP2FIELDID"}, 87*2139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_GROUP2PARAMETERS), "EC_ASN1_GROUP2PARAMETERS"}, 88*2139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_GROUP2PKPARAMETERS), "EC_ASN1_GROUP2PKPARAMETERS"}, 89*2139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_PARAMETERS2GROUP), "EC_ASN1_PARAMETERS2GROUP"}, 90*2139Sjp161948 {ERR_FUNC(EC_F_EC_ASN1_PKPARAMETERS2GROUP), "EC_ASN1_PKPARAMETERS2GROUP"}, 91*2139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_MONTGOMERY_POINT_MULTIPLY), "EC_GF2M_MONTGOMERY_POINT_MULTIPLY"}, 92*2139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_GROUP_CHECK_DISCRIMINANT), "ec_GF2m_simple_group_check_discriminant"}, 93*2139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_GROUP_SET_CURVE), "ec_GF2m_simple_group_set_curve"}, 94*2139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_OCT2POINT), "ec_GF2m_simple_oct2point"}, 95*2139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_POINT2OCT), "ec_GF2m_simple_point2oct"}, 96*2139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_POINT_GET_AFFINE_COORDINATES), "ec_GF2m_simple_point_get_affine_coordinates"}, 97*2139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_POINT_SET_AFFINE_COORDINATES), "ec_GF2m_simple_point_set_affine_coordinates"}, 98*2139Sjp161948 {ERR_FUNC(EC_F_EC_GF2M_SIMPLE_SET_COMPRESSED_COORDINATES), "ec_GF2m_simple_set_compressed_coordinates"}, 99*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_DECODE), "ec_GFp_mont_field_decode"}, 100*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_ENCODE), "ec_GFp_mont_field_encode"}, 101*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_MUL), "ec_GFp_mont_field_mul"}, 102*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_SET_TO_ONE), "ec_GFp_mont_field_set_to_one"}, 103*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_FIELD_SQR), "ec_GFp_mont_field_sqr"}, 104*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_GROUP_SET_CURVE), "ec_GFp_mont_group_set_curve"}, 105*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_MONT_GROUP_SET_CURVE_GFP), "EC_GFP_MONT_GROUP_SET_CURVE_GFP"}, 106*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_NIST_FIELD_MUL), "ec_GFp_nist_field_mul"}, 107*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_NIST_FIELD_SQR), "ec_GFp_nist_field_sqr"}, 108*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_NIST_GROUP_SET_CURVE), "ec_GFp_nist_group_set_curve"}, 109*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_GROUP_CHECK_DISCRIMINANT), "ec_GFp_simple_group_check_discriminant"}, 110*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE), "ec_GFp_simple_group_set_curve"}, 111*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE_GFP), "EC_GFP_SIMPLE_GROUP_SET_CURVE_GFP"}, 112*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_GROUP_SET_GENERATOR), "EC_GFP_SIMPLE_GROUP_SET_GENERATOR"}, 113*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_MAKE_AFFINE), "ec_GFp_simple_make_affine"}, 114*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_OCT2POINT), "ec_GFp_simple_oct2point"}, 115*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT2OCT), "ec_GFp_simple_point2oct"}, 116*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINTS_MAKE_AFFINE), "ec_GFp_simple_points_make_affine"}, 117*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES), "ec_GFp_simple_point_get_affine_coordinates"}, 118*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES_GFP), "EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES_GFP"}, 119*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES), "ec_GFp_simple_point_set_affine_coordinates"}, 120*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES_GFP), "EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES_GFP"}, 121*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES), "ec_GFp_simple_set_compressed_coordinates"}, 122*2139Sjp161948 {ERR_FUNC(EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES_GFP), "EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES_GFP"}, 123*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_CHECK), "EC_GROUP_check"}, 124*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_CHECK_DISCRIMINANT), "EC_GROUP_check_discriminant"}, 125*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_COPY), "EC_GROUP_copy"}, 126*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET0_GENERATOR), "EC_GROUP_get0_generator"}, 127*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_COFACTOR), "EC_GROUP_get_cofactor"}, 128*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_CURVE_GF2M), "EC_GROUP_get_curve_GF2m"}, 129*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_CURVE_GFP), "EC_GROUP_get_curve_GFp"}, 130*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_DEGREE), "EC_GROUP_get_degree"}, 131*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_ORDER), "EC_GROUP_get_order"}, 132*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_PENTANOMIAL_BASIS), "EC_GROUP_get_pentanomial_basis"}, 133*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GET_TRINOMIAL_BASIS), "EC_GROUP_get_trinomial_basis"}, 134*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_GROUP2NID), "EC_GROUP_GROUP2NID"}, 135*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_NEW), "EC_GROUP_new"}, 136*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_NEW_BY_CURVE_NAME), "EC_GROUP_new_by_curve_name"}, 137*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_NEW_FROM_DATA), "EC_GROUP_NEW_FROM_DATA"}, 138*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_PRECOMPUTE_MULT), "EC_GROUP_precompute_mult"}, 139*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_SET_CURVE_GF2M), "EC_GROUP_set_curve_GF2m"}, 140*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_SET_CURVE_GFP), "EC_GROUP_set_curve_GFp"}, 141*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_SET_EXTRA_DATA), "EC_GROUP_set_extra_data"}, 142*2139Sjp161948 {ERR_FUNC(EC_F_EC_GROUP_SET_GENERATOR), "EC_GROUP_set_generator"}, 143*2139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_CHECK_KEY), "EC_KEY_check_key"}, 144*2139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_COPY), "EC_KEY_copy"}, 145*2139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_GENERATE_KEY), "EC_KEY_generate_key"}, 146*2139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_NEW), "EC_KEY_new"}, 147*2139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_PRINT), "EC_KEY_print"}, 148*2139Sjp161948 {ERR_FUNC(EC_F_EC_KEY_PRINT_FP), "EC_KEY_print_fp"}, 149*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINTS_MAKE_AFFINE), "EC_POINTs_make_affine"}, 150*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINTS_MUL), "EC_POINTs_mul"}, 151*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_ADD), "EC_POINT_add"}, 152*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_CMP), "EC_POINT_cmp"}, 153*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_COPY), "EC_POINT_copy"}, 154*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_DBL), "EC_POINT_dbl"}, 155*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M), "EC_POINT_get_affine_coordinates_GF2m"}, 156*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP), "EC_POINT_get_affine_coordinates_GFp"}, 157*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP), "EC_POINT_get_Jprojective_coordinates_GFp"}, 158*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_INVERT), "EC_POINT_invert"}, 159*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_IS_AT_INFINITY), "EC_POINT_is_at_infinity"}, 160*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_IS_ON_CURVE), "EC_POINT_is_on_curve"}, 161*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_MAKE_AFFINE), "EC_POINT_make_affine"}, 162*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_MUL), "EC_POINT_mul"}, 163*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_NEW), "EC_POINT_new"}, 164*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_OCT2POINT), "EC_POINT_oct2point"}, 165*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_POINT2OCT), "EC_POINT_point2oct"}, 166*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M), "EC_POINT_set_affine_coordinates_GF2m"}, 167*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP), "EC_POINT_set_affine_coordinates_GFp"}, 168*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GF2M), "EC_POINT_set_compressed_coordinates_GF2m"}, 169*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP), "EC_POINT_set_compressed_coordinates_GFp"}, 170*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP), "EC_POINT_set_Jprojective_coordinates_GFp"}, 171*2139Sjp161948 {ERR_FUNC(EC_F_EC_POINT_SET_TO_INFINITY), "EC_POINT_set_to_infinity"}, 172*2139Sjp161948 {ERR_FUNC(EC_F_EC_PRE_COMP_DUP), "EC_PRE_COMP_DUP"}, 173*2139Sjp161948 {ERR_FUNC(EC_F_EC_WNAF_MUL), "ec_wNAF_mul"}, 174*2139Sjp161948 {ERR_FUNC(EC_F_EC_WNAF_PRECOMPUTE_MULT), "ec_wNAF_precompute_mult"}, 175*2139Sjp161948 {ERR_FUNC(EC_F_I2D_ECPARAMETERS), "i2d_ECParameters"}, 176*2139Sjp161948 {ERR_FUNC(EC_F_I2D_ECPKPARAMETERS), "i2d_ECPKParameters"}, 177*2139Sjp161948 {ERR_FUNC(EC_F_I2D_ECPRIVATEKEY), "i2d_ECPrivateKey"}, 178*2139Sjp161948 {ERR_FUNC(EC_F_I2O_ECPUBLICKEY), "i2o_ECPublicKey"}, 179*2139Sjp161948 {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 { 185*2139Sjp161948 {ERR_REASON(EC_R_ASN1_ERROR) ,"asn1 error"}, 186*2139Sjp161948 {ERR_REASON(EC_R_ASN1_UNKNOWN_FIELD) ,"asn1 unknown field"}, 187*2139Sjp161948 {ERR_REASON(EC_R_BUFFER_TOO_SMALL) ,"buffer too small"}, 188*2139Sjp161948 {ERR_REASON(EC_R_D2I_ECPKPARAMETERS_FAILURE),"d2i ecpkparameters failure"}, 189*2139Sjp161948 {ERR_REASON(EC_R_DISCRIMINANT_IS_ZERO) ,"discriminant is zero"}, 190*2139Sjp161948 {ERR_REASON(EC_R_EC_GROUP_NEW_BY_NAME_FAILURE),"ec group new by name failure"}, 191*2139Sjp161948 {ERR_REASON(EC_R_GROUP2PKPARAMETERS_FAILURE),"group2pkparameters failure"}, 192*2139Sjp161948 {ERR_REASON(EC_R_I2D_ECPKPARAMETERS_FAILURE),"i2d ecpkparameters failure"}, 193*2139Sjp161948 {ERR_REASON(EC_R_INCOMPATIBLE_OBJECTS) ,"incompatible objects"}, 194*2139Sjp161948 {ERR_REASON(EC_R_INVALID_ARGUMENT) ,"invalid argument"}, 195*2139Sjp161948 {ERR_REASON(EC_R_INVALID_COMPRESSED_POINT),"invalid compressed point"}, 196*2139Sjp161948 {ERR_REASON(EC_R_INVALID_COMPRESSION_BIT),"invalid compression bit"}, 197*2139Sjp161948 {ERR_REASON(EC_R_INVALID_ENCODING) ,"invalid encoding"}, 198*2139Sjp161948 {ERR_REASON(EC_R_INVALID_FIELD) ,"invalid field"}, 199*2139Sjp161948 {ERR_REASON(EC_R_INVALID_FORM) ,"invalid form"}, 200*2139Sjp161948 {ERR_REASON(EC_R_INVALID_GROUP_ORDER) ,"invalid group order"}, 201*2139Sjp161948 {ERR_REASON(EC_R_INVALID_PRIVATE_KEY) ,"invalid private key"}, 202*2139Sjp161948 {ERR_REASON(EC_R_MISSING_PARAMETERS) ,"missing parameters"}, 203*2139Sjp161948 {ERR_REASON(EC_R_MISSING_PRIVATE_KEY) ,"missing private key"}, 204*2139Sjp161948 {ERR_REASON(EC_R_NOT_A_NIST_PRIME) ,"not a NIST prime"}, 205*2139Sjp161948 {ERR_REASON(EC_R_NOT_A_SUPPORTED_NIST_PRIME),"not a supported NIST prime"}, 206*2139Sjp161948 {ERR_REASON(EC_R_NOT_IMPLEMENTED) ,"not implemented"}, 207*2139Sjp161948 {ERR_REASON(EC_R_NOT_INITIALIZED) ,"not initialized"}, 208*2139Sjp161948 {ERR_REASON(EC_R_NO_FIELD_MOD) ,"no field mod"}, 209*2139Sjp161948 {ERR_REASON(EC_R_PASSED_NULL_PARAMETER) ,"passed null parameter"}, 210*2139Sjp161948 {ERR_REASON(EC_R_PKPARAMETERS2GROUP_FAILURE),"pkparameters2group failure"}, 211*2139Sjp161948 {ERR_REASON(EC_R_POINT_AT_INFINITY) ,"point at infinity"}, 212*2139Sjp161948 {ERR_REASON(EC_R_POINT_IS_NOT_ON_CURVE) ,"point is not on curve"}, 213*2139Sjp161948 {ERR_REASON(EC_R_SLOT_FULL) ,"slot full"}, 214*2139Sjp161948 {ERR_REASON(EC_R_UNDEFINED_GENERATOR) ,"undefined generator"}, 215*2139Sjp161948 {ERR_REASON(EC_R_UNDEFINED_ORDER) ,"undefined order"}, 216*2139Sjp161948 {ERR_REASON(EC_R_UNKNOWN_GROUP) ,"unknown group"}, 217*2139Sjp161948 {ERR_REASON(EC_R_UNKNOWN_ORDER) ,"unknown order"}, 218*2139Sjp161948 {ERR_REASON(EC_R_UNSUPPORTED_FIELD) ,"unsupported field"}, 219*2139Sjp161948 {ERR_REASON(EC_R_WRONG_ORDER) ,"wrong order"}, 2200Sstevel@tonic-gate {0,NULL} 2210Sstevel@tonic-gate }; 2220Sstevel@tonic-gate 2230Sstevel@tonic-gate #endif 2240Sstevel@tonic-gate 2250Sstevel@tonic-gate void ERR_load_EC_strings(void) 2260Sstevel@tonic-gate { 2270Sstevel@tonic-gate static int init=1; 2280Sstevel@tonic-gate 2290Sstevel@tonic-gate if (init) 2300Sstevel@tonic-gate { 2310Sstevel@tonic-gate init=0; 2320Sstevel@tonic-gate #ifndef OPENSSL_NO_ERR 233*2139Sjp161948 ERR_load_strings(0,EC_str_functs); 234*2139Sjp161948 ERR_load_strings(0,EC_str_reasons); 2350Sstevel@tonic-gate #endif 2360Sstevel@tonic-gate 2370Sstevel@tonic-gate } 2380Sstevel@tonic-gate } 239