forked from granoff/Lockbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Lockbox.m
205 lines (171 loc) · 5.78 KB
/
Lockbox.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
//
// Lockbox.m
//
// Created by Mark H. Granoff on 4/19/12.
// Copyright (c) 2012 Hawk iMedia. All rights reserved.
//
#import "Lockbox.h"
#import <Security/Security.h>
#define kDelimiter @"-|-"
static NSString *_bundleId = nil;
@implementation Lockbox
+(void)initialize
{
_bundleId = [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString*)kCFBundleIdentifierKey];
}
+(NSMutableDictionary *)_service
{
NSMutableDictionary* dict = [NSMutableDictionary dictionary];
#if __has_feature(objc_arc)
[dict setObject: (__bridge id) kSecClassGenericPassword forKey: (__bridge id) kSecClass];
#else
[dict setObject: (id) kSecClassGenericPassword forKey: (id) kSecClass];
#endif
return dict;
}
+(NSMutableDictionary *)_query
{
NSMutableDictionary* query = [NSMutableDictionary dictionary];
#if __has_feature(objc_arc)
[query setObject: (__bridge id) kSecClassGenericPassword forKey: (__bridge id) kSecClass];
[query setObject: (id) kCFBooleanTrue forKey: (__bridge id) kSecReturnData];
#else
[query setObject: (id) kSecClassGenericPassword forKey: (id) kSecClass];
[query setObject: (id) kCFBooleanTrue forKey: (id) kSecReturnData];
#endif
return query;
}
// Prefix a bare key like "MySecureKey" with the bundle id, so the actual key stored
// is unique to this app, e.g. "com.mycompany.myapp.MySecretKey"
+(NSString *)_hierarchicalKey:(NSString *)key
{
return [_bundleId stringByAppendingFormat:@".%@", key];
}
+(BOOL)setObject:(NSString *)obj forKey:(NSString *)key
{
OSStatus status;
NSString *hierKey = [self _hierarchicalKey:key];
// If the object is nil, delete the item
if (!obj) {
NSMutableDictionary *query = [self _query];
#if __has_feature(objc_arc)
[query setObject:hierKey forKey:(__bridge id)kSecAttrService];
status = SecItemDelete((__bridge CFDictionaryRef)query);
#else
[query setObject:hierKey forKey:(id)kSecAttrService];
status = SecItemDelete((CFDictionaryRef)query);
#endif
return (status == errSecSuccess);
}
NSMutableDictionary *dict = [self _service];
#if __has_feature(objc_arc)
[dict setObject: hierKey forKey: (__bridge id) kSecAttrService];
[dict setObject: [obj dataUsingEncoding:NSUTF8StringEncoding] forKey: (__bridge id) kSecValueData];
status = SecItemAdd ((__bridge CFDictionaryRef) dict, NULL);
#else
[dict setObject: hierKey forKey: (id) kSecAttrService];
[dict setObject: [obj dataUsingEncoding:NSUTF8StringEncoding] forKey: (id) kSecValueData];
status = SecItemAdd ((CFDictionaryRef) dict, NULL);
#endif
if (status == errSecDuplicateItem) {
NSMutableDictionary *query = [self _query];
#if __has_feature(objc_arc)
[query setObject:hierKey forKey:(__bridge id)kSecAttrService];
status = SecItemDelete((__bridge CFDictionaryRef)query);
#else
[query setObject:hierKey forKey:(id)kSecAttrService];
status = SecItemDelete((CFDictionaryRef) query);
#endif
if (status == errSecSuccess)
#if __has_feature(objc_arc)
status = SecItemAdd((__bridge CFDictionaryRef) dict, NULL);
#else
status = SecItemAdd((CFDictionaryRef) dict, NULL);
#endif
}
if (status != errSecSuccess)
NSLog(@"SecItemAdd failed for key %@: %ld", hierKey, status);
return (status == errSecSuccess);
}
+(NSString *)objectForKey:(NSString *)key
{
NSString *hierKey = [self _hierarchicalKey:key];
NSMutableDictionary *query = [self _query];
#if __has_feature(objc_arc)
[query setObject:hierKey forKey: (__bridge id)kSecAttrService];
#else
[query setObject:hierKey forKey: (id)kSecAttrService];
#endif
CFDataRef data = nil;
OSStatus status =
#if __has_feature(objc_arc)
SecItemCopyMatching ( (__bridge CFDictionaryRef) query, (CFTypeRef *) &data );
#else
SecItemCopyMatching((CFDictionaryRef) query, (CFTypeRef *)&data);
#endif
if (status != errSecSuccess)
NSLog(@"SecItemCopyMatching failed for key %@: %ld", hierKey, status);
if (!data)
return nil;
NSString *s = [[NSString alloc]
initWithData:
#if __has_feature(objc_arc)
(__bridge_transfer NSData *)data
#else
(NSData *)data
#endif
encoding: NSUTF8StringEncoding];
#if !__has_feature(objc_arc)
[s autorelease];
CFRelease(data);
#endif
return s;
}
+(BOOL)setString:(NSString *)value forKey:(NSString *)key
{
return [self setObject:value forKey:key];
}
+(NSString *)stringForKey:(NSString *)key
{
return [self objectForKey:key];
}
+(BOOL)setArray:(NSArray *)value forKey:(NSString *)key
{
NSString *components = [value componentsJoinedByString:kDelimiter];
return [self setObject:components forKey:key];
}
+(NSArray *)arrayForKey:(NSString *)key
{
NSArray *array = nil;
NSString *components = [self objectForKey:key];
if (components)
array = [NSArray arrayWithArray:[components componentsSeparatedByString:kDelimiter]];
return array;
}
+(BOOL)setSet:(NSSet *)value forKey:(NSString *)key
{
return [self setArray:[value allObjects] forKey:key];
}
+(NSSet *)setForKey:(NSString *)key
{
NSSet *set = nil;
NSArray *array = [self arrayForKey:key];
if (array)
set = [NSSet setWithArray:array];
return set;
}
+(BOOL)setDate:(NSDate *)value forKey:(NSString *)key
{
if (!value)
return [self setObject:nil forKey:key];
NSNumber *rti = [NSNumber numberWithDouble:[value timeIntervalSinceReferenceDate]];
return [self setObject:[rti stringValue] forKey:key];
}
+(NSDate *)dateForKey:(NSString *)key
{
NSString *dateString = [self objectForKey:key];
if (dateString)
return [NSDate dateWithTimeIntervalSinceReferenceDate:[dateString doubleValue]];
return nil;
}
@end