Fix #340: Parse ASN1_TIME to struct tm
[openssl.git] / engines / e_dasync_err.c
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 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 <openssl/err.h>
12 #include "e_dasync_err.h"
13
14 #ifndef OPENSSL_NO_ERR
15
16 static ERR_STRING_DATA DASYNC_str_functs[] = {
17     {ERR_PACK(0, DASYNC_F_BIND_DASYNC, 0), "bind_dasync"},
18     {ERR_PACK(0, DASYNC_F_CIPHER_AES_128_CBC_CODE, 0),
19      "CIPHER_AES_128_CBC_CODE"},
20     {ERR_PACK(0, DASYNC_F_DASYNC_AES128_CBC_HMAC_SHA1_INIT_KEY, 0),
21      "dasync_aes128_cbc_hmac_sha1_init_key"},
22     {ERR_PACK(0, DASYNC_F_DASYNC_AES128_INIT_KEY, 0), "dasync_aes128_init_key"},
23     {ERR_PACK(0, DASYNC_F_DASYNC_BN_MOD_EXP, 0), "DASYNC_BN_MOD_EXP"},
24     {ERR_PACK(0, DASYNC_F_DASYNC_CIPHER_INIT_KEY_HELPER, 0),
25      "dasync_cipher_init_key_helper"},
26     {ERR_PACK(0, DASYNC_F_DASYNC_MOD_EXP, 0), "DASYNC_MOD_EXP"},
27     {ERR_PACK(0, DASYNC_F_DASYNC_PRIVATE_DECRYPT, 0), "DASYNC_PRIVATE_DECRYPT"},
28     {ERR_PACK(0, DASYNC_F_DASYNC_PRIVATE_ENCRYPT, 0), "DASYNC_PRIVATE_ENCRYPT"},
29     {ERR_PACK(0, DASYNC_F_DASYNC_PUBLIC_DECRYPT, 0), "DASYNC_PUBLIC_DECRYPT"},
30     {ERR_PACK(0, DASYNC_F_DASYNC_PUBLIC_ENCRYPT, 0), "DASYNC_PUBLIC_ENCRYPT"},
31     {0, NULL}
32 };
33
34 static ERR_STRING_DATA DASYNC_str_reasons[] = {
35     {ERR_PACK(0, 0, DASYNC_R_INIT_FAILED), "init failed"},
36     {0, NULL}
37 };
38
39 #endif
40
41 static int lib_code = 0;
42 static int error_loaded = 0;
43
44 static int ERR_load_DASYNC_strings(void)
45 {
46     if (lib_code == 0)
47         lib_code = ERR_get_next_error_library();
48
49     if (!error_loaded) {
50 #ifndef OPENSSL_NO_ERR
51         ERR_load_strings(lib_code, DASYNC_str_functs);
52         ERR_load_strings(lib_code, DASYNC_str_reasons);
53 #endif
54         error_loaded = 1;
55     }
56     return 1;
57 }
58
59 static void ERR_unload_DASYNC_strings(void)
60 {
61     if (error_loaded) {
62 #ifndef OPENSSL_NO_ERR
63         ERR_unload_strings(lib_code, DASYNC_str_functs);
64         ERR_unload_strings(lib_code, DASYNC_str_reasons);
65 #endif
66         error_loaded = 0;
67     }
68 }
69
70 static void ERR_DASYNC_error(int function, int reason, char *file, int line)
71 {
72     if (lib_code == 0)
73         lib_code = ERR_get_next_error_library();
74     ERR_PUT_error(lib_code, function, reason, file, line);
75 }