* tar xzf utvpn-src-unix-v101-7101-public-2010.06.27.tar.gz
[lab.git] / utvpn / utvpn-unix-v101-7101-public / src / Mayaqua / openssl / x509_vfy.h
1 /* crypto/x509/x509_vfy.h */\r
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)\r
3  * All rights reserved.\r
4  *\r
5  * This package is an SSL implementation written\r
6  * by Eric Young (eay@cryptsoft.com).\r
7  * The implementation was written so as to conform with Netscapes SSL.\r
8  * \r
9  * This library is free for commercial and non-commercial use as long as\r
10  * the following conditions are aheared to.  The following conditions\r
11  * apply to all code found in this distribution, be it the RC4, RSA,\r
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation\r
13  * included with this distribution is covered by the same copyright terms\r
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).\r
15  * \r
16  * Copyright remains Eric Young's, and as such any Copyright notices in\r
17  * the code are not to be removed.\r
18  * If this package is used in a product, Eric Young should be given attribution\r
19  * as the author of the parts of the library used.\r
20  * This can be in the form of a textual message at program startup or\r
21  * in documentation (online or textual) provided with the package.\r
22  * \r
23  * Redistribution and use in source and binary forms, with or without\r
24  * modification, are permitted provided that the following conditions\r
25  * are met:\r
26  * 1. Redistributions of source code must retain the copyright\r
27  *    notice, this list of conditions and the following disclaimer.\r
28  * 2. Redistributions in binary form must reproduce the above copyright\r
29  *    notice, this list of conditions and the following disclaimer in the\r
30  *    documentation and/or other materials provided with the distribution.\r
31  * 3. All advertising materials mentioning features or use of this software\r
32  *    must display the following acknowledgement:\r
33  *    "This product includes cryptographic software written by\r
34  *     Eric Young (eay@cryptsoft.com)"\r
35  *    The word 'cryptographic' can be left out if the rouines from the library\r
36  *    being used are not cryptographic related :-).\r
37  * 4. If you include any Windows specific code (or a derivative thereof) from \r
38  *    the apps directory (application code) you must include an acknowledgement:\r
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"\r
40  * \r
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND\r
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\r
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\r
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r
51  * SUCH DAMAGE.\r
52  * \r
53  * The licence and distribution terms for any publically available version or\r
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be\r
55  * copied and put under another distribution licence\r
56  * [including the GNU Public Licence.]\r
57  */\r
58 \r
59 #ifndef HEADER_X509_H\r
60 #include <openssl/x509.h>\r
61 /* openssl/x509.h ends up #include-ing this file at about the only\r
62  * appropriate moment. */\r
63 #endif\r
64 \r
65 #ifndef HEADER_X509_VFY_H\r
66 #define HEADER_X509_VFY_H\r
67 \r
68 #include <openssl/opensslconf.h>\r
69 #ifndef OPENSSL_NO_LHASH\r
70 #include <openssl/lhash.h>\r
71 #endif\r
72 #include <openssl/bio.h>\r
73 #include <openssl/crypto.h>\r
74 #include <openssl/symhacks.h>\r
75 \r
76 #ifdef  __cplusplus\r
77 extern "C" {\r
78 #endif\r
79 \r
80 /* Outer object */\r
81 typedef struct x509_hash_dir_st\r
82         {\r
83         int num_dirs;\r
84         char **dirs;\r
85         int *dirs_type;\r
86         int num_dirs_alloced;\r
87         } X509_HASH_DIR_CTX;\r
88 \r
89 typedef struct x509_file_st\r
90         {\r
91         int num_paths;  /* number of paths to files or directories */\r
92         int num_alloced;\r
93         char **paths;   /* the list of paths or directories */\r
94         int *path_type;\r
95         } X509_CERT_FILE_CTX;\r
96 \r
97 /*******************************/\r
98 /*\r
99 SSL_CTX -> X509_STORE    \r
100                 -> X509_LOOKUP\r
101                         ->X509_LOOKUP_METHOD\r
102                 -> X509_LOOKUP\r
103                         ->X509_LOOKUP_METHOD\r
104  \r
105 SSL     -> X509_STORE_CTX\r
106                 ->X509_STORE    \r
107 \r
108 The X509_STORE holds the tables etc for verification stuff.\r
109 A X509_STORE_CTX is used while validating a single certificate.\r
110 The X509_STORE has X509_LOOKUPs for looking up certs.\r
111 The X509_STORE then calls a function to actually verify the\r
112 certificate chain.\r
113 */\r
114 \r
115 #define X509_LU_RETRY           -1\r
116 #define X509_LU_FAIL            0\r
117 #define X509_LU_X509            1\r
118 #define X509_LU_CRL             2\r
119 #define X509_LU_PKEY            3\r
120 \r
121 typedef struct x509_object_st\r
122         {\r
123         /* one of the above types */\r
124         int type;\r
125         union   {\r
126                 char *ptr;\r
127                 X509 *x509;\r
128                 X509_CRL *crl;\r
129                 EVP_PKEY *pkey;\r
130                 } data;\r
131         } X509_OBJECT;\r
132 \r
133 typedef struct x509_lookup_st X509_LOOKUP;\r
134 \r
135 DECLARE_STACK_OF(X509_LOOKUP)\r
136 DECLARE_STACK_OF(X509_OBJECT)\r
137 \r
138 /* This is a static that defines the function interface */\r
139 typedef struct x509_lookup_method_st\r
140         {\r
141         const char *name;\r
142         int (*new_item)(X509_LOOKUP *ctx);\r
143         void (*free)(X509_LOOKUP *ctx);\r
144         int (*init)(X509_LOOKUP *ctx);\r
145         int (*shutdown)(X509_LOOKUP *ctx);\r
146         int (*ctrl)(X509_LOOKUP *ctx,int cmd,const char *argc,long argl,\r
147                         char **ret);\r
148         int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name,\r
149                               X509_OBJECT *ret);\r
150         int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name,\r
151                                     ASN1_INTEGER *serial,X509_OBJECT *ret);\r
152         int (*get_by_fingerprint)(X509_LOOKUP *ctx,int type,\r
153                                   unsigned char *bytes,int len,\r
154                                   X509_OBJECT *ret);\r
155         int (*get_by_alias)(X509_LOOKUP *ctx,int type,char *str,int len,\r
156                             X509_OBJECT *ret);\r
157         } X509_LOOKUP_METHOD;\r
158 \r
159 /* This structure hold all parameters associated with a verify operation\r
160  * by including an X509_VERIFY_PARAM structure in related structures the\r
161  * parameters used can be customized\r
162  */\r
163 \r
164 typedef struct X509_VERIFY_PARAM_st\r
165         {\r
166         char *name;\r
167         time_t check_time;      /* Time to use */\r
168         unsigned long inh_flags; /* Inheritance flags */\r
169         unsigned long flags;    /* Various verify flags */\r
170         int purpose;            /* purpose to check untrusted certificates */\r
171         int trust;              /* trust setting to check */\r
172         int depth;              /* Verify depth */\r
173         STACK_OF(ASN1_OBJECT) *policies;        /* Permissible policies */\r
174         } X509_VERIFY_PARAM;\r
175 \r
176 DECLARE_STACK_OF(X509_VERIFY_PARAM)\r
177 \r
178 /* This is used to hold everything.  It is used for all certificate\r
179  * validation.  Once we have a certificate chain, the 'verify'\r
180  * function is then called to actually check the cert chain. */\r
181 struct x509_store_st\r
182         {\r
183         /* The following is a cache of trusted certs */\r
184         int cache;      /* if true, stash any hits */\r
185         STACK_OF(X509_OBJECT) *objs;    /* Cache of all objects */\r
186 \r
187         /* These are external lookup methods */\r
188         STACK_OF(X509_LOOKUP) *get_cert_methods;\r
189 \r
190         X509_VERIFY_PARAM *param;\r
191 \r
192         /* Callbacks for various operations */\r
193         int (*verify)(X509_STORE_CTX *ctx);     /* called to verify a certificate */\r
194         int (*verify_cb)(int ok,X509_STORE_CTX *ctx);   /* error callback */\r
195         int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */\r
196         int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */\r
197         int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */\r
198         int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */\r
199         int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */\r
200         int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */\r
201         int (*cleanup)(X509_STORE_CTX *ctx);\r
202 \r
203         CRYPTO_EX_DATA ex_data;\r
204         int references;\r
205         } /* X509_STORE */;\r
206 \r
207 int X509_STORE_set_depth(X509_STORE *store, int depth);\r
208 \r
209 #define X509_STORE_set_verify_cb_func(ctx,func) ((ctx)->verify_cb=(func))\r
210 #define X509_STORE_set_verify_func(ctx,func)    ((ctx)->verify=(func))\r
211 \r
212 /* This is the functions plus an instance of the local variables. */\r
213 struct x509_lookup_st\r
214         {\r
215         int init;                       /* have we been started */\r
216         int skip;                       /* don't use us. */\r
217         X509_LOOKUP_METHOD *method;     /* the functions */\r
218         char *method_data;              /* method data */\r
219 \r
220         X509_STORE *store_ctx;  /* who owns us */\r
221         } /* X509_LOOKUP */;\r
222 \r
223 /* This is a used when verifying cert chains.  Since the\r
224  * gathering of the cert chain can take some time (and have to be\r
225  * 'retried', this needs to be kept and passed around. */\r
226 struct x509_store_ctx_st      /* X509_STORE_CTX */\r
227         {\r
228         X509_STORE *ctx;\r
229         int current_method;     /* used when looking up certs */\r
230 \r
231         /* The following are set by the caller */\r
232         X509 *cert;             /* The cert to check */\r
233         STACK_OF(X509) *untrusted;      /* chain of X509s - untrusted - passed in */\r
234         STACK_OF(X509_CRL) *crls;       /* set of CRLs passed in */\r
235 \r
236         X509_VERIFY_PARAM *param;\r
237         void *other_ctx;        /* Other info for use with get_issuer() */\r
238 \r
239         /* Callbacks for various operations */\r
240         int (*verify)(X509_STORE_CTX *ctx);     /* called to verify a certificate */\r
241         int (*verify_cb)(int ok,X509_STORE_CTX *ctx);           /* error callback */\r
242         int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */\r
243         int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */\r
244         int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */\r
245         int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */\r
246         int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */\r
247         int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */\r
248         int (*check_policy)(X509_STORE_CTX *ctx);\r
249         int (*cleanup)(X509_STORE_CTX *ctx);\r
250 \r
251         /* The following is built up */\r
252         int valid;              /* if 0, rebuild chain */\r
253         int last_untrusted;     /* index of last untrusted cert */\r
254         STACK_OF(X509) *chain;          /* chain of X509s - built up and trusted */\r
255         X509_POLICY_TREE *tree; /* Valid policy tree */\r
256 \r
257         int explicit_policy;    /* Require explicit policy value */\r
258 \r
259         /* When something goes wrong, this is why */\r
260         int error_depth;\r
261         int error;\r
262         X509 *current_cert;\r
263         X509 *current_issuer;   /* cert currently being tested as valid issuer */\r
264         X509_CRL *current_crl;  /* current CRL */\r
265 \r
266         CRYPTO_EX_DATA ex_data;\r
267         } /* X509_STORE_CTX */;\r
268 \r
269 void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth);\r
270 \r
271 #define X509_STORE_CTX_set_app_data(ctx,data) \\r
272         X509_STORE_CTX_set_ex_data(ctx,0,data)\r
273 #define X509_STORE_CTX_get_app_data(ctx) \\r
274         X509_STORE_CTX_get_ex_data(ctx,0)\r
275 \r
276 #define X509_L_FILE_LOAD        1\r
277 #define X509_L_ADD_DIR          2\r
278 \r
279 #define X509_LOOKUP_load_file(x,name,type) \\r
280                 X509_LOOKUP_ctrl((x),X509_L_FILE_LOAD,(name),(long)(type),NULL)\r
281 \r
282 #define X509_LOOKUP_add_dir(x,name,type) \\r
283                 X509_LOOKUP_ctrl((x),X509_L_ADD_DIR,(name),(long)(type),NULL)\r
284 \r
285 #define         X509_V_OK                                       0\r
286 /* illegal error (for uninitialized values, to avoid X509_V_OK): 1 */\r
287 \r
288 #define         X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT            2\r
289 #define         X509_V_ERR_UNABLE_TO_GET_CRL                    3\r
290 #define         X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE     4\r
291 #define         X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE      5\r
292 #define         X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY   6\r
293 #define         X509_V_ERR_CERT_SIGNATURE_FAILURE               7\r
294 #define         X509_V_ERR_CRL_SIGNATURE_FAILURE                8\r
295 #define         X509_V_ERR_CERT_NOT_YET_VALID                   9\r
296 #define         X509_V_ERR_CERT_HAS_EXPIRED                     10\r
297 #define         X509_V_ERR_CRL_NOT_YET_VALID                    11\r
298 #define         X509_V_ERR_CRL_HAS_EXPIRED                      12\r
299 #define         X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD       13\r
300 #define         X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD        14\r
301 #define         X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD       15\r
302 #define         X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD       16\r
303 #define         X509_V_ERR_OUT_OF_MEM                           17\r
304 #define         X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT          18\r
305 #define         X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN            19\r
306 #define         X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY    20\r
307 #define         X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE      21\r
308 #define         X509_V_ERR_CERT_CHAIN_TOO_LONG                  22\r
309 #define         X509_V_ERR_CERT_REVOKED                         23\r
310 #define         X509_V_ERR_INVALID_CA                           24\r
311 #define         X509_V_ERR_PATH_LENGTH_EXCEEDED                 25\r
312 #define         X509_V_ERR_INVALID_PURPOSE                      26\r
313 #define         X509_V_ERR_CERT_UNTRUSTED                       27\r
314 #define         X509_V_ERR_CERT_REJECTED                        28\r
315 /* These are 'informational' when looking for issuer cert */\r
316 #define         X509_V_ERR_SUBJECT_ISSUER_MISMATCH              29\r
317 #define         X509_V_ERR_AKID_SKID_MISMATCH                   30\r
318 #define         X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH          31\r
319 #define         X509_V_ERR_KEYUSAGE_NO_CERTSIGN                 32\r
320 \r
321 #define         X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER             33\r
322 #define         X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION         34\r
323 #define         X509_V_ERR_KEYUSAGE_NO_CRL_SIGN                 35\r
324 #define         X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION     36\r
325 #define         X509_V_ERR_INVALID_NON_CA                       37\r
326 #define         X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED           38\r
327 #define         X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE        39\r
328 #define         X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED       40\r
329 \r
330 #define         X509_V_ERR_INVALID_EXTENSION                    41\r
331 #define         X509_V_ERR_INVALID_POLICY_EXTENSION             42\r
332 #define         X509_V_ERR_NO_EXPLICIT_POLICY                   43\r
333 \r
334 \r
335 /* The application is not happy */\r
336 #define         X509_V_ERR_APPLICATION_VERIFICATION             50\r
337 \r
338 /* Certificate verify flags */\r
339 \r
340 /* Send issuer+subject checks to verify_cb */\r
341 #define X509_V_FLAG_CB_ISSUER_CHECK             0x1\r
342 /* Use check time instead of current time */\r
343 #define X509_V_FLAG_USE_CHECK_TIME              0x2\r
344 /* Lookup CRLs */\r
345 #define X509_V_FLAG_CRL_CHECK                   0x4\r
346 /* Lookup CRLs for whole chain */\r
347 #define X509_V_FLAG_CRL_CHECK_ALL               0x8\r
348 /* Ignore unhandled critical extensions */\r
349 #define X509_V_FLAG_IGNORE_CRITICAL             0x10\r
350 /* Disable workarounds for broken certificates */\r
351 #define X509_V_FLAG_X509_STRICT                 0x20\r
352 /* Enable proxy certificate validation */\r
353 #define X509_V_FLAG_ALLOW_PROXY_CERTS           0x40\r
354 /* Enable policy checking */\r
355 #define X509_V_FLAG_POLICY_CHECK                0x80\r
356 /* Policy variable require-explicit-policy */\r
357 #define X509_V_FLAG_EXPLICIT_POLICY             0x100\r
358 /* Policy variable inhibit-any-policy */\r
359 #define X509_V_FLAG_INHIBIT_ANY                 0x200\r
360 /* Policy variable inhibit-policy-mapping */\r
361 #define X509_V_FLAG_INHIBIT_MAP                 0x400\r
362 /* Notify callback that policy is OK */\r
363 #define X509_V_FLAG_NOTIFY_POLICY               0x800\r
364 \r
365 #define X509_VP_FLAG_DEFAULT                    0x1\r
366 #define X509_VP_FLAG_OVERWRITE                  0x2\r
367 #define X509_VP_FLAG_RESET_FLAGS                0x4\r
368 #define X509_VP_FLAG_LOCKED                     0x8\r
369 #define X509_VP_FLAG_ONCE                       0x10\r
370 \r
371 /* Internal use: mask of policy related options */\r
372 #define X509_V_FLAG_POLICY_MASK (X509_V_FLAG_POLICY_CHECK \\r
373                                 | X509_V_FLAG_EXPLICIT_POLICY \\r
374                                 | X509_V_FLAG_INHIBIT_ANY \\r
375                                 | X509_V_FLAG_INHIBIT_MAP)\r
376 \r
377 int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h, int type,\r
378              X509_NAME *name);\r
379 X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h,int type,X509_NAME *name);\r
380 X509_OBJECT *X509_OBJECT_retrieve_match(STACK_OF(X509_OBJECT) *h, X509_OBJECT *x);\r
381 void X509_OBJECT_up_ref_count(X509_OBJECT *a);\r
382 void X509_OBJECT_free_contents(X509_OBJECT *a);\r
383 X509_STORE *X509_STORE_new(void );\r
384 void X509_STORE_free(X509_STORE *v);\r
385 \r
386 int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags);\r
387 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose);\r
388 int X509_STORE_set_trust(X509_STORE *ctx, int trust);\r
389 int X509_STORE_set1_param(X509_STORE *ctx, X509_VERIFY_PARAM *pm);\r
390 \r
391 X509_STORE_CTX *X509_STORE_CTX_new(void);\r
392 \r
393 int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x);\r
394 \r
395 void X509_STORE_CTX_free(X509_STORE_CTX *ctx);\r
396 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store,\r
397                          X509 *x509, STACK_OF(X509) *chain);\r
398 void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk);\r
399 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx);\r
400 \r
401 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m);\r
402 \r
403 X509_LOOKUP_METHOD *X509_LOOKUP_hash_dir(void);\r
404 X509_LOOKUP_METHOD *X509_LOOKUP_file(void);\r
405 \r
406 int X509_STORE_add_cert(X509_STORE *ctx, X509 *x);\r
407 int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x);\r
408 \r
409 int X509_STORE_get_by_subject(X509_STORE_CTX *vs,int type,X509_NAME *name,\r
410         X509_OBJECT *ret);\r
411 \r
412 int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc,\r
413         long argl, char **ret);\r
414 \r
415 #ifndef OPENSSL_NO_STDIO\r
416 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type);\r
417 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type);\r
418 int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type);\r
419 #endif\r
420 \r
421 \r
422 X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method);\r
423 void X509_LOOKUP_free(X509_LOOKUP *ctx);\r
424 int X509_LOOKUP_init(X509_LOOKUP *ctx);\r
425 int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name,\r
426         X509_OBJECT *ret);\r
427 int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name,\r
428         ASN1_INTEGER *serial, X509_OBJECT *ret);\r
429 int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type,\r
430         unsigned char *bytes, int len, X509_OBJECT *ret);\r
431 int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str,\r
432         int len, X509_OBJECT *ret);\r
433 int X509_LOOKUP_shutdown(X509_LOOKUP *ctx);\r
434 \r
435 #ifndef OPENSSL_NO_STDIO\r
436 int     X509_STORE_load_locations (X509_STORE *ctx,\r
437                 const char *file, const char *dir);\r
438 int     X509_STORE_set_default_paths(X509_STORE *ctx);\r
439 #endif\r
440 \r
441 int X509_STORE_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,\r
442         CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);\r
443 int     X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx,int idx,void *data);\r
444 void *  X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx,int idx);\r
445 int     X509_STORE_CTX_get_error(X509_STORE_CTX *ctx);\r
446 void    X509_STORE_CTX_set_error(X509_STORE_CTX *ctx,int s);\r
447 int     X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx);\r
448 X509 *  X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx);\r
449 STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx);\r
450 STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx);\r
451 void    X509_STORE_CTX_set_cert(X509_STORE_CTX *c,X509 *x);\r
452 void    X509_STORE_CTX_set_chain(X509_STORE_CTX *c,STACK_OF(X509) *sk);\r
453 void    X509_STORE_CTX_set0_crls(X509_STORE_CTX *c,STACK_OF(X509_CRL) *sk);\r
454 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose);\r
455 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust);\r
456 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,\r
457                                 int purpose, int trust);\r
458 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags);\r
459 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags,\r
460                                                                 time_t t);\r
461 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,\r
462                                   int (*verify_cb)(int, X509_STORE_CTX *));\r
463   \r
464 X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx);\r
465 int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx);\r
466 \r
467 X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx);\r
468 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param);\r
469 int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name);\r
470 \r
471 /* X509_VERIFY_PARAM functions */\r
472 \r
473 X509_VERIFY_PARAM *X509_VERIFY_PARAM_new(void);\r
474 void X509_VERIFY_PARAM_free(X509_VERIFY_PARAM *param);\r
475 int X509_VERIFY_PARAM_inherit(X509_VERIFY_PARAM *to,\r
476                                                 const X509_VERIFY_PARAM *from);\r
477 int X509_VERIFY_PARAM_set1(X509_VERIFY_PARAM *to, \r
478                                                 const X509_VERIFY_PARAM *from);\r
479 int X509_VERIFY_PARAM_set1_name(X509_VERIFY_PARAM *param, const char *name);\r
480 int X509_VERIFY_PARAM_set_flags(X509_VERIFY_PARAM *param, unsigned long flags);\r
481 int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose);\r
482 int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust);\r
483 void X509_VERIFY_PARAM_set_depth(X509_VERIFY_PARAM *param, int depth);\r
484 void X509_VERIFY_PARAM_set_time(X509_VERIFY_PARAM *param, time_t t);\r
485 int X509_VERIFY_PARAM_add0_policy(X509_VERIFY_PARAM *param,\r
486                                                 ASN1_OBJECT *policy);\r
487 int X509_VERIFY_PARAM_set1_policies(X509_VERIFY_PARAM *param, \r
488                                         STACK_OF(ASN1_OBJECT) *policies);\r
489 int X509_VERIFY_PARAM_get_depth(const X509_VERIFY_PARAM *param);\r
490 \r
491 int X509_VERIFY_PARAM_add0_table(X509_VERIFY_PARAM *param);\r
492 const X509_VERIFY_PARAM *X509_VERIFY_PARAM_lookup(const char *name);\r
493 void X509_VERIFY_PARAM_table_cleanup(void);\r
494 \r
495 int X509_policy_check(X509_POLICY_TREE **ptree, int *pexplicit_policy,\r
496                         STACK_OF(X509) *certs,\r
497                         STACK_OF(ASN1_OBJECT) *policy_oids,\r
498                         unsigned int flags);\r
499 \r
500 void X509_policy_tree_free(X509_POLICY_TREE *tree);\r
501 \r
502 int X509_policy_tree_level_count(const X509_POLICY_TREE *tree);\r
503 X509_POLICY_LEVEL *\r
504         X509_policy_tree_get0_level(const X509_POLICY_TREE *tree, int i);\r
505 \r
506 STACK_OF(X509_POLICY_NODE) *\r
507         X509_policy_tree_get0_policies(const X509_POLICY_TREE *tree);\r
508 \r
509 STACK_OF(X509_POLICY_NODE) *\r
510         X509_policy_tree_get0_user_policies(const X509_POLICY_TREE *tree);\r
511 \r
512 int X509_policy_level_node_count(X509_POLICY_LEVEL *level);\r
513 \r
514 X509_POLICY_NODE *X509_policy_level_get0_node(X509_POLICY_LEVEL *level, int i);\r
515 \r
516 const ASN1_OBJECT *X509_policy_node_get0_policy(const X509_POLICY_NODE *node);\r
517 \r
518 STACK_OF(POLICYQUALINFO) *\r
519         X509_policy_node_get0_qualifiers(const X509_POLICY_NODE *node);\r
520 const X509_POLICY_NODE *\r
521         X509_policy_node_get0_parent(const X509_POLICY_NODE *node);\r
522 \r
523 #ifdef  __cplusplus\r
524 }\r
525 #endif\r
526 #endif\r
527 \r