038a031d0946a24732823d50dd43b4f3b5ee8dfc
[openssl.git] / crypto / dsa / dsa_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/dsa.h>
19
20 /* BEGIN ERROR CODES */
21 #ifndef OPENSSL_NO_ERR
22
23 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_DSA,func,0)
24 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_DSA,0,reason)
25
26 static ERR_STRING_DATA DSA_str_functs[] = {
27     {ERR_FUNC(DSA_F_D2I_DSA_SIG), "d2i_DSA_SIG"},
28     {ERR_FUNC(DSA_F_DO_DSA_PRINT), "do_dsa_print"},
29     {ERR_FUNC(DSA_F_DSAPARAMS_PRINT), "DSAparams_print"},
30     {ERR_FUNC(DSA_F_DSAPARAMS_PRINT_FP), "DSAparams_print_fp"},
31     {ERR_FUNC(DSA_F_DSA_BUILTIN_KEYGEN), "DSA_BUILTIN_KEYGEN"},
32     {ERR_FUNC(DSA_F_DSA_BUILTIN_PARAMGEN), "DSA_BUILTIN_PARAMGEN"},
33     {ERR_FUNC(DSA_F_DSA_BUILTIN_PARAMGEN2), "dsa_builtin_paramgen2"},
34     {ERR_FUNC(DSA_F_DSA_DO_SIGN), "DSA_do_sign"},
35     {ERR_FUNC(DSA_F_DSA_DO_VERIFY), "DSA_do_verify"},
36     {ERR_FUNC(DSA_F_DSA_METH_DUP), "DSA_meth_dup"},
37     {ERR_FUNC(DSA_F_DSA_METH_NEW), "DSA_meth_new"},
38     {ERR_FUNC(DSA_F_DSA_METH_SET1_NAME), "DSA_meth_set1_name"},
39     {ERR_FUNC(DSA_F_DSA_NEW_METHOD), "DSA_new_method"},
40     {ERR_FUNC(DSA_F_DSA_PARAM_DECODE), "dsa_param_decode"},
41     {ERR_FUNC(DSA_F_DSA_PRINT_FP), "DSA_print_fp"},
42     {ERR_FUNC(DSA_F_DSA_PRIV_DECODE), "dsa_priv_decode"},
43     {ERR_FUNC(DSA_F_DSA_PRIV_ENCODE), "dsa_priv_encode"},
44     {ERR_FUNC(DSA_F_DSA_PUB_DECODE), "dsa_pub_decode"},
45     {ERR_FUNC(DSA_F_DSA_PUB_ENCODE), "dsa_pub_encode"},
46     {ERR_FUNC(DSA_F_DSA_SIGN), "DSA_sign"},
47     {ERR_FUNC(DSA_F_DSA_SIGN_SETUP), "DSA_sign_setup"},
48     {ERR_FUNC(DSA_F_DSA_SIG_NEW), "DSA_SIG_new"},
49     {ERR_FUNC(DSA_F_DSA_SIG_PRINT), "dsa_sig_print"},
50     {ERR_FUNC(DSA_F_DSA_VERIFY), "DSA_verify"},
51     {ERR_FUNC(DSA_F_I2D_DSA_SIG), "i2d_DSA_SIG"},
52     {ERR_FUNC(DSA_F_OLD_DSA_PRIV_DECODE), "old_dsa_priv_decode"},
53     {ERR_FUNC(DSA_F_PKEY_DSA_CTRL), "pkey_dsa_ctrl"},
54     {ERR_FUNC(DSA_F_PKEY_DSA_KEYGEN), "pkey_dsa_keygen"},
55     {ERR_FUNC(DSA_F_SIG_CB), "sig_cb"},
56     {0, NULL}
57 };
58
59 static ERR_STRING_DATA DSA_str_reasons[] = {
60     {ERR_REASON(DSA_R_BAD_Q_VALUE), "bad q value"},
61     {ERR_REASON(DSA_R_BN_DECODE_ERROR), "bn decode error"},
62     {ERR_REASON(DSA_R_BN_ERROR), "bn error"},
63     {ERR_REASON(DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE),
64      "data too large for key size"},
65     {ERR_REASON(DSA_R_DECODE_ERROR), "decode error"},
66     {ERR_REASON(DSA_R_INVALID_DIGEST_TYPE), "invalid digest type"},
67     {ERR_REASON(DSA_R_INVALID_PARAMETERS), "invalid parameters"},
68     {ERR_REASON(DSA_R_KEY_SIZE_TOO_SMALL), "key size too small"},
69     {ERR_REASON(DSA_R_MISSING_PARAMETERS), "missing parameters"},
70     {ERR_REASON(DSA_R_MODULUS_TOO_LARGE), "modulus too large"},
71     {ERR_REASON(DSA_R_NEED_NEW_SETUP_VALUES), "need new setup values"},
72     {ERR_REASON(DSA_R_NO_PARAMETERS_SET), "no parameters set"},
73     {ERR_REASON(DSA_R_PARAMETER_ENCODING_ERROR), "parameter encoding error"},
74     {ERR_REASON(DSA_R_Q_NOT_PRIME), "q not prime"},
75     {0, NULL}
76 };
77
78 #endif
79
80 void ERR_load_DSA_strings(void)
81 {
82 #ifndef OPENSSL_NO_ERR
83
84     if (ERR_func_error_string(DSA_str_functs[0].error) == NULL) {
85         ERR_load_strings(0, DSA_str_functs);
86         ERR_load_strings(0, DSA_str_reasons);
87     }
88 #endif
89 }