Initial checkin. Passes tests on Mac and in iPhone simulator.
5 // Created by Jens Alfke on 3/21/09.
6 // Copyright 2009 Jens Alfke. All rights reserved.
10 #import "MYCrypto_Private.h"
12 #import "MYErrorUtils.h"
21 - (id) initWithKeyRef: (SecKeyRef)key {
22 self = [super initWithKeychainItemRef: (SecKeychainItemRef)key];
24 _key = key; // superclass has already CFRetained it
29 - (id) _initWithKeyData: (NSData*)data
30 forKeychain: (SecKeychainRef)keychain {
31 SecKeyImportExportParameters params = {};
32 SecKeyRef key = importKey(data, self.keyType, keychain, ¶ms);
37 self = [super initWithKeychainItemRef: (SecKeychainItemRef)key];
45 - (id) initWithKeyData: (NSData*)data {
46 return [self _initWithKeyData: data forKeychain: nil];
50 - (NSString*) description {
51 return $sprintf(@"%@[%p]", [self class], _key); //FIX: Can we do anything better?
55 - (SecExternalItemType) keyType {
56 AssertAbstractMethod();
60 @synthesize keyRef=_key;
67 - (const CSSM_KEY*) cssmKey {
68 const CSSM_KEY *cssmKey = NULL;
69 Assert(check(SecKeyGetCSSMKey(_key, &cssmKey), @"SecKeyGetCSSMKey"), @"Failed to get CSSM_KEY");
73 - (NSData*) exportKeyInFormat: (SecExternalFormat)format withPEM: (BOOL)withPEM {
74 CFDataRef data = NULL;
75 if (check(SecKeychainItemExport(_key, format, (withPEM ?kSecItemPemArmour :0), NULL, &data),
76 @"SecKeychainItemExport"))
77 return [(id)CFMakeCollectable(data) autorelease];
83 return [self exportKeyInFormat: kSecFormatRawKey withPEM: NO];
87 return [self stringValueOfAttribute: kSecKeyPrintName];
90 - (void) setName: (NSString*)name {
91 [self setValue: name ofAttribute: kSecKeyPrintName];
94 - (NSString*) comment {
95 return [self stringValueOfAttribute: kSecKeyApplicationTag];
98 - (void) setComment: (NSString*)comment {
99 [self setValue: comment ofAttribute: kSecKeyApplicationTag];
102 - (NSString*) alias {
103 return [self stringValueOfAttribute: kSecKeyAlias];
106 - (void) setAlias: (NSString*)alias {
107 [self setValue: alias ofAttribute: kSecKeyAlias];
117 #pragma mark UTILITY FUNCTIONS:
120 SecKeyRef importKey(NSData *data,
121 SecExternalItemType type,
122 SecKeychainRef keychain,
123 SecKeyImportExportParameters *params) {
124 SecExternalFormat inputFormat = (type==kSecItemTypeSessionKey) ?kSecFormatRawKey :kSecFormatOpenSSL;
125 CFArrayRef items = NULL;
127 params->version = SEC_KEY_IMPORT_EXPORT_PARAMS_VERSION;
128 params->flags |= kSecKeyImportOnlyOne;
130 params->keyAttributes = CSSM_KEYATTR_EXTRACTABLE | CSSM_KEYATTR_PERMANENT;
131 if (type==kSecItemTypeSessionKey)
132 params->keyUsage = CSSM_KEYUSE_ENCRYPT | CSSM_KEYUSE_DECRYPT;
133 else if (type==kSecItemTypePublicKey)
134 params->keyUsage = CSSM_KEYUSE_ENCRYPT | CSSM_KEYUSE_VERIFY;
135 else if (type==kSecItemTypePrivateKey)
136 params->keyUsage = CSSM_KEYUSE_DECRYPT | CSSM_KEYUSE_SIGN;
138 if (!check(SecKeychainItemImport((CFDataRef)data, NULL, &inputFormat, &type,
139 0, params, keychain, &items),
140 @"SecKeychainItemImport"))
142 if (!items || CFArrayGetCount(items) != 1)
144 SecKeyRef key = (SecKeyRef)CFRetain(CFArrayGetValueAtIndex(items,0));
146 return key; // caller must CFRelease
150 #endif USE_IPHONE_API
155 Copyright (c) 2009, Jens Alfke <jens@mooseyard.com>. All rights reserved.
157 Redistribution and use in source and binary forms, with or without modification, are permitted
158 provided that the following conditions are met:
160 * Redistributions of source code must retain the above copyright notice, this list of conditions
161 and the following disclaimer.
162 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions
163 and the following disclaimer in the documentation and/or other materials provided with the
166 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
167 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
168 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRI-
169 BUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
170 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
171 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
172 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
173 THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.