X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=cleankey.h;h=22a7e45c94c58b65f5c8ecc7558f90afe7de1b8c;hb=9ce8c6ced68d45b462abb4c6531b6476f4d1e681;hp=0d892021be9bf3211bd34c235c9adcd469747621;hpb=394938c479925750ffe56c28d281945ba4003a14;p=onak.git diff --git a/cleankey.h b/cleankey.h index 0d89202..22a7e45 100644 --- a/cleankey.h +++ b/cleankey.h @@ -1,9 +1,19 @@ /* * cleankey.h - Routines to look for common key problems and clean them up. * - * Jonathan McDowell + * Copyright 2004 Jonathan McDowell * - * Copyright 2004 Project Purple + * This program 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; version 2 of the License. + * + * This program 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 . */ #ifndef __CLEANKEY_H__ @@ -11,14 +21,23 @@ #include "keystructs.h" +#define ONAK_CLEAN_CHECK_SIGHASH (1 << 0) +#define ONAK_CLEAN_LARGE_PACKETS (1 << 1) +#define ONAK_CLEAN_DROP_V3_KEYS (1 << 2) +#define ONAK_CLEAN_UPDATE_ONLY (1 << 3) +#define ONAK_CLEAN_ALL (uint64_t) -1 + /** * cleankeys - Apply all available cleaning options on a list of keys. * @publickey: The list of keys to clean. + * @policies: The cleaning policies to apply. * - * Applies all the cleaning options we can (eg duplicate key ids) to a - * list of keys. Returns 0 if no changes were made, otherwise the number - * of keys cleaned. + * Applies the requested cleaning policies to a list of keys. These are + * specified from the ONAK_CLEAN_* set of flags, or ONAK_CLEAN_ALL to + * apply all available cleaning options. Returns 0 if no changes were + * made, otherwise the number of keys cleaned. Note that some options + * may result in keys being removed entirely from the list. */ -int cleankeys(struct openpgp_publickey *keys); +int cleankeys(struct openpgp_publickey **keys, uint64_t policies); #endif