iPhone/MYCrypto_iPhoneAppDelegate.h
author Jens Alfke <jens@mooseyard.com>
Tue Jun 09 23:58:03 2009 -0700 (2009-06-09)
changeset 24 6856e071d25a
permissions -rw-r--r--
* More work on iPhone compatibility.
* Restored the signature-verification code to MYCertInfo, which I'd removed earlier. I now need it to verify self-signed certs, since the Security framework won't do it for me.
* Merged MYCertificate-iPhone.m into MYCertificate.m since there's more shared code now.
snej@0
     1
//
snej@0
     2
//  MYCrypto_iPhoneAppDelegate.h
snej@0
     3
//  MYCrypto-iPhone
snej@0
     4
//
snej@0
     5
//  Created by Jens Alfke on 3/30/09.
snej@0
     6
//  Copyright Jens Alfke 2009. All rights reserved.
snej@0
     7
//
snej@0
     8
snej@0
     9
#import <UIKit/UIKit.h>
snej@0
    10
snej@0
    11
@interface MYCrypto_iPhoneAppDelegate : NSObject <UIApplicationDelegate> {
snej@0
    12
    UIWindow *window;
snej@0
    13
}
snej@0
    14
snej@0
    15
@property (nonatomic, retain) IBOutlet UIWindow *window;
snej@0
    16
snej@0
    17
@end
snej@0
    18