mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 12:09:51 +00:00
28 lines
642 B
Objective-C
28 lines
642 B
Objective-C
//
|
|
// SecKeychainSearch.h
|
|
// Security
|
|
//
|
|
// Created by Christopher Lloyd on 2/12/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <Security/Security.h>
|
|
|
|
@class SecKeychainCursor;
|
|
|
|
@interface SecKeychainSearch : NSObject {
|
|
CFArrayRef _array;
|
|
SecItemClass _itemClass;
|
|
SecKeychainAttributeList *_attributeList;
|
|
|
|
int _arrayCursor;
|
|
SecKeychainCursor *_keychainCursor;
|
|
}
|
|
|
|
- initWithKeychainOrArray:(CFTypeRef)keychainOrArray itemClass:(SecItemClass)itemClass attributeList:(const SecKeychainAttributeList *)attributeList;
|
|
|
|
- (SecKeychainItemRef)copyNextItem;
|
|
|
|
@end
|