iPhone/MYCrypto_iPhoneAppDelegate.h
author Jens Alfke <jens@mooseyard.com>
Sat Jun 06 15:01:28 2009 -0700 (2009-06-06)
changeset 21 2c300b15b381
permissions -rw-r--r--
* Created class MYCertificateRequest, factored out of MYCertificateInfo.
* Added method to create a MYIdentity directly from a MYCertificateRequest.
* Added raw modulus+exponent accessor and initializer for MYPublicKey.
* Removed obsolete MYCertGen code, and the MYPrivateKey identity-creation method that used it.
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