Update Debian Vcs-* fields to point to git repository
[onak.git] / keyid.h
1 /*
2  * keyid.h - Routines to calculate key IDs.
3  *
4  * Copyright 2002,2011 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, write to the Free Software Foundation, Inc., 51
17  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __KEYID_H__
21 #define __KEYID_H__
22
23 #include <inttypes.h>
24
25 #include "keystructs.h"
26 #include "onak.h"
27
28 /**
29  *      get_keyid - Given a public key returns the keyid.
30  *      @publickey: The key to calculate the id for.
31  *      @keeyid: The returned keyid
32  *
33  *      This function returns the key id for a given public key.
34  */
35 onak_status_t get_keyid(struct openpgp_publickey *publickey, uint64_t *keyid);
36
37 /**
38  *      get_fingerprint - Given a public key returns the fingerprint.
39  *      @publickey: The key to calculate the id for.
40  *      @fingerprint: The fingerprint (must be at least 20 bytes of space).
41  *      @len: The length of the returned fingerprint.
42  *
43  *      This function returns the fingerprint for a given public key. As Type 3
44  *      fingerprints are 16 bytes and Type 4 are 20 the len field indicates
45  *      which we've returned.
46  */
47 onak_status_t get_fingerprint(struct openpgp_packet *packet,
48         unsigned char *fingerprint,
49         size_t *len);
50
51 /**
52  *      get_packetid - Given a PGP packet returns the keyid.
53  *      @packet: The packet to calculate the id for.
54  *      @keyid: The returned keyid
55  *
56  *      This function returns the key id for a given PGP packet.
57  */
58 onak_status_t get_packetid(struct openpgp_packet *packet, uint64_t *keyid);
59
60 /**
61  *      get_skshash - Given a public key returns the SKS hash for it.
62  *      @publickey: The key to calculate the hash for.
63  *      @skshash: Hash structure to sort the result in.
64  *
65  *      This function returns the SKS hash for a given public key. This
66  *      is an MD5 hash over a sorted list of all of the packets that
67  *      make up the key. The caller should allocate the memory for the
68  *      hash.
69  */
70 onak_status_t get_skshash(struct openpgp_publickey *publickey,
71         struct skshash *hash);
72
73 /**
74  *      parse_skshash - Parse a string into an SKS hash structure.
75  *      @search: The string representing the SKS hash.
76  *      @hash: A pointer to the structure to store the hash in.
77  *
78  *      Takes a string and tries to parse it as an SKS hash hex
79  *      representation. Puts the hash into the supplied structure
80  *      if successful. Returns 1 if we parsed something ok, 0 if
81  *      we failed.
82  */
83 int parse_skshash(char *search, struct skshash *hash);
84
85 #endif /* __KEYID_H__ */