MYCertificate.h
author Jens Alfke <jens@mooseyard.com>
Sat Jun 06 15:36:35 2009 -0700 (2009-06-06)
changeset 22 058394513f33
parent 16 c409dbc4f068
child 23 39fec79de6e8
permissions -rw-r--r--
Added a few comments. That is all.
     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, MYIdentity, MYCertificateInfo;
    16 
    17 
    18 /** An X.509 certificate. */
    19 @interface MYCertificate : MYKeychainItem {
    20     @private
    21     SecCertificateRef _certificateRef;
    22     MYCertificateInfo *_info;
    23 }
    24 
    25 /** Creates a MYCertificate object for an existing Keychain certificate reference. */
    26 + (MYCertificate*) certificateWithCertificateRef: (SecCertificateRef)certificateRef;
    27 
    28 /** Initializes a MYCertificate object for an existing Keychain certificate reference. */
    29 - (id) initWithCertificateRef: (SecCertificateRef)certificateRef;
    30 
    31 /** Creates a MYCertificate object from exported key data, but does not add it to any keychain. */
    32 - (id) initWithCertificateData: (NSData*)data;
    33 
    34 /** Checks whether two MYCertificate objects have bit-for-bit identical certificate data. */
    35 - (BOOL)isEqualToCertificate:(MYCertificate*)cert;
    36 
    37 /** The Keychain object reference for this certificate. */
    38 @property (readonly) SecCertificateRef certificateRef;
    39 
    40 /** The certificate's data. */
    41 @property (readonly) NSData *certificateData;
    42 
    43 /** The certificate's public key. */
    44 @property (readonly) MYPublicKey *publicKey;
    45 
    46 /** The Identity (if any) that this Certificate is part of. */
    47 @property (readonly) MYIdentity *identity;
    48 
    49 /** The metadata of the certificate, like the subject name and expiration date. */
    50 @property (readonly) MYCertificateInfo *info;
    51 
    52 /** The common name of the subject (owner) of the certificate. */
    53 @property (readonly) NSString *commonName;
    54 
    55 
    56 /** @name Mac-Only
    57  *  Functionality not available on iPhone. 
    58  */
    59 //@{
    60 #if !TARGET_OS_IPHONE
    61 
    62 /** Creates a MYCertificate object from exported key data, but does not add it to any keychain. */
    63 - (id) initWithCertificateData: (NSData*)data
    64                           type: (CSSM_CERT_TYPE) type
    65                       encoding: (CSSM_CERT_ENCODING) encoding;
    66 
    67 /** The list (if any) of the subject's email addresses. */
    68 @property (readonly) NSArray *emailAddresses;
    69 
    70 /** Finds the current 'preferred' certificate for the given name string. */
    71 + (MYCertificate*) preferredCertificateForName: (NSString*)name;
    72 
    73 /** Associates the receiver as the preferred certificate for the given name string. */
    74 - (BOOL) setPreferredCertificateForName: (NSString*)name;
    75 
    76 #endif
    77 //@}
    78 
    79 
    80 /** @name Expert
    81  */
    82 //@{
    83 #if !TARGET_OS_IPHONE
    84 
    85 + (SecPolicyRef) X509Policy;
    86 + (SecPolicyRef) SSLPolicy;
    87 + (SecPolicyRef) SMIMEPolicy;
    88 - (CSSM_CERT_TYPE) certificateType;
    89 - (NSArray*) trustSettings;
    90 - (BOOL) setUserTrust: (SecTrustUserSetting)trustSetting;
    91     
    92 #endif
    93 //@}
    94     
    95 @end
    96 
    97 
    98 NSString* MYPolicyGetName( SecPolicyRef policy );
    99 NSString* MYTrustDescribe( SecTrustRef trust );
   100 NSString* MYTrustResultDescribe( SecTrustResultType result );