dh_err.c 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. #include <stdio.h>
  11. #include <openssl/err.h>
  12. #include <openssl/dh.h>
  13. /* BEGIN ERROR CODES */
  14. #ifndef OPENSSL_NO_ERR
  15. # define ERR_FUNC(func) ERR_PACK(ERR_LIB_DH,func,0)
  16. # define ERR_REASON(reason) ERR_PACK(ERR_LIB_DH,0,reason)
  17. static ERR_STRING_DATA DH_str_functs[] = {
  18. {ERR_FUNC(DH_F_COMPUTE_KEY), "compute_key"},
  19. {ERR_FUNC(DH_F_DHPARAMS_PRINT_FP), "DHparams_print_fp"},
  20. {ERR_FUNC(DH_F_DH_BUILTIN_GENPARAMS), "dh_builtin_genparams"},
  21. {ERR_FUNC(DH_F_DH_CMS_DECRYPT), "dh_cms_decrypt"},
  22. {ERR_FUNC(DH_F_DH_CMS_SET_PEERKEY), "dh_cms_set_peerkey"},
  23. {ERR_FUNC(DH_F_DH_CMS_SET_SHARED_INFO), "dh_cms_set_shared_info"},
  24. {ERR_FUNC(DH_F_DH_METH_DUP), "DH_meth_dup"},
  25. {ERR_FUNC(DH_F_DH_METH_NEW), "DH_meth_new"},
  26. {ERR_FUNC(DH_F_DH_METH_SET1_NAME), "DH_meth_set1_name"},
  27. {ERR_FUNC(DH_F_DH_NEW_METHOD), "DH_new_method"},
  28. {ERR_FUNC(DH_F_DH_PARAM_DECODE), "dh_param_decode"},
  29. {ERR_FUNC(DH_F_DH_PRIV_DECODE), "dh_priv_decode"},
  30. {ERR_FUNC(DH_F_DH_PRIV_ENCODE), "dh_priv_encode"},
  31. {ERR_FUNC(DH_F_DH_PUB_DECODE), "dh_pub_decode"},
  32. {ERR_FUNC(DH_F_DH_PUB_ENCODE), "dh_pub_encode"},
  33. {ERR_FUNC(DH_F_DO_DH_PRINT), "do_dh_print"},
  34. {ERR_FUNC(DH_F_GENERATE_KEY), "generate_key"},
  35. {ERR_FUNC(DH_F_PKEY_DH_DERIVE), "pkey_dh_derive"},
  36. {ERR_FUNC(DH_F_PKEY_DH_KEYGEN), "pkey_dh_keygen"},
  37. {0, NULL}
  38. };
  39. static ERR_STRING_DATA DH_str_reasons[] = {
  40. {ERR_REASON(DH_R_BAD_GENERATOR), "bad generator"},
  41. {ERR_REASON(DH_R_BN_DECODE_ERROR), "bn decode error"},
  42. {ERR_REASON(DH_R_BN_ERROR), "bn error"},
  43. {ERR_REASON(DH_R_DECODE_ERROR), "decode error"},
  44. {ERR_REASON(DH_R_INVALID_PUBKEY), "invalid public key"},
  45. {ERR_REASON(DH_R_KDF_PARAMETER_ERROR), "kdf parameter error"},
  46. {ERR_REASON(DH_R_KEYS_NOT_SET), "keys not set"},
  47. {ERR_REASON(DH_R_MODULUS_TOO_LARGE), "modulus too large"},
  48. {ERR_REASON(DH_R_NO_PARAMETERS_SET), "no parameters set"},
  49. {ERR_REASON(DH_R_NO_PRIVATE_VALUE), "no private value"},
  50. {ERR_REASON(DH_R_PARAMETER_ENCODING_ERROR), "parameter encoding error"},
  51. {ERR_REASON(DH_R_PEER_KEY_ERROR), "peer key error"},
  52. {ERR_REASON(DH_R_SHARED_INFO_ERROR), "shared info error"},
  53. {0, NULL}
  54. };
  55. #endif
  56. int ERR_load_DH_strings(void)
  57. {
  58. #ifndef OPENSSL_NO_ERR
  59. if (ERR_func_error_string(DH_str_functs[0].error) == NULL) {
  60. ERR_load_strings(0, DH_str_functs);
  61. ERR_load_strings(0, DH_str_reasons);
  62. }
  63. #endif
  64. return 1;
  65. }