MYKey.m
author snej@snej.local
Sat Apr 04 20:42:03 2009 -0700 (2009-04-04)
changeset 0 0a6527af039b
child 1 60e4cbbb5128
permissions -rw-r--r--
Initial checkin. Passes tests on Mac and in iPhone simulator.
     1 //
     2 //  MYKey.m
     3 //  MYCrypto
     4 //
     5 //  Created by Jens Alfke on 3/21/09.
     6 //  Copyright 2009 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import "MYKey.h"
    10 #import "MYCrypto_Private.h"
    11 #import "MYDigest.h"
    12 #import "MYErrorUtils.h"
    13 
    14 #if !USE_IPHONE_API
    15 
    16 
    17 #pragma mark -
    18 @implementation MYKey
    19 
    20 
    21 - (id) initWithKeyRef: (SecKeyRef)key {
    22     self = [super initWithKeychainItemRef: (SecKeychainItemRef)key];
    23     if (self) {
    24         _key = key;     // superclass has already CFRetained it
    25     }
    26     return self;
    27 }
    28 
    29 - (id) _initWithKeyData: (NSData*)data
    30             forKeychain: (SecKeychainRef)keychain {
    31     SecKeyImportExportParameters params = {};
    32     SecKeyRef key = importKey(data, self.keyType, keychain, &params);
    33     if (!key) {
    34         [self release];
    35         return nil;
    36     }
    37     self = [super initWithKeychainItemRef: (SecKeychainItemRef)key];
    38     if (self) {
    39         _key = key;
    40     }
    41     CFRelease(key);
    42     return self;
    43 }
    44 
    45 - (id) initWithKeyData: (NSData*)data {
    46     return [self _initWithKeyData: data forKeychain: nil];
    47 }
    48 
    49 
    50 - (NSString*) description {
    51     return $sprintf(@"%@[%p]", [self class], _key);     //FIX: Can we do anything better?
    52 }
    53 
    54 
    55 - (SecExternalItemType) keyType {
    56     AssertAbstractMethod();
    57 }
    58 
    59 
    60 @synthesize keyRef=_key;
    61 
    62 
    63 - (MYKey*) asKey {
    64     return self;
    65 }
    66 
    67 - (const CSSM_KEY*) cssmKey {
    68     const CSSM_KEY *cssmKey = NULL;
    69     Assert(check(SecKeyGetCSSMKey(_key, &cssmKey), @"SecKeyGetCSSMKey"), @"Failed to get CSSM_KEY");
    70     return cssmKey;
    71 }
    72 
    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];
    78     else
    79         return nil;
    80 }
    81 
    82 - (NSData*) keyData {
    83     return [self exportKeyInFormat: kSecFormatRawKey withPEM: NO];
    84 }
    85 
    86 - (NSString*) name {
    87     return [self stringValueOfAttribute: kSecKeyPrintName];
    88 }
    89 
    90 - (void) setName: (NSString*)name {
    91     [self setValue: name ofAttribute: kSecKeyPrintName];
    92 }
    93 
    94 - (NSString*) comment {
    95     return [self stringValueOfAttribute: kSecKeyApplicationTag];
    96 }
    97 
    98 - (void) setComment: (NSString*)comment {
    99     [self setValue: comment ofAttribute: kSecKeyApplicationTag];
   100 }
   101 
   102 - (NSString*) alias {
   103     return [self stringValueOfAttribute: kSecKeyAlias];
   104 }
   105 
   106 - (void) setAlias: (NSString*)alias {
   107     [self setValue: alias ofAttribute: kSecKeyAlias];
   108 }
   109 
   110 
   111 @end
   112 
   113 
   114 
   115 
   116 #pragma mark -
   117 #pragma mark UTILITY FUNCTIONS:
   118 
   119 
   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;
   126     
   127     params->version = SEC_KEY_IMPORT_EXPORT_PARAMS_VERSION;
   128     params->flags |= kSecKeyImportOnlyOne;
   129     if (keychain) {
   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;
   137     }
   138     if (!check(SecKeychainItemImport((CFDataRef)data, NULL, &inputFormat, &type,
   139                                      0, params, keychain, &items),
   140                @"SecKeychainItemImport"))
   141         return nil;
   142     if (!items || CFArrayGetCount(items) != 1)
   143         return nil;
   144     SecKeyRef key = (SecKeyRef)CFRetain(CFArrayGetValueAtIndex(items,0));
   145     CFRelease(items);
   146     return key; // caller must CFRelease
   147 }    
   148 
   149 
   150 #endif USE_IPHONE_API
   151 
   152 
   153 
   154 /*
   155  Copyright (c) 2009, Jens Alfke <jens@mooseyard.com>. All rights reserved.
   156  
   157  Redistribution and use in source and binary forms, with or without modification, are permitted
   158  provided that the following conditions are met:
   159  
   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
   164  distribution.
   165  
   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.
   174  */