-
Notifications
You must be signed in to change notification settings - Fork 4
/
GPGRemoteKey.m
403 lines (342 loc) · 13.1 KB
/
GPGRemoteKey.m
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
//
// GPGRemoteKey.m
// MacGPGME
//
// Created by Robert Goldsmith ([email protected]) on Sat July 9 2005.
//
//
// Copyright (C) 2001-2006 Mac GPG Project.
//
// This code is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 2.1 of the License, or (at your option)
// any later version.
//
// This code 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 Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program; if not, visit <http://www.gnu.org/> or write to the
// Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
// MA 02111-1307, USA.
//
// More info at <http://macgpg.sourceforge.net/>
//
#include <MacGPGME/GPGRemoteKey.h>
#include <MacGPGME/GPGRemoteUserID.h>
#include <MacGPGME/GPGPrettyInfo.h>
#include <MacGPGME/GPGInternals.h>
#include <Foundation/Foundation.h>
#include <gpgme.h>
@implementation GPGRemoteKey
- (id) copyWithZone:(NSZone *)zone
{
// Implementation is useful to allow use of GPGRemoteKey instances as keys in NSMutableDictionary instances.
return [self retain];
}
- (NSDictionary *) dictionaryRepresentation
{
NSMutableDictionary *key_dict = [NSMutableDictionary dictionary];
[key_dict setObject:[NSNumber numberWithBool:[self isKeyRevoked]] forKey:@"revoked"];
[key_dict setObject:[NSNumber numberWithBool:[self hasKeyExpired]] forKey:@"expired"];
[key_dict setObject:[self keyID] forKey: @"keyid"];
[key_dict setObject:[NSNumber numberWithInt:[self algorithm]] forKey:@"algo"];
[key_dict setObject:[NSNumber numberWithInt:[self length]] forKey:@"len"];
if([self creationDate])
[key_dict setObject: [self creationDate] forKey:@"created"];
if([self expirationDate])
[key_dict setObject: [self expirationDate] forKey:@"expire"];
if([self userIDs] != nil){
NSMutableArray *uidArray=[NSMutableArray arrayWithCapacity:[[self userIDs] count]];
NSEnumerator *uidEnumerator=[[self userIDs] objectEnumerator];
id currentUID;
while(currentUID=[uidEnumerator nextObject])
[uidArray addObject:[currentUID userID]];
[key_dict setObject:uidArray forKey:@"userids"];
}
return key_dict;
}
- (NSString *) keyID
{
switch(_version){
case 0:
return [[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:0];
case 1:
return [[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:1];
default:
[NSException raise:NSGenericException format:@"### Unknown version (%d)", _version];
return nil; // Never reached
}
}
- (GPGPublicKeyAlgorithm) algorithm
{
NSString *aString;
switch(_version){
case 0:
// We need to make an inverse mapping between name (sometimes given)
// and the numerical value
aString = [self algorithmDescription];
return [self algorithmFromName:aString];
case 1:
aString = [[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:2];
if([aString length] > 0)
return [aString intValue];
else
return -1;
default:
[NSException raise:NSGenericException format:@"### Unknown version (%d)", _version];
return -1; // Never reached
}
}
- (NSString *) algorithmDescription
{
switch(_version){
case 0:
#warning FIXME: Not implemented for GPGRemoteKey inited by -initWithRecipient:
return [self unescapedString:[[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:6]]; // Not always available, not localized
case 1:
return GPGPublicKeyAlgorithmDescription([self algorithm]);
default:
[NSException raise:NSGenericException format:@"### Unknown version (%d)", _version];
return nil; // Never reached
}
}
- (unsigned int) length
{
switch(_version){
case 0:
// Might return 0, because info was not available
return (unsigned)[[[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:7] intValue];
case 1:
return (unsigned)[[[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:3] intValue];
default:
[NSException raise:NSGenericException format:@"### Unknown version (%d)", _version];
return 0; // Never reached
}
}
- (NSCalendarDate *) creationDate
{
NSString *aString;
switch(_version){
case 0:
aString = [[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:3]; break;
case 1:
aString = [[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:4]; break;
default:
[NSException raise:NSGenericException format:@"### Unknown version (%d)", _version];
return nil; // Never reached
}
if([aString length] > 0)
return [NSCalendarDate dateWithTimeIntervalSince1970:[aString intValue]];
else
return nil;
}
- (NSCalendarDate *) expirationDate
{
NSString *aString;
switch(_version){
case 0:
aString = [[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:4]; break;
case 1:
aString = [[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:5]; break;
default:
[NSException raise:NSGenericException format:@"### Unknown version (%d)", _version];
return nil; // Never reached
}
if([aString length] > 0){
int aValue = [aString intValue];
if(aValue != 0)
return [NSCalendarDate dateWithTimeIntervalSince1970:aValue];
else
return nil;
}
else
return nil; // Information not available
}
- (NSArray *) userIDs
{
if(_userIDs == nil){
int i = 0;
int max = [_colonFormatStrings count];
NSZone *aZone = [self zone];
switch(_version){
case 0:
i = 0; break;
case 1:
i = 1; break;
default:
[NSException raise:NSGenericException format:@"### Unknown version (%d)", _version];
return nil; // Never reached
}
_userIDs = [[NSMutableArray allocWithZone:aZone] initWithCapacity:max];
for(; i < max; i++){
GPGRemoteUserID *aUserID = [[GPGRemoteUserID allocWithZone:aZone] initWithKey:self index:i];
[(NSMutableArray *)_userIDs addObject:aUserID];
[aUserID release];
}
}
return _userIDs;
}
- (BOOL) isKeyRevoked
{
switch(_version){
case 0:
return !![[[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:2] intValue];
case 1:
return [[[[_colonFormatStrings objectAtIndex:0] componentsSeparatedByString:@":"] objectAtIndex:6] rangeOfString:@"r"].location != NSNotFound;
default:
[NSException raise:NSGenericException format:@"### Unknown version (%d)", _version];
return 0; // Never reached
}
}
- (BOOL) hasKeyExpired
{
NSCalendarDate *expirationDate = [self expirationDate];
if(expirationDate != nil && [expirationDate compare:[NSCalendarDate calendarDate]] <= 0)
return YES;
return NO; // Information not available
}
- (unsigned) hash
{
if([self keyID] != nil)
return [[self keyID] hash];
return [super hash];
}
- (BOOL) isEqual:(id)anObject
{
if(anObject != nil && [anObject isMemberOfClass:[self class]])
return [[self keyID] isEqualToString:[anObject keyID]];
return NO;
}
- (NSString *) shortKeyID
{
return [[self keyID] substringFromIndex:[[self keyID] length] - 8];
}
- (NSString *) userID
{
// It MIGHT happen that a key has NO userID!
NSArray *userIDs = [self userIDs];
if([userIDs lastObject] != nil)
return [[userIDs objectAtIndex:0] userID];
else
return nil;
}
- (NSString *) debugDescription
{
return [NSString stringWithFormat:@"<%@: %p> keyID = 0x%@", NSStringFromClass([self class]), self, [self keyID]];
}
@end
@implementation GPGRemoteKey(GPGInternals)
- (id) initWithColonOutputStrings:(NSArray *)strings version:(int)version
{
if(self = [self initWithInternalRepresentation:NULL]){
_colonFormatStrings = [strings copyWithZone:[self zone]];
_version = version;
}
return self;
}
- (id) initWithRecipient:(gpgme_recipient_t)recipient
{
if(self = [self initWithInternalRepresentation:NULL]){
_version = 0;
_colonFormatStrings = [[NSArray alloc] initWithObjects:[NSString stringWithFormat:@"%s::::::%d:", recipient->keyid, recipient->pubkey_algo], nil];
}
return self;
}
- (void) dealloc
{
[_colonFormatStrings release];
[super dealloc];
}
- (NSArray *) colonFormatStrings
{
return _colonFormatStrings;
}
- (int) colonFormatStringsVersion
{
return _version;
}
- (NSString *) unescapedString:(NSString *)string
{
// Version 0: replaces \xXX sequences with ASCII character matching hexcode XX
// Version 1: replaces %XX sequences with ASCII character matching hexcode XX
NSMutableString *newString = [NSMutableString stringWithString:string];
NSRange aRange;
NSString *escapeCode = nil;
unsigned escapeCodeLength = 0;
BOOL neededToUnescape = NO;
switch(_version){
case 0:
escapeCode = @"\\x";
escapeCodeLength = 2;
break;
case 1:
escapeCode = @"%";
escapeCodeLength = 1;
break;
default:
[NSException raise:NSGenericException format:@"### Unknown version (%d)", _version];
}
while((aRange = [newString rangeOfString:escapeCode]).length > 0){
NSString *hexCodeString = [newString substringWithRange:NSMakeRange(aRange.location + escapeCodeLength, 2)];
unichar hiChar = [hexCodeString characterAtIndex:0];
unichar loChar = [hexCodeString characterAtIndex:1];
if(hiChar >= 'a')
hiChar = hiChar - 'a' + 10;
else if(hiChar >= 'A')
hiChar = hiChar - 'A' + 10;
else
hiChar -= '0';
if(loChar >= 'a')
loChar = loChar - 'a' + 10;
else if(loChar >= 'A')
loChar = loChar - 'A' + 10;
else
loChar -= '0';
hiChar = hiChar * 16 + loChar;
[newString replaceCharactersInRange:NSMakeRange(aRange.location, escapeCodeLength + 2) withString:[NSString stringWithCharacters:&hiChar length:1]];
neededToUnescape = YES;
}
if(neededToUnescape && _version == 1){
// New in 1.4? Accents are passed correctly, always escaped. This means
// that we need _now_ to transform to UTF8: what we got was not UTF8!
// Does happen with my key from wwwkeys.us.pgp.net, but not from ldap://keyserver.pgp.com
NSData *rawData = [newString dataUsingEncoding:NSISOLatin1StringEncoding];
NSString *decodedString = [[NSString alloc] initWithData:rawData encoding:NSUTF8StringEncoding];
if(decodedString != nil){
[newString setString:decodedString];
[decodedString release];
}
}
return newString;
}
- (GPGPublicKeyAlgorithm) algorithmFromName:(NSString *)name
{
static NSDictionary *algoForNameDict = nil;
NSNumber *aNumber;
if(algoForNameDict == nil)
#warning CHECK!
algoForNameDict = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithInt:GPG_RSAAlgorithm], @"RSA", // OK
[NSNumber numberWithInt:GPG_RSAEncryptOnlyAlgorithm], @"RSA-S",
[NSNumber numberWithInt:GPG_RSASignOnlyAlgorithm], @"RSA-E",
[NSNumber numberWithInt:GPG_ElgamalEncryptOnlyAlgorithm], @"ELG-E", // OK
[NSNumber numberWithInt:GPG_DSAAlgorithm], @"DSA", // OK
[NSNumber numberWithInt:GPG_DSAAlgorithm], @"DSS/DH", // OK; there are 2 names, but it's very complicated; google ("DSS/DH" DSA) to learn more
[NSNumber numberWithInt:GPG_EllipticCurveAlgorithm], @"Elliptic",
[NSNumber numberWithInt:GPG_ECDSAAlgorithm], @"ECDSA",
[NSNumber numberWithInt:GPG_ElgamalAlgorithm], @"ELG",
[NSNumber numberWithInt:GPG_DiffieHellmanAlgorithm], @"DH", nil];
aNumber = [algoForNameDict objectForKey:name];
if(aNumber == nil){
int anInt = [name intValue]; // Necessary for instances inited with gpgme_recipient_t
if(anInt == 0)
anInt = -1;
return anInt;
}
else
return [aNumber intValue];
}
@end