9 #import <Cocoa/Cocoa.h> 10 #import "binhandler.h" 13 typedef NS_ENUM(NSInteger, eIDDumpType)
17 @interface CertificateStore:NSObject < NSOutlineViewDataSource, NSOutlineViewDelegate, binhandler >
18 @property NSMutableDictionary *
20 @property NSOutlineView * ov;
22 -(instancetype) initWithOutlineView:(NSOutlineView *) view;
23 -(NSData *) certificateForKey:(NSString *) key;
24 -(void) dumpFile:(
int)
25 fd forKey:(NSString *)
26 key withFormat:(eIDDumpType) format;
28 -(NSString *) fileNameForKey:(NSString *) key;
29 -(NSString *) keyForParent:(NSString *) key;
31 -(void) setValid:(eIDResult)
32 valid forKey:(NSString *) key;
Dump in PEM format.
Definition: certhelpers.h:42
Dump using ASN.1 Distinguished Encoding Rules (DER)
Definition: certhelpers.h:41
Definition: AppDelegate.h:12
Certificate helper functions. Linux/OSX only.
Definition: CertificateStore.h:17