Add some error messages for malloc fails
[openssl.git] / crypto / dh / dh_err.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /*
11  * NOTE: this file was auto generated by the mkerr.pl script: any changes
12  * made to it will be overwritten when the script next updates this file,
13  * only reason strings will be preserved.
14  */
15
16 #include <stdio.h>
17 #include <openssl/err.h>
18 #include <openssl/dh.h>
19
20 /* BEGIN ERROR CODES */
21 #ifndef OPENSSL_NO_ERR
22
23 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_DH,func,0)
24 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_DH,0,reason)
25
26 static ERR_STRING_DATA DH_str_functs[] = {
27     {ERR_FUNC(DH_F_COMPUTE_KEY), "compute_key"},
28     {ERR_FUNC(DH_F_DHPARAMS_PRINT_FP), "DHparams_print_fp"},
29     {ERR_FUNC(DH_F_DH_BUILTIN_GENPARAMS), "dh_builtin_genparams"},
30     {ERR_FUNC(DH_F_DH_CMS_DECRYPT), "dh_cms_decrypt"},
31     {ERR_FUNC(DH_F_DH_CMS_SET_PEERKEY), "dh_cms_set_peerkey"},
32     {ERR_FUNC(DH_F_DH_CMS_SET_SHARED_INFO), "dh_cms_set_shared_info"},
33     {ERR_FUNC(DH_F_DH_METH_DUP), "DH_meth_dup"},
34     {ERR_FUNC(DH_F_DH_METH_NEW), "DH_meth_new"},
35     {ERR_FUNC(DH_F_DH_METH_SET1_NAME), "DH_meth_set1_name"},
36     {ERR_FUNC(DH_F_DH_NEW_METHOD), "DH_new_method"},
37     {ERR_FUNC(DH_F_DH_PARAM_DECODE), "dh_param_decode"},
38     {ERR_FUNC(DH_F_DH_PRIV_DECODE), "dh_priv_decode"},
39     {ERR_FUNC(DH_F_DH_PRIV_ENCODE), "dh_priv_encode"},
40     {ERR_FUNC(DH_F_DH_PUB_DECODE), "dh_pub_decode"},
41     {ERR_FUNC(DH_F_DH_PUB_ENCODE), "dh_pub_encode"},
42     {ERR_FUNC(DH_F_DO_DH_PRINT), "do_dh_print"},
43     {ERR_FUNC(DH_F_GENERATE_KEY), "generate_key"},
44     {ERR_FUNC(DH_F_GENERATE_PARAMETERS), "GENERATE_PARAMETERS"},
45     {ERR_FUNC(DH_F_PKEY_DH_DERIVE), "pkey_dh_derive"},
46     {ERR_FUNC(DH_F_PKEY_DH_KEYGEN), "pkey_dh_keygen"},
47     {0, NULL}
48 };
49
50 static ERR_STRING_DATA DH_str_reasons[] = {
51     {ERR_REASON(DH_R_BAD_GENERATOR), "bad generator"},
52     {ERR_REASON(DH_R_BN_DECODE_ERROR), "bn decode error"},
53     {ERR_REASON(DH_R_BN_ERROR), "bn error"},
54     {ERR_REASON(DH_R_DECODE_ERROR), "decode error"},
55     {ERR_REASON(DH_R_INVALID_PUBKEY), "invalid public key"},
56     {ERR_REASON(DH_R_KDF_PARAMETER_ERROR), "kdf parameter error"},
57     {ERR_REASON(DH_R_KEYS_NOT_SET), "keys not set"},
58     {ERR_REASON(DH_R_KEY_SIZE_TOO_SMALL), "key size too small"},
59     {ERR_REASON(DH_R_MODULUS_TOO_LARGE), "modulus too large"},
60     {ERR_REASON(DH_R_NO_PARAMETERS_SET), "no parameters set"},
61     {ERR_REASON(DH_R_NO_PRIVATE_VALUE), "no private value"},
62     {ERR_REASON(DH_R_PARAMETER_ENCODING_ERROR), "parameter encoding error"},
63     {ERR_REASON(DH_R_PEER_KEY_ERROR), "peer key error"},
64     {ERR_REASON(DH_R_SHARED_INFO_ERROR), "shared info error"},
65     {0, NULL}
66 };
67
68 #endif
69
70 void ERR_load_DH_strings(void)
71 {
72 #ifndef OPENSSL_NO_ERR
73
74     if (ERR_func_error_string(DH_str_functs[0].error) == NULL) {
75         ERR_load_strings(0, DH_str_functs);
76         ERR_load_strings(0, DH_str_reasons);
77     }
78 #endif
79 }