@@ -170,6 +170,39 @@ export const empty = (): void => {
170
170
} ) ;
171
171
} ;
172
172
173
+ // remove matching itemms from the keychain
174
+ export const remove = ( account : string , service : string ) : void => {
175
+ const searchDictionary : NSMutableDictionaryType = ObjC . classes . NSMutableDictionary . alloc ( ) . init ( ) ;
176
+ searchDictionary . setObject_forKey_ ( kSec . kSecAttrSynchronizableAny , kSec . kSecAttrSynchronizable ) ;
177
+ itemClasses . forEach ( ( clazz ) => {
178
+ // set the class-type we are querying for now & delete
179
+ searchDictionary . setObject_forKey_ ( clazz , kSec . kSecClass ) ;
180
+ searchDictionary . setObject_forKey_ ( account , kSec . kSecAttrAccount ) ;
181
+ searchDictionary . setObject_forKey_ ( service , kSec . kSecAttrService ) ;
182
+ libObjc . SecItemDelete ( searchDictionary ) ;
183
+ } ) ;
184
+ } ;
185
+
186
+ // update matching item from the keychain
187
+ export const update = ( account : string , service : string , newData : string ) : void => {
188
+
189
+ const searchDictionary : NSMutableDictionaryType = ObjC . classes . NSMutableDictionary . alloc ( ) . init ( ) ;
190
+ searchDictionary . setObject_forKey_ ( kSec . kSecAttrSynchronizableAny , kSec . kSecAttrSynchronizable ) ;
191
+
192
+ // set the class-type we are querying for now & update
193
+ searchDictionary . setObject_forKey_ ( kSec . kSecClassGenericPassword , kSec . kSecClass ) ;
194
+ searchDictionary . setObject_forKey_ ( account , kSec . kSecAttrAccount ) ;
195
+ searchDictionary . setObject_forKey_ ( service , kSec . kSecAttrService ) ;
196
+
197
+ // set the dictionary with new value
198
+ const itemDict : NSMutableDictionaryType = ObjC . classes . NSMutableDictionary . alloc ( ) . init ( ) ;
199
+ const v : NSStringType = ObjC . classes . NSString . stringWithString_ ( newData ) . dataUsingEncoding_ ( NSUTF8StringEncoding ) ;
200
+ itemDict . setObject_forKey_ ( account , kSec . kSecAttrAccount ) ;
201
+ itemDict . setObject_forKey_ ( v , kSec . kSecValueData ) ;
202
+ libObjc . SecItemUpdate ( searchDictionary , itemDict ) ;
203
+
204
+ } ;
205
+
173
206
// add a string entry to the keychain
174
207
export const add = ( account : string , service : string , data : string ) : boolean => {
175
208
0 commit comments