X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=keyarray.h;h=0a137a618f22f9cbd2325559361a45396fedb816;hb=37801dca09e004c214604ae66323a628e100258d;hp=86c5991f2777721e20ea043056b13b1aaa37db92;hpb=5e1b22d763640c4d7a09d07920403d8d491b4410;p=onak.git diff --git a/keyarray.h b/keyarray.h index 86c5991..0a137a6 100644 --- a/keyarray.h +++ b/keyarray.h @@ -1,5 +1,6 @@ -/* - * keyarray.h - routines to maintain a sorted array of keyids. +/** + * @file keyarray.h + * @brief Routines to maintain a sorted array of keyids. * * Copyright 2004 Jonathan McDowell * @@ -13,8 +14,7 @@ * more details. * * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * this program. If not, see . */ #ifndef __KEYARRAY_H__ @@ -23,14 +23,45 @@ #include #include +#include "keystructs.h" + +/** + * @brief A sorted array of fingerprints + * + * Holds a sorted list of fingerprints, with room for growth - has details of + * both the total size of the array as well as the current number of elements. + */ struct keyarray { - uint64_t *keys; + /** The array of key fingerprints */ + struct openpgp_fingerprint *keys; + /** Number of fingerprints in the array */ size_t count; + /** Total size of the array */ size_t size; }; -bool array_find(struct keyarray *array, uint64_t key); +/** + * @brief Given a key array figure out of a key id is present + * @param array Pointer to the key array + * @param key The keyid to look for + */ +bool array_find(struct keyarray *array, struct openpgp_fingerprint *fp); + +/** + * @brief Free a key array + * @param array Pointer to the key array to free + */ void array_free(struct keyarray *array); -bool array_add(struct keyarray *array, uint64_t key); + +/** + * @brief Add a keyid to a key array + * @param array Pointer to the key array + * @param key The keyid to add + * + * Checks if the key already exists in the key array and if not adds it. + * Returns true if the key was added, false if it was found to be already + * present. + */ +bool array_add(struct keyarray *array, struct openpgp_fingerprint *fp); #endif /* __KEYARRAY_H__ */