Skip to content

Commit 3dc0d50

Browse files
committed
Updates made to SSYKeychainClass. Most significantly, I changed the parameter name class: to clase: in several methods. Also, in SSYKeychainQuery I deleted an unused accessor pair which was using a deprecated method.
1 parent ce03c1b commit 3dc0d50

5 files changed

+57
-68
lines changed

SSYKeychain.h

+42-32
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,28 @@ extern NSString *const kSSYKeychainErrorDomain;
2626
this class and replaced it with Sam's approach, based on his SSKeychainQuery,
2727
which uses only a few, modern SecKeychainXxxxx functions.
2828
29-
Sam's SSKeychain is hard-wired to only support "generic" class keychain items.
29+
Sam's SSKeychain is hard-wired to only support "generic" clase keychain items.
3030
In this fork of SSKeychainQuery, I have
3131
32-
• Added support for other classes of keychain items, Internet in particular.
32+
• Added support for other clases of keychain items, Internet in particular.
3333
• Made friendly to manual reference counting targets by adopting the NO_ARC
3434
compiler directive
3535
• Added more documentation, particularly to fill some holes in Apple's
3636
documentation. That documetation follows here:
3737
38-
Item Classes
38+
Item Clases
3939
40-
Item classes are defined by Apple as one of the strings enumerated in
40+
I mean "Item Classes", however I found that when I used `class:` as a
41+
parameter in an Objective-C method, Xcode 12 highlights 'class' as though
42+
it were an Objective-C keyword, and gives me warnings when processing
43+
header documentation that 'class' is not one of the parameters in the
44+
function, even after I fix them. After fighting with it and losing for about
45+
20 minutes, I decided to change all references to this type of thing to the
46+
Spanish word 'clase' or its plural 'clases'. This is actually better, I
47+
think, because as you will read below, 'clase' is not, as one might first
48+
think, a class in the Objective-C or Swift sense.
49+
50+
Item clases are defined by Apple as one of the strings enumerated in
4151
SetItem.h > kSecClass. At this time (10.10), you can see there are five
4252
types listed (lines 60-64). This corresponds roughly to the "Kind" column in
4353
the Keychain Access app. Most items, including those whose "Kind" is one of
@@ -57,7 +67,7 @@ extern NSString *const kSSYKeychainErrorDomain;
5767
5868
are in fact kSecClassInternetPassword.
5969
60-
All queries require a class. Passing itemClass = nil causes a default value,
70+
All queries require a clase. Passing itemClase = nil causes a default value,
6171
kSecClassGenericPassword, to be used.
6272
6373
User's Keychain
@@ -74,25 +84,25 @@ extern NSString *const kSSYKeychainErrorDomain;
7484
7585
Name: Service vs. Host
7686
77-
Keychain items of the Internet class (kSecClassInternetPassword) have a host
87+
Keychain items of the Internet clase (kSecClassInternetPassword) have a host
7888
name, but not a service name. In contrast, keychain
79-
items of the generic class (kSecClassGenericPassword) have a service name, but
89+
items of the generic clase (kSecClassGenericPassword) have a service name, but
8090
not a host name. A host name is, of course, for example google.com for
8191
example. A service name may be any arbitrary string created by the app which
8292
stored it in the keychain, for its own purposes.
8393
8494
The Keychain Access app appears to take advantage of the fact that one is
8595
nil by having only one column, 'Name", and using it for whichever is not nil,
86-
depending on the class. We do the same thing, with our 'servostName'
87-
parameter, which we interpret to be a host name when an item of Internet class
96+
depending on the clase. We do the same thing, with our 'servostName'
97+
parameter, which we interpret to be a host name when an item of Internet clase
8898
has been specified, and a service name otherwise.
8999
90100
Item Attributes
91101
92102
Item Attributes means a dictionary containing the attributes of a keychain
93103
item. The keys in such a dictionary will be from the list of several dozen
94104
given in Apple's Keychain Services Reference > Attribute Item Keys, except that
95-
you may get a key "class", which I think is supposed to be "kcls", symbolized
105+
you may get a key "clase/class", which I think is supposed to be "kcls", symbolized
96106
by kSecAttrKeyClass, and I think this is a bug in Keychain Services.
97107
98108
For convenience in debugging, the Attribute Item Keys in macOS 10.10.2 have
@@ -160,7 +170,7 @@ extern NSString *const kSSYKeychainErrorDomain;
160170

