forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgplib.c
252 lines (221 loc) · 4.96 KB
/
pgplib.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/**
* @file
* Misc PGP helper routines
*
* @authors
* Copyright (C) 1997-2002 Thomas Roessler <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page crypt_pgplib Misc PGP helper routines
*
* Misc PGP helper routines
*/
#include "config.h"
#include <stdbool.h>
#include "mutt/mutt.h"
#ifdef CRYPT_BACKEND_CLASSIC_PGP
#include "pgplib.h"
#endif
/**
* pgp_pkalgbytype - Get the name of the algorithm from its ID
* @param type Algorithm ID
* @retval ptr Algorithm name
*/
const char *pgp_pkalgbytype(unsigned char type)
{
switch (type)
{
case 1:
return "RSA";
case 2:
return "RSA";
case 3:
return "RSA";
case 16:
return "ElG";
case 17:
return "DSA";
case 20:
return "ElG";
default:
return "unk";
}
}
/**
* pgp_canencrypt - Does this algorithm ID support encryption?
* @param type Algorithm ID
* @retval true If it does
*/
bool pgp_canencrypt(unsigned char type)
{
switch (type)
{
case 1:
case 2:
case 16:
case 20:
return true;
default:
return false;
}
}
/**
* pgp_cansign - Does this algorithm ID support signing?
* @param type Algorithm ID
* @retval true If it does
*/
bool pgp_cansign(unsigned char type)
{
switch (type)
{
case 1:
case 3:
case 17:
case 20:
return true;
default:
return false;
}
}
/**
* pgp_get_abilities - Get the capabilities of an algorithm
* @param type Algorithm ID
* @retval num Capabilities
*
* The abilities are OR'd together
* - 1 If signing is possible
* - 2 If encryption is possible
*/
short pgp_get_abilities(unsigned char type)
{
return (pgp_canencrypt(type) << 1) | pgp_cansign(type);
}
/**
* pgp_uid_free - Free a PGP UID
* @param[out] upp PGP UID to free
*/
static void pgp_uid_free(struct PgpUid **upp)
{
struct PgpUid *up = NULL, *q = NULL;
if (!upp || !*upp)
return;
for (up = *upp; up; up = q)
{
q = up->next;
FREE(&up->addr);
FREE(&up);
}
*upp = NULL;
}
/**
* pgp_copy_uids - Copy a list of PGP UIDs
* @param up List of PGP UIDs
* @param parent Parent PGP key
* @retval ptr New list of PGP UIDs
*/
struct PgpUid *pgp_copy_uids(struct PgpUid *up, struct PgpKeyInfo *parent)
{
struct PgpUid *l = NULL;
struct PgpUid **lp = &l;
for (; up; up = up->next)
{
*lp = mutt_mem_calloc(1, sizeof(struct PgpUid));
(*lp)->trust = up->trust;
(*lp)->flags = up->flags;
(*lp)->addr = mutt_str_strdup(up->addr);
(*lp)->parent = parent;
lp = &(*lp)->next;
}
return l;
}
/**
* key_free - Free a PGP Key info
* @param[out] kpp PGP Key info to free
*/
static void key_free(struct PgpKeyInfo **kpp)
{
if (!kpp || !*kpp)
return;
struct PgpKeyInfo *kp = *kpp;
pgp_uid_free(&kp->address);
FREE(&kp->keyid);
FREE(&kp->fingerprint);
FREE(kpp);
}
/**
* pgp_remove_key - Remove a PGP key from a list
* @param[out] klist List of PGP Keys
* @param[in] key Key to remove
* @retval ptr Updated list of PGP Keys
*/
struct PgpKeyInfo *pgp_remove_key(struct PgpKeyInfo **klist, struct PgpKeyInfo *key)
{
if (!klist || !*klist || !key)
return NULL;
struct PgpKeyInfo **last = NULL;
struct PgpKeyInfo *p = NULL, *q = NULL, *r = NULL;
if (key->parent && (key->parent != key))
key = key->parent;
last = klist;
for (p = *klist; p && p != key; p = p->next)
last = &p->next;
if (!p)
return NULL;
for (q = p->next, r = p; q && q->parent == p; q = q->next)
r = q;
if (r)
r->next = NULL;
*last = q;
return q;
}
/**
* pgp_key_free - Free a PGP key info
* @param[out] kpp PGP key info to free
*/
void pgp_key_free(struct PgpKeyInfo **kpp)
{
if (!kpp || !*kpp)
return;
struct PgpKeyInfo *p = NULL, *q = NULL, *r = NULL;
if ((*kpp)->parent && ((*kpp)->parent != *kpp))
*kpp = (*kpp)->parent;
/* Order is important here:
*
* - First free all children.
* - If we are an orphan (i.e., our parent was not in the key list),
* free our parent.
* - free ourselves. */
for (p = *kpp; p; p = q)
{
for (q = p->next; q && q->parent == p; q = r)
{
r = q->next;
key_free(&q);
}
key_free(&p->parent);
key_free(&p);
}
*kpp = NULL;
}
/**
* pgp_keyinfo_new - Create a new PgpKeyInfo
* @retval ptr New PgpKeyInfo
*/
struct PgpKeyInfo *pgp_keyinfo_new(void)
{
return mutt_mem_calloc(1, sizeof(struct PgpKeyInfo));
}