]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/dh/dh_err.c
Support -no-CAfile -no-CApath in ctx2
[thirdparty/openssl.git] / crypto / dh / dh_err.c
CommitLineData
b6cff313
RS
1/*
2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
6d311938 3 *
b6cff313
RS
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
d02b48c6 8 */
6d311938 9
0f113f3e
MC
10/*
11 * NOTE: this file was auto generated by the mkerr.pl script: any changes
59fc2b0f
BM
12 * made to it will be overwritten when the script next updates this file,
13 * only reason strings will be preserved.
6d311938
DSH
14 */
15
d02b48c6 16#include <stdio.h>
ec577822
BM
17#include <openssl/err.h>
18#include <openssl/dh.h>
d02b48c6
RE
19
20/* BEGIN ERROR CODES */
cf1b7d96 21#ifndef OPENSSL_NO_ERR
29dc3508 22
0f113f3e
MC
23# define ERR_FUNC(func) ERR_PACK(ERR_LIB_DH,func,0)
24# define ERR_REASON(reason) ERR_PACK(ERR_LIB_DH,0,reason)
29dc3508 25
0f113f3e 26static ERR_STRING_DATA DH_str_functs[] = {
b8fb5989 27 {ERR_FUNC(DH_F_COMPUTE_KEY), "compute_key"},
0f113f3e 28 {ERR_FUNC(DH_F_DHPARAMS_PRINT_FP), "DHparams_print_fp"},
b8fb5989
DSH
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"},
569d0646
MC
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"},
0f113f3e 36 {ERR_FUNC(DH_F_DH_NEW_METHOD), "DH_new_method"},
b8fb5989
DSH
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"},
0f113f3e 44 {ERR_FUNC(DH_F_GENERATE_PARAMETERS), "GENERATE_PARAMETERS"},
b8fb5989
DSH
45 {ERR_FUNC(DH_F_PKEY_DH_DERIVE), "pkey_dh_derive"},
46 {ERR_FUNC(DH_F_PKEY_DH_KEYGEN), "pkey_dh_keygen"},
0f113f3e
MC
47 {0, NULL}
48};
d02b48c6 49
0f113f3e
MC
50static 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};
d02b48c6 67
58964a49
RE
68#endif
69
6b691a5c 70void ERR_load_DH_strings(void)
0f113f3e 71{
47a9d527 72#ifndef OPENSSL_NO_ERR
d02b48c6 73
0f113f3e
MC
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 }
47a9d527 78#endif
0f113f3e 79}