Update Debian Vcs-* fields to point to git repository
[onak.git] / photoid.c
1 /*
2  * photoid.c - Routines for OpenPGP id photos.
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, write to the Free Software Foundation, Inc., 51
17  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #include <inttypes.h>
21 #include <stdbool.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24
25 #include "keyid.h"
26 #include "keyindex.h"
27 #include "keystructs.h"
28 #include "onak.h"
29 #include "photoid.h"
30
31 /**
32  *      getphoto - returns an OpenPGP packet containing a photo id.
33  *      @key: The key to return the photo id from.
34  *      @index: The index of the photo to return.
35  *      @photo: The photo data.
36  *      @length: The length of the photo data.
37  *
38  *      This function returns the photo data contained in a supplied key.
39  *      index specifies which photo id should be returned. If there's no such
40  *      photo id NULL is returned. The returned data pointer refers to the key
41  *      data supplied rather than a copy of it.
42  */
43 onak_status_t getphoto(struct openpgp_publickey *key, int index,
44                 unsigned char **photo, size_t *length)
45 {
46         struct openpgp_signedpacket_list *curuid = NULL;
47         int                               i = 0;
48         int                               j = 0;
49
50         if (key == NULL || photo == NULL || length == NULL)
51                 return ONAK_E_INVALID_PARAM;
52
53         *photo = NULL;
54         
55         curuid = key->uids;
56         i = 0;
57         while (*photo == NULL && curuid != NULL && i <= index) {
58                 if (curuid->packet->tag == 17) {
59                         if (i == index) {
60                                 j = 0;
61                                 *length = curuid->packet->data[j++];
62                                 if (*length < 192) {
63                                         /* length is correct */
64                                 } else if (*length < 255) {
65                                         *length -= 192;
66                                         *length <<= 8;
67                                         *length += curuid->packet->data[j++];
68                                         *length +=  192;
69                                 } else {
70                                         *length = curuid->packet->data[j++];
71                                         *length <<= 8;
72                                         *length += curuid->packet->data[j++];
73                                         *length <<= 8;
74                                         *length += curuid->packet->data[j++];
75                                         *length <<= 8;
76                                         *length += curuid->packet->data[j++];
77                                 }
78                                 j++;
79                                 *length -= 17;
80                                 *photo = &(curuid->packet->data[j+16]);
81                         } else {
82                                 i++;
83                         }
84                 }
85                 curuid = curuid->next;
86         }
87
88         return *photo == NULL ? ONAK_E_NOT_FOUND : ONAK_E_OK;
89 }