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