2001-11-10 19:10:11 +01:00
|
|
|
/* keydb.h - Key database
|
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GNUPG_KEYDB_H
|
|
|
|
#define GNUPG_KEYDB_H
|
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
#include <ksba.h>
|
|
|
|
|
|
|
|
#include "../kbx/keybox-search-desc.h"
|
|
|
|
|
2001-11-10 19:10:11 +01:00
|
|
|
typedef struct keydb_handle *KEYDB_HANDLE;
|
|
|
|
|
|
|
|
|
|
|
|
/*-- keydb.c --*/
|
|
|
|
int keydb_add_resource (const char *url, int force, int secret);
|
|
|
|
KEYDB_HANDLE keydb_new (int secret);
|
|
|
|
void keydb_release (KEYDB_HANDLE hd);
|
2002-06-19 10:30:10 +02:00
|
|
|
int keydb_set_ephemeral (KEYDB_HANDLE hd, int yes);
|
2001-11-10 19:10:11 +01:00
|
|
|
const char *keydb_get_resource_name (KEYDB_HANDLE hd);
|
2001-11-13 13:50:14 +01:00
|
|
|
|
|
|
|
#if 0 /* pgp stuff */
|
2001-11-10 19:10:11 +01:00
|
|
|
int keydb_get_keyblock (KEYDB_HANDLE hd, KBNODE *ret_kb);
|
|
|
|
int keydb_update_keyblock (KEYDB_HANDLE hd, KBNODE kb);
|
|
|
|
int keydb_insert_keyblock (KEYDB_HANDLE hd, KBNODE kb);
|
2001-11-13 13:50:14 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
int keydb_get_cert (KEYDB_HANDLE hd, KsbaCert *r_cert);
|
|
|
|
int keydb_insert_cert (KEYDB_HANDLE hd, KsbaCert cert);
|
|
|
|
int keydb_update_cert (KEYDB_HANDLE hd, KsbaCert cert);
|
|
|
|
|
|
|
|
int keydb_delete (KEYDB_HANDLE hd);
|
|
|
|
|
2001-11-10 19:10:11 +01:00
|
|
|
int keydb_locate_writable (KEYDB_HANDLE hd, const char *reserved);
|
|
|
|
void keydb_rebuild_caches (void);
|
2001-11-13 13:50:14 +01:00
|
|
|
|
2001-11-10 19:10:11 +01:00
|
|
|
int keydb_search_reset (KEYDB_HANDLE hd);
|
|
|
|
int keydb_search (KEYDB_HANDLE hd, KEYDB_SEARCH_DESC *desc, size_t ndesc);
|
|
|
|
int keydb_search_first (KEYDB_HANDLE hd);
|
|
|
|
int keydb_search_next (KEYDB_HANDLE hd);
|
|
|
|
int keydb_search_kid (KEYDB_HANDLE hd, u32 *kid);
|
|
|
|
int keydb_search_fpr (KEYDB_HANDLE hd, const byte *fpr);
|
2001-11-13 13:50:14 +01:00
|
|
|
int keydb_search_issuer (KEYDB_HANDLE hd, const char *issuer);
|
|
|
|
int keydb_search_issuer_sn (KEYDB_HANDLE hd,
|
|
|
|
const char *issuer, const unsigned char *serial);
|
2001-11-16 18:56:23 +01:00
|
|
|
int keydb_search_subject (KEYDB_HANDLE hd, const char *issuer);
|
2001-11-10 19:10:11 +01:00
|
|
|
|
2001-12-11 13:31:04 +01:00
|
|
|
int keydb_classify_name (const char *name, KEYDB_SEARCH_DESC *desc);
|
|
|
|
|
2002-07-02 12:40:12 +02:00
|
|
|
int keydb_store_cert (KsbaCert cert, int ephemeral, int *existed);
|
2002-01-15 14:02:47 +01:00
|
|
|
|
2001-11-10 19:10:11 +01:00
|
|
|
|
|
|
|
#endif /*GNUPG_KEYDB_H*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|