From cbfa5b03989ee6b8f5c13c4284d5bae02c562f20 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Thu, 11 Jul 2019 14:01:56 -0400 Subject: Regenerate mkerr files Reviewed-by: Tomas Mraz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/9058) --- .../common/include/internal/providercommonerr.h | 38 ++++++++++++---------- providers/common/provider_err.c | 26 +-------------- 2 files changed, 21 insertions(+), 43 deletions(-) (limited to 'providers') diff --git a/providers/common/include/internal/providercommonerr.h b/providers/common/include/internal/providercommonerr.h index 609fd5b..d1af68f 100644 --- a/providers/common/include/internal/providercommonerr.h +++ b/providers/common/include/internal/providercommonerr.h @@ -11,9 +11,9 @@ #ifndef HEADER_PROVERR_H # define HEADER_PROVERR_H -# ifndef HEADER_SYMHACKS_H -# include -# endif +# include +# include + # ifdef __cplusplus extern "C" @@ -23,21 +23,23 @@ int ERR_load_PROV_strings(void); /* * PROV function codes. */ -# define PROV_F_AESNI_INIT_KEY 101 -# define PROV_F_AES_BLOCK_FINAL 102 -# define PROV_F_AES_BLOCK_UPDATE 103 -# define PROV_F_AES_CIPHER 104 -# define PROV_F_AES_CTX_GET_PARAMS 105 -# define PROV_F_AES_CTX_SET_PARAMS 106 -# define PROV_F_AES_DINIT 107 -# define PROV_F_AES_DUPCTX 108 -# define PROV_F_AES_EINIT 109 -# define PROV_F_AES_INIT_KEY 110 -# define PROV_F_AES_STREAM_UPDATE 111 -# define PROV_F_AES_T4_INIT_KEY 112 -# define PROV_F_PROV_AES_KEY_GENERIC_INIT 113 -# define PROV_F_TRAILINGDATA 114 -# define PROV_F_UNPADBLOCK 100 +# if !OPENSSL_API_3 +# define PROV_F_AESNI_INIT_KEY 0 +# define PROV_F_AES_BLOCK_FINAL 0 +# define PROV_F_AES_BLOCK_UPDATE 0 +# define PROV_F_AES_CIPHER 0 +# define PROV_F_AES_CTX_GET_PARAMS 0 +# define PROV_F_AES_CTX_SET_PARAMS 0 +# define PROV_F_AES_DINIT 0 +# define PROV_F_AES_DUPCTX 0 +# define PROV_F_AES_EINIT 0 +# define PROV_F_AES_INIT_KEY 0 +# define PROV_F_AES_STREAM_UPDATE 0 +# define PROV_F_AES_T4_INIT_KEY 0 +# define PROV_F_PROV_AES_KEY_GENERIC_INIT 0 +# define PROV_F_TRAILINGDATA 0 +# define PROV_F_UNPADBLOCK 0 +# endif /* * PROV reason codes. diff --git a/providers/common/provider_err.c b/providers/common/provider_err.c index e6b577f..320aee8 100644 --- a/providers/common/provider_err.c +++ b/providers/common/provider_err.c @@ -13,28 +13,6 @@ #ifndef OPENSSL_NO_ERR -static const ERR_STRING_DATA PROV_str_functs[] = { - {ERR_PACK(ERR_LIB_PROV, PROV_F_AESNI_INIT_KEY, 0), "aesni_init_key"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_BLOCK_FINAL, 0), "aes_block_final"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_BLOCK_UPDATE, 0), "aes_block_update"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_CIPHER, 0), "aes_cipher"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_CTX_GET_PARAMS, 0), - "aes_ctx_get_params"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_CTX_SET_PARAMS, 0), - "aes_ctx_set_params"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_DINIT, 0), "aes_dinit"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_DUPCTX, 0), "aes_dupctx"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_EINIT, 0), "aes_einit"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_INIT_KEY, 0), "aes_init_key"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_STREAM_UPDATE, 0), "aes_stream_update"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_AES_T4_INIT_KEY, 0), "aes_t4_init_key"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_PROV_AES_KEY_GENERIC_INIT, 0), - "PROV_AES_KEY_generic_init"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_TRAILINGDATA, 0), "trailingdata"}, - {ERR_PACK(ERR_LIB_PROV, PROV_F_UNPADBLOCK, 0), "unpadblock"}, - {0, NULL} -}; - static const ERR_STRING_DATA PROV_str_reasons[] = { {ERR_PACK(ERR_LIB_PROV, 0, PROV_R_AES_KEY_SETUP_FAILED), "aes key setup failed"}, @@ -58,10 +36,8 @@ static const ERR_STRING_DATA PROV_str_reasons[] = { int ERR_load_PROV_strings(void) { #ifndef OPENSSL_NO_ERR - if (ERR_func_error_string(PROV_str_functs[0].error) == NULL) { - ERR_load_strings_const(PROV_str_functs); + if (ERR_func_error_string(PROV_str_reasons[0].error) == NULL) ERR_load_strings_const(PROV_str_reasons); - } #endif return 1; } -- cgit v1.1