MYCertificate.h
changeset 22 058394513f33
parent 16 c409dbc4f068
child 23 39fec79de6e8
     1.1 --- a/MYCertificate.h	Tue Jun 02 13:16:28 2009 -0700
     1.2 +++ b/MYCertificate.h	Sat Jun 06 15:36:35 2009 -0700
     1.3 @@ -12,13 +12,14 @@
     1.4  #import <Security/cssmtype.h>
     1.5  #endif
     1.6  
     1.7 -@class MYPublicKey, MYIdentity;
     1.8 +@class MYPublicKey, MYIdentity, MYCertificateInfo;
     1.9  
    1.10  
    1.11  /** An X.509 certificate. */
    1.12  @interface MYCertificate : MYKeychainItem {
    1.13      @private
    1.14      SecCertificateRef _certificateRef;
    1.15 +    MYCertificateInfo *_info;
    1.16  }
    1.17  
    1.18  /** Creates a MYCertificate object for an existing Keychain certificate reference. */
    1.19 @@ -42,7 +43,13 @@
    1.20  /** The certificate's public key. */
    1.21  @property (readonly) MYPublicKey *publicKey;
    1.22  
    1.23 -/** The name of the subject (owner) of the certificate. */
    1.24 +/** The Identity (if any) that this Certificate is part of. */
    1.25 +@property (readonly) MYIdentity *identity;
    1.26 +
    1.27 +/** The metadata of the certificate, like the subject name and expiration date. */
    1.28 +@property (readonly) MYCertificateInfo *info;
    1.29 +
    1.30 +/** The common name of the subject (owner) of the certificate. */
    1.31  @property (readonly) NSString *commonName;
    1.32  
    1.33  
    1.34 @@ -57,9 +64,6 @@
    1.35                            type: (CSSM_CERT_TYPE) type
    1.36                        encoding: (CSSM_CERT_ENCODING) encoding;
    1.37  
    1.38 -/** The Identity (if any) that this Certificate is part of. */
    1.39 -@property (readonly) MYIdentity *identity;
    1.40 -
    1.41  /** The list (if any) of the subject's email addresses. */
    1.42  @property (readonly) NSArray *emailAddresses;
    1.43