mirror of
https://github.com/passepartoutvpn/openssl-apple.git
synced 2025-02-15 04:12:07 +00:00
22 lines
523 B
Objective-C
22 lines
523 B
Objective-C
//
|
|
// ViewController.h
|
|
// OpenSSL-for-iOS
|
|
//
|
|
// Created by Felix Schulze on 04.12.2010.
|
|
// Updated by Schulze Felix on 01.04.12.
|
|
// Copyright (c) 2012 Felix Schulze . All rights reserved.
|
|
// Web: http://www.felixschulze.de
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ViewController : UIViewController
|
|
|
|
@property (nonatomic, strong) IBOutlet UITextField *textField;
|
|
@property (nonatomic, strong) IBOutlet UILabel *md5TextField;
|
|
@property (nonatomic, strong) IBOutlet UILabel *sha256TextField;
|
|
|
|
- (IBAction)showInfo;
|
|
|
|
@end
|