1.1 --- a/MYCertificate.h Sat Apr 04 22:56:13 2009 -0700
1.2 +++ b/MYCertificate.h Thu Apr 09 22:46:48 2009 -0700
1.3 @@ -27,13 +27,6 @@
1.4 /** Creates a MYCertificate object from exported key data, but does not add it to any keychain. */
1.5 - (id) initWithCertificateData: (NSData*)data;
1.6
1.7 -#if !TARGET_OS_IPHONE
1.8 -/** Creates a MYCertificate object from exported key data, but does not add it to any keychain. */
1.9 -- (id) initWithCertificateData: (NSData*)data
1.10 - type: (CSSM_CERT_TYPE) type
1.11 - encoding: (CSSM_CERT_ENCODING) encoding;
1.12 -#endif
1.13 -
1.14 /** The Keychain object reference for this certificate. */
1.15 @property (readonly) SecCertificateRef certificateRef;
1.16
1.17 @@ -46,7 +39,18 @@
1.18 /** The name of the subject (owner) of the certificate. */
1.19 @property (readonly) NSString *commonName;
1.20
1.21 +
1.22 +/** @name Mac-Only
1.23 + * Functionality not available on iPhone.
1.24 + */
1.25 +//@{
1.26 #if !TARGET_OS_IPHONE
1.27 +
1.28 +/** Creates a MYCertificate object from exported key data, but does not add it to any keychain. */
1.29 +- (id) initWithCertificateData: (NSData*)data
1.30 + type: (CSSM_CERT_TYPE) type
1.31 + encoding: (CSSM_CERT_ENCODING) encoding;
1.32 +
1.33 /** The list (if any) of the subject's email addresses. */
1.34 @property (readonly) NSArray *emailAddresses;
1.35
1.36 @@ -55,6 +59,8 @@
1.37
1.38 /** Associates the receiver as the preferred certificate for the given name string. */
1.39 - (BOOL) setPreferredCertificateForName: (NSString*)name;
1.40 +
1.41 #endif
1.42 +//@}
1.43
1.44 @end