chiark / gitweb /
dirmngr: Drop useless housekeeping.
[gnupg2.git] / dirmngr / crlcache.h
1 /* crlcache.h - LDAP access
2  *      Copyright (C) 2002 Klarälvdalens Datakonsult AB
3  *
4  * This file is part of DirMngr.
5  *
6  * DirMngr is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * DirMngr is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19  */
20
21 #ifndef CRLCACHE_H
22 #define CRLCACHE_H
23
24
25 typedef enum
26   {
27     CRL_CACHE_VALID = 0,
28     CRL_CACHE_INVALID,
29     CRL_CACHE_DONTKNOW,
30     CRL_CACHE_CANTUSE
31   }
32 crl_cache_result_t;
33
34 typedef enum foo
35   {
36     CRL_SIG_OK = 0,
37     CRL_SIG_NOT_OK,
38     CRL_TOO_OLD,
39     CRL_SIG_ERROR,
40     CRL_GENERAL_ERROR
41   }
42 crl_sig_result_t;
43
44 struct crl_cache_entry_s;
45 typedef struct crl_cache_entry_s *crl_cache_entry_t;
46
47
48 void crl_cache_init (void);
49 void crl_cache_deinit (void);
50 int crl_cache_flush(void);
51
52 crl_cache_result_t crl_cache_isvalid (ctrl_t ctrl,
53                                       const char *issuer_hash,
54                                       const char *cert_id,
55                                       int force_refresh);
56
57 gpg_error_t crl_cache_cert_isvalid (ctrl_t ctrl, ksba_cert_t cert,
58                                     int force_refresh);
59
60 gpg_error_t crl_cache_insert (ctrl_t ctrl, const char *url,
61                               ksba_reader_t reader);
62
63 gpg_error_t crl_cache_list (estream_t fp);
64
65 gpg_error_t crl_cache_load (ctrl_t ctrl, const char *filename);
66
67 gpg_error_t crl_cache_reload_crl (ctrl_t ctrl, ksba_cert_t cert);
68
69
70 #endif /* CRLCACHE_H */