Code cleanup, more header comments.
5 // Created by Jens Alfke on 3/23/09.
6 // Copyright 2009 Jens Alfke. All rights reserved.
11 #import "MYSymmetricKey.h"
13 #import "MYCertificate.h"
15 #import <Security/Security.h>
17 /* The iPhone simulator actually has the Mac OS X security API, not the iPhone one.
18 So don't use the iPhone API when configured to run in the simulator. */
19 #if TARGET_OS_IPHONE && !TARGET_IPHONE_SIMULATOR
20 #define USE_IPHONE_API 1
22 #define USE_IPHONE_API 0
26 typedef CFTypeRef SecKeychainAttrType;
27 typedef CFTypeRef SecKeychainItemRef;
28 typedef CFTypeRef SecKeychainRef;
29 typedef CFTypeRef SecExternalItemType;
33 #if TARGET_IPHONE_SIMULATOR
34 @interface MYKeychain (Private)
35 - (id) initWithKeychainRef: (SecKeychainRef)keychainRef;
36 @property (readonly) SecKeychainRef keychainRef, keychainRefOrDefault;
37 @property (readonly) CSSM_CSP_HANDLE CSPHandle;
38 @property (readonly) NSString* path;
43 @interface MYKeychainItem (Private);
44 - (id) initWithKeychainItemRef: (MYKeychainItemRef)itemRef;
45 - (NSData*) _getContents: (OSStatus*)outError;
46 - (NSString*) stringValueOfAttribute: (SecKeychainAttrType)attr;
47 - (BOOL) setValue: (NSString*)valueStr ofAttribute: (SecKeychainAttrType)attr;
48 + (NSData*) _getAttribute: (SecKeychainAttrType)attr ofItem: (MYKeychainItemRef)item;
49 - (id) _attribute: (SecKeychainAttrType)attribute;
50 + (NSString*) _getStringAttribute: (SecKeychainAttrType)attr ofItem: (MYKeychainItemRef)item;
51 + (BOOL) _setAttribute: (SecKeychainAttrType)attr ofItem: (MYKeychainItemRef)item
52 stringValue: (NSString*)stringValue;
56 @interface MYKey (Private)
57 - (id) initWithKeyData: (NSData*)data;
58 - (id) _initWithKeyData: (NSData*)data
59 forKeychain: (SecKeychainRef)keychain;
60 @property (readonly) SecExternalItemType keyType;
62 @property (readonly) const CSSM_KEY* cssmKey;
63 - (NSData*) exportKeyInFormat: (SecExternalFormat)format withPEM: (BOOL)withPEM;
65 @property (readonly) NSArray* _itemList;
69 @interface MYSymmetricKey (Private)
70 + (MYSymmetricKey*) _generateSymmetricKeyOfSize: (unsigned)keySizeInBits
71 algorithm: (CCAlgorithm)algorithm
72 inKeychain: (MYKeychain*)keychain;
76 @interface MYPublicKey (Private)
77 + (MYSHA1Digest*) _digestOfKey: (SecKeyRef)key;
78 - (BOOL) setValue: (NSString*)valueStr ofAttribute: (SecKeychainAttrType)attr;
82 @interface MYKeyPair (Private)
83 + (MYKeyPair*) _generateRSAKeyPairOfSize: (unsigned)keySize
84 inKeychain: (SecKeychainRef)keychain;
85 - (id) _initWithPublicKeyData: (NSData*)pubKeyData
86 privateKeyData: (NSData*)privKeyData
87 forKeychain: (SecKeychainRef)keychain
88 alertTitle: (NSString*)title
89 alertPrompt: (NSString*)prompt;
90 - (id) _initWithPublicKeyData: (NSData*)pubKeyData
91 privateKeyData: (NSData*)privKeyData
92 forKeychain: (SecKeychainRef)keychain
93 passphrase: (NSString*)passphrase;
95 - (NSData*) _exportPrivateKeyInFormat: (SecExternalFormat)format
96 withPEM: (BOOL)withPEM
97 passphrase: (NSString*)passphrase;
102 #if TARGET_IPHONE_SIMULATOR
103 @interface MYCertificate (Private)
104 - (id) initWithCertificateData: (NSData*)data
105 type: (CSSM_CERT_TYPE) type
106 encoding: (CSSM_CERT_ENCODING) encoding;
111 NSData* _crypt(SecKeyRef key, NSData *data, CCOperation op);
114 BOOL check(OSStatus err, NSString *what);
117 BOOL checkcssm(CSSM_RETURN err, NSString *what);
119 SecKeyRef importKey(NSData *data,
120 SecExternalItemType type,
121 SecKeychainRef keychain,
122 SecKeyImportExportParameters *params /*non-null*/);
123 CSSM_CC_HANDLE cssmCreateSignatureContext(SecKeyRef key);