MYIdentity.m
changeset 25 38c3c3923e1f
parent 14 3af1d1c0ceb5
child 26 d9c2a06d4e4e
     1.1 --- a/MYIdentity.m	Sun Apr 19 21:19:35 2009 -0700
     1.2 +++ b/MYIdentity.m	Wed Jun 10 09:02:18 2009 -0700
     1.3 @@ -35,19 +35,21 @@
     1.4  }
     1.5  
     1.6  
     1.7 -#if !TARGET_OS_IPHONE
     1.8  - (id) initWithCertificateRef: (SecCertificateRef)certificateRef {
     1.9      self = [super initWithCertificateRef: certificateRef];
    1.10      if (self) {
    1.11 +#if !MYCRYPTO_USE_IPHONE_API
    1.12          if (!check(SecIdentityCreateWithCertificate(NULL, certificateRef, &_identityRef),
    1.13                     @"SecIdentityCreateWithCertificate")) {
    1.14              [self release];
    1.15              return nil;
    1.16          }
    1.17 +#else
    1.18 +        Assert(NO,@"-[MYIdentity initWithCertificateRef] isn't implemented for iPhone yet!");//FIX
    1.19 +#endif
    1.20      }
    1.21      return self;
    1.22  }
    1.23 -#endif
    1.24  
    1.25  - (void) dealloc
    1.26  {
    1.27 @@ -69,7 +71,7 @@
    1.28      if (!check(SecIdentityCopyPrivateKey(_identityRef, &keyRef), @"SecIdentityCopyPrivateKey"))
    1.29          return NULL;
    1.30      MYPrivateKey *privateKey = [[MYPrivateKey alloc] _initWithKeyRef: keyRef
    1.31 -                                                          publicKey: self.publicKey];
    1.32 +                                                           publicKey: self.publicKey];
    1.33      CFRelease(keyRef);
    1.34      return [privateKey autorelease];
    1.35  }