mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
74e4dd3668
* g10/options.h (EXPORT_REALCLEAN): New. Also re-assign other values to keep them more in sync with the corresponding import values. * g10/export.c (parse_export_options): Add "export-realclean". (do_export_stream): Call clean_all_uids directly with the options arg. * g10/import.c (import_one_real): Change for direct use of options in clean_all_uids. * g10/key-clean.c (is_trusted_key_sig): New. Stub for now. (clean_sigs_from_uid): Re-purpose self_only to a general options arg. Implement EXPORT_REALCLEAN code path. (clean_one_uid): Re-purpose self_only to a general options arg. (clean_all_uids): Ditto. * g10/keyedit.c (keyedit_menu): Use EXPORT_MINIMAL instead of a simple flag. (menu_clean): Re-purpose self_only to a general options arg. * g10/keyid.c (fpr20_from_pk): Factor code out to .... (fpr20_from_fpr): new. Remove useless case for ARRAY being NULL. * g10/tdbio.c (tdbio_search_trust_byfpr): Add arg fprlen and use fpr20_from_fpr if needed. (tdbio_search_trust_bypk): Pass 20 for the fingerprint length. -- Note that this code has no function yet. Another patch will follow to extract the trusted-keys flag from the trustdb.
54 lines
2.0 KiB
C
54 lines
2.0 KiB
C
/* key-clean.h - Functions to clean a keyblock
|
|
* Copyright (C) 2018 Werner Koch
|
|
*
|
|
* 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/>.
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#ifndef GNUPG_G10_KEY_CLEAN_H
|
|
#define GNUPG_G10_KEY_CLEAN_H
|
|
|
|
#include "gpg.h"
|
|
|
|
/* No explicit cleaning. */
|
|
#define KEY_CLEAN_NONE 0
|
|
/* Remove only invalid subkeys (ie. missing key-bindings) */
|
|
#define KEY_CLEAN_INVALID 1
|
|
/* Remove expired encryption keys */
|
|
#define KEY_CLEAN_ENCR 2
|
|
/* Remove expired authentication and encryption keys. */
|
|
#define KEY_CLEAN_AUTHENCR 3
|
|
/* Remove all expired subkeys. */
|
|
#define KEY_CLEAN_ALL 4
|
|
|
|
|
|
void mark_usable_uid_certs (ctrl_t ctrl, kbnode_t keyblock, kbnode_t uidnode,
|
|
u32 *main_kid, struct key_item *klist,
|
|
u32 curtime, u32 *next_expire);
|
|
|
|
void clean_one_uid (ctrl_t ctrl, kbnode_t keyblock, kbnode_t uidnode,
|
|
int noisy, unsigned int options,
|
|
int *uids_cleaned, int *sigs_cleaned);
|
|
void clean_all_uids (ctrl_t ctrl, kbnode_t keyblock,
|
|
int noisy, unsigned int options,
|
|
int *uids_cleaned,int *sigs_cleaned);
|
|
void clean_all_subkeys (ctrl_t ctrl, kbnode_t keyblock,
|
|
int noisy, int clean_level,
|
|
int *subkeys_cleaned, int *sigs_cleaned);
|
|
|
|
|
|
#endif /*GNUPG_G10_KEY_CLEAN_H*/
|