/src/openssl/crypto/cpt_err.c
Line  | Count  | Source  | 
1  |  | /*  | 
2  |  |  * Generated by util/mkerr.pl DO NOT EDIT  | 
3  |  |  * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved.  | 
4  |  |  *  | 
5  |  |  * Licensed under the Apache License 2.0 (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_reasons[] = { | 
17  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_BAD_ALGORITHM_NAME), | 
18  |  |     "bad algorithm name"},  | 
19  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_CONFLICTING_NAMES), | 
20  |  |     "conflicting names"},  | 
21  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_FIPS_MODE_NOT_SUPPORTED), | 
22  |  |     "fips mode not supported"},  | 
23  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_ILLEGAL_HEX_DIGIT), | 
24  |  |     "illegal hex digit"},  | 
25  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_INSUFFICIENT_DATA_SPACE), | 
26  |  |     "insufficient data space"},  | 
27  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_INSUFFICIENT_PARAM_SIZE), | 
28  |  |     "insufficient param size"},  | 
29  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_INSUFFICIENT_SECURE_DATA_SPACE), | 
30  |  |     "insufficient secure data space"},  | 
31  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_INVALID_NULL_ARGUMENT), | 
32  |  |     "invalid null argument"},  | 
33  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_INVALID_OSSL_PARAM_TYPE), | 
34  |  |     "invalid ossl param type"},  | 
35  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_ODD_NUMBER_OF_DIGITS), | 
36  |  |     "odd number of digits"},  | 
37  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_PROVIDER_ALREADY_EXISTS), | 
38  |  |     "provider already exists"},  | 
39  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_PROVIDER_SECTION_ERROR), | 
40  |  |     "provider section error"},  | 
41  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_SECURE_MALLOC_FAILURE), | 
42  |  |     "secure malloc failure"},  | 
43  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_STRING_TOO_LONG), "string too long"}, | 
44  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_TOO_MANY_BYTES), "too many bytes"}, | 
45  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_TOO_MANY_RECORDS), | 
46  |  |     "too many records"},  | 
47  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_TOO_SMALL_BUFFER), | 
48  |  |     "too small buffer"},  | 
49  |  |     {ERR_PACK(ERR_LIB_CRYPTO, 0, CRYPTO_R_ZERO_LENGTH_NUMBER), | 
50  |  |     "zero length number"},  | 
51  |  |     {0, NULL} | 
52  |  | };  | 
53  |  |  | 
54  |  | #endif  | 
55  |  |  | 
56  |  | int ERR_load_CRYPTO_strings(void)  | 
57  | 28  | { | 
58  | 28  | #ifndef OPENSSL_NO_ERR  | 
59  | 28  |     if (ERR_reason_error_string(CRYPTO_str_reasons[0].error) == NULL)  | 
60  | 28  |         ERR_load_strings_const(CRYPTO_str_reasons);  | 
61  | 28  | #endif  | 
62  | 28  |     return 1;  | 
63  | 28  | }  |