]> git.saurik.com Git - apple/security.git/blob - certificates/ota_cert_tool/ios_ota_cert_tool/PSCert.h
Security-57031.30.12.tar.gz
[apple/security.git] / certificates / ota_cert_tool / ios_ota_cert_tool / PSCert.h
1 //
2 // PSCert.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
12 @interface PSCert : NSObject
13 {
14 @private
15 NSString* _cert_hash;
16 }
17
18 @property (readonly) NSString* cert_hash;
19
20 - (id)initWithCertFilePath:(NSString *)filePath;
21
22 @end