2010-02-04 14:04:16 +00:00
|
|
|
//
|
2010-12-04 14:18:35 +00:00
|
|
|
// OpenSSL_for_iOSAppDelegate.h
|
|
|
|
// OpenSSL-for-iOS
|
2010-02-04 14:04:16 +00:00
|
|
|
//
|
|
|
|
// Created by Felix Schulze on 01.02.2010.
|
|
|
|
// Copyright Felix Schulze 2010. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2010-12-04 14:18:35 +00:00
|
|
|
@interface OpenSSL_for_iOSAppDelegate : NSObject <UIApplicationDelegate> {
|
2010-02-04 14:04:16 +00:00
|
|
|
UIWindow *window;
|
2010-12-04 12:25:08 +00:00
|
|
|
|
|
|
|
IBOutlet UITextField *textField;
|
2010-12-04 13:46:33 +00:00
|
|
|
IBOutlet UILabel *md5TextField;
|
|
|
|
IBOutlet UILabel *sha256TextField;
|
2010-12-04 14:18:35 +00:00
|
|
|
|
2010-02-04 14:04:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
2010-12-04 12:25:08 +00:00
|
|
|
@property (nonatomic, retain) IBOutlet UITextField *textField;
|
2010-12-04 13:46:33 +00:00
|
|
|
@property (nonatomic, retain) IBOutlet UILabel *md5TextField;
|
|
|
|
@property (nonatomic, retain) IBOutlet UILabel *sha256TextField;
|
2010-02-04 14:04:16 +00:00
|
|
|
|
2010-12-04 12:25:08 +00:00
|
|
|
|
|
|
|
- (IBAction)showInfo;
|
|
|
|
- (IBAction)calculateMD5:(id)sender;
|
2010-12-04 13:46:33 +00:00
|
|
|
- (IBAction)calculateSHA256:(id)sender;
|
2010-02-04 14:04:16 +00:00
|
|
|
@end
|
|
|
|
|