e_dasync_err.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Generated by util/mkerr.pl DO NOT EDIT
  3. * Copyright 1995-2017 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. #include <openssl/err.h>
  11. #include "e_dasync_err.h"
  12. #ifndef OPENSSL_NO_ERR
  13. static ERR_STRING_DATA DASYNC_str_functs[] = {
  14. {ERR_PACK(0, DASYNC_F_BIND_DASYNC, 0), "bind_dasync"},
  15. {ERR_PACK(0, DASYNC_F_CIPHER_AES_128_CBC_CODE, 0), ""},
  16. {ERR_PACK(0, DASYNC_F_DASYNC_AES128_CBC_HMAC_SHA1_INIT_KEY, 0), ""},
  17. {ERR_PACK(0, DASYNC_F_DASYNC_AES128_INIT_KEY, 0), ""},
  18. {ERR_PACK(0, DASYNC_F_DASYNC_BN_MOD_EXP, 0), ""},
  19. {ERR_PACK(0, DASYNC_F_DASYNC_CIPHER_INIT_KEY_HELPER, 0),
  20. "dasync_cipher_init_key_helper"},
  21. {ERR_PACK(0, DASYNC_F_DASYNC_MOD_EXP, 0), ""},
  22. {ERR_PACK(0, DASYNC_F_DASYNC_PRIVATE_DECRYPT, 0), ""},
  23. {ERR_PACK(0, DASYNC_F_DASYNC_PRIVATE_ENCRYPT, 0), ""},
  24. {ERR_PACK(0, DASYNC_F_DASYNC_PUBLIC_DECRYPT, 0), ""},
  25. {ERR_PACK(0, DASYNC_F_DASYNC_PUBLIC_ENCRYPT, 0), ""},
  26. {0, NULL}
  27. };
  28. static ERR_STRING_DATA DASYNC_str_reasons[] = {
  29. {ERR_PACK(0, 0, DASYNC_R_INIT_FAILED), "init failed"},
  30. {0, NULL}
  31. };
  32. #endif
  33. static int lib_code = 0;
  34. static int error_loaded = 0;
  35. static int ERR_load_DASYNC_strings(void)
  36. {
  37. if (lib_code == 0)
  38. lib_code = ERR_get_next_error_library();
  39. if (!error_loaded) {
  40. #ifndef OPENSSL_NO_ERR
  41. ERR_load_strings(lib_code, DASYNC_str_functs);
  42. ERR_load_strings(lib_code, DASYNC_str_reasons);
  43. #endif
  44. error_loaded = 1;
  45. }
  46. return 1;
  47. }
  48. static void ERR_unload_DASYNC_strings(void)
  49. {
  50. if (error_loaded) {
  51. #ifndef OPENSSL_NO_ERR
  52. ERR_unload_strings(lib_code, DASYNC_str_functs);
  53. ERR_unload_strings(lib_code, DASYNC_str_reasons);
  54. #endif
  55. error_loaded = 0;
  56. }
  57. }
  58. static void ERR_DASYNC_error(int function, int reason, char *file, int line)
  59. {
  60. if (lib_code == 0)
  61. lib_code = ERR_get_next_error_library();
  62. ERR_PUT_error(lib_code, function, reason, file, line);
  63. }