161171
/*!
162172
@brief Returns a string containing the password for a given service name,
163-
account name, and item class, or `nil` if the Keychain doesn't have a password
173+
account name, and item clase, or `nil` if the Keychain doesn't have a password
164174
for the given parameters.
165175
166176
@details See "Name: Service vs. Host" in the class documentatotion.
@@ -169,56 +179,56 @@ extern NSString *const kSSYKeychainErrorDomain;
169179
170180
@param trySubhosts An array of strings, each of which are possible
171181
subdomains which will be prepended to the host with a "." when searching for
172-
an internet password (class=kSecClassInternetPassword. Ignored if class =
182+
an internet password (clase=kSecClassInternetPassword. Ignored if clase =
173183
kSecClassGenericPassword. For example, if you pass servost="google.com" and
174184
trySubhosts=@[@"www", @"my"], there will be three hosts searched: google.com,
175185
www.google.com and my.google.com. Recommended subdomains are subdomains are
176186
"www", "my", "login", "mobile", "account". If nil, searches only the given
177187
servost.
178188
179-
@param class The class of the target keychain item, any of the constant
189+
@param clase The clase of the target keychain item, any of the constant
180190
strings enumerated under SetItem.h > kSecClass. If you pass nil, defaults to
181191
kSecClassGenericPassword.
182192
*/
183193
+ (NSString*)passwordForServost:(NSString*)servostName
184194
trySubhosts:(NSArray*)trySubhosts
185195
account:(NSString*)account
186-
class:(NSString*)itemClass
196+
clase:(NSString*)itemClase
187197
error_p:(NSError*__autoreleasing*)error_p ;
188198

189199
/*!
190200
@brief Deletes from the user's keychain any item matching a given
191-
service name, account name and item class
201+
service name, account name and item clase
192202
193203
@details See "Name: Service vs. Host" in the class documentatotion. This
194-
parameter is interpreted to specify a host name when the 'class' parameter is
204+
parameter is interpreted to specify a host name when the 'clase' parameter is
195205
kSecClassInternetPassword, and a service name otherwise.
196206
197207
A better name for this method might be deleteItemForServost…, since actually
198208
it deletes a keychain *item*. But since the nearby methods use 'password', and
199209
since it is useless or maybe impossible to have a keychain item without a
200210
password, I use 'password'.
201211
202-
@param class See "Item Class" in the class documentation. There is no wild
203-
card. If you pass nil here, the class kSecClassGenericPassword is assumed.
212+
@param clase See "Item Clase" in the class documentation. There is no wild
213+
card. If you pass nil here, the clase kSecClassGenericPassword is assumed.
204214
205215
@result YES if successful, otherwise NO
206216
*/
207217
+ (BOOL)deletePasswordForServost:(NSString*)servostName
208218
account:(NSString*)account
209-
class:(NSString*)itemClass
219+
clase:(NSString*)itemClase
210220
error_p:(NSError*__autoreleasing*)error_p ;
211221

212222
/*!
213223
@brief Sets a password in the Keychain for a given service name, account
214-
name and item class
224+
name and item clase
215225
216226
@details See "Name: Service vs. Host" in the class documentatotion. This
217-
parameter is interpreted to specify a host name when the 'class' parameter is
227+
parameter is interpreted to specify a host name when the 'clase' parameter is
218228
kSecClassInternetPassword, and a service name otherwise.
219229
220-
@param class See "Item Class" in the class documentation. There is no wild
221-
card. If you pass nil here, the class kSecClassGenericPassword is assumed.
230+
@param clase See "Item Clase" in the class documentation. There is no wild
231+
card. If you pass nil here, the clase kSecClassGenericPassword is assumed.
222232
If the class is kSecClassGenericPassword, it will show up in the Keychain
223233
Access app with kind = "application password"
224234
@@ -227,26 +237,26 @@ extern NSString *const kSSYKeychainErrorDomain;
227237
+ (BOOL)setPassword:(NSString*)password
228238
forServost:(NSString*)servostName
229239
account:(NSString*)account
230-
class:(NSString*)itemClass
240+
clase:(NSString*)itemClase
231241
error_p:(NSError*__autoreleasing*)error_p ;
232242

233243
/*!
234244
@brief Returns attributes of all items in the user's keychain, of a given
235-
single class
245+
single clase
236246
237247
@details See "Name: Service vs. Host" in the class documentatotion.
238248
239-
@param class See "Item Class" in the class documentation. There is no wild
240-
card. If you pass nil here, the class kSecClassGenericPassword is assumed.
249+
@param clase See "Item Clase" in the class documentation. There is no wild
250+
card. If you pass nil here, the clase kSecClassGenericPassword is assumed.
241251
242252
@result An array, in unspecified order, of Item Attributes, one for each
243253
item found, or nil if no items were found to match the given specifications.
244254
See "Item Attributes" in the class documentation for more information.
245255
*/
246-
+ (NSArray*)allItemsOfClass:(NSString*)itemClass ;
256+
+ (NSArray*)allItemsOfClase:(NSString*)itemClase ;
247257

