Provide getters for min/max proto version
[openssl.git] / crypto / cpt_err.c
1 /*
2  * Generated by util/mkerr.pl DO NOT EDIT
3  * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
4  *
5  * Licensed under the OpenSSL license (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include <openssl/err.h>
12 #include <openssl/cryptoerr.h>
13
14 #ifndef OPENSSL_NO_ERR
15
16 static const ERR_STRING_DATA CRYPTO_str_functs[] = {
17     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_CRYPTO_DUP_EX_DATA, 0),
18      "CRYPTO_dup_ex_data"},
19     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_CRYPTO_FREE_EX_DATA, 0),
20      "CRYPTO_free_ex_data"},
21     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX, 0),
22      "CRYPTO_get_ex_new_index"},
23     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_CRYPTO_MEMDUP, 0), "CRYPTO_memdup"},
24     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_CRYPTO_NEW_EX_DATA, 0),
25      "CRYPTO_new_ex_data"},
26     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_CRYPTO_SET_EX_DATA, 0),
27      "CRYPTO_set_ex_data"},
28     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_FIPS_MODE_SET, 0), "FIPS_mode_set"},
29     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_GET_AND_LOCK, 0), "get_and_lock"},
30     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_OPENSSL_BUF2HEXSTR, 0),
31      "OPENSSL_buf2hexstr"},
32     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_OPENSSL_HEXSTR2BUF, 0),
33      "OPENSSL_hexstr2buf"},
34     {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_OPENSSL_INIT_CRYPTO, 0),
35      "OPENSSL_init_crypto"},
36     {0, NULL}
37 };
38
39 static const ERR_STRING_DATA CRYPTO_str_reasons[] = {
40     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_FIPS_MODE_NOT_SUPPORTED),
41     "fips mode not supported"},
42     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_ILLEGAL_HEX_DIGIT),
43     "illegal hex digit"},
44     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_ODD_NUMBER_OF_DIGITS),
45     "odd number of digits"},
46     {0, NULL}
47 };
48
49 #endif
50
51 int ERR_load_CRYPTO_strings(void)
52 {
53 #ifndef OPENSSL_NO_ERR
54     if (ERR_func_error_string(CRYPTO_str_functs[0].error) == NULL) {
55         ERR_load_strings_const(CRYPTO_str_functs);
56         ERR_load_strings_const(CRYPTO_str_reasons);
57     }
58 #endif
59     return 1;
60 }