openssl-apple/Classes/OpenSSL_for_iPhoneAppDelegate.h

31 lines
756 B
C
Raw Normal View History

//
2010-06-30 18:54:53 +00:00
// OpenSSL_for_iPhoneAppDelegate.h
// OpenSSL-for-iPhone
//
// Created by Felix Schulze on 01.02.2010.
// Copyright Felix Schulze 2010. All rights reserved.
//
#import <UIKit/UIKit.h>
2010-06-30 18:54:53 +00:00
@interface OpenSSL_for_iPhoneAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
IBOutlet UITextField *textField;
2010-12-04 13:46:33 +00:00
IBOutlet UILabel *md5TextField;
IBOutlet UILabel *sha256TextField;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@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;
- (IBAction)showInfo;
- (IBAction)calculateMD5:(id)sender;
2010-12-04 13:46:33 +00:00
- (IBAction)calculateSHA256:(id)sender;
@end