diff -r f4709533c816 -r aa5eb3fd6ebf MYPrivateKey.h --- a/MYPrivateKey.h Thu Apr 09 21:36:21 2009 -0700 +++ b/MYPrivateKey.h Sun Apr 12 22:16:14 2009 -0700 @@ -51,7 +51,10 @@ /** Creates a self-signed identity certificate using this key-pair. The attributes describe the certificate's metadata, including its expiration date and the subject's name. Keys for the dictionary are given below; the only mandatory one is - kMYIdentityCommonNameKey. */ + kMYIdentityCommonNameKey. + The resulting identity certificate includes X.509 extended attributes allowing it to be + used for SSL connections. (Plug: See my MYNetwork library for an easy way to run SSL + servers and clients.) */ - (MYIdentity*) createSelfSignedIdentityWithAttributes: (NSDictionary*)attributes; /** Exports the private key as a data blob, so that it can be stored as a backup, or transferred @@ -84,6 +87,7 @@ /* Attribute keys for creating identities: */ + #define kMYIdentityCommonNameKey @"Common Name" // NSString. Required! #define kMYIdentityGivenNameKey @"Given Name" #define kMYIdentitySurnameKey @"Surname"