]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/dsa/dsa_err.c
Update copyright year
[thirdparty/openssl.git] / crypto / dsa / dsa_err.c
1 /*
2 * Generated by util/mkerr.pl DO NOT EDIT
3 * Copyright 1995-2021 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/dsaerr.h>
13 #include "crypto/dsaerr.h"
14
15 #ifndef OPENSSL_NO_DSA
16
17 # ifndef OPENSSL_NO_ERR
18
19 static const ERR_STRING_DATA DSA_str_reasons[] = {
20 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_BAD_FFC_PARAMETERS), "bad ffc parameters"},
21 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_BAD_Q_VALUE), "bad q value"},
22 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_BN_DECODE_ERROR), "bn decode error"},
23 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_BN_ERROR), "bn error"},
24 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_DECODE_ERROR), "decode error"},
25 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_INVALID_DIGEST_TYPE),
26 "invalid digest type"},
27 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_INVALID_PARAMETERS), "invalid parameters"},
28 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_MISSING_PARAMETERS), "missing parameters"},
29 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_MISSING_PRIVATE_KEY),
30 "missing private key"},
31 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_MODULUS_TOO_LARGE), "modulus too large"},
32 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_NO_PARAMETERS_SET), "no parameters set"},
33 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_PARAMETER_ENCODING_ERROR),
34 "parameter encoding error"},
35 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_P_NOT_PRIME), "p not prime"},
36 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_Q_NOT_PRIME), "q not prime"},
37 {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_SEED_LEN_SMALL),
38 "seed_len is less than the length of q"},
39 {0, NULL}
40 };
41
42 # endif
43
44 int err_load_DSA_strings_int(void)
45 {
46 # ifndef OPENSSL_NO_ERR
47 if (ERR_reason_error_string(DSA_str_reasons[0].error) == NULL)
48 ERR_load_strings_const(DSA_str_reasons);
49 # endif
50 return 1;
51 }
52 #else
53 NON_EMPTY_TRANSLATION_UNIT
54 #endif