mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
ed6ebb696e
* sm/gpgsm.h (MAX_FINGERPRINT_LEN): New. * sm/keydb.c (struct keydb_local_s): Change definition of search_result. (keydb_get_cert): Implement keyboxd mode. (keydb_get_flags): Temporary hack for keyboxd mode. Needs to be fixed. (struct store_parm_s, store_inq_cb): New. (keydb_insert_cert): Implement keyboxd mode. (keydb_locate_writable): Make static. (keydb_search_reset): Implement keyboxd mode. (search_status_cb): New. (keydb_search): Implement keyboxd mode. Replace return code -1 by GPG_ERR_NOT_FOUND. (keydb_set_cert_flags): Replace return code -1 by GPG_ERR_NOT_FOUND. * sm/keylist.c (list_cert_colon): Adjust for replacement of -1 by GPG_ERR_NOT_FOUND. (list_internal_keys): Ditto. * sm/sign.c (add_certificate_list): Ditto. * sm/certchain.c (find_up_search_by_keyid): Ditto. (find_up_external, find_up, find_up_dirmngr): Ditto. (gpgsm_walk_cert_chain): Ditto. (get_regtp_ca_info): Ditto. * sm/certlist.c (gpgsm_add_to_certlist): Ditto. (gpgsm_find_cert): Ditto. * sm/delete.c (delete_one): Ditto. * sm/export.c (gpgsm_export): Ditto. (gpgsm_p12_export): Ditto. * sm/import.c (gpgsm_import_files): Ditto. -- Note that keyboxd is not yet able to handle the ephemeral flag. This needs fixing here and in keyboxd. Delete et al. is also not yet implemented. A basic key listing works, though. Signed-off-by: Werner Koch <wk@gnupg.org>
79 lines
3.0 KiB
C
79 lines
3.0 KiB
C
/* 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef GNUPG_KEYDB_H
|
|
#define GNUPG_KEYDB_H
|
|
|
|
#include <ksba.h>
|
|
|
|
#include "../common/userids.h"
|
|
|
|
typedef struct keydb_handle *KEYDB_HANDLE;
|
|
|
|
/* Flag value used with KEYBOX_FLAG_VALIDITY. */
|
|
#define VALIDITY_REVOKED (1<<5)
|
|
|
|
|
|
/*-- keydb.c --*/
|
|
void gpgsm_keydb_deinit_session_data (ctrl_t ctrl);
|
|
gpg_error_t keydb_add_resource (ctrl_t ctrl, const char *url,
|
|
int force, int *auto_created);
|
|
KEYDB_HANDLE keydb_new (ctrl_t ctrl);
|
|
void keydb_release (KEYDB_HANDLE hd);
|
|
int keydb_set_ephemeral (KEYDB_HANDLE hd, int yes);
|
|
const char *keydb_get_resource_name (KEYDB_HANDLE hd);
|
|
gpg_error_t keydb_lock (KEYDB_HANDLE hd);
|
|
|
|
gpg_error_t keydb_get_flags (KEYDB_HANDLE hd, int which, int idx,
|
|
unsigned int *value);
|
|
gpg_error_t keydb_set_flags (KEYDB_HANDLE hd, int which, int idx,
|
|
unsigned int value);
|
|
void keydb_push_found_state (KEYDB_HANDLE hd);
|
|
void keydb_pop_found_state (KEYDB_HANDLE hd);
|
|
int keydb_get_cert (KEYDB_HANDLE hd, ksba_cert_t *r_cert);
|
|
gpg_error_t keydb_insert_cert (KEYDB_HANDLE hd, ksba_cert_t cert);
|
|
gpg_error_t keydb_update_cert (KEYDB_HANDLE hd, ksba_cert_t cert);
|
|
|
|
gpg_error_t keydb_delete (KEYDB_HANDLE hd);
|
|
|
|
void keydb_rebuild_caches (void);
|
|
|
|
gpg_error_t keydb_search_reset (KEYDB_HANDLE hd);
|
|
gpg_error_t keydb_search (ctrl_t ctrl, KEYDB_HANDLE hd,
|
|
KEYDB_SEARCH_DESC *desc, size_t ndesc);
|
|
int keydb_search_first (ctrl_t ctrl, KEYDB_HANDLE hd);
|
|
int keydb_search_next (ctrl_t ctrl, KEYDB_HANDLE hd);
|
|
int keydb_search_kid (ctrl_t ctrl, KEYDB_HANDLE hd, u32 *kid);
|
|
int keydb_search_fpr (ctrl_t ctrl, KEYDB_HANDLE hd, const byte *fpr);
|
|
int keydb_search_issuer (ctrl_t ctrl, KEYDB_HANDLE hd, const char *issuer);
|
|
int keydb_search_issuer_sn (ctrl_t ctrl, KEYDB_HANDLE hd,
|
|
const char *issuer, const unsigned char *serial);
|
|
int keydb_search_subject (ctrl_t ctrl, KEYDB_HANDLE hd, const char *issuer);
|
|
|
|
int keydb_store_cert (ctrl_t ctrl, ksba_cert_t cert, int ephemeral,
|
|
int *existed);
|
|
gpg_error_t keydb_set_cert_flags (ctrl_t ctrl, ksba_cert_t cert, int ephemeral,
|
|
int which, int idx,
|
|
unsigned int mask, unsigned int value);
|
|
|
|
void keydb_clear_some_cert_flags (ctrl_t ctrl, strlist_t names);
|
|
|
|
|
|
#endif /*GNUPG_KEYDB_H*/
|