]> the.earth.li Git - onak.git/blob - keyarray.h
Add ability to drop overly large packets
[onak.git] / keyarray.h
1 /**
2  * @file keyarray.h
3  * @brief Routines to maintain a sorted array of keyids.
4  *
5  * Copyright 2004 Jonathan McDowell <noodles@earth.li>
6  *
7  * This program is free software: you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the Free
9  * Software Foundation; version 2 of the License.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14  * more details.
15  *
16  * You should have received a copy of the GNU General Public License along with
17  * this program.  If not, see <https://www.gnu.org/licenses/>.
18  */
19
20 #ifndef __KEYARRAY_H__
21 #define __KEYARRAY_H__
22
23 #include <stdbool.h>
24 #include <stdint.h>
25
26 #include "keystructs.h"
27
28 /**
29  * @brief A sorted array of fingerprints
30  *
31  * Holds a sorted list of fingerprints, with room for growth - has details of
32  * both the total size of the array as well as the current number of elements.
33  */
34 struct keyarray {
35         /** The array of key fingerprints */
36         struct openpgp_fingerprint *keys;
37         /** Number of fingerprints in the array */
38         size_t count;
39         /** Total size of the array */
40         size_t size;
41 };
42
43 /**
44  * @brief Given a key array figure out of a key id is present
45  * @param array Pointer to the key array
46  * @param key The keyid to look for
47  */
48 bool array_find(struct keyarray *array, struct openpgp_fingerprint *fp);
49
50 /**
51  * @brief Free a key array
52  * @param array Pointer to the key array to free
53  */
54 void array_free(struct keyarray *array);
55
56 /**
57  * @brief Add a keyid to a key array
58  * @param array Pointer to the key array
59  * @param key The keyid to add
60  *
61  * Checks if the key already exists in the key array and if not adds it.
62  * Returns true if the key was added, false if it was found to be already
63  * present.
64  */
65 bool array_add(struct keyarray *array, struct openpgp_fingerprint *fp);
66
67 #endif /* __KEYARRAY_H__ */