MYCertificate.h
author snej@snej.local
Thu Apr 09 22:47:11 2009 -0700 (2009-04-09)
changeset 7 dee779b84a95
parent 1 60e4cbbb5128
child 8 4c0eafa7b233
permissions -rw-r--r--
Added tag v0.1 for changeset 2d7692f9b6b4
     1 //
     2 //  MYCertificate.h
     3 //  MYCrypto
     4 //
     5 //  Created by Jens Alfke on 3/26/09.
     6 //  Copyright 2009 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import "MYKeychainItem.h"
    10 
    11 #if !TARGET_OS_IPHONE
    12 #import <Security/cssmtype.h>
    13 #endif
    14 
    15 @class MYPublicKey;
    16 
    17 
    18 /** An X.509 certificate. */
    19 @interface MYCertificate : MYKeychainItem {
    20     @private
    21     SecCertificateRef _certificateRef;
    22 }
    23 
    24 /** Creates a MYCertificate object for an existing Keychain certificate reference. */
    25 - (id) initWithCertificateRef: (SecCertificateRef)certificateRef;
    26 
    27 /** Creates a MYCertificate object from exported key data, but does not add it to any keychain. */
    28 - (id) initWithCertificateData: (NSData*)data;
    29 
    30 /** The Keychain object reference for this certificate. */
    31 @property (readonly) SecCertificateRef certificateRef;
    32 
    33 /** The certificate's data. */
    34 @property (readonly) NSData *certificateData;
    35 
    36 /** The certificate's public key. */
    37 @property (readonly) MYPublicKey *publicKey;
    38 
    39 /** The name of the subject (owner) of the certificate. */
    40 @property (readonly) NSString *commonName;
    41 
    42 
    43 /** @name Mac-Only
    44  *  Functionality not available on iPhone. 
    45  */
    46 //@{
    47 #if !TARGET_OS_IPHONE
    48 
    49 /** Creates a MYCertificate object from exported key data, but does not add it to any keychain. */
    50 - (id) initWithCertificateData: (NSData*)data
    51                           type: (CSSM_CERT_TYPE) type
    52                       encoding: (CSSM_CERT_ENCODING) encoding;
    53 
    54 /** The list (if any) of the subject's email addresses. */
    55 @property (readonly) NSArray *emailAddresses;
    56 
    57 /** Finds the current 'preferred' certificate for the given name string. */
    58 + (MYCertificate*) preferredCertificateForName: (NSString*)name;
    59 
    60 /** Associates the receiver as the preferred certificate for the given name string. */
    61 - (BOOL) setPreferredCertificateForName: (NSString*)name;
    62 
    63 #endif
    64 //@}
    65 
    66 @end