From 9f889cc177a5fcdec47f1fc4f7162d34a7305385 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sat, 20 May 2017 03:06:26 +0100 Subject: [PATCH] make errors Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/3503) --- crypto/ec/ec_err.c | 1 + include/openssl/ec.h | 1 + 2 files changed, 2 insertions(+) diff --git a/crypto/ec/ec_err.c b/crypto/ec/ec_err.c index 46347977c3..981ed20c1f 100644 --- a/crypto/ec/ec_err.c +++ b/crypto/ec/ec_err.c @@ -34,6 +34,7 @@ static ERR_STRING_DATA EC_str_functs[] = { {ERR_FUNC(EC_F_ECDSA_SIGN_SETUP), "ECDSA_sign_setup"}, {ERR_FUNC(EC_F_ECDSA_SIG_NEW), "ECDSA_SIG_new"}, {ERR_FUNC(EC_F_ECDSA_VERIFY), "ECDSA_verify"}, + {ERR_FUNC(EC_F_ECD_ITEM_VERIFY), "ecd_item_verify"}, {ERR_FUNC(EC_F_ECKEY_PARAM2TYPE), "eckey_param2type"}, {ERR_FUNC(EC_F_ECKEY_PARAM_DECODE), "eckey_param_decode"}, {ERR_FUNC(EC_F_ECKEY_PRIV_DECODE), "eckey_priv_decode"}, diff --git a/include/openssl/ec.h b/include/openssl/ec.h index c1a4a6b3fc..205afff261 100644 --- a/include/openssl/ec.h +++ b/include/openssl/ec.h @@ -1384,6 +1384,7 @@ int ERR_load_EC_strings(void); # define EC_F_ECDSA_SIGN_SETUP 248 # define EC_F_ECDSA_SIG_NEW 265 # define EC_F_ECDSA_VERIFY 253 +# define EC_F_ECD_ITEM_VERIFY 272 # define EC_F_ECKEY_PARAM2TYPE 223 # define EC_F_ECKEY_PARAM_DECODE 212 # define EC_F_ECKEY_PRIV_DECODE 213 -- 2.25.1