a440c504796858a972bb0dabcda38dde07e78c69
[platform/upstream/gpg2.git] / sm / keydb.h
1 /* keydb.h - Key database
2  * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
3  *
4  * This file is part of GnuPG.
5  *
6  * GnuPG 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 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GnuPG 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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef GNUPG_KEYDB_H
21 #define GNUPG_KEYDB_H
22
23 #include <ksba.h>
24
25 #include "../kbx/keybox-search-desc.h"
26
27 typedef struct keydb_handle *KEYDB_HANDLE;
28
29 /* Flag value used with KEYBOX_FLAG_VALIDITY. */
30 #define VALIDITY_REVOKED (1<<5)
31
32
33 /*-- keydb.c --*/
34 int keydb_add_resource (const char *url, int force, int secret,
35                         int *auto_created);
36 KEYDB_HANDLE keydb_new (int secret);
37 void keydb_release (KEYDB_HANDLE hd);
38 int keydb_set_ephemeral (KEYDB_HANDLE hd, int yes);
39 const char *keydb_get_resource_name (KEYDB_HANDLE hd);
40 gpg_error_t keydb_lock (KEYDB_HANDLE hd);
41
42 #if 0 /* pgp stuff */
43 int keydb_get_keyblock (KEYDB_HANDLE hd, KBNODE *ret_kb);
44 int keydb_update_keyblock (KEYDB_HANDLE hd, KBNODE kb);
45 int keydb_insert_keyblock (KEYDB_HANDLE hd, KBNODE kb);
46 #endif
47
48 gpg_error_t keydb_get_flags (KEYDB_HANDLE hd, int which, int idx,
49                              unsigned int *value);
50 gpg_error_t keydb_set_flags (KEYDB_HANDLE hd, int which, int idx,
51                              unsigned int value);
52 int keydb_get_cert (KEYDB_HANDLE hd, ksba_cert_t *r_cert);
53 int keydb_insert_cert (KEYDB_HANDLE hd, ksba_cert_t cert);
54 int keydb_update_cert (KEYDB_HANDLE hd, ksba_cert_t cert);
55
56 int keydb_delete (KEYDB_HANDLE hd, int unlock);
57
58 int keydb_locate_writable (KEYDB_HANDLE hd, const char *reserved);
59 void keydb_rebuild_caches (void);
60
61 int keydb_search_reset (KEYDB_HANDLE hd);
62 int keydb_search (KEYDB_HANDLE hd, KEYDB_SEARCH_DESC *desc, size_t ndesc);
63 int keydb_search_first (KEYDB_HANDLE hd);
64 int keydb_search_next (KEYDB_HANDLE hd);
65 int keydb_search_kid (KEYDB_HANDLE hd, u32 *kid);
66 int keydb_search_fpr (KEYDB_HANDLE hd, const byte *fpr);
67 int keydb_search_issuer (KEYDB_HANDLE hd, const char *issuer);
68 int keydb_search_issuer_sn (KEYDB_HANDLE hd,
69                             const char *issuer, const unsigned char *serial);
70 int keydb_search_subject (KEYDB_HANDLE hd, const char *issuer);
71
72 int keydb_classify_name (const char *name, KEYDB_SEARCH_DESC *desc);
73
74 int keydb_store_cert (ksba_cert_t cert, int ephemeral, int *existed);
75 gpg_error_t keydb_set_cert_flags (ksba_cert_t cert, int ephemeral,
76                                   int which, int idx,
77                                   unsigned int mask, unsigned int value);
78
79 void keydb_clear_some_cert_flags (ctrl_t ctrl, strlist_t names);
80
81
82 #endif /*GNUPG_KEYDB_H*/
83
84
85
86