]> git.saurik.com Git - apple/security.git/blob - certificates/ota_cert_tool/ios_ota_cert_tool/PSCerts.h
Security-57031.30.12.tar.gz
[apple/security.git] / certificates / ota_cert_tool / ios_ota_cert_tool / PSCerts.h
1 //
2 // PSCerts.h
3 // ios_ota_cert_tool
4 //
5 // Created by James Murphy on 12/11/12.
6 // Copyright (c) 2012 James Murphy. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @interface PSCerts : NSObject
12 {
13 NSString* _cert_dir_path;
14 NSMutableArray* _certs;
15
16 }
17
18 @property (readonly) NSArray* certs;
19
20 - (id)initWithCertFilePath:(NSString *)filePath forBadCerts:(BOOL)forBad;
21
22
23 @end