1 /* keydb.h - Key database
2 * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
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 2 of the License, or
9 * (at your option) any later version.
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.
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
26 #include "../kbx/keybox-search-desc.h"
28 typedef struct keydb_handle
*KEYDB_HANDLE
;
32 int keydb_add_resource (const char *url
, int force
, int secret
);
33 KEYDB_HANDLE
keydb_new (int secret
);
34 void keydb_release (KEYDB_HANDLE hd
);
35 const char *keydb_get_resource_name (KEYDB_HANDLE hd
);
38 int keydb_get_keyblock (KEYDB_HANDLE hd
, KBNODE
*ret_kb
);
39 int keydb_update_keyblock (KEYDB_HANDLE hd
, KBNODE kb
);
40 int keydb_insert_keyblock (KEYDB_HANDLE hd
, KBNODE kb
);
43 int keydb_get_cert (KEYDB_HANDLE hd
, KsbaCert
*r_cert
);
44 int keydb_insert_cert (KEYDB_HANDLE hd
, KsbaCert cert
);
45 int keydb_update_cert (KEYDB_HANDLE hd
, KsbaCert cert
);
47 int keydb_delete (KEYDB_HANDLE hd
);
49 int keydb_locate_writable (KEYDB_HANDLE hd
, const char *reserved
);
50 void keydb_rebuild_caches (void);
52 int keydb_search_reset (KEYDB_HANDLE hd
);
53 int keydb_search (KEYDB_HANDLE hd
, KEYDB_SEARCH_DESC
*desc
, size_t ndesc
);
54 int keydb_search_first (KEYDB_HANDLE hd
);
55 int keydb_search_next (KEYDB_HANDLE hd
);
56 int keydb_search_kid (KEYDB_HANDLE hd
, u32
*kid
);
57 int keydb_search_fpr (KEYDB_HANDLE hd
, const byte
*fpr
);
58 int keydb_search_issuer (KEYDB_HANDLE hd
, const char *issuer
);
59 int keydb_search_issuer_sn (KEYDB_HANDLE hd
,
60 const char *issuer
, const unsigned char *serial
);
61 int keydb_search_subject (KEYDB_HANDLE hd
, const char *issuer
);
63 int keydb_classify_name (const char *name
, KEYDB_SEARCH_DESC
*desc
);
65 int keydb_store_cert (KsbaCert cert
);
68 #endif /*GNUPG_KEYDB_H*/