* Replaced MYKeyPair with MYPrivateKey.
* Changed config files.
5 // Created by Jens Alfke on 3/26/09.
6 // Copyright 2009 Jens Alfke. All rights reserved.
9 #import "MYKeychainItem.h"
12 #import <Security/cssmtype.h>
18 /** An X.509 certificate. */
19 @interface MYCertificate : MYKeychainItem {
21 SecCertificateRef _certificateRef;
24 /** Creates a MYCertificate object for an existing Keychain certificate reference. */
25 - (id) initWithCertificateRef: (SecCertificateRef)certificateRef;
27 /** Creates a MYCertificate object from exported key data, but does not add it to any keychain. */
28 - (id) initWithCertificateData: (NSData*)data;
30 /** The Keychain object reference for this certificate. */
31 @property (readonly) SecCertificateRef certificateRef;
33 /** The certificate's data. */
34 @property (readonly) NSData *certificateData;
36 /** The certificate's public key. */
37 @property (readonly) MYPublicKey *publicKey;
39 /** The name of the subject (owner) of the certificate. */
40 @property (readonly) NSString *commonName;
44 * Functionality not available on iPhone.
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;
54 /** The list (if any) of the subject's email addresses. */
55 @property (readonly) NSArray *emailAddresses;
57 /** Finds the current 'preferred' certificate for the given name string. */
58 + (MYCertificate*) preferredCertificateForName: (NSString*)name;
60 /** Associates the receiver as the preferred certificate for the given name string. */
61 - (BOOL) setPreferredCertificateForName: (NSString*)name;