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