diff -r c409dbc4f068 -r 058394513f33 MYCertificate.h --- a/MYCertificate.h Tue Jun 02 13:16:28 2009 -0700 +++ b/MYCertificate.h Sat Jun 06 15:36:35 2009 -0700 @@ -12,13 +12,14 @@ #import #endif -@class MYPublicKey, MYIdentity; +@class MYPublicKey, MYIdentity, MYCertificateInfo; /** An X.509 certificate. */ @interface MYCertificate : MYKeychainItem { @private SecCertificateRef _certificateRef; + MYCertificateInfo *_info; } /** Creates a MYCertificate object for an existing Keychain certificate reference. */ @@ -42,7 +43,13 @@ /** The certificate's public key. */ @property (readonly) MYPublicKey *publicKey; -/** The name of the subject (owner) of the certificate. */ +/** The Identity (if any) that this Certificate is part of. */ +@property (readonly) MYIdentity *identity; + +/** The metadata of the certificate, like the subject name and expiration date. */ +@property (readonly) MYCertificateInfo *info; + +/** The common name of the subject (owner) of the certificate. */ @property (readonly) NSString *commonName; @@ -57,9 +64,6 @@ type: (CSSM_CERT_TYPE) type encoding: (CSSM_CERT_ENCODING) encoding; -/** The Identity (if any) that this Certificate is part of. */ -@property (readonly) MYIdentity *identity; - /** The list (if any) of the subject's email addresses. */ @property (readonly) NSArray *emailAddresses;