snej@0
|
1 |
//
|
snej@0
|
2 |
// MYKey.h
|
snej@0
|
3 |
// MYCrypto
|
snej@0
|
4 |
//
|
snej@0
|
5 |
// Created by Jens Alfke on 3/30/09.
|
snej@0
|
6 |
// Copyright 2009 Jens Alfke. All rights reserved.
|
snej@0
|
7 |
//
|
snej@0
|
8 |
|
snej@0
|
9 |
#import "MYKeychainItem.h"
|
snej@0
|
10 |
|
snej@0
|
11 |
|
snej@1
|
12 |
@protocol MYEncryption <NSObject>
|
snej@0
|
13 |
|
snej@1
|
14 |
/** Encrypts data using this key, returning the raw encrypted result. */
|
snej@1
|
15 |
- (NSData*) encryptData: (NSData*)data;
|
snej@1
|
16 |
|
snej@1
|
17 |
@end
|
snej@1
|
18 |
|
snej@1
|
19 |
@protocol MYDecryption <NSObject>
|
snej@1
|
20 |
|
snej@1
|
21 |
/** Decrypts data using this key, returning the original data. */
|
snej@1
|
22 |
- (NSData*) decryptData: (NSData*)data;
|
snej@1
|
23 |
|
snej@1
|
24 |
@end
|
snej@1
|
25 |
|
snej@1
|
26 |
|
snej@1
|
27 |
|
snej@1
|
28 |
/** Abstract superclass for keys.
|
snej@1
|
29 |
Concrete subclasses are MYSymmetricKey and MYPublicKey. */
|
snej@0
|
30 |
@interface MYKey : MYKeychainItem
|
snej@0
|
31 |
|
snej@1
|
32 |
/** The key's raw data. */
|
snej@0
|
33 |
@property (readonly) NSData *keyData;
|
snej@0
|
34 |
|
snej@0
|
35 |
/** The user-visible name (kSecKeyPrintName) associated with this key in the Keychain.
|
snej@0
|
36 |
The user can edit this, so don't expect it to be immutable. */
|
snej@0
|
37 |
@property (copy) NSString *name;
|
snej@0
|
38 |
|
snej@0
|
39 |
/** An application-specific string (kSecKeyAlias) associated with this key in the Keychain.
|
snej@0
|
40 |
Not visible to or editable by the user.
|
snej@0
|
41 |
If you own this key, you can store any associated metadata you like here, although be aware
|
snej@0
|
42 |
that it can be read and modified by any other app that can access this key. */
|
snej@0
|
43 |
@property (copy) NSString *alias;
|
snej@0
|
44 |
|
snej@0
|
45 |
#if !TARGET_OS_IPHONE
|
snej@0
|
46 |
/** The user-visible comment (kSecKeyApplicationTag) associated with this key in the Keychain.
|
snej@0
|
47 |
The user can edit this, so don't expect it to be immutable. */
|
snej@0
|
48 |
@property (copy) NSString *comment;
|
snej@0
|
49 |
#endif
|
snej@0
|
50 |
|
snej@0
|
51 |
@end
|
snej@0
|
52 |
|
snej@0
|
53 |
|
snej@0
|
54 |
|
snej@1
|
55 |
@interface MYKey (Expert)
|
snej@0
|
56 |
|
snej@1
|
57 |
/** Creates a MYKey object for an existing Keychain key reference.
|
snej@1
|
58 |
This is abstract -- must be called on a MYSymmetricKey or MYPublicKey, as appropriate. */
|
snej@1
|
59 |
- (id) initWithKeyRef: (SecKeyRef)keyRef;
|
snej@1
|
60 |
|
snej@1
|
61 |
/** The Keychain object reference for this key. */
|
snej@1
|
62 |
@property (readonly) SecKeyRef keyRef;
|
snej@1
|
63 |
|
snej@1
|
64 |
#if !TARGET_OS_IPHONE
|
snej@1
|
65 |
/** The underlying CSSM_KEY structure; used with low-level crypto APIs. */
|
snej@1
|
66 |
@property (readonly) const struct cssm_key* cssmKey;
|
snej@1
|
67 |
|
snej@1
|
68 |
/** Converts the key into a data blob in one of several standard formats, suitable for storing in
|
snej@1
|
69 |
a file or sending over the network.
|
snej@1
|
70 |
@param format The data format: kSecFormatOpenSSL, kSecFormatSSH, kSecFormatBSAFE or kSecFormatSSHv2.
|
snej@1
|
71 |
@param withPEM YES if the data should be encoded in PEM format, which converts into short lines
|
snej@1
|
72 |
of printable ASCII characters, suitable for sending in email. */
|
snej@1
|
73 |
- (NSData*) exportKeyInFormat: (SecExternalFormat)format withPEM: (BOOL)withPEM;
|
snej@1
|
74 |
#endif
|
snej@0
|
75 |
|
snej@0
|
76 |
@end
|