248258
/*!
249-
@brief Returns attributes of all Internet class (kSecClassInternetPassword)
259+
@brief Returns attributes of all Internet clase (kSecClassInternetPassword)
250260
items in the user's keychain
251261
252262
@param hostName A name which appears in the "Name" column of the Keychain
@@ -259,7 +269,7 @@ extern NSString *const kSSYKeychainErrorDomain;
259269
+ (NSArray*)allInternetItemsForHost:(NSString*)hostName ;
260270

261271
/*!
262-
@brief Returns attributes of all generic class (kSecClassGenericPassword)
272+
@brief Returns attributes of all generic clase (kSecClassGenericPassword)
263273
items in the user's keychain
264274
265275
@param serviceName A name which appears in the "Name" column of the Keychain
@@ -273,7 +283,7 @@ extern NSString *const kSSYKeychainErrorDomain;
273283

274284
/*!
275285
@brief Returns the array of keychain items which have internet passwords in
276-
the user's keychain for a given class and service or host
286+
the user's keychain for a given clase and service or host
277287
278288
@param trySubhosts An array of strings, each of which are possible
279289
subdomains which will be prepended to the host with a "." when searching for
@@ -286,7 +296,7 @@ extern NSString *const kSSYKeychainErrorDomain;
286296
*/
287297
+ (NSArray*)accountNamesForServost:(NSString*)servostName
288298
trySubhosts:(NSArray*)trySubhosts
289-
class:(NSString*)itemClass
299+
clase:(NSString*)itemClase
290300
error_p:(NSError**)error_p ;
291301

292302

SSYKeychain.m

