hank
2018-04-18 655e6650051a9c08675d15e05ac3b7d9be98e714
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
/*
 * Copyright (C) 2017 Twitter, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
 
/**
 This header is private to the Twitter Core SDK and not exposed for public SDK consumption
 */
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
extern NSString *const TWTRGenericKeychainItemErrorDomain;
 
/**
 * The TWTRGenericKeychainQuery provides an simple model object
 * that can be used in conjuction with TWTRGenericKeychainItem to
 * retrieve items in the keychain.
 */
@interface TWTRGenericKeychainQuery : NSObject
 
/**
 * The name of the service corresponding with kSecAttrService.
 * If this value is specified the genericValue and accessGroup values are ignored.
 */
@property (nonatomic, copy, readonly, nullable) NSString *service;
 
/**
 * The name of the account corresponding with kSecAttrAccount.
 * If this value is specified the genericValue and accessGroup values are ignored.
 */
@property (nonatomic, copy, readonly, nullable) NSString *account;
 
/**
 * A generic value corresponding with kSecAttrGeneric.
 */
@property (nonatomic, copy, readonly, nullable) NSString *genericValue;
 
/**
 * The access group corresponding with kSecAttrAccessGroup.
 * This value is not used in equality checks.
 * Note: This value is ignored in the simulator.
 */
@property (nonatomic, copy, readonly, nullable) NSString *accessGroup;
 
/**
 * A query that will return all the items in the keychain.
 */
+ (instancetype)queryForAllItems;
 
/**
 * A query that will return all items with the given service.
 */
+ (instancetype)queryForService:(NSString *)service;
 
/**
 * A query that will return all items with the given account.
 */
+ (instancetype)queryForAccount:(NSString *)account;
 
/**
 * A query that will match all items that contain both the service and account.
 */
+ (instancetype)queryForService:(NSString *)service account:(NSString *)account;
 
/**
 * A query that will return all items with the given generic value.
 */
+ (instancetype)queryForGenericValue:(NSString *)genericValue;
 
/**
 * A query that will return all items with the given access group.
 */
+ (instancetype)queryForAccessGroup:(NSString *)accessGroup;
 
@end
 
/**
 * The TWTRGenericKeychainItem provides a convenience wrapper
 * around the security framework's keychain access.  All of
 * the items stored using this class will be stored as
 * kSecClassGenericPassword objects.
 */
@interface TWTRGenericKeychainItem : NSObject
 
/**
 * A value which specifies the item's service attribute. This
 * value represents the service associated with this item.
 */
@property (nonatomic, copy, readonly) NSString *service;
 
/**
 * A value which represents the items account name.
 */
@property (nonatomic, copy, readonly) NSString *account;
 
/**
 * The item that is intended to be kept secret. This may be
 * something like a password for an account or an oauth token.
 *
 * @warning If this data is too large it will fail to save. The size
 * should be smaller than ~2mb but can change from device to device.
 */
@property (nonatomic, copy, readonly) NSData *secret;
 
/**
 * An optional value that can be set on the item.
 */
@property (nonatomic, copy, readonly, nullable) NSString *genericValue;
 
/**
 * Returns the date that the item was last saved to the store. This value
 * is nil until the item is actually saved.
 */
@property (nonatomic, copy, readonly, nullable) NSDate *lastSavedDate;
 
/**
 * An optional value that can be used to specify the items accesss group.
 * If this value is not set the default access group which is only
 * accessible from the calling application will be used.
 *
 * Refer to 'Keychain Services Programming Guide' for more information
 * regarding access groups. Most of the time you will
 * want to leave this value empty.
 *
 * This value may not be empty upon fetch even if it is empty when it is saved. This
 * is because the security framework will fill it with the default value which
 * is not specified.
 */
@property (nonatomic, copy, readonly, nullable) NSString *accessGroup;
 
/**
 * Fetches all of the stored items for the given query.
 * If the returned array is nil it indicates that an error
 * has occurred and the error parameter will be set. If no
 * items are found an empty array will be returned.
 *
 * The query results will depend on the specificity of the query
 * object as described in its documetation.
 */
+ (NSArray *)storedItemsMatchingQuery:(TWTRGenericKeychainQuery *)query error:(NSError **)error;
 
/**
 * Removes all the items matching the given query.
 */
+ (BOOL)removeAllItemsForQuery:(TWTRGenericKeychainQuery *)query error:(NSError **)error;
 
/**
 * Initializes a TWTRGenericKeychainItem object with the given values.
 * This does not automatically save the object, you must call -[TWTRGenericKeychainItem storeInKeychain:]
 to actually save the object.
 *
 * A keychain item is uniquely constrained by the service/account combination. Any action performed
 * with the keychain item will override any existing keychain items with the given service/account
 * combination.
 *
 * @param service the service for this item.
 * @param account the account associated with this item.
 * @param secret the secret value to store.
 * @param genericValue an additional value to associate with this item.
 * @param accessGroup the access group for this item. If empty uses the default access group. *
 */
- (instancetype)initWithService:(NSString *)service account:(NSString *)account secret:(NSData *)secret;
- (instancetype)initWithService:(NSString *)service account:(NSString *)account secret:(NSData *)secret genericValue:(nullable NSString *)genericValue;
- (instancetype)initWithService:(NSString *)service account:(NSString *)account secret:(NSData *)secret genericValue:(nullable NSString *)genericValue accessGroup:(nullable NSString *)accessGroup;
 
/**
 * Call this method to store the keychain item in the store.
 *
 * A TWTRGenericKeychainItem is only unique based on the account
 * and the service specified. If the item exists and the replaceExisting parameter
 * is YES the value will be replaced. If this parameter is NO the operation will
 * fail.
 *
 * @param replacesExisting whether an existing value should be replaced, Default = YES
 * @param error an optional error that will be set if the operation fails.
 * @return a value representing if the operation was successful
 */
- (BOOL)storeInKeychain:(NSError **)error;
- (BOOL)storeInKeychainReplacingExisting:(BOOL)replaceExisting error:(NSError **)error;
 
/**
 * Attempts to remove the wrapper from the keychain.
 *
 * The keychain item is only unique based on the service/account
 * pair. So a value that is created with the same service/account
 * but different secret will remove the existing value.
 *
 * @return a value representing if the operation was successful
 */
- (BOOL)removeFromKeychain:(NSError **)error;
 
@end
 
NS_ASSUME_NONNULL_END