@@ -26,18 +26,28 @@ extern NSString *const kSSYKeychainErrorDomain;
26
26
this class and replaced it with Sam's approach, based on his SSKeychainQuery,
27
27
which uses only a few, modern SecKeychainXxxxx functions.
28
28
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.
30
30
In this fork of SSKeychainQuery, I have
31
31
32
- • Added support for other classes of keychain items, Internet in particular.
32
+ • Added support for other clases of keychain items, Internet in particular.
33
33
• Made friendly to manual reference counting targets by adopting the NO_ARC
34
34
compiler directive
35
35
• Added more documentation, particularly to fill some holes in Apple's
36
36
documentation. That documetation follows here:
37
37
38
- Item Classes
38
+ Item Clases
39
39
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
41
51
SetItem.h > kSecClass. At this time (10.10), you can see there are five
42
52
types listed (lines 60-64). This corresponds roughly to the "Kind" column in
43
53
the Keychain Access app. Most items, including those whose "Kind" is one of
@@ -57,7 +67,7 @@ extern NSString *const kSSYKeychainErrorDomain;
57
67
58
68
are in fact kSecClassInternetPassword.
59
69
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,
61
71
kSecClassGenericPassword, to be used.
62
72
63
73
User's Keychain
@@ -74,25 +84,25 @@ extern NSString *const kSSYKeychainErrorDomain;
74
84
75
85
Name: Service vs. Host
76
86
77
- Keychain items of the Internet class (kSecClassInternetPassword) have a host
87
+ Keychain items of the Internet clase (kSecClassInternetPassword) have a host
78
88
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
80
90
not a host name. A host name is, of course, for example google.com for
81
91
example. A service name may be any arbitrary string created by the app which
82
92
stored it in the keychain, for its own purposes.
83
93
84
94
The Keychain Access app appears to take advantage of the fact that one is
85
95
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
88
98
has been specified, and a service name otherwise.
89
99
90
100
Item Attributes
91
101
92
102
Item Attributes means a dictionary containing the attributes of a keychain
93
103
item. The keys in such a dictionary will be from the list of several dozen
94
104
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
96
106
by kSecAttrKeyClass, and I think this is a bug in Keychain Services.
97
107
98
108
For convenience in debugging, the Attribute Item Keys in macOS 10.10.2 have
@@ -160,7 +170,7 @@ extern NSString *const kSSYKeychainErrorDomain;
160
170
161
171
/* !
162
172
@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
164
174
for the given parameters.
165
175
166
176
@details See "Name: Service vs. Host" in the class documentatotion.
@@ -169,56 +179,56 @@ extern NSString *const kSSYKeychainErrorDomain;
169
179
170
180
@param trySubhosts An array of strings, each of which are possible
171
181
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 =
173
183
kSecClassGenericPassword. For example, if you pass servost="google.com" and
174
184
trySubhosts=@[@"www", @"my"], there will be three hosts searched: google.com,
175
185
www.google.com and my.google.com. Recommended subdomains are subdomains are
176
186
"www", "my", "login", "mobile", "account". If nil, searches only the given
177
187
servost.
178
188
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
180
190
strings enumerated under SetItem.h > kSecClass. If you pass nil, defaults to
181
191
kSecClassGenericPassword.
182
192
*/
183
193
+ (NSString *)passwordForServost : (NSString *)servostName
184
194
trySubhosts : (NSArray *)trySubhosts
185
195
account : (NSString *)account
186
- class : (NSString *)itemClass
196
+ clase : (NSString *)itemClase
187
197
error_p : (NSError *__autoreleasing*)error_p ;
188
198
189
199
/* !
190
200
@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
192
202
193
203
@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
195
205
kSecClassInternetPassword, and a service name otherwise.
196
206
197
207
A better name for this method might be deleteItemForServost…, since actually
198
208
it deletes a keychain *item*. But since the nearby methods use 'password', and
199
209
since it is useless or maybe impossible to have a keychain item without a
200
210
password, I use 'password'.
201
211
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.
204
214
205
215
@result YES if successful, otherwise NO
206
216
*/
207
217
+ (BOOL )deletePasswordForServost : (NSString *)servostName
208
218
account : (NSString *)account
209
- class : (NSString *)itemClass
219
+ clase : (NSString *)itemClase
210
220
error_p : (NSError *__autoreleasing*)error_p ;
211
221
212
222
/* !
213
223
@brief Sets a password in the Keychain for a given service name, account
214
- name and item class
224
+ name and item clase
215
225
216
226
@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
218
228
kSecClassInternetPassword, and a service name otherwise.
219
229
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.
222
232
If the class is kSecClassGenericPassword, it will show up in the Keychain
223
233
Access app with kind = "application password"
224
234
@@ -227,26 +237,26 @@ extern NSString *const kSSYKeychainErrorDomain;
227
237
+ (BOOL )setPassword : (NSString *)password
228
238
forServost : (NSString *)servostName
229
239
account : (NSString *)account
230
- class : (NSString *)itemClass
240
+ clase : (NSString *)itemClase
231
241
error_p : (NSError *__autoreleasing*)error_p ;
232
242
233
243
/* !
234
244
@brief Returns attributes of all items in the user's keychain, of a given
235
- single class
245
+ single clase
236
246
237
247
@details See "Name: Service vs. Host" in the class documentatotion.
238
248
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.
241
251
242
252
@result An array, in unspecified order, of Item Attributes, one for each
243
253
item found, or nil if no items were found to match the given specifications.
244
254
See "Item Attributes" in the class documentation for more information.
245
255
*/
246
- + (NSArray *)allItemsOfClass : (NSString *)itemClass ;
256
+ + (NSArray *)allItemsOfClase : (NSString *)itemClase ;
247
257
248
258
/* !
249
- @brief Returns attributes of all Internet class (kSecClassInternetPassword)
259
+ @brief Returns attributes of all Internet clase (kSecClassInternetPassword)
250
260
items in the user's keychain
251
261
252
262
@param hostName A name which appears in the "Name" column of the Keychain
@@ -259,7 +269,7 @@ extern NSString *const kSSYKeychainErrorDomain;
259
269
+ (NSArray *)allInternetItemsForHost : (NSString *)hostName ;
260
270
261
271
/* !
262
- @brief Returns attributes of all generic class (kSecClassGenericPassword)
272
+ @brief Returns attributes of all generic clase (kSecClassGenericPassword)
263
273
items in the user's keychain
264
274
265
275
@param serviceName A name which appears in the "Name" column of the Keychain
@@ -273,7 +283,7 @@ extern NSString *const kSSYKeychainErrorDomain;
273
283
274
284
/* !
275
285
@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
277
287
278
288
@param trySubhosts An array of strings, each of which are possible
279
289
subdomains which will be prepended to the host with a "." when searching for
@@ -286,7 +296,7 @@ extern NSString *const kSSYKeychainErrorDomain;
286
296
*/
287
297
+ (NSArray *)accountNamesForServost : (NSString *)servostName
288
298
trySubhosts : (NSArray *)trySubhosts
289
- class : (NSString *)itemClass
299
+ clase : (NSString *)itemClase
290
300
error_p : (NSError **)error_p ;
291
301
292
302
0 commit comments