+12-12
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ @implementation SSYKeychain
1111
+ (NSString*)passwordForServost:(NSString*)servostName
1212
trySubhosts:(NSArray*)trySubhosts
1313
account:(NSString*)account
14-
class:(NSString*)itemClass
14+
clase:(NSString*)itemClass
1515
error_p:(NSError*__autoreleasing*)error_p {
1616
SSYKeychainQuery *query = [[SSYKeychainQuery alloc] init] ;
1717
[query setAccount:account] ;
@@ -63,7 +63,7 @@ + (NSString*)passwordForServost:(NSString*)servostName
6363

6464
+ (BOOL)deletePasswordForServost:(NSString*)servostName
6565
account:(NSString*)account
66-
class:(NSString*)itemClass
66+
clase:(NSString*)itemClass
6767
error_p:(NSError*__autoreleasing*)error_p {
6868
SSYKeychainQuery *query = [[SSYKeychainQuery alloc] init] ;
6969
if (itemClass) {
@@ -87,7 +87,7 @@ + (BOOL)deletePasswordForServost:(NSString*)servostName
8787
+ (BOOL)setPassword:(NSString*)password
8888
forServost:(NSString*)servostName
8989
account:(NSString*)account
90-
class:(NSString*)itemClass
90+
clase:(NSString*)itemClass
9191
error_p:(NSError*__autoreleasing*)error_p {
9292
SSYKeychainQuery *query = [[SSYKeychainQuery alloc] init] ;
9393
if (itemClass) {
@@ -111,7 +111,7 @@ + (BOOL)setPassword:(NSString*)password
111111

112112
+ (NSArray*)allItemsForHost:(NSString*)hostName
113113
service:(NSString*)serviceName
114-
class:(NSString*)itemClass {
114+
clase:(NSString*)itemClass {
115115
SSYKeychainQuery *query = [[SSYKeychainQuery alloc] init] ;
116116
if (hostName) {
117117
[query setServer:hostName] ;
@@ -130,26 +130,26 @@ + (NSArray*)allItemsForHost:(NSString*)hostName
130130
return answer ;
131131
}
132132

133-
+ (NSArray*)allItemsOfClass:(NSString*)itemClass {
133+
+ (NSArray*)allItemsOfClase:(NSString*)itemClass {
134134
return [self allItemsForHost:nil
135135
service:nil
136-
class:itemClass] ;
136+
clase:itemClass] ;
137137
}
138138

139139
+ (NSArray*)allInternetItemsForHost:(NSString*)hostName {
140140
return [self allItemsForHost:hostName
141141
service:nil
142-
class:(NSString*)(NSString*)kSecClassInternetPassword] ;
142+
clase:(NSString*)(NSString*)kSecClassInternetPassword] ;
143143
}
144144

145145
+ (NSArray*)allGenericItemsForService:(NSString*)serviceName {
146146
return [self allItemsForHost:nil
147147
service:serviceName
148-
class:(NSString*)kSecClassGenericPassword] ;
148+
clase:(NSString*)kSecClassGenericPassword] ;
149149
}
150150

151151
+ (NSArray*)accountNamesForServost:(NSString*)servostName
152-
class:(NSString*)itemClass
152+
clase:(NSString*)itemClass
153153
error_p:(NSError**)error_p {
154154
SSYKeychainQuery *query = [[SSYKeychainQuery alloc] init] ;
155155
if (itemClass) {
@@ -177,11 +177,11 @@ + (NSArray*)accountNamesForServost:(NSString*)servostName
177177

178178
+ (NSArray*)accountNamesForServost:(NSString*)servostName
179179
trySubhosts:(NSArray*)trySubhosts
180-
class:(NSString*)itemClass
180+
clase:(NSString*)itemClass
181181
error_p:(NSError**)error_p {
182182
NSError* error = nil ;
183183
NSArray* array = [self accountNamesForServost:servostName
184-
class:itemClass
184+
clase:itemClass
185185
error_p:&error] ;
186186
if (!array) {
187187
array = [NSMutableArray array] ;
@@ -195,7 +195,7 @@ + (NSArray*)accountNamesForServost:(NSString*)servostName
195195
subhost,
196196
servostName] ;
197197
moreAccounts = [self accountNamesForServost:aHost
198-
class:itemClass
198+
clase:itemClass
199199
error_p:&error] ;
200200
array = [array arrayByAddingObjectsFromArray:moreAccounts] ;
201201
if (error && ([error code] != errSecItemNotFound)) {

SSYKeychainQuery.h

-7
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,6 @@ typedef NS_ENUM(NSUInteger, SSYKeychainQuerySynchronizationMode) {
7979
/** Root storage for password information */
8080
@property (nonatomic, copy) NSData *passwordData ;
8181

82-
/*!
83-
@brief Convenience accessor for the receiver's `passwordData` property,
84-
transformed by NSKeyedArchiver or NSKeyedUnarchiver
85-
*/
86-
- (id<NSCoding>)passwordObject ;
87-
- (void)setPasswordObject:(id<NSCoding>)passwordObject ;
88-
8982
/*!
9083
@brief Convenience accessor for the receiver's `passwordData` property,
9184
transformed by UTF8 string encoding */

SSYKeychainQuery.m

+1-15
Original file line numberDiff line numberDiff line change
@@ -211,20 +211,6 @@ - (BOOL)fetch:(NSError *__autoreleasing *)error_p {
211211

212212
#pragma mark - Accessors
213213

214-
- (void)setPasswordObject:(id<NSCoding>)object {
215-
[self setPasswordData:[NSKeyedArchiver archivedDataWithRootObject:object]] ;
216-
}
217-
218-
219-
- (id<NSCoding>)passwordObject {
220-
id<NSCoding> answer = nil ;
221-
if ([[self passwordData] length] > 0) {
222-
answer = [NSKeyedUnarchiver unarchiveObjectWithData:[self passwordData]] ;
223-
}
224-
return answer ;
225-
}
226-
227-
228214
- (void)setPassword:(NSString *)password {
229215
[self setPasswordData:[password dataUsingEncoding:NSUTF8StringEncoding]] ;
230216
}
@@ -361,7 +347,7 @@ + (NSError *)errorWithCode:(NSInteger)code {
361347
message = (NSString*)SecCopyErrorMessageString((OSStatus)code, NULL) ;
362348
[message autorelease] ;
363349
#else
364-
message = (__bridge_transfer NSString *)SecCopyErrorMessageString(code, NULL) ;
350+
message = (__bridge_transfer NSString *)SecCopyErrorMessageString((int)code, NULL) ;
365351
#endif
366352
#endif
367353
}

SSYOAuthTalker.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ - (BOOL)getPasswordFromKeychain {
462462
NSString* password = [SSYKeychain passwordForServost:[self keychainServiceName]
463463
trySubhosts:nil
464464
account:[[self accounter] accountName]
465-
class:(NSString*)kSecClassGenericPassword
465+
clase:(NSString*)kSecClassGenericPassword
466466
error_p:NULL] ;
467467
if (password) {
468468
// Since the password is accessible i.e. corruptible by the user
@@ -532,7 +532,7 @@ - (void)setPasswordToKeychain {
532532
[SSYKeychain setPassword:password
533533
forServost:[self keychainServiceName]
534534
account:[[self accounter] accountName]
535-
class:(NSString*)kSecClassGenericPassword
535+
clase:(NSString*)kSecClassGenericPassword
536536
error_p:NULL] ;
537537
}
538538

0 commit comments

Comments
 (0)