]> the.earth.li Git - onak.git/blob - cleankey.h
Add ability to drop overly large packets
[onak.git] / cleankey.h
1 /*
2  * cleankey.h - Routines to look for common key problems and clean them up.
3  *
4  * Copyright 2004 Jonathan McDowell <noodles@earth.li>
5  *
6  * This program is free software: you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the Free
8  * Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program.  If not, see <https://www.gnu.org/licenses/>.
17  */
18
19 #ifndef __CLEANKEY_H__
20 #define __CLEANKEY_H__
21
22 #include "keystructs.h"
23
24 #define ONAK_CLEAN_CHECK_SIGHASH        (1 << 0)
25 #define ONAK_CLEAN_LARGE_PACKETS        (1 << 1)
26 #define ONAK_CLEAN_ALL                  (uint64_t) -1
27
28 /**
29  *      cleankeys - Apply all available cleaning options on a list of keys.
30  *      @publickey: The list of keys to clean.
31  *      @policies: The cleaning policies to apply.
32  *
33  *      Applies the requested cleaning policies to a list of keys. These are
34  *      specified from the ONAK_CLEAN_* set of flags, or ONAK_CLEAN_ALL to
35  *      apply all available cleaning options. Returns 0 if no changes were
36  *      made, otherwise the number of keys cleaned. Note that some options
37  *      may result in keys being removed entirely from the list.
38  */
39 int cleankeys(struct openpgp_publickey **keys, uint64_t policies);
40
41 #endif