2016-05-17 21:38:18 +00:00
|
|
|
/*
|
2016-05-23 19:02:34 +00:00
|
|
|
* Generated by util/mkerr.pl DO NOT EDIT
|
2016-05-17 21:38:18 +00:00
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1999-04-24 00:15:18 +00:00
|
|
|
*
|
2016-05-17 21:38:18 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1999-04-24 00:15:18 +00:00
|
|
|
*/
|
|
|
|
|
1998-12-21 10:56:39 +00:00
|
|
|
#include <stdio.h>
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/crypto.h>
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
/* BEGIN ERROR CODES */
|
2001-02-19 16:06:34 +00:00
|
|
|
#ifndef OPENSSL_NO_ERR
|
2005-04-12 16:15:22 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
# define ERR_FUNC(func) ERR_PACK(ERR_LIB_CRYPTO,func,0)
|
|
|
|
# define ERR_REASON(reason) ERR_PACK(ERR_LIB_CRYPTO,0,reason)
|
2005-04-12 16:15:22 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
static ERR_STRING_DATA CRYPTO_str_functs[] = {
|
2015-04-24 20:33:34 +00:00
|
|
|
{ERR_FUNC(CRYPTO_F_CRYPTO_DUP_EX_DATA), "CRYPTO_dup_ex_data"},
|
|
|
|
{ERR_FUNC(CRYPTO_F_CRYPTO_FREE_EX_DATA), "CRYPTO_free_ex_data"},
|
2015-01-22 03:40:55 +00:00
|
|
|
{ERR_FUNC(CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX), "CRYPTO_get_ex_new_index"},
|
Rename some BUF_xxx to OPENSSL_xxx
Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
Add #define's for the old names.
Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-12-16 21:12:24 +00:00
|
|
|
{ERR_FUNC(CRYPTO_F_CRYPTO_MEMDUP), "CRYPTO_memdup"},
|
2015-04-24 20:33:34 +00:00
|
|
|
{ERR_FUNC(CRYPTO_F_CRYPTO_NEW_EX_DATA), "CRYPTO_new_ex_data"},
|
2015-01-22 03:40:55 +00:00
|
|
|
{ERR_FUNC(CRYPTO_F_CRYPTO_SET_EX_DATA), "CRYPTO_set_ex_data"},
|
|
|
|
{ERR_FUNC(CRYPTO_F_FIPS_MODE_SET), "FIPS_mode_set"},
|
2015-07-21 14:06:03 +00:00
|
|
|
{ERR_FUNC(CRYPTO_F_GET_AND_LOCK), "get_and_lock"},
|
2016-04-13 19:58:28 +00:00
|
|
|
{ERR_FUNC(CRYPTO_F_OPENSSL_BUF2HEXSTR), "OPENSSL_buf2hexstr"},
|
|
|
|
{ERR_FUNC(CRYPTO_F_OPENSSL_HEXSTR2BUF), "OPENSSL_hexstr2buf"},
|
2016-05-23 19:02:34 +00:00
|
|
|
{ERR_FUNC(CRYPTO_F_OPENSSL_INIT_CRYPTO), "OPENSSL_init_crypto"},
|
2015-01-22 03:40:55 +00:00
|
|
|
{0, NULL}
|
|
|
|
};
|
1999-04-24 00:15:18 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
static ERR_STRING_DATA CRYPTO_str_reasons[] = {
|
|
|
|
{ERR_REASON(CRYPTO_R_FIPS_MODE_NOT_SUPPORTED), "fips mode not supported"},
|
2016-04-13 19:58:28 +00:00
|
|
|
{ERR_REASON(CRYPTO_R_ILLEGAL_HEX_DIGIT), "illegal hex digit"},
|
|
|
|
{ERR_REASON(CRYPTO_R_ODD_NUMBER_OF_DIGITS), "odd number of digits"},
|
2015-01-22 03:40:55 +00:00
|
|
|
{0, NULL}
|
|
|
|
};
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-07-12 13:50:06 +00:00
|
|
|
int ERR_load_CRYPTO_strings(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2006-11-21 21:29:44 +00:00
|
|
|
#ifndef OPENSSL_NO_ERR
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (ERR_func_error_string(CRYPTO_str_functs[0].error) == NULL) {
|
|
|
|
ERR_load_strings(0, CRYPTO_str_functs);
|
|
|
|
ERR_load_strings(0, CRYPTO_str_reasons);
|
|
|
|
}
|
2006-11-21 21:29:44 +00:00
|
|
|
#endif
|
2016-07-12 13:50:06 +00:00
|
|
|
return 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|