1.1 --- a/MYPrivateKey.m Wed Apr 08 16:30:52 2009 -0700
1.2 +++ b/MYPrivateKey.m Thu Apr 09 21:36:21 2009 -0700
1.3 @@ -9,6 +9,7 @@
1.4 #import "MYPrivateKey.h"
1.5 #import "MYCrypto_Private.h"
1.6 #import "MYDigest.h"
1.7 +#import "MYCertGen.h"
1.8 #import <CommonCrypto/CommonDigest.h>
1.9
1.10
1.11 @@ -114,6 +115,12 @@
1.12 return [self _initWithKeyRef: privateKey publicKeyData: pubKeyData forKeychain: keychain];
1.13 }
1.14
1.15 +
1.16 +- (MYIdentity*) createSelfSignedIdentityWithAttributes: (NSDictionary*)attributes {
1.17 + return MYIdentityCreateSelfSigned(self, attributes);
1.18 +}
1.19 +
1.20 +
1.21 #endif
1.22
1.23