1ebfedea0SLionel Sambuc /* crypto/store/str_err.c */
2ebfedea0SLionel Sambuc /* ====================================================================
3ebfedea0SLionel Sambuc * Copyright (c) 1999-2006 The OpenSSL Project. All rights reserved.
4ebfedea0SLionel Sambuc *
5ebfedea0SLionel Sambuc * Redistribution and use in source and binary forms, with or without
6ebfedea0SLionel Sambuc * modification, are permitted provided that the following conditions
7ebfedea0SLionel Sambuc * are met:
8ebfedea0SLionel Sambuc *
9ebfedea0SLionel Sambuc * 1. Redistributions of source code must retain the above copyright
10ebfedea0SLionel Sambuc * notice, this list of conditions and the following disclaimer.
11ebfedea0SLionel Sambuc *
12ebfedea0SLionel Sambuc * 2. Redistributions in binary form must reproduce the above copyright
13ebfedea0SLionel Sambuc * notice, this list of conditions and the following disclaimer in
14ebfedea0SLionel Sambuc * the documentation and/or other materials provided with the
15ebfedea0SLionel Sambuc * distribution.
16ebfedea0SLionel Sambuc *
17ebfedea0SLionel Sambuc * 3. All advertising materials mentioning features or use of this
18ebfedea0SLionel Sambuc * software must display the following acknowledgment:
19ebfedea0SLionel Sambuc * "This product includes software developed by the OpenSSL Project
20ebfedea0SLionel Sambuc * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
21ebfedea0SLionel Sambuc *
22ebfedea0SLionel Sambuc * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23ebfedea0SLionel Sambuc * endorse or promote products derived from this software without
24ebfedea0SLionel Sambuc * prior written permission. For written permission, please contact
25ebfedea0SLionel Sambuc * openssl-core@OpenSSL.org.
26ebfedea0SLionel Sambuc *
27ebfedea0SLionel Sambuc * 5. Products derived from this software may not be called "OpenSSL"
28ebfedea0SLionel Sambuc * nor may "OpenSSL" appear in their names without prior written
29ebfedea0SLionel Sambuc * permission of the OpenSSL Project.
30ebfedea0SLionel Sambuc *
31ebfedea0SLionel Sambuc * 6. Redistributions of any form whatsoever must retain the following
32ebfedea0SLionel Sambuc * acknowledgment:
33ebfedea0SLionel Sambuc * "This product includes software developed by the OpenSSL Project
34ebfedea0SLionel Sambuc * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
35ebfedea0SLionel Sambuc *
36ebfedea0SLionel Sambuc * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37ebfedea0SLionel Sambuc * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38ebfedea0SLionel Sambuc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39ebfedea0SLionel Sambuc * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
40ebfedea0SLionel Sambuc * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41ebfedea0SLionel Sambuc * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42ebfedea0SLionel Sambuc * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43ebfedea0SLionel Sambuc * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44ebfedea0SLionel Sambuc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45ebfedea0SLionel Sambuc * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46ebfedea0SLionel Sambuc * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47ebfedea0SLionel Sambuc * OF THE POSSIBILITY OF SUCH DAMAGE.
48ebfedea0SLionel Sambuc * ====================================================================
49ebfedea0SLionel Sambuc *
50ebfedea0SLionel Sambuc * This product includes cryptographic software written by Eric Young
51ebfedea0SLionel Sambuc * (eay@cryptsoft.com). This product includes software written by Tim
52ebfedea0SLionel Sambuc * Hudson (tjh@cryptsoft.com).
53ebfedea0SLionel Sambuc *
54ebfedea0SLionel Sambuc */
55ebfedea0SLionel Sambuc
56*0a6a1f1dSLionel Sambuc /*
57*0a6a1f1dSLionel Sambuc * NOTE: this file was auto generated by the mkerr.pl script: any changes
58ebfedea0SLionel Sambuc * made to it will be overwritten when the script next updates this file,
59ebfedea0SLionel Sambuc * only reason strings will be preserved.
60ebfedea0SLionel Sambuc */
61ebfedea0SLionel Sambuc
62ebfedea0SLionel Sambuc #include <stdio.h>
63ebfedea0SLionel Sambuc #include <openssl/err.h>
64ebfedea0SLionel Sambuc #include <openssl/store.h>
65ebfedea0SLionel Sambuc
66ebfedea0SLionel Sambuc /* BEGIN ERROR CODES */
67ebfedea0SLionel Sambuc #ifndef OPENSSL_NO_ERR
68ebfedea0SLionel Sambuc
69ebfedea0SLionel Sambuc # define ERR_FUNC(func) ERR_PACK(ERR_LIB_STORE,func,0)
70ebfedea0SLionel Sambuc # define ERR_REASON(reason) ERR_PACK(ERR_LIB_STORE,0,reason)
71ebfedea0SLionel Sambuc
72*0a6a1f1dSLionel Sambuc static ERR_STRING_DATA STORE_str_functs[] = {
73ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_MEM_DELETE), "MEM_DELETE"},
74ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_MEM_GENERATE), "MEM_GENERATE"},
75ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_MEM_LIST_END), "MEM_LIST_END"},
76ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_MEM_LIST_NEXT), "MEM_LIST_NEXT"},
77ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_MEM_LIST_START), "MEM_LIST_START"},
78ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_MEM_MODIFY), "MEM_MODIFY"},
79ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_MEM_STORE), "MEM_STORE"},
80*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_GET0_CSTR),
81*0a6a1f1dSLionel Sambuc "STORE_ATTR_INFO_get0_cstr"},
82ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_GET0_DN), "STORE_ATTR_INFO_get0_dn"},
83*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_GET0_NUMBER),
84*0a6a1f1dSLionel Sambuc "STORE_ATTR_INFO_get0_number"},
85*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_GET0_SHA1STR),
86*0a6a1f1dSLionel Sambuc "STORE_ATTR_INFO_get0_sha1str"},
87*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_MODIFY_CSTR),
88*0a6a1f1dSLionel Sambuc "STORE_ATTR_INFO_modify_cstr"},
89*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_MODIFY_DN),
90*0a6a1f1dSLionel Sambuc "STORE_ATTR_INFO_modify_dn"},
91*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_MODIFY_NUMBER),
92*0a6a1f1dSLionel Sambuc "STORE_ATTR_INFO_modify_number"},
93*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_MODIFY_SHA1STR),
94*0a6a1f1dSLionel Sambuc "STORE_ATTR_INFO_modify_sha1str"},
95ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_SET_CSTR), "STORE_ATTR_INFO_set_cstr"},
96ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_SET_DN), "STORE_ATTR_INFO_set_dn"},
97*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_SET_NUMBER),
98*0a6a1f1dSLionel Sambuc "STORE_ATTR_INFO_set_number"},
99*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_ATTR_INFO_SET_SHA1STR),
100*0a6a1f1dSLionel Sambuc "STORE_ATTR_INFO_set_sha1str"},
101ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_CERTIFICATE), "STORE_CERTIFICATE"},
102ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_CTRL), "STORE_ctrl"},
103ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_DELETE_ARBITRARY), "STORE_delete_arbitrary"},
104ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_DELETE_CERTIFICATE), "STORE_delete_certificate"},
105ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_DELETE_CRL), "STORE_delete_crl"},
106ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_DELETE_NUMBER), "STORE_delete_number"},
107ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_DELETE_PRIVATE_KEY), "STORE_delete_private_key"},
108ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_DELETE_PUBLIC_KEY), "STORE_delete_public_key"},
109ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_GENERATE_CRL), "STORE_generate_crl"},
110ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_GENERATE_KEY), "STORE_generate_key"},
111ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_GET_ARBITRARY), "STORE_get_arbitrary"},
112ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_GET_CERTIFICATE), "STORE_get_certificate"},
113ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_GET_CRL), "STORE_get_crl"},
114ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_GET_NUMBER), "STORE_get_number"},
115ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_GET_PRIVATE_KEY), "STORE_get_private_key"},
116ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_GET_PUBLIC_KEY), "STORE_get_public_key"},
117*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_CERTIFICATE_END),
118*0a6a1f1dSLionel Sambuc "STORE_list_certificate_end"},
119*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_CERTIFICATE_ENDP),
120*0a6a1f1dSLionel Sambuc "STORE_list_certificate_endp"},
121*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_CERTIFICATE_NEXT),
122*0a6a1f1dSLionel Sambuc "STORE_list_certificate_next"},
123*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_CERTIFICATE_START),
124*0a6a1f1dSLionel Sambuc "STORE_list_certificate_start"},
125ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_CRL_END), "STORE_list_crl_end"},
126ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_CRL_ENDP), "STORE_list_crl_endp"},
127ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_CRL_NEXT), "STORE_list_crl_next"},
128ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_CRL_START), "STORE_list_crl_start"},
129*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_PRIVATE_KEY_END),
130*0a6a1f1dSLionel Sambuc "STORE_list_private_key_end"},
131*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_PRIVATE_KEY_ENDP),
132*0a6a1f1dSLionel Sambuc "STORE_list_private_key_endp"},
133*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_PRIVATE_KEY_NEXT),
134*0a6a1f1dSLionel Sambuc "STORE_list_private_key_next"},
135*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_PRIVATE_KEY_START),
136*0a6a1f1dSLionel Sambuc "STORE_list_private_key_start"},
137*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_PUBLIC_KEY_END),
138*0a6a1f1dSLionel Sambuc "STORE_list_public_key_end"},
139*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_PUBLIC_KEY_ENDP),
140*0a6a1f1dSLionel Sambuc "STORE_list_public_key_endp"},
141*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_PUBLIC_KEY_NEXT),
142*0a6a1f1dSLionel Sambuc "STORE_list_public_key_next"},
143*0a6a1f1dSLionel Sambuc {ERR_FUNC(STORE_F_STORE_LIST_PUBLIC_KEY_START),
144*0a6a1f1dSLionel Sambuc "STORE_list_public_key_start"},
145ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_MODIFY_ARBITRARY), "STORE_modify_arbitrary"},
146ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_MODIFY_CERTIFICATE), "STORE_modify_certificate"},
147ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_MODIFY_CRL), "STORE_modify_crl"},
148ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_MODIFY_NUMBER), "STORE_modify_number"},
149ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_MODIFY_PRIVATE_KEY), "STORE_modify_private_key"},
150ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_MODIFY_PUBLIC_KEY), "STORE_modify_public_key"},
151ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_NEW_ENGINE), "STORE_new_engine"},
152ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_NEW_METHOD), "STORE_new_method"},
153ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_PARSE_ATTRS_END), "STORE_parse_attrs_end"},
154ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_PARSE_ATTRS_ENDP), "STORE_parse_attrs_endp"},
155ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_PARSE_ATTRS_NEXT), "STORE_parse_attrs_next"},
156ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_PARSE_ATTRS_START), "STORE_parse_attrs_start"},
157ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_REVOKE_CERTIFICATE), "STORE_revoke_certificate"},
158ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_REVOKE_PRIVATE_KEY), "STORE_revoke_private_key"},
159ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_REVOKE_PUBLIC_KEY), "STORE_revoke_public_key"},
160ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_STORE_ARBITRARY), "STORE_store_arbitrary"},
161ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_STORE_CERTIFICATE), "STORE_store_certificate"},
162ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_STORE_CRL), "STORE_store_crl"},
163ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_STORE_NUMBER), "STORE_store_number"},
164ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_STORE_PRIVATE_KEY), "STORE_store_private_key"},
165ebfedea0SLionel Sambuc {ERR_FUNC(STORE_F_STORE_STORE_PUBLIC_KEY), "STORE_store_public_key"},
166ebfedea0SLionel Sambuc {0, NULL}
167ebfedea0SLionel Sambuc };
168ebfedea0SLionel Sambuc
169*0a6a1f1dSLionel Sambuc static ERR_STRING_DATA STORE_str_reasons[] = {
170ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_ALREADY_HAS_A_VALUE), "already has a value"},
171*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_DELETING_ARBITRARY),
172*0a6a1f1dSLionel Sambuc "failed deleting arbitrary"},
173*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_DELETING_CERTIFICATE),
174*0a6a1f1dSLionel Sambuc "failed deleting certificate"},
175ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_DELETING_KEY), "failed deleting key"},
176ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_DELETING_NUMBER), "failed deleting number"},
177ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_GENERATING_CRL), "failed generating crl"},
178ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_GENERATING_KEY), "failed generating key"},
179*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_GETTING_ARBITRARY),
180*0a6a1f1dSLionel Sambuc "failed getting arbitrary"},
181*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_GETTING_CERTIFICATE),
182*0a6a1f1dSLionel Sambuc "failed getting certificate"},
183ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_GETTING_KEY), "failed getting key"},
184ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_GETTING_NUMBER), "failed getting number"},
185*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_LISTING_CERTIFICATES),
186*0a6a1f1dSLionel Sambuc "failed listing certificates"},
187ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_LISTING_KEYS), "failed listing keys"},
188*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_MODIFYING_ARBITRARY),
189*0a6a1f1dSLionel Sambuc "failed modifying arbitrary"},
190*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_MODIFYING_CERTIFICATE),
191*0a6a1f1dSLionel Sambuc "failed modifying certificate"},
192ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_MODIFYING_CRL), "failed modifying crl"},
193ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_MODIFYING_NUMBER), "failed modifying number"},
194*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_MODIFYING_PRIVATE_KEY),
195*0a6a1f1dSLionel Sambuc "failed modifying private key"},
196*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_MODIFYING_PUBLIC_KEY),
197*0a6a1f1dSLionel Sambuc "failed modifying public key"},
198*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_REVOKING_CERTIFICATE),
199*0a6a1f1dSLionel Sambuc "failed revoking certificate"},
200ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_REVOKING_KEY), "failed revoking key"},
201*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_STORING_ARBITRARY),
202*0a6a1f1dSLionel Sambuc "failed storing arbitrary"},
203*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_FAILED_STORING_CERTIFICATE),
204*0a6a1f1dSLionel Sambuc "failed storing certificate"},
205ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_STORING_KEY), "failed storing key"},
206ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_FAILED_STORING_NUMBER), "failed storing number"},
207ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_NOT_IMPLEMENTED), "not implemented"},
208ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_NO_CONTROL_FUNCTION), "no control function"},
209*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_DELETE_ARBITRARY_FUNCTION),
210*0a6a1f1dSLionel Sambuc "no delete arbitrary function"},
211*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_DELETE_NUMBER_FUNCTION),
212*0a6a1f1dSLionel Sambuc "no delete number function"},
213*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_DELETE_OBJECT_FUNCTION),
214*0a6a1f1dSLionel Sambuc "no delete object function"},
215*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_GENERATE_CRL_FUNCTION),
216*0a6a1f1dSLionel Sambuc "no generate crl function"},
217*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_GENERATE_OBJECT_FUNCTION),
218*0a6a1f1dSLionel Sambuc "no generate object function"},
219*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_GET_OBJECT_ARBITRARY_FUNCTION),
220*0a6a1f1dSLionel Sambuc "no get object arbitrary function"},
221ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_NO_GET_OBJECT_FUNCTION), "no get object function"},
222*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_GET_OBJECT_NUMBER_FUNCTION),
223*0a6a1f1dSLionel Sambuc "no get object number function"},
224*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_LIST_OBJECT_ENDP_FUNCTION),
225*0a6a1f1dSLionel Sambuc "no list object endp function"},
226*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_LIST_OBJECT_END_FUNCTION),
227*0a6a1f1dSLionel Sambuc "no list object end function"},
228*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_LIST_OBJECT_NEXT_FUNCTION),
229*0a6a1f1dSLionel Sambuc "no list object next function"},
230*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_LIST_OBJECT_START_FUNCTION),
231*0a6a1f1dSLionel Sambuc "no list object start function"},
232*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_MODIFY_OBJECT_FUNCTION),
233*0a6a1f1dSLionel Sambuc "no modify object function"},
234*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_REVOKE_OBJECT_FUNCTION),
235*0a6a1f1dSLionel Sambuc "no revoke object function"},
236ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_NO_STORE), "no store"},
237*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_STORE_OBJECT_ARBITRARY_FUNCTION),
238*0a6a1f1dSLionel Sambuc "no store object arbitrary function"},
239*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_STORE_OBJECT_FUNCTION),
240*0a6a1f1dSLionel Sambuc "no store object function"},
241*0a6a1f1dSLionel Sambuc {ERR_REASON(STORE_R_NO_STORE_OBJECT_NUMBER_FUNCTION),
242*0a6a1f1dSLionel Sambuc "no store object number function"},
243ebfedea0SLionel Sambuc {ERR_REASON(STORE_R_NO_VALUE), "no value"},
244ebfedea0SLionel Sambuc {0, NULL}
245ebfedea0SLionel Sambuc };
246ebfedea0SLionel Sambuc
247ebfedea0SLionel Sambuc #endif
248ebfedea0SLionel Sambuc
ERR_load_STORE_strings(void)249ebfedea0SLionel Sambuc void ERR_load_STORE_strings(void)
250ebfedea0SLionel Sambuc {
251ebfedea0SLionel Sambuc #ifndef OPENSSL_NO_ERR
252ebfedea0SLionel Sambuc
253*0a6a1f1dSLionel Sambuc if (ERR_func_error_string(STORE_str_functs[0].error) == NULL) {
254ebfedea0SLionel Sambuc ERR_load_strings(0, STORE_str_functs);
255ebfedea0SLionel Sambuc ERR_load_strings(0, STORE_str_reasons);
256ebfedea0SLionel Sambuc }
257ebfedea0SLionel Sambuc #endif
258ebfedea0SLionel Sambuc }
259