source: EcnlProtoTool/trunk/openssl-1.1.0e/crypto/dsa/dsa_err.c@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc
File size: 2.9 KB
Line 
1/*
2 * Generated by util/mkerr.pl DO NOT EDIT
3 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
4 *
5 * Licensed under the OpenSSL license (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 <stdio.h>
12#include <openssl/err.h>
13#include <openssl/dsa.h>
14
15/* BEGIN ERROR CODES */
16#ifndef OPENSSL_NO_ERR
17
18# define ERR_FUNC(func) ERR_PACK(ERR_LIB_DSA,func,0)
19# define ERR_REASON(reason) ERR_PACK(ERR_LIB_DSA,0,reason)
20
21static ERR_STRING_DATA DSA_str_functs[] = {
22 {ERR_FUNC(DSA_F_DSAPARAMS_PRINT), "DSAparams_print"},
23 {ERR_FUNC(DSA_F_DSAPARAMS_PRINT_FP), "DSAparams_print_fp"},
24 {ERR_FUNC(DSA_F_DSA_BUILTIN_PARAMGEN), "dsa_builtin_paramgen"},
25 {ERR_FUNC(DSA_F_DSA_BUILTIN_PARAMGEN2), "dsa_builtin_paramgen2"},
26 {ERR_FUNC(DSA_F_DSA_DO_SIGN), "DSA_do_sign"},
27 {ERR_FUNC(DSA_F_DSA_DO_VERIFY), "DSA_do_verify"},
28 {ERR_FUNC(DSA_F_DSA_METH_DUP), "DSA_meth_dup"},
29 {ERR_FUNC(DSA_F_DSA_METH_NEW), "DSA_meth_new"},
30 {ERR_FUNC(DSA_F_DSA_METH_SET1_NAME), "DSA_meth_set1_name"},
31 {ERR_FUNC(DSA_F_DSA_NEW_METHOD), "DSA_new_method"},
32 {ERR_FUNC(DSA_F_DSA_PARAM_DECODE), "dsa_param_decode"},
33 {ERR_FUNC(DSA_F_DSA_PRINT_FP), "DSA_print_fp"},
34 {ERR_FUNC(DSA_F_DSA_PRIV_DECODE), "dsa_priv_decode"},
35 {ERR_FUNC(DSA_F_DSA_PRIV_ENCODE), "dsa_priv_encode"},
36 {ERR_FUNC(DSA_F_DSA_PUB_DECODE), "dsa_pub_decode"},
37 {ERR_FUNC(DSA_F_DSA_PUB_ENCODE), "dsa_pub_encode"},
38 {ERR_FUNC(DSA_F_DSA_SIGN), "DSA_sign"},
39 {ERR_FUNC(DSA_F_DSA_SIGN_SETUP), "DSA_sign_setup"},
40 {ERR_FUNC(DSA_F_DSA_SIG_NEW), "DSA_SIG_new"},
41 {ERR_FUNC(DSA_F_OLD_DSA_PRIV_DECODE), "old_dsa_priv_decode"},
42 {ERR_FUNC(DSA_F_PKEY_DSA_CTRL), "pkey_dsa_ctrl"},
43 {ERR_FUNC(DSA_F_PKEY_DSA_KEYGEN), "pkey_dsa_keygen"},
44 {0, NULL}
45};
46
47static ERR_STRING_DATA DSA_str_reasons[] = {
48 {ERR_REASON(DSA_R_BAD_Q_VALUE), "bad q value"},
49 {ERR_REASON(DSA_R_BN_DECODE_ERROR), "bn decode error"},
50 {ERR_REASON(DSA_R_BN_ERROR), "bn error"},
51 {ERR_REASON(DSA_R_DECODE_ERROR), "decode error"},
52 {ERR_REASON(DSA_R_INVALID_DIGEST_TYPE), "invalid digest type"},
53 {ERR_REASON(DSA_R_INVALID_PARAMETERS), "invalid parameters"},
54 {ERR_REASON(DSA_R_MISSING_PARAMETERS), "missing parameters"},
55 {ERR_REASON(DSA_R_MODULUS_TOO_LARGE), "modulus too large"},
56 {ERR_REASON(DSA_R_NO_PARAMETERS_SET), "no parameters set"},
57 {ERR_REASON(DSA_R_PARAMETER_ENCODING_ERROR), "parameter encoding error"},
58 {ERR_REASON(DSA_R_Q_NOT_PRIME), "q not prime"},
59 {ERR_REASON(DSA_R_SEED_LEN_SMALL),
60 "seed_len is less than the length of q"},
61 {0, NULL}
62};
63
64#endif
65
66int ERR_load_DSA_strings(void)
67{
68#ifndef OPENSSL_NO_ERR
69
70 if (ERR_func_error_string(DSA_str_functs[0].error) == NULL) {
71 ERR_load_strings(0, DSA_str_functs);
72 ERR_load_strings(0, DSA_str_reasons);
73 }
74#endif
75 return 1;
76}
Note: See TracBrowser for help on using the repository browser.