Modernizes project to use ARC
Universal app for iPhone / iPad
This commit is contained in:
parent
91edf5290f
commit
10bf903c76
|
@ -1,3 +1,4 @@
|
||||||
bin
|
bin
|
||||||
lib
|
lib
|
||||||
*.gz
|
*.gz
|
||||||
|
OpenSSL-for-iOS.xcodeproj/xcuserdata
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
//
|
|
||||||
// OpenSSL_for_iOSAppDelegate.h
|
|
||||||
// OpenSSL-for-iOS
|
|
||||||
//
|
|
||||||
// Created by Felix Schulze on 01.02.2010.
|
|
||||||
// Copyright Felix Schulze 2010. All rights reserved.
|
|
||||||
//
|
|
||||||
|
|
||||||
#import <UIKit/UIKit.h>
|
|
||||||
|
|
||||||
@interface OpenSSL_for_iOSAppDelegate : NSObject <UIApplicationDelegate> {
|
|
||||||
UIWindow *window;
|
|
||||||
|
|
||||||
IBOutlet UITextField *textField;
|
|
||||||
IBOutlet UILabel *md5TextField;
|
|
||||||
IBOutlet UILabel *sha256TextField;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
||||||
@property (nonatomic, retain) IBOutlet UITextField *textField;
|
|
||||||
@property (nonatomic, retain) IBOutlet UILabel *md5TextField;
|
|
||||||
@property (nonatomic, retain) IBOutlet UILabel *sha256TextField;
|
|
||||||
|
|
||||||
|
|
||||||
- (IBAction)showInfo;
|
|
||||||
- (IBAction)calculateMD5:(id)sender;
|
|
||||||
- (IBAction)calculateSHA256:(id)sender;
|
|
||||||
@end
|
|
||||||
|
|
|
@ -1,138 +0,0 @@
|
||||||
//
|
|
||||||
// OpenSSL_for_iOSAppDelegate.m
|
|
||||||
// OpenSSL-for-iOS
|
|
||||||
//
|
|
||||||
// Created by Felix Schulze on 04.12.2010.
|
|
||||||
// Copyright Felix Schulze 2010. All rights reserved.
|
|
||||||
//
|
|
||||||
|
|
||||||
#import "OpenSSL_for_iOSAppDelegate.h"
|
|
||||||
#include <Openssl/md5.h>
|
|
||||||
#include <Openssl/sha.h>
|
|
||||||
|
|
||||||
@implementation OpenSSL_for_iOSAppDelegate
|
|
||||||
|
|
||||||
@synthesize window, textField, md5TextField, sha256TextField;
|
|
||||||
|
|
||||||
|
|
||||||
#pragma mark -
|
|
||||||
#pragma mark OpenSSL
|
|
||||||
|
|
||||||
- (IBAction)calculateMD5:(id)sender
|
|
||||||
{
|
|
||||||
/** Calculate MD5*/
|
|
||||||
NSString *string = textField.text;
|
|
||||||
unsigned char *inStrg = (unsigned char*)[[string dataUsingEncoding:NSASCIIStringEncoding] bytes];
|
|
||||||
unsigned long lngth = [string length];
|
|
||||||
unsigned char result[MD5_DIGEST_LENGTH];
|
|
||||||
NSMutableString *outStrg = [NSMutableString string];
|
|
||||||
|
|
||||||
MD5(inStrg, lngth, result);
|
|
||||||
|
|
||||||
unsigned int i;
|
|
||||||
for (i = 0; i < MD5_DIGEST_LENGTH; i++)
|
|
||||||
{
|
|
||||||
[outStrg appendFormat:@"%02x", result[i]];
|
|
||||||
}
|
|
||||||
md5TextField.text = outStrg;
|
|
||||||
|
|
||||||
//Hide Keyboard after calculation
|
|
||||||
[textField resignFirstResponder];
|
|
||||||
}
|
|
||||||
|
|
||||||
- (IBAction)calculateSHA256:(id)sender {
|
|
||||||
|
|
||||||
/* Calculate SHA256 */
|
|
||||||
NSString *string = textField.text;
|
|
||||||
unsigned char *inStrg = (unsigned char*)[[string dataUsingEncoding:NSASCIIStringEncoding] bytes];
|
|
||||||
unsigned long lngth = [string length];
|
|
||||||
unsigned char result[SHA256_DIGEST_LENGTH];
|
|
||||||
NSMutableString *outStrg = [NSMutableString string];
|
|
||||||
|
|
||||||
SHA256_CTX sha256;
|
|
||||||
SHA256_Init(&sha256);
|
|
||||||
SHA256_Update(&sha256, inStrg, lngth);
|
|
||||||
SHA256_Final(result, &sha256);
|
|
||||||
|
|
||||||
unsigned int i;
|
|
||||||
for(i = 0; i < SHA256_DIGEST_LENGTH; i++)
|
|
||||||
{
|
|
||||||
[outStrg appendFormat:@"%02x", result[i]];
|
|
||||||
}
|
|
||||||
sha256TextField.text = outStrg;
|
|
||||||
|
|
||||||
//Hide Keyboard after calculation
|
|
||||||
[textField resignFirstResponder];
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma mark -
|
|
||||||
#pragma mark Application lifecycle
|
|
||||||
|
|
||||||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
||||||
[window makeKeyAndVisible];
|
|
||||||
return YES;
|
|
||||||
}
|
|
||||||
|
|
||||||
- (IBAction)showInfo {
|
|
||||||
|
|
||||||
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"OpenSSL-for-iOS" message:@"OpenSSL-Version: 1.0.0g\nLicense: See include/LICENSE\n\nCopyright 2010-2012 by Felix Schulze\n http://www.x2on.de" delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:nil];
|
|
||||||
|
|
||||||
[alert show];
|
|
||||||
[alert release];
|
|
||||||
}
|
|
||||||
|
|
||||||
- (void)applicationWillResignActive:(UIApplication *)application {
|
|
||||||
/*
|
|
||||||
Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
|
|
||||||
Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
- (void)applicationDidEnterBackground:(UIApplication *)application {
|
|
||||||
/*
|
|
||||||
Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
|
|
||||||
If your application supports background execution, called instead of applicationWillTerminate: when the user quits.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
- (void)applicationWillEnterForeground:(UIApplication *)application {
|
|
||||||
/*
|
|
||||||
Called as part of transition from the background to the inactive state: here you can undo many of the changes made on entering the background.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
- (void)applicationDidBecomeActive:(UIApplication *)application {
|
|
||||||
/*
|
|
||||||
Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
- (void)applicationWillTerminate:(UIApplication *)application {
|
|
||||||
/*
|
|
||||||
Called when the application is about to terminate.
|
|
||||||
See also applicationDidEnterBackground:.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#pragma mark -
|
|
||||||
#pragma mark Memory management
|
|
||||||
|
|
||||||
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application {
|
|
||||||
/*
|
|
||||||
Free up as much memory as possible by purging cached data objects that can be recreated (or reloaded from disk) later.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
- (void)dealloc {
|
|
||||||
[window release];
|
|
||||||
[super dealloc];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@end
|
|
BIN
Icon.png
BIN
Icon.png
Binary file not shown.
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 4.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.2 KiB |
910
MainWindow.xib
910
MainWindow.xib
|
@ -1,910 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
|
|
||||||
<data>
|
|
||||||
<int key="IBDocument.SystemTarget">1056</int>
|
|
||||||
<string key="IBDocument.SystemVersion">10H574</string>
|
|
||||||
<string key="IBDocument.InterfaceBuilderVersion">823</string>
|
|
||||||
<string key="IBDocument.AppKitVersion">1038.35</string>
|
|
||||||
<string key="IBDocument.HIToolboxVersion">461.00</string>
|
|
||||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
|
||||||
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<string key="NS.object.0">132</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<integer value="2"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSArray" key="IBDocument.PluginDependencies">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="NSArray" key="dict.sortedKeys" id="0">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableArray" key="dict.values">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBProxyObject" id="841351856">
|
|
||||||
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBProxyObject" id="427554174">
|
|
||||||
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBUICustomObject" id="664661524">
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBUIWindow" id="380026005">
|
|
||||||
<reference key="NSNextResponder"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<object class="NSMutableArray" key="NSSubviews">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBUINavigationBar" id="40411576">
|
|
||||||
<reference key="NSNextResponder" ref="380026005"/>
|
|
||||||
<int key="NSvFlags">1314</int>
|
|
||||||
<object class="NSMutableArray" key="NSSubviews">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBUIButton" id="131223439">
|
|
||||||
<reference key="NSNextResponder" ref="40411576"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<string key="NSFrame">{{297, 12}, {18, 19}}</string>
|
|
||||||
<reference key="NSSuperview" ref="40411576"/>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
|
||||||
<int key="IBUIContentVerticalAlignment">0</int>
|
|
||||||
<object class="NSFont" key="IBUIFont" id="872510579">
|
|
||||||
<string key="NSName">Helvetica-Bold</string>
|
|
||||||
<double key="NSSize">15</double>
|
|
||||||
<int key="NSfFlags">16</int>
|
|
||||||
</object>
|
|
||||||
<int key="IBUIButtonType">3</int>
|
|
||||||
<bool key="IBUIShowsTouchWhenHighlighted">YES</bool>
|
|
||||||
<object class="NSColor" key="IBUIHighlightedTitleColor" id="646308252">
|
|
||||||
<int key="NSColorSpace">3</int>
|
|
||||||
<bytes key="NSWhite">MQA</bytes>
|
|
||||||
</object>
|
|
||||||
<object class="NSColor" key="IBUINormalTitleColor">
|
|
||||||
<int key="NSColorSpace">1</int>
|
|
||||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
|
||||||
</object>
|
|
||||||
<object class="NSColor" key="IBUINormalTitleShadowColor" id="714334902">
|
|
||||||
<int key="NSColorSpace">3</int>
|
|
||||||
<bytes key="NSWhite">MC41AA</bytes>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<string key="NSFrame">{{0, 20}, {320, 44}}</string>
|
|
||||||
<reference key="NSSuperview" ref="380026005"/>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<int key="IBUIBarStyle">1</int>
|
|
||||||
<object class="NSArray" key="IBUIItems">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBUINavigationItem" id="1046982036">
|
|
||||||
<reference key="IBUINavigationBar" ref="40411576"/>
|
|
||||||
<string key="IBUITitle">OpenSSL-for-iOS</string>
|
|
||||||
<object class="IBUIBarButtonItem" key="IBUIRightBarButtonItem" id="933622622">
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<reference key="IBUICustomView" ref="131223439"/>
|
|
||||||
<reference key="IBUINavigationItem" ref="1046982036"/>
|
|
||||||
</object>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBUIButton" id="275275756">
|
|
||||||
<reference key="NSNextResponder" ref="380026005"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<string key="NSFrame">{{19, 142}, {286, 35}}</string>
|
|
||||||
<reference key="NSSuperview" ref="380026005"/>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
|
||||||
<int key="IBUIContentVerticalAlignment">0</int>
|
|
||||||
<reference key="IBUIFont" ref="872510579"/>
|
|
||||||
<int key="IBUIButtonType">1</int>
|
|
||||||
<string key="IBUINormalTitle">Calculate MD5</string>
|
|
||||||
<reference key="IBUIHighlightedTitleColor" ref="646308252"/>
|
|
||||||
<object class="NSColor" key="IBUINormalTitleColor">
|
|
||||||
<int key="NSColorSpace">1</int>
|
|
||||||
<bytes key="NSRGB">MC4xOTYwNzg0MzE0IDAuMzA5ODAzOTIxNiAwLjUyMTU2ODYyNzUAA</bytes>
|
|
||||||
</object>
|
|
||||||
<reference key="IBUINormalTitleShadowColor" ref="714334902"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBUILabel" id="242426523">
|
|
||||||
<reference key="NSNextResponder" ref="380026005"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<string key="NSFrame">{{19, 230}, {87, 21}}</string>
|
|
||||||
<reference key="NSSuperview" ref="380026005"/>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<bool key="IBUIClipsSubviews">YES</bool>
|
|
||||||
<int key="IBUIContentMode">7</int>
|
|
||||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<string key="IBUIText">MD5-Hash:</string>
|
|
||||||
<object class="NSColor" key="IBUITextColor" id="998266098">
|
|
||||||
<int key="NSColorSpace">1</int>
|
|
||||||
<bytes key="NSRGB">MCAwIDAAA</bytes>
|
|
||||||
</object>
|
|
||||||
<reference key="IBUIHighlightedColor" ref="646308252"/>
|
|
||||||
<int key="IBUIBaselineAdjustment">1</int>
|
|
||||||
<float key="IBUIMinimumFontSize">10</float>
|
|
||||||
</object>
|
|
||||||
<object class="IBUILabel" id="355717506">
|
|
||||||
<reference key="NSNextResponder" ref="380026005"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<string key="NSFrame">{{19, 298}, {115, 21}}</string>
|
|
||||||
<reference key="NSSuperview" ref="380026005"/>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<bool key="IBUIClipsSubviews">YES</bool>
|
|
||||||
<int key="IBUIContentMode">7</int>
|
|
||||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<string key="IBUIText">SHA256-Hash:</string>
|
|
||||||
<reference key="IBUITextColor" ref="998266098"/>
|
|
||||||
<reference key="IBUIHighlightedColor" ref="646308252"/>
|
|
||||||
<int key="IBUIBaselineAdjustment">1</int>
|
|
||||||
<float key="IBUIMinimumFontSize">10</float>
|
|
||||||
</object>
|
|
||||||
<object class="IBUITextField" id="996525178">
|
|
||||||
<reference key="NSNextResponder" ref="380026005"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<string key="NSFrame">{{19, 103}, {286, 31}}</string>
|
|
||||||
<reference key="NSSuperview" ref="380026005"/>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<bool key="IBUIClipsSubviews">YES</bool>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<int key="IBUIContentVerticalAlignment">0</int>
|
|
||||||
<string key="IBUIText">Enter an Text here</string>
|
|
||||||
<int key="IBUIBorderStyle">3</int>
|
|
||||||
<object class="NSColor" key="IBUITextColor">
|
|
||||||
<int key="NSColorSpace">3</int>
|
|
||||||
<bytes key="NSWhite">MAA</bytes>
|
|
||||||
<object class="NSColorSpace" key="NSCustomColorSpace">
|
|
||||||
<int key="NSID">2</int>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<bool key="IBUIAdjustsFontSizeToFit">YES</bool>
|
|
||||||
<float key="IBUIMinimumFontSize">17</float>
|
|
||||||
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBUILabel" id="434441802">
|
|
||||||
<reference key="NSNextResponder" ref="380026005"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<string key="NSFrame">{{19, 74}, {42, 21}}</string>
|
|
||||||
<reference key="NSSuperview" ref="380026005"/>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<bool key="IBUIClipsSubviews">YES</bool>
|
|
||||||
<int key="IBUIContentMode">7</int>
|
|
||||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<string key="IBUIText">Text:</string>
|
|
||||||
<reference key="IBUITextColor" ref="998266098"/>
|
|
||||||
<reference key="IBUIHighlightedColor" ref="646308252"/>
|
|
||||||
<int key="IBUIBaselineAdjustment">1</int>
|
|
||||||
<float key="IBUIMinimumFontSize">10</float>
|
|
||||||
</object>
|
|
||||||
<object class="IBUIButton" id="318848472">
|
|
||||||
<reference key="NSNextResponder" ref="380026005"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<string key="NSFrame">{{19, 185}, {286, 37}}</string>
|
|
||||||
<reference key="NSSuperview" ref="380026005"/>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
|
||||||
<int key="IBUIContentVerticalAlignment">0</int>
|
|
||||||
<reference key="IBUIFont" ref="872510579"/>
|
|
||||||
<int key="IBUIButtonType">1</int>
|
|
||||||
<string key="IBUINormalTitle">Calculate SHA256</string>
|
|
||||||
<reference key="IBUIHighlightedTitleColor" ref="646308252"/>
|
|
||||||
<object class="NSColor" key="IBUINormalTitleColor">
|
|
||||||
<int key="NSColorSpace">1</int>
|
|
||||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
|
||||||
</object>
|
|
||||||
<reference key="IBUINormalTitleShadowColor" ref="714334902"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBUILabel" id="874614366">
|
|
||||||
<reference key="NSNextResponder" ref="380026005"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<string key="NSFrame">{{20, 259}, {285, 31}}</string>
|
|
||||||
<reference key="NSSuperview" ref="380026005"/>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<bool key="IBUIClipsSubviews">YES</bool>
|
|
||||||
<int key="IBUIContentMode">7</int>
|
|
||||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<string key="IBUIText"/>
|
|
||||||
<reference key="IBUITextColor" ref="998266098"/>
|
|
||||||
<reference key="IBUIHighlightedColor" ref="646308252"/>
|
|
||||||
<int key="IBUIBaselineAdjustment">1</int>
|
|
||||||
<float key="IBUIMinimumFontSize">10</float>
|
|
||||||
</object>
|
|
||||||
<object class="IBUILabel" id="693062836">
|
|
||||||
<reference key="NSNextResponder" ref="380026005"/>
|
|
||||||
<int key="NSvFlags">1316</int>
|
|
||||||
<string key="NSFrame">{{19, 327}, {286, 62}}</string>
|
|
||||||
<reference key="NSSuperview" ref="380026005"/>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<bool key="IBUIClipsSubviews">YES</bool>
|
|
||||||
<int key="IBUIContentMode">7</int>
|
|
||||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<string key="IBUIText"/>
|
|
||||||
<reference key="IBUITextColor" ref="998266098"/>
|
|
||||||
<reference key="IBUIHighlightedColor" ref="646308252"/>
|
|
||||||
<int key="IBUIBaselineAdjustment">1</int>
|
|
||||||
<float key="IBUIMinimumFontSize">10</float>
|
|
||||||
<int key="IBUINumberOfLines">3</int>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
|
||||||
<string key="NSFrameSize">{320, 480}</string>
|
|
||||||
<reference key="NSSuperview"/>
|
|
||||||
<object class="NSColor" key="IBUIBackgroundColor">
|
|
||||||
<int key="NSColorSpace">1</int>
|
|
||||||
<bytes key="NSRGB">MSAxIDEAA</bytes>
|
|
||||||
</object>
|
|
||||||
<bool key="IBUIOpaque">NO</bool>
|
|
||||||
<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
|
|
||||||
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
|
|
||||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<bool key="IBUIResizesToFullScreen">YES</bool>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
|
||||||
<object class="NSMutableArray" key="connectionRecords">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
||||||
<string key="label">delegate</string>
|
|
||||||
<reference key="source" ref="841351856"/>
|
|
||||||
<reference key="destination" ref="664661524"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">4</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
||||||
<string key="label">window</string>
|
|
||||||
<reference key="source" ref="664661524"/>
|
|
||||||
<reference key="destination" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">5</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
|
||||||
<string key="label">showInfo</string>
|
|
||||||
<reference key="source" ref="131223439"/>
|
|
||||||
<reference key="destination" ref="664661524"/>
|
|
||||||
<int key="IBEventType">1</int>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">20</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
||||||
<string key="label">textField</string>
|
|
||||||
<reference key="source" ref="664661524"/>
|
|
||||||
<reference key="destination" ref="996525178"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">31</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
|
||||||
<string key="label">calculateMD5:</string>
|
|
||||||
<reference key="source" ref="275275756"/>
|
|
||||||
<reference key="destination" ref="664661524"/>
|
|
||||||
<int key="IBEventType">1</int>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">32</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
|
||||||
<string key="label">calculateSHA256:</string>
|
|
||||||
<reference key="source" ref="318848472"/>
|
|
||||||
<reference key="destination" ref="664661524"/>
|
|
||||||
<int key="IBEventType">1</int>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">34</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
||||||
<string key="label">md5TextField</string>
|
|
||||||
<reference key="source" ref="664661524"/>
|
|
||||||
<reference key="destination" ref="874614366"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">44</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
||||||
<string key="label">sha256TextField</string>
|
|
||||||
<reference key="source" ref="664661524"/>
|
|
||||||
<reference key="destination" ref="693062836"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">46</int>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
|
||||||
<object class="NSArray" key="orderedObjects">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">0</int>
|
|
||||||
<reference key="object" ref="0"/>
|
|
||||||
<reference key="children" ref="1000"/>
|
|
||||||
<nil key="parent"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">2</int>
|
|
||||||
<reference key="object" ref="380026005"/>
|
|
||||||
<object class="NSMutableArray" key="children">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<reference ref="40411576"/>
|
|
||||||
<reference ref="434441802"/>
|
|
||||||
<reference ref="996525178"/>
|
|
||||||
<reference ref="318848472"/>
|
|
||||||
<reference ref="275275756"/>
|
|
||||||
<reference ref="242426523"/>
|
|
||||||
<reference ref="355717506"/>
|
|
||||||
<reference ref="874614366"/>
|
|
||||||
<reference ref="693062836"/>
|
|
||||||
</object>
|
|
||||||
<reference key="parent" ref="0"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">-1</int>
|
|
||||||
<reference key="object" ref="841351856"/>
|
|
||||||
<reference key="parent" ref="0"/>
|
|
||||||
<string key="objectName">File's Owner</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">3</int>
|
|
||||||
<reference key="object" ref="664661524"/>
|
|
||||||
<reference key="parent" ref="0"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">-2</int>
|
|
||||||
<reference key="object" ref="427554174"/>
|
|
||||||
<reference key="parent" ref="0"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">10</int>
|
|
||||||
<reference key="object" ref="40411576"/>
|
|
||||||
<object class="NSMutableArray" key="children">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<reference ref="1046982036"/>
|
|
||||||
</object>
|
|
||||||
<reference key="parent" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">11</int>
|
|
||||||
<reference key="object" ref="1046982036"/>
|
|
||||||
<object class="NSMutableArray" key="children">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<reference ref="933622622"/>
|
|
||||||
</object>
|
|
||||||
<reference key="parent" ref="40411576"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">19</int>
|
|
||||||
<reference key="object" ref="933622622"/>
|
|
||||||
<object class="NSMutableArray" key="children">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<reference ref="131223439"/>
|
|
||||||
</object>
|
|
||||||
<reference key="parent" ref="1046982036"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">18</int>
|
|
||||||
<reference key="object" ref="131223439"/>
|
|
||||||
<reference key="parent" ref="933622622"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">22</int>
|
|
||||||
<reference key="object" ref="275275756"/>
|
|
||||||
<reference key="parent" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">24</int>
|
|
||||||
<reference key="object" ref="242426523"/>
|
|
||||||
<reference key="parent" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">29</int>
|
|
||||||
<reference key="object" ref="996525178"/>
|
|
||||||
<reference key="parent" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">30</int>
|
|
||||||
<reference key="object" ref="434441802"/>
|
|
||||||
<reference key="parent" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">33</int>
|
|
||||||
<reference key="object" ref="318848472"/>
|
|
||||||
<reference key="parent" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">35</int>
|
|
||||||
<reference key="object" ref="355717506"/>
|
|
||||||
<reference key="parent" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">43</int>
|
|
||||||
<reference key="object" ref="874614366"/>
|
|
||||||
<reference key="parent" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">45</int>
|
|
||||||
<reference key="object" ref="693062836"/>
|
|
||||||
<reference key="parent" ref="380026005"/>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="flattenedProperties">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="NSArray" key="dict.sortedKeys">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<string>-1.CustomClassName</string>
|
|
||||||
<string>-2.CustomClassName</string>
|
|
||||||
<string>10.IBPluginDependency</string>
|
|
||||||
<string>11.IBPluginDependency</string>
|
|
||||||
<string>18.IBPluginDependency</string>
|
|
||||||
<string>18.IBViewBoundsToFrameTransform</string>
|
|
||||||
<string>2.IBAttributePlaceholdersKey</string>
|
|
||||||
<string>2.IBEditorWindowLastContentRect</string>
|
|
||||||
<string>2.IBPluginDependency</string>
|
|
||||||
<string>22.IBPluginDependency</string>
|
|
||||||
<string>22.IBViewBoundsToFrameTransform</string>
|
|
||||||
<string>24.IBPluginDependency</string>
|
|
||||||
<string>24.IBViewBoundsToFrameTransform</string>
|
|
||||||
<string>29.IBPluginDependency</string>
|
|
||||||
<string>29.IBViewBoundsToFrameTransform</string>
|
|
||||||
<string>3.CustomClassName</string>
|
|
||||||
<string>3.IBPluginDependency</string>
|
|
||||||
<string>30.IBPluginDependency</string>
|
|
||||||
<string>30.IBViewBoundsToFrameTransform</string>
|
|
||||||
<string>33.IBPluginDependency</string>
|
|
||||||
<string>33.IBViewBoundsToFrameTransform</string>
|
|
||||||
<string>35.IBPluginDependency</string>
|
|
||||||
<string>35.IBViewBoundsToFrameTransform</string>
|
|
||||||
<string>43.IBPluginDependency</string>
|
|
||||||
<string>43.IBViewBoundsToFrameTransform</string>
|
|
||||||
<string>45.IBPluginDependency</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableArray" key="dict.values">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<string>UIApplication</string>
|
|
||||||
<string>UIResponder</string>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<object class="NSAffineTransform">
|
|
||||||
<bytes key="NSTransformStruct">P4AAAL+AAABCxAAAw4EAAA</bytes>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<reference key="dict.sortedKeys" ref="0"/>
|
|
||||||
<object class="NSMutableArray" key="dict.values">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<string>{{522, 105}, {320, 480}}</string>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<object class="NSAffineTransform">
|
|
||||||
<bytes key="NSTransformStruct">P4AAAL+AAABBmAAAwy8AAA</bytes>
|
|
||||||
</object>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<object class="NSAffineTransform">
|
|
||||||
<bytes key="NSTransformStruct">P4AAAL+AAABBiAAAw4aAAA</bytes>
|
|
||||||
</object>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<object class="NSAffineTransform">
|
|
||||||
<bytes key="NSTransformStruct">P4AAAL+AAABBmAAAwysAAA</bytes>
|
|
||||||
</object>
|
|
||||||
<string>OpenSSL_for_iOSAppDelegate</string>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<object class="NSAffineTransform">
|
|
||||||
<bytes key="NSTransformStruct">P4AAAL+AAABBmAAAwrYAAA</bytes>
|
|
||||||
</object>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<object class="NSAffineTransform">
|
|
||||||
<bytes key="NSTransformStruct">P4AAAL+AAABBMAAAw1wAAA</bytes>
|
|
||||||
</object>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<object class="NSAffineTransform">
|
|
||||||
<bytes key="NSTransformStruct">P4AAAL+AAABBiAAAw6iAAA</bytes>
|
|
||||||
</object>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
<object class="NSAffineTransform">
|
|
||||||
<bytes key="NSTransformStruct">P4AAAL+AAABCuAAAw4sAAA</bytes>
|
|
||||||
</object>
|
|
||||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="unlocalizedProperties">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<reference key="dict.sortedKeys" ref="0"/>
|
|
||||||
<object class="NSMutableArray" key="dict.values">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<nil key="activeLocalization"/>
|
|
||||||
<object class="NSMutableDictionary" key="localizations">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<reference key="dict.sortedKeys" ref="0"/>
|
|
||||||
<object class="NSMutableArray" key="dict.values">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<nil key="sourceID"/>
|
|
||||||
<int key="maxID">46</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
|
||||||
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">OpenSSL_for_iOSAppDelegate</string>
|
|
||||||
<string key="superclassName">NSObject</string>
|
|
||||||
<object class="NSMutableDictionary" key="actions">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="NSArray" key="dict.sortedKeys">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<string>calculateMD5:</string>
|
|
||||||
<string>calculateSHA256:</string>
|
|
||||||
<string>showInfo</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableArray" key="dict.values">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<string>id</string>
|
|
||||||
<string>id</string>
|
|
||||||
<string>id</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="NSArray" key="dict.sortedKeys">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<string>calculateMD5:</string>
|
|
||||||
<string>calculateSHA256:</string>
|
|
||||||
<string>showInfo</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableArray" key="dict.values">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBActionInfo">
|
|
||||||
<string key="name">calculateMD5:</string>
|
|
||||||
<string key="candidateClassName">id</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBActionInfo">
|
|
||||||
<string key="name">calculateSHA256:</string>
|
|
||||||
<string key="candidateClassName">id</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBActionInfo">
|
|
||||||
<string key="name">showInfo</string>
|
|
||||||
<string key="candidateClassName">id</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="outlets">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="NSArray" key="dict.sortedKeys">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<string>md5TextField</string>
|
|
||||||
<string>sha256TextField</string>
|
|
||||||
<string>textField</string>
|
|
||||||
<string>window</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableArray" key="dict.values">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<string>UILabel</string>
|
|
||||||
<string>UILabel</string>
|
|
||||||
<string>UITextField</string>
|
|
||||||
<string>UIWindow</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="NSArray" key="dict.sortedKeys">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<string>md5TextField</string>
|
|
||||||
<string>sha256TextField</string>
|
|
||||||
<string>textField</string>
|
|
||||||
<string>window</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableArray" key="dict.values">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBToOneOutletInfo">
|
|
||||||
<string key="name">md5TextField</string>
|
|
||||||
<string key="candidateClassName">UILabel</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBToOneOutletInfo">
|
|
||||||
<string key="name">sha256TextField</string>
|
|
||||||
<string key="candidateClassName">UILabel</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBToOneOutletInfo">
|
|
||||||
<string key="name">textField</string>
|
|
||||||
<string key="candidateClassName">UITextField</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBToOneOutletInfo">
|
|
||||||
<string key="name">window</string>
|
|
||||||
<string key="candidateClassName">UIWindow</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBProjectSource</string>
|
|
||||||
<string key="minorKey">Classes/OpenSSL_for_iOSAppDelegate.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSError.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="907624751">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIApplication</string>
|
|
||||||
<string key="superclassName">UIResponder</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIApplication.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIBarButtonItem</string>
|
|
||||||
<string key="superclassName">UIBarItem</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIBarButtonItem.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIBarItem</string>
|
|
||||||
<string key="superclassName">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIBarItem.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIButton</string>
|
|
||||||
<string key="superclassName">UIControl</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIButton.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIControl</string>
|
|
||||||
<string key="superclassName">UIView</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UILabel</string>
|
|
||||||
<string key="superclassName">UIView</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UINavigationBar</string>
|
|
||||||
<string key="superclassName">UIView</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="318033809">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UINavigationBar.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UINavigationItem</string>
|
|
||||||
<string key="superclassName">NSObject</string>
|
|
||||||
<reference key="sourceIdentifier" ref="318033809"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIResponder</string>
|
|
||||||
<string key="superclassName">NSObject</string>
|
|
||||||
<reference key="sourceIdentifier" ref="907624751"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UISearchBar</string>
|
|
||||||
<string key="superclassName">UIView</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UISearchDisplayController</string>
|
|
||||||
<string key="superclassName">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UITextField</string>
|
|
||||||
<string key="superclassName">UIControl</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="31707070">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIView</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIPrintFormatter.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIView</string>
|
|
||||||
<reference key="sourceIdentifier" ref="31707070"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIView</string>
|
|
||||||
<string key="superclassName">UIResponder</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIView.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIViewController</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIViewController</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIPopoverController.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIViewController</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UISplitViewController.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIViewController</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIViewController</string>
|
|
||||||
<string key="superclassName">UIResponder</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">UIWindow</string>
|
|
||||||
<string key="superclassName">UIView</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBFrameworkSource</string>
|
|
||||||
<string key="minorKey">UIKit.framework/Headers/UIWindow.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<int key="IBDocument.localizationMode">0</int>
|
|
||||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
||||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
|
|
||||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
|
||||||
<integer value="1056" key="NS.object.0"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
|
||||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
|
|
||||||
<integer value="3100" key="NS.object.0"/>
|
|
||||||
</object>
|
|
||||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
|
||||||
<string key="IBDocument.LastKnownRelativeProjectPath">OpenSSL-for-iPhone.xcodeproj</string>
|
|
||||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
|
||||||
<string key="IBCocoaTouchPluginVersion">132</string>
|
|
||||||
</data>
|
|
||||||
</archive>
|
|
|
@ -7,119 +7,138 @@
|
||||||
objects = {
|
objects = {
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
1D3623260D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m */; };
|
533ED3001528C4840005C6FA /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 533ED2FF1528C4840005C6FA /* UIKit.framework */; };
|
||||||
1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
|
533ED3021528C4840005C6FA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 533ED3011528C4840005C6FA /* Foundation.framework */; };
|
||||||
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
|
533ED3041528C4840005C6FA /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 533ED3031528C4840005C6FA /* CoreGraphics.framework */; };
|
||||||
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
|
533ED30A1528C4840005C6FA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 533ED3081528C4840005C6FA /* InfoPlist.strings */; };
|
||||||
288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765FC0DF74451002DB57D /* CoreGraphics.framework */; };
|
533ED30C1528C4840005C6FA /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 533ED30B1528C4840005C6FA /* main.m */; };
|
||||||
28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD733E0D9D9553002E5188 /* MainWindow.xib */; };
|
533ED3101528C4840005C6FA /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 533ED30F1528C4840005C6FA /* AppDelegate.m */; };
|
||||||
2A28EE4612AA83FE00C0D35A /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 2A28EE4512AA83FE00C0D35A /* Icon.png */; };
|
533ED3131528C4840005C6FA /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 533ED3121528C4840005C6FA /* ViewController.m */; };
|
||||||
2AA51C5512AA80B400AEA776 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2AA51C5312AA80B400AEA776 /* libssl.a */; };
|
533ED3161528C4840005C6FA /* ViewController_iPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 533ED3141528C4840005C6FA /* ViewController_iPhone.xib */; };
|
||||||
2AA51C5612AA80B400AEA776 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2AA51C5412AA80B400AEA776 /* libcrypto.a */; };
|
533ED3191528C4840005C6FA /* ViewController_iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 533ED3171528C4840005C6FA /* ViewController_iPad.xib */; };
|
||||||
|
533ED3201528C4950005C6FA /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 533ED31F1528C4950005C6FA /* Icon.png */; };
|
||||||
|
533ED3221528C4960005C6FA /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 533ED3211528C4960005C6FA /* Icon@2x.png */; };
|
||||||
|
533ED3261528C4FA0005C6FA /* Icon~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 533ED3251528C4FA0005C6FA /* Icon~ipad.png */; };
|
||||||
|
533ED3281528C5140005C6FA /* Icon~iPad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 533ED3271528C5140005C6FA /* Icon~iPad@2x.png */; };
|
||||||
|
533ED32C1528C53B0005C6FA /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 533ED32A1528C53B0005C6FA /* libcrypto.a */; };
|
||||||
|
533ED32D1528C53B0005C6FA /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 533ED32B1528C53B0005C6FA /* libssl.a */; };
|
||||||
/* End PBXBuildFile section */
|
/* End PBXBuildFile section */
|
||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
533ED2FB1528C4840005C6FA /* OpenSSL.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OpenSSL.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
1D3623240D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenSSL_for_iOSAppDelegate.h; sourceTree = "<group>"; };
|
533ED2FF1528C4840005C6FA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
||||||
1D3623250D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OpenSSL_for_iOSAppDelegate.m; sourceTree = "<group>"; };
|
533ED3011528C4840005C6FA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
||||||
1D6058910D05DD3D006BFB54 /* OpenSSL.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OpenSSL.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
533ED3031528C4840005C6FA /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
||||||
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
533ED3071528C4840005C6FA /* OpenSSL-for-iOS-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "OpenSSL-for-iOS-Info.plist"; sourceTree = "<group>"; };
|
||||||
288765FC0DF74451002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
533ED3091528C4840005C6FA /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||||
28AD733E0D9D9553002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = "<group>"; };
|
533ED30B1528C4840005C6FA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
||||||
29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
533ED30D1528C4840005C6FA /* OpenSSL-for-iOS-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "OpenSSL-for-iOS-Prefix.pch"; sourceTree = "<group>"; };
|
||||||
2A28EE4512AA83FE00C0D35A /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
|
533ED30E1528C4840005C6FA /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
||||||
2AA51C5312AA80B400AEA776 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libssl.a; path = lib/libssl.a; sourceTree = "<group>"; };
|
533ED30F1528C4840005C6FA /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
||||||
2AA51C5412AA80B400AEA776 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = lib/libcrypto.a; sourceTree = "<group>"; };
|
533ED3111528C4840005C6FA /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
|
||||||
32CA4F630368D1EE00C91783 /* OpenSSL_for_iOS_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenSSL_for_iOS_Prefix.pch; sourceTree = "<group>"; };
|
533ED3121528C4840005C6FA /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
|
||||||
8D1107310486CEB800E47090 /* OpenSSL_for_iOS-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "OpenSSL_for_iOS-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = "<group>"; };
|
533ED3151528C4840005C6FA /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController_iPhone.xib; sourceTree = "<group>"; };
|
||||||
|
533ED3181528C4840005C6FA /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController_iPad.xib; sourceTree = "<group>"; };
|
||||||
|
533ED31F1528C4950005C6FA /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Icon.png; path = ../Icon.png; sourceTree = "<group>"; };
|
||||||
|
533ED3211528C4960005C6FA /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon@2x.png"; path = "../Icon@2x.png"; sourceTree = "<group>"; };
|
||||||
|
533ED3251528C4FA0005C6FA /* Icon~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon~ipad.png"; path = "../Icon~ipad.png"; sourceTree = "<group>"; };
|
||||||
|
533ED3271528C5140005C6FA /* Icon~iPad@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon~iPad@2x.png"; path = "../Icon~iPad@2x.png"; sourceTree = "<group>"; };
|
||||||
|
533ED32A1528C53B0005C6FA /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = lib/libcrypto.a; sourceTree = "<group>"; };
|
||||||
|
533ED32B1528C53B0005C6FA /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libssl.a; path = lib/libssl.a; sourceTree = "<group>"; };
|
||||||
/* End PBXFileReference section */
|
/* End PBXFileReference section */
|
||||||
|
|
||||||
/* Begin PBXFrameworksBuildPhase section */
|
/* Begin PBXFrameworksBuildPhase section */
|
||||||
1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
|
533ED2F81528C4840005C6FA /* Frameworks */ = {
|
||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
|
533ED3001528C4840005C6FA /* UIKit.framework in Frameworks */,
|
||||||
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
|
533ED3021528C4840005C6FA /* Foundation.framework in Frameworks */,
|
||||||
288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */,
|
533ED3041528C4840005C6FA /* CoreGraphics.framework in Frameworks */,
|
||||||
2AA51C5512AA80B400AEA776 /* libssl.a in Frameworks */,
|
533ED32C1528C53B0005C6FA /* libcrypto.a in Frameworks */,
|
||||||
2AA51C5612AA80B400AEA776 /* libcrypto.a in Frameworks */,
|
533ED32D1528C53B0005C6FA /* libssl.a in Frameworks */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
/* End PBXFrameworksBuildPhase section */
|
/* End PBXFrameworksBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXGroup section */
|
/* Begin PBXGroup section */
|
||||||
080E96DDFE201D6D7F000001 /* Classes */ = {
|
533ED2F01528C4840005C6FA = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
1D3623240D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.h */,
|
533ED3051528C4840005C6FA /* OpenSSL-for-iOS */,
|
||||||
1D3623250D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m */,
|
533ED2FE1528C4840005C6FA /* Frameworks */,
|
||||||
|
533ED2FC1528C4840005C6FA /* Products */,
|
||||||
);
|
);
|
||||||
path = Classes;
|
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
19C28FACFE9D520D11CA2CBB /* Products */ = {
|
533ED2FC1528C4840005C6FA /* Products */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
1D6058910D05DD3D006BFB54 /* OpenSSL.app */,
|
533ED2FB1528C4840005C6FA /* OpenSSL.app */,
|
||||||
);
|
);
|
||||||
name = Products;
|
name = Products;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
|
533ED2FE1528C4840005C6FA /* Frameworks */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
080E96DDFE201D6D7F000001 /* Classes */,
|
533ED32A1528C53B0005C6FA /* libcrypto.a */,
|
||||||
29B97315FDCFA39411CA2CEA /* Other Sources */,
|
533ED32B1528C53B0005C6FA /* libssl.a */,
|
||||||
29B97317FDCFA39411CA2CEA /* Resources */,
|
533ED2FF1528C4840005C6FA /* UIKit.framework */,
|
||||||
29B97323FDCFA39411CA2CEA /* Frameworks */,
|
533ED3011528C4840005C6FA /* Foundation.framework */,
|
||||||
19C28FACFE9D520D11CA2CBB /* Products */,
|
533ED3031528C4840005C6FA /* CoreGraphics.framework */,
|
||||||
);
|
|
||||||
name = CustomTemplate;
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
29B97315FDCFA39411CA2CEA /* Other Sources */ = {
|
|
||||||
isa = PBXGroup;
|
|
||||||
children = (
|
|
||||||
32CA4F630368D1EE00C91783 /* OpenSSL_for_iOS_Prefix.pch */,
|
|
||||||
29B97316FDCFA39411CA2CEA /* main.m */,
|
|
||||||
);
|
|
||||||
name = "Other Sources";
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
29B97317FDCFA39411CA2CEA /* Resources */ = {
|
|
||||||
isa = PBXGroup;
|
|
||||||
children = (
|
|
||||||
2A28EE4512AA83FE00C0D35A /* Icon.png */,
|
|
||||||
28AD733E0D9D9553002E5188 /* MainWindow.xib */,
|
|
||||||
8D1107310486CEB800E47090 /* OpenSSL_for_iOS-Info.plist */,
|
|
||||||
);
|
|
||||||
name = Resources;
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
|
|
||||||
isa = PBXGroup;
|
|
||||||
children = (
|
|
||||||
2AA51C5312AA80B400AEA776 /* libssl.a */,
|
|
||||||
2AA51C5412AA80B400AEA776 /* libcrypto.a */,
|
|
||||||
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
|
|
||||||
1D30AB110D05D00D00671497 /* Foundation.framework */,
|
|
||||||
288765FC0DF74451002DB57D /* CoreGraphics.framework */,
|
|
||||||
);
|
);
|
||||||
name = Frameworks;
|
name = Frameworks;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
|
533ED3051528C4840005C6FA /* OpenSSL-for-iOS */ = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
533ED3291528C51A0005C6FA /* Ressources */,
|
||||||
|
533ED30E1528C4840005C6FA /* AppDelegate.h */,
|
||||||
|
533ED30F1528C4840005C6FA /* AppDelegate.m */,
|
||||||
|
533ED3111528C4840005C6FA /* ViewController.h */,
|
||||||
|
533ED3121528C4840005C6FA /* ViewController.m */,
|
||||||
|
533ED3141528C4840005C6FA /* ViewController_iPhone.xib */,
|
||||||
|
533ED3171528C4840005C6FA /* ViewController_iPad.xib */,
|
||||||
|
533ED3061528C4840005C6FA /* Supporting Files */,
|
||||||
|
);
|
||||||
|
path = "OpenSSL-for-iOS";
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
533ED3061528C4840005C6FA /* Supporting Files */ = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
533ED3071528C4840005C6FA /* OpenSSL-for-iOS-Info.plist */,
|
||||||
|
533ED3081528C4840005C6FA /* InfoPlist.strings */,
|
||||||
|
533ED30B1528C4840005C6FA /* main.m */,
|
||||||
|
533ED30D1528C4840005C6FA /* OpenSSL-for-iOS-Prefix.pch */,
|
||||||
|
);
|
||||||
|
name = "Supporting Files";
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
533ED3291528C51A0005C6FA /* Ressources */ = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
533ED3271528C5140005C6FA /* Icon~iPad@2x.png */,
|
||||||
|
533ED3251528C4FA0005C6FA /* Icon~ipad.png */,
|
||||||
|
533ED3211528C4960005C6FA /* Icon@2x.png */,
|
||||||
|
533ED31F1528C4950005C6FA /* Icon.png */,
|
||||||
|
);
|
||||||
|
name = Ressources;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
/* End PBXGroup section */
|
/* End PBXGroup section */
|
||||||
|
|
||||||
/* Begin PBXNativeTarget section */
|
/* Begin PBXNativeTarget section */
|
||||||
1D6058900D05DD3D006BFB54 /* OpenSSL-for-iOS */ = {
|
533ED2FA1528C4840005C6FA /* OpenSSL-for-iOS */ = {
|
||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL-for-iOS" */;
|
buildConfigurationList = 533ED31C1528C4840005C6FA /* Build configuration list for PBXNativeTarget "OpenSSL-for-iOS" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
1D60588D0D05DD3D006BFB54 /* Resources */,
|
533ED2F71528C4840005C6FA /* Sources */,
|
||||||
1D60588E0D05DD3D006BFB54 /* Sources */,
|
533ED2F81528C4840005C6FA /* Frameworks */,
|
||||||
1D60588F0D05DD3D006BFB54 /* Frameworks */,
|
533ED2F91528C4840005C6FA /* Resources */,
|
||||||
);
|
);
|
||||||
buildRules = (
|
buildRules = (
|
||||||
);
|
);
|
||||||
|
@ -127,141 +146,195 @@
|
||||||
);
|
);
|
||||||
name = "OpenSSL-for-iOS";
|
name = "OpenSSL-for-iOS";
|
||||||
productName = "OpenSSL-for-iOS";
|
productName = "OpenSSL-for-iOS";
|
||||||
productReference = 1D6058910D05DD3D006BFB54 /* OpenSSL.app */;
|
productReference = 533ED2FB1528C4840005C6FA /* OpenSSL.app */;
|
||||||
productType = "com.apple.product-type.application";
|
productType = "com.apple.product-type.application";
|
||||||
};
|
};
|
||||||
/* End PBXNativeTarget section */
|
/* End PBXNativeTarget section */
|
||||||
|
|
||||||
/* Begin PBXProject section */
|
/* Begin PBXProject section */
|
||||||
29B97313FDCFA39411CA2CEA /* Project object */ = {
|
533ED2F21528C4840005C6FA /* Project object */ = {
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
LastUpgradeCheck = 0430;
|
LastUpgradeCheck = 0430;
|
||||||
|
ORGANIZATIONNAME = Immobilienscout24;
|
||||||
};
|
};
|
||||||
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "OpenSSL-for-iOS" */;
|
buildConfigurationList = 533ED2F51528C4840005C6FA /* Build configuration list for PBXProject "OpenSSL-for-iOS" */;
|
||||||
compatibilityVersion = "Xcode 3.2";
|
compatibilityVersion = "Xcode 3.2";
|
||||||
developmentRegion = English;
|
developmentRegion = English;
|
||||||
hasScannedForEncodings = 1;
|
hasScannedForEncodings = 0;
|
||||||
knownRegions = (
|
knownRegions = (
|
||||||
English,
|
en,
|
||||||
Japanese,
|
|
||||||
French,
|
|
||||||
German,
|
|
||||||
);
|
);
|
||||||
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
|
mainGroup = 533ED2F01528C4840005C6FA;
|
||||||
|
productRefGroup = 533ED2FC1528C4840005C6FA /* Products */;
|
||||||
projectDirPath = "";
|
projectDirPath = "";
|
||||||
projectRoot = "";
|
projectRoot = "";
|
||||||
targets = (
|
targets = (
|
||||||
1D6058900D05DD3D006BFB54 /* OpenSSL-for-iOS */,
|
533ED2FA1528C4840005C6FA /* OpenSSL-for-iOS */,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
/* End PBXProject section */
|
/* End PBXProject section */
|
||||||
|
|
||||||
/* Begin PBXResourcesBuildPhase section */
|
/* Begin PBXResourcesBuildPhase section */
|
||||||
1D60588D0D05DD3D006BFB54 /* Resources */ = {
|
533ED2F91528C4840005C6FA /* Resources */ = {
|
||||||
isa = PBXResourcesBuildPhase;
|
isa = PBXResourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */,
|
533ED30A1528C4840005C6FA /* InfoPlist.strings in Resources */,
|
||||||
2A28EE4612AA83FE00C0D35A /* Icon.png in Resources */,
|
533ED3161528C4840005C6FA /* ViewController_iPhone.xib in Resources */,
|
||||||
|
533ED3191528C4840005C6FA /* ViewController_iPad.xib in Resources */,
|
||||||
|
533ED3201528C4950005C6FA /* Icon.png in Resources */,
|
||||||
|
533ED3221528C4960005C6FA /* Icon@2x.png in Resources */,
|
||||||
|
533ED3261528C4FA0005C6FA /* Icon~ipad.png in Resources */,
|
||||||
|
533ED3281528C5140005C6FA /* Icon~iPad@2x.png in Resources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
/* End PBXResourcesBuildPhase section */
|
/* End PBXResourcesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXSourcesBuildPhase section */
|
/* Begin PBXSourcesBuildPhase section */
|
||||||
1D60588E0D05DD3D006BFB54 /* Sources */ = {
|
533ED2F71528C4840005C6FA /* Sources */ = {
|
||||||
isa = PBXSourcesBuildPhase;
|
isa = PBXSourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
1D60589B0D05DD56006BFB54 /* main.m in Sources */,
|
533ED30C1528C4840005C6FA /* main.m in Sources */,
|
||||||
1D3623260D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m in Sources */,
|
533ED3101528C4840005C6FA /* AppDelegate.m in Sources */,
|
||||||
|
533ED3131528C4840005C6FA /* ViewController.m in Sources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
/* End PBXSourcesBuildPhase section */
|
/* End PBXSourcesBuildPhase section */
|
||||||
|
|
||||||
|
/* Begin PBXVariantGroup section */
|
||||||
|
533ED3081528C4840005C6FA /* InfoPlist.strings */ = {
|
||||||
|
isa = PBXVariantGroup;
|
||||||
|
children = (
|
||||||
|
533ED3091528C4840005C6FA /* en */,
|
||||||
|
);
|
||||||
|
name = InfoPlist.strings;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
533ED3141528C4840005C6FA /* ViewController_iPhone.xib */ = {
|
||||||
|
isa = PBXVariantGroup;
|
||||||
|
children = (
|
||||||
|
533ED3151528C4840005C6FA /* en */,
|
||||||
|
);
|
||||||
|
name = ViewController_iPhone.xib;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
533ED3171528C4840005C6FA /* ViewController_iPad.xib */ = {
|
||||||
|
isa = PBXVariantGroup;
|
||||||
|
children = (
|
||||||
|
533ED3181528C4840005C6FA /* en */,
|
||||||
|
);
|
||||||
|
name = ViewController_iPad.xib;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
/* End PBXVariantGroup section */
|
||||||
|
|
||||||
/* Begin XCBuildConfiguration section */
|
/* Begin XCBuildConfiguration section */
|
||||||
1D6058940D05DD3E006BFB54 /* Debug */ = {
|
533ED31A1528C4840005C6FA /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
|
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||||
|
CLANG_ENABLE_OBJC_ARC = YES;
|
||||||
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_DYNAMIC_NO_PIC = NO;
|
GCC_DYNAMIC_NO_PIC = NO;
|
||||||
GCC_OPTIMIZATION_LEVEL = 0;
|
GCC_OPTIMIZATION_LEVEL = 0;
|
||||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
GCC_PREFIX_HEADER = OpenSSL_for_iOS_Prefix.pch;
|
"DEBUG=1",
|
||||||
INFOPLIST_FILE = "OpenSSL_for_iOS-Info.plist";
|
"$(inherited)",
|
||||||
LIBRARY_SEARCH_PATHS = lib;
|
);
|
||||||
PRODUCT_NAME = OpenSSL;
|
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||||
|
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
||||||
|
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||||
|
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||||
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
|
HEADER_SEARCH_PATHS = "include/**";
|
||||||
|
IPHONEOS_DEPLOYMENT_TARGET = 5.1;
|
||||||
|
SDKROOT = iphoneos;
|
||||||
|
TARGETED_DEVICE_FAMILY = "1,2";
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
1D6058950D05DD3E006BFB54 /* Release */ = {
|
533ED31B1528C4840005C6FA /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
|
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||||
|
CLANG_ENABLE_OBJC_ARC = YES;
|
||||||
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||||
COPY_PHASE_STRIP = YES;
|
COPY_PHASE_STRIP = YES;
|
||||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_PREFIX_HEADER = OpenSSL_for_iOS_Prefix.pch;
|
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
||||||
INFOPLIST_FILE = "OpenSSL_for_iOS-Info.plist";
|
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||||
LIBRARY_SEARCH_PATHS = lib;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||||
PRODUCT_NAME = OpenSSL;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
|
HEADER_SEARCH_PATHS = "include/**";
|
||||||
|
IPHONEOS_DEPLOYMENT_TARGET = 5.1;
|
||||||
|
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
||||||
|
SDKROOT = iphoneos;
|
||||||
|
TARGETED_DEVICE_FAMILY = "1,2";
|
||||||
VALIDATE_PRODUCT = YES;
|
VALIDATE_PRODUCT = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
C01FCF4F08A954540054247B /* Debug */ = {
|
533ED31D1528C4840005C6FA /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
GCC_PREFIX_HEADER = "OpenSSL-for-iOS/OpenSSL-for-iOS-Prefix.pch";
|
||||||
GCC_C_LANGUAGE_STANDARD = c99;
|
INFOPLIST_FILE = "OpenSSL-for-iOS/OpenSSL-for-iOS-Info.plist";
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
LIBRARY_SEARCH_PATHS = (
|
||||||
HEADER_SEARCH_PATHS = "include/**";
|
"$(inherited)",
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
"\"$(SRCROOT)/lib\"",
|
||||||
SDKROOT = iphoneos;
|
);
|
||||||
|
PRODUCT_NAME = OpenSSL;
|
||||||
|
WRAPPER_EXTENSION = app;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
C01FCF5008A954540054247B /* Release */ = {
|
533ED31E1528C4840005C6FA /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
GCC_PREFIX_HEADER = "OpenSSL-for-iOS/OpenSSL-for-iOS-Prefix.pch";
|
||||||
GCC_C_LANGUAGE_STANDARD = c99;
|
INFOPLIST_FILE = "OpenSSL-for-iOS/OpenSSL-for-iOS-Info.plist";
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
LIBRARY_SEARCH_PATHS = (
|
||||||
HEADER_SEARCH_PATHS = "include/**";
|
"$(inherited)",
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
"\"$(SRCROOT)/lib\"",
|
||||||
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
);
|
||||||
SDKROOT = iphoneos;
|
PRODUCT_NAME = OpenSSL;
|
||||||
|
WRAPPER_EXTENSION = app;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
/* End XCBuildConfiguration section */
|
/* End XCBuildConfiguration section */
|
||||||
|
|
||||||
/* Begin XCConfigurationList section */
|
/* Begin XCConfigurationList section */
|
||||||
1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL-for-iOS" */ = {
|
533ED2F51528C4840005C6FA /* Build configuration list for PBXProject "OpenSSL-for-iOS" */ = {
|
||||||
isa = XCConfigurationList;
|
isa = XCConfigurationList;
|
||||||
buildConfigurations = (
|
buildConfigurations = (
|
||||||
1D6058940D05DD3E006BFB54 /* Debug */,
|
533ED31A1528C4840005C6FA /* Debug */,
|
||||||
1D6058950D05DD3E006BFB54 /* Release */,
|
533ED31B1528C4840005C6FA /* Release */,
|
||||||
);
|
);
|
||||||
defaultConfigurationIsVisible = 0;
|
defaultConfigurationIsVisible = 0;
|
||||||
defaultConfigurationName = Release;
|
defaultConfigurationName = Release;
|
||||||
};
|
};
|
||||||
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "OpenSSL-for-iOS" */ = {
|
533ED31C1528C4840005C6FA /* Build configuration list for PBXNativeTarget "OpenSSL-for-iOS" */ = {
|
||||||
isa = XCConfigurationList;
|
isa = XCConfigurationList;
|
||||||
buildConfigurations = (
|
buildConfigurations = (
|
||||||
C01FCF4F08A954540054247B /* Debug */,
|
533ED31D1528C4840005C6FA /* Debug */,
|
||||||
C01FCF5008A954540054247B /* Release */,
|
533ED31E1528C4840005C6FA /* Release */,
|
||||||
);
|
);
|
||||||
defaultConfigurationIsVisible = 0;
|
defaultConfigurationIsVisible = 0;
|
||||||
defaultConfigurationName = Release;
|
|
||||||
};
|
};
|
||||||
/* End XCConfigurationList section */
|
/* End XCConfigurationList section */
|
||||||
};
|
};
|
||||||
rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
|
rootObject = 533ED2F21528C4840005C6FA /* Project object */;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
//
|
||||||
|
// AppDelegate.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>
|
||||||
|
|
||||||
|
@class ViewController;
|
||||||
|
|
||||||
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||||||
|
|
||||||
|
@property (strong, nonatomic) UIWindow *window;
|
||||||
|
@property (strong, nonatomic) ViewController *viewController;
|
||||||
|
|
||||||
|
@end
|
|
@ -0,0 +1,33 @@
|
||||||
|
//
|
||||||
|
// AppDelegate.m
|
||||||
|
// 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 "AppDelegate.h"
|
||||||
|
#import "ViewController.h"
|
||||||
|
|
||||||
|
@implementation AppDelegate
|
||||||
|
|
||||||
|
@synthesize window = _window;
|
||||||
|
@synthesize viewController = _viewController;
|
||||||
|
|
||||||
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
||||||
|
{
|
||||||
|
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
|
||||||
|
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
|
||||||
|
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_iPhone" bundle:nil];
|
||||||
|
} else {
|
||||||
|
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_iPad" bundle:nil];
|
||||||
|
}
|
||||||
|
self.window.rootViewController = self.viewController;
|
||||||
|
[self.window makeKeyAndVisible];
|
||||||
|
return YES;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@end
|
|
@ -0,0 +1,55 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>en</string>
|
||||||
|
<key>CFBundleDisplayName</key>
|
||||||
|
<string>${PRODUCT_NAME}</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>${EXECUTABLE_NAME}</string>
|
||||||
|
<key>CFBundleIcons</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundlePrimaryIcon</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIconFiles</key>
|
||||||
|
<array>
|
||||||
|
<string>Icon.png</string>
|
||||||
|
<string>Icon@2x.png</string>
|
||||||
|
<string>Icon~ipad.png</string>
|
||||||
|
<string>Icon~iPad@2x.png</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>de.felixschulze.${PRODUCT_NAME:rfc1034identifier}</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>${PRODUCT_NAME}</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>APPL</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>2.0</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>2.0</string>
|
||||||
|
<key>LSRequiresIPhoneOS</key>
|
||||||
|
<true/>
|
||||||
|
<key>UIApplicationExitsOnSuspend</key>
|
||||||
|
<true/>
|
||||||
|
<key>UIRequiredDeviceCapabilities</key>
|
||||||
|
<array>
|
||||||
|
<string>armv7</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
|
@ -2,7 +2,13 @@
|
||||||
// Prefix header for all source files of the 'OpenSSL-for-iOS' target in the 'OpenSSL-for-iOS' project
|
// Prefix header for all source files of the 'OpenSSL-for-iOS' target in the 'OpenSSL-for-iOS' project
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifdef __OBJC__
|
#import <Availability.h>
|
||||||
#import <Foundation/Foundation.h>
|
|
||||||
#import <UIKit/UIKit.h>
|
#ifndef __IPHONE_4_0
|
||||||
|
#warning "This project uses features only available in iOS SDK 4.0 and later."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __OBJC__
|
||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
#endif
|
#endif
|
|
@ -0,0 +1,23 @@
|
||||||
|
//
|
||||||
|
// 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;
|
||||||
|
- (IBAction)calculateMD5:(id)sender;
|
||||||
|
- (IBAction)calculateSHA256:(id)sender;
|
||||||
|
|
||||||
|
@end
|
|
@ -0,0 +1,82 @@
|
||||||
|
//
|
||||||
|
// ViewController.m
|
||||||
|
// 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 "ViewController.h"
|
||||||
|
#include <Openssl/md5.h>
|
||||||
|
#include <Openssl/sha.h>
|
||||||
|
|
||||||
|
@implementation ViewController
|
||||||
|
|
||||||
|
@synthesize textField;
|
||||||
|
@synthesize md5TextField;
|
||||||
|
@synthesize sha256TextField;
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
#pragma mark OpenSSL
|
||||||
|
|
||||||
|
- (IBAction)calculateMD5:(id)sender
|
||||||
|
{
|
||||||
|
/** Calculate MD5*/
|
||||||
|
NSString *string = textField.text;
|
||||||
|
unsigned char *inStrg = (unsigned char*)[[string dataUsingEncoding:NSASCIIStringEncoding] bytes];
|
||||||
|
unsigned long lngth = [string length];
|
||||||
|
unsigned char result[MD5_DIGEST_LENGTH];
|
||||||
|
NSMutableString *outStrg = [NSMutableString string];
|
||||||
|
|
||||||
|
MD5(inStrg, lngth, result);
|
||||||
|
|
||||||
|
unsigned int i;
|
||||||
|
for (i = 0; i < MD5_DIGEST_LENGTH; i++)
|
||||||
|
{
|
||||||
|
[outStrg appendFormat:@"%02x", result[i]];
|
||||||
|
}
|
||||||
|
md5TextField.text = outStrg;
|
||||||
|
|
||||||
|
//Hide Keyboard after calculation
|
||||||
|
[textField resignFirstResponder];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (IBAction)calculateSHA256:(id)sender
|
||||||
|
{
|
||||||
|
/* Calculate SHA256 */
|
||||||
|
NSString *string = textField.text;
|
||||||
|
unsigned char *inStrg = (unsigned char*)[[string dataUsingEncoding:NSASCIIStringEncoding] bytes];
|
||||||
|
unsigned long lngth = [string length];
|
||||||
|
unsigned char result[SHA256_DIGEST_LENGTH];
|
||||||
|
NSMutableString *outStrg = [NSMutableString string];
|
||||||
|
|
||||||
|
SHA256_CTX sha256;
|
||||||
|
SHA256_Init(&sha256);
|
||||||
|
SHA256_Update(&sha256, inStrg, lngth);
|
||||||
|
SHA256_Final(result, &sha256);
|
||||||
|
|
||||||
|
unsigned int i;
|
||||||
|
for(i = 0; i < SHA256_DIGEST_LENGTH; i++)
|
||||||
|
{
|
||||||
|
[outStrg appendFormat:@"%02x", result[i]];
|
||||||
|
}
|
||||||
|
sha256TextField.text = outStrg;
|
||||||
|
|
||||||
|
//Hide Keyboard after calculation
|
||||||
|
[textField resignFirstResponder];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (IBAction)showInfo
|
||||||
|
{
|
||||||
|
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"OpenSSL-for-iOS" message:@"OpenSSL-Version: 1.0.1\nLicense: See include/LICENSE\n\nCopyright 2010-2012 by Felix Schulze\n http://www.x2on.de" delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:nil];
|
||||||
|
[alert show];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
||||||
|
{
|
||||||
|
return (interfaceOrientation == UIInterfaceOrientationPortrait);
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
|
@ -0,0 +1,2 @@
|
||||||
|
/* Localized versions of Info.plist keys */
|
||||||
|
|
|
@ -0,0 +1,562 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="8.00">
|
||||||
|
<data>
|
||||||
|
<int key="IBDocument.SystemTarget">1296</int>
|
||||||
|
<string key="IBDocument.SystemVersion">11D50b</string>
|
||||||
|
<string key="IBDocument.InterfaceBuilderVersion">2182</string>
|
||||||
|
<string key="IBDocument.AppKitVersion">1138.32</string>
|
||||||
|
<string key="IBDocument.HIToolboxVersion">568.00</string>
|
||||||
|
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||||
|
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="NS.object.0">1181</string>
|
||||||
|
</object>
|
||||||
|
<array key="IBDocument.IntegratedClassDependencies">
|
||||||
|
<string>IBUIView</string>
|
||||||
|
<string>IBProxyObject</string>
|
||||||
|
<string>IBUILabel</string>
|
||||||
|
<string>IBUIBarButtonItem</string>
|
||||||
|
<string>IBUITextField</string>
|
||||||
|
<string>IBUINavigationBar</string>
|
||||||
|
<string>IBUINavigationItem</string>
|
||||||
|
<string>IBUIButton</string>
|
||||||
|
</array>
|
||||||
|
<array key="IBDocument.PluginDependencies">
|
||||||
|
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
</array>
|
||||||
|
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
||||||
|
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
||||||
|
<integer value="1" key="NS.object.0"/>
|
||||||
|
</object>
|
||||||
|
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
||||||
|
<object class="IBProxyObject" id="841351856">
|
||||||
|
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBProxyObject" id="606714003">
|
||||||
|
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIView" id="766721923">
|
||||||
|
<reference key="NSNextResponder"/>
|
||||||
|
<int key="NSvFlags">274</int>
|
||||||
|
<array class="NSMutableArray" key="NSSubviews">
|
||||||
|
<object class="IBUILabel" id="21291561">
|
||||||
|
<reference key="NSNextResponder" ref="766721923"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{20, 239}, {728, 31}}</string>
|
||||||
|
<reference key="NSSuperview" ref="766721923"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="53523624"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<string key="IBUIText"/>
|
||||||
|
<object class="NSColor" key="IBUITextColor" id="726151607">
|
||||||
|
<int key="NSColorSpace">1</int>
|
||||||
|
<bytes key="NSRGB">MCAwIDAAA</bytes>
|
||||||
|
</object>
|
||||||
|
<object class="NSColor" key="IBUIHighlightedColor" id="390605581">
|
||||||
|
<int key="NSColorSpace">3</int>
|
||||||
|
<bytes key="NSWhite">MQA</bytes>
|
||||||
|
</object>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<object class="IBUIFontDescription" key="IBUIFontDescription" id="55361472">
|
||||||
|
<int key="type">1</int>
|
||||||
|
<double key="pointSize">17</double>
|
||||||
|
</object>
|
||||||
|
<object class="NSFont" key="IBUIFont" id="181781097">
|
||||||
|
<string key="NSName">Helvetica</string>
|
||||||
|
<double key="NSSize">17</double>
|
||||||
|
<int key="NSfFlags">16</int>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="IBUILabel" id="432365751">
|
||||||
|
<reference key="NSNextResponder" ref="766721923"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 54}, {42, 21}}</string>
|
||||||
|
<reference key="NSSuperview" ref="766721923"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="67275492"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<string key="IBUIText">Text:</string>
|
||||||
|
<reference key="IBUITextColor" ref="726151607"/>
|
||||||
|
<reference key="IBUIHighlightedColor" ref="390605581"/>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<reference key="IBUIFontDescription" ref="55361472"/>
|
||||||
|
<reference key="IBUIFont" ref="181781097"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUILabel" id="53523624">
|
||||||
|
<reference key="NSNextResponder" ref="766721923"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 278}, {729, 21}}</string>
|
||||||
|
<reference key="NSSuperview" ref="766721923"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="477177698"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<string key="IBUIText">SHA256-Hash:</string>
|
||||||
|
<reference key="IBUITextColor" ref="726151607"/>
|
||||||
|
<reference key="IBUIHighlightedColor" ref="390605581"/>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<reference key="IBUIFontDescription" ref="55361472"/>
|
||||||
|
<reference key="IBUIFont" ref="181781097"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUINavigationBar" id="72146544">
|
||||||
|
<reference key="NSNextResponder" ref="766721923"/>
|
||||||
|
<int key="NSvFlags">290</int>
|
||||||
|
<array class="NSMutableArray" key="NSSubviews">
|
||||||
|
<object class="IBUIButton" id="936788137">
|
||||||
|
<reference key="NSNextResponder" ref="72146544"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{743, 12}, {18, 19}}</string>
|
||||||
|
<reference key="NSSuperview" ref="72146544"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="432365751"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||||
|
<int key="IBUIContentVerticalAlignment">0</int>
|
||||||
|
<int key="IBUIButtonType">3</int>
|
||||||
|
<bool key="IBUIShowsTouchWhenHighlighted">YES</bool>
|
||||||
|
<reference key="IBUIHighlightedTitleColor" ref="390605581"/>
|
||||||
|
<object class="NSColor" key="IBUINormalTitleColor">
|
||||||
|
<int key="NSColorSpace">1</int>
|
||||||
|
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||||
|
</object>
|
||||||
|
<object class="NSColor" key="IBUINormalTitleShadowColor" id="716224661">
|
||||||
|
<int key="NSColorSpace">3</int>
|
||||||
|
<bytes key="NSWhite">MC41AA</bytes>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIFontDescription" key="IBUIFontDescription" id="352794124">
|
||||||
|
<string key="name">Helvetica-Bold</string>
|
||||||
|
<string key="family">Helvetica</string>
|
||||||
|
<int key="traits">2</int>
|
||||||
|
<double key="pointSize">15</double>
|
||||||
|
</object>
|
||||||
|
<object class="NSFont" key="IBUIFont" id="862196078">
|
||||||
|
<string key="NSName">Helvetica-Bold</string>
|
||||||
|
<double key="NSSize">15</double>
|
||||||
|
<int key="NSfFlags">16</int>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
<string key="NSFrameSize">{768, 44}</string>
|
||||||
|
<reference key="NSSuperview" ref="766721923"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="936788137"/>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<int key="IBUIBarStyle">1</int>
|
||||||
|
<array key="IBUIItems">
|
||||||
|
<object class="IBUINavigationItem" id="514500503">
|
||||||
|
<reference key="IBUINavigationBar" ref="72146544"/>
|
||||||
|
<string key="IBUITitle">OpenSSL-for-iOS</string>
|
||||||
|
<object class="IBUIBarButtonItem" key="IBUIRightBarButtonItem" id="321482077">
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<int key="IBUIStyle">1</int>
|
||||||
|
<reference key="IBUICustomView" ref="936788137"/>
|
||||||
|
<reference key="IBUINavigationItem" ref="514500503"/>
|
||||||
|
</object>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
</object>
|
||||||
|
<object class="IBUITextField" id="67275492">
|
||||||
|
<reference key="NSNextResponder" ref="766721923"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 83}, {729, 31}}</string>
|
||||||
|
<reference key="NSSuperview" ref="766721923"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="164707480"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<int key="IBUIContentVerticalAlignment">0</int>
|
||||||
|
<string key="IBUIText">Enter an Text here</string>
|
||||||
|
<int key="IBUIBorderStyle">3</int>
|
||||||
|
<object class="NSColor" key="IBUITextColor">
|
||||||
|
<int key="NSColorSpace">3</int>
|
||||||
|
<bytes key="NSWhite">MAA</bytes>
|
||||||
|
<object class="NSColorSpace" key="NSCustomColorSpace" id="484176228">
|
||||||
|
<int key="NSID">2</int>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<bool key="IBUIAdjustsFontSizeToFit">YES</bool>
|
||||||
|
<float key="IBUIMinimumFontSize">17</float>
|
||||||
|
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||||
|
<int key="type">1</int>
|
||||||
|
<double key="pointSize">12</double>
|
||||||
|
</object>
|
||||||
|
<object class="NSFont" key="IBUIFont">
|
||||||
|
<string key="NSName">Helvetica</string>
|
||||||
|
<double key="NSSize">12</double>
|
||||||
|
<int key="NSfFlags">16</int>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="IBUILabel" id="590683349">
|
||||||
|
<reference key="NSNextResponder" ref="766721923"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 210}, {729, 21}}</string>
|
||||||
|
<reference key="NSSuperview" ref="766721923"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="21291561"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<string key="IBUIText">MD5-Hash:</string>
|
||||||
|
<reference key="IBUITextColor" ref="726151607"/>
|
||||||
|
<reference key="IBUIHighlightedColor" ref="390605581"/>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<reference key="IBUIFontDescription" ref="55361472"/>
|
||||||
|
<reference key="IBUIFont" ref="181781097"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIButton" id="164707480">
|
||||||
|
<reference key="NSNextResponder" ref="766721923"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 122}, {729, 35}}</string>
|
||||||
|
<reference key="NSSuperview" ref="766721923"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="757864539"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||||
|
<int key="IBUIContentVerticalAlignment">0</int>
|
||||||
|
<int key="IBUIButtonType">1</int>
|
||||||
|
<string key="IBUINormalTitle">Calculate MD5</string>
|
||||||
|
<reference key="IBUIHighlightedTitleColor" ref="390605581"/>
|
||||||
|
<object class="NSColor" key="IBUINormalTitleColor">
|
||||||
|
<int key="NSColorSpace">1</int>
|
||||||
|
<bytes key="NSRGB">MC4xOTYwNzg0MzE0IDAuMzA5ODAzOTIxNiAwLjUyMTU2ODYyNzUAA</bytes>
|
||||||
|
</object>
|
||||||
|
<reference key="IBUINormalTitleShadowColor" ref="716224661"/>
|
||||||
|
<reference key="IBUIFontDescription" ref="352794124"/>
|
||||||
|
<reference key="IBUIFont" ref="862196078"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUILabel" id="477177698">
|
||||||
|
<reference key="NSNextResponder" ref="766721923"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 307}, {729, 62}}</string>
|
||||||
|
<reference key="NSSuperview" ref="766721923"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<string key="IBUIText"/>
|
||||||
|
<reference key="IBUITextColor" ref="726151607"/>
|
||||||
|
<reference key="IBUIHighlightedColor" ref="390605581"/>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<int key="IBUINumberOfLines">3</int>
|
||||||
|
<reference key="IBUIFontDescription" ref="55361472"/>
|
||||||
|
<reference key="IBUIFont" ref="181781097"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIButton" id="757864539">
|
||||||
|
<reference key="NSNextResponder" ref="766721923"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 165}, {729, 37}}</string>
|
||||||
|
<reference key="NSSuperview" ref="766721923"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="590683349"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||||
|
<int key="IBUIContentVerticalAlignment">0</int>
|
||||||
|
<int key="IBUIButtonType">1</int>
|
||||||
|
<string key="IBUINormalTitle">Calculate SHA256</string>
|
||||||
|
<reference key="IBUIHighlightedTitleColor" ref="390605581"/>
|
||||||
|
<object class="NSColor" key="IBUINormalTitleColor">
|
||||||
|
<int key="NSColorSpace">1</int>
|
||||||
|
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||||
|
</object>
|
||||||
|
<reference key="IBUINormalTitleShadowColor" ref="716224661"/>
|
||||||
|
<reference key="IBUIFontDescription" ref="352794124"/>
|
||||||
|
<reference key="IBUIFont" ref="862196078"/>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
<string key="NSFrame">{{0, 20}, {768, 1004}}</string>
|
||||||
|
<reference key="NSSuperview"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<object class="NSColor" key="IBUIBackgroundColor">
|
||||||
|
<int key="NSColorSpace">3</int>
|
||||||
|
<bytes key="NSWhite">MQA</bytes>
|
||||||
|
<reference key="NSCustomColorSpace" ref="484176228"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics">
|
||||||
|
<int key="IBUIStatusBarStyle">2</int>
|
||||||
|
</object>
|
||||||
|
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||||
|
<array class="NSMutableArray" key="connectionRecords">
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||||
|
<string key="label">view</string>
|
||||||
|
<reference key="source" ref="841351856"/>
|
||||||
|
<reference key="destination" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">3</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||||
|
<string key="label">md5TextField</string>
|
||||||
|
<reference key="source" ref="841351856"/>
|
||||||
|
<reference key="destination" ref="21291561"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">16</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||||
|
<string key="label">sha256TextField</string>
|
||||||
|
<reference key="source" ref="841351856"/>
|
||||||
|
<reference key="destination" ref="477177698"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">17</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||||
|
<string key="label">textField</string>
|
||||||
|
<reference key="source" ref="841351856"/>
|
||||||
|
<reference key="destination" ref="67275492"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">18</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||||
|
<string key="label">calculateMD5:</string>
|
||||||
|
<reference key="source" ref="164707480"/>
|
||||||
|
<reference key="destination" ref="841351856"/>
|
||||||
|
<int key="IBEventType">1</int>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">19</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||||
|
<string key="label">calculateSHA256:</string>
|
||||||
|
<reference key="source" ref="757864539"/>
|
||||||
|
<reference key="destination" ref="841351856"/>
|
||||||
|
<int key="IBEventType">1</int>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">20</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||||
|
<string key="label">showInfo</string>
|
||||||
|
<reference key="source" ref="936788137"/>
|
||||||
|
<reference key="destination" ref="841351856"/>
|
||||||
|
<int key="IBEventType">1</int>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">21</int>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||||
|
<array key="orderedObjects">
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">0</int>
|
||||||
|
<array key="object" id="0"/>
|
||||||
|
<reference key="children" ref="1000"/>
|
||||||
|
<nil key="parent"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">-1</int>
|
||||||
|
<reference key="object" ref="841351856"/>
|
||||||
|
<reference key="parent" ref="0"/>
|
||||||
|
<string key="objectName">File's Owner</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">-2</int>
|
||||||
|
<reference key="object" ref="606714003"/>
|
||||||
|
<reference key="parent" ref="0"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">2</int>
|
||||||
|
<reference key="object" ref="766721923"/>
|
||||||
|
<array class="NSMutableArray" key="children">
|
||||||
|
<reference ref="21291561"/>
|
||||||
|
<reference ref="432365751"/>
|
||||||
|
<reference ref="53523624"/>
|
||||||
|
<reference ref="72146544"/>
|
||||||
|
<reference ref="67275492"/>
|
||||||
|
<reference ref="590683349"/>
|
||||||
|
<reference ref="164707480"/>
|
||||||
|
<reference ref="477177698"/>
|
||||||
|
<reference ref="757864539"/>
|
||||||
|
</array>
|
||||||
|
<reference key="parent" ref="0"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">4</int>
|
||||||
|
<reference key="object" ref="21291561"/>
|
||||||
|
<reference key="parent" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">5</int>
|
||||||
|
<reference key="object" ref="432365751"/>
|
||||||
|
<reference key="parent" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">6</int>
|
||||||
|
<reference key="object" ref="53523624"/>
|
||||||
|
<reference key="parent" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">7</int>
|
||||||
|
<reference key="object" ref="72146544"/>
|
||||||
|
<array class="NSMutableArray" key="children">
|
||||||
|
<reference ref="514500503"/>
|
||||||
|
</array>
|
||||||
|
<reference key="parent" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">8</int>
|
||||||
|
<reference key="object" ref="67275492"/>
|
||||||
|
<reference key="parent" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">9</int>
|
||||||
|
<reference key="object" ref="590683349"/>
|
||||||
|
<reference key="parent" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">10</int>
|
||||||
|
<reference key="object" ref="164707480"/>
|
||||||
|
<reference key="parent" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">11</int>
|
||||||
|
<reference key="object" ref="477177698"/>
|
||||||
|
<reference key="parent" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">12</int>
|
||||||
|
<reference key="object" ref="757864539"/>
|
||||||
|
<reference key="parent" ref="766721923"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">13</int>
|
||||||
|
<reference key="object" ref="514500503"/>
|
||||||
|
<array class="NSMutableArray" key="children">
|
||||||
|
<reference ref="321482077"/>
|
||||||
|
</array>
|
||||||
|
<reference key="parent" ref="72146544"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">14</int>
|
||||||
|
<reference key="object" ref="321482077"/>
|
||||||
|
<array class="NSMutableArray" key="children">
|
||||||
|
<reference ref="936788137"/>
|
||||||
|
</array>
|
||||||
|
<reference key="parent" ref="514500503"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">15</int>
|
||||||
|
<reference key="object" ref="936788137"/>
|
||||||
|
<reference key="parent" ref="321482077"/>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
</object>
|
||||||
|
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||||
|
<string key="-1.CustomClassName">ViewController</string>
|
||||||
|
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="-2.CustomClassName">UIResponder</string>
|
||||||
|
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="10.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="11.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="12.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="13.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="14.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="15.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="5.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="6.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="7.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="8.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="9.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
</dictionary>
|
||||||
|
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||||
|
<nil key="activeLocalization"/>
|
||||||
|
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||||
|
<nil key="sourceID"/>
|
||||||
|
<int key="maxID">21</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||||
|
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||||
|
<object class="IBPartialClassDescription">
|
||||||
|
<string key="className">ViewController</string>
|
||||||
|
<string key="superclassName">UIViewController</string>
|
||||||
|
<dictionary class="NSMutableDictionary" key="actions">
|
||||||
|
<string key="calculateMD5:">id</string>
|
||||||
|
<string key="calculateSHA256:">id</string>
|
||||||
|
<string key="showInfo">id</string>
|
||||||
|
</dictionary>
|
||||||
|
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||||
|
<object class="IBActionInfo" key="calculateMD5:">
|
||||||
|
<string key="name">calculateMD5:</string>
|
||||||
|
<string key="candidateClassName">id</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBActionInfo" key="calculateSHA256:">
|
||||||
|
<string key="name">calculateSHA256:</string>
|
||||||
|
<string key="candidateClassName">id</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBActionInfo" key="showInfo">
|
||||||
|
<string key="name">showInfo</string>
|
||||||
|
<string key="candidateClassName">id</string>
|
||||||
|
</object>
|
||||||
|
</dictionary>
|
||||||
|
<dictionary class="NSMutableDictionary" key="outlets">
|
||||||
|
<string key="md5TextField">UILabel</string>
|
||||||
|
<string key="sha256TextField">UILabel</string>
|
||||||
|
<string key="textField">UITextField</string>
|
||||||
|
</dictionary>
|
||||||
|
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||||
|
<object class="IBToOneOutletInfo" key="md5TextField">
|
||||||
|
<string key="name">md5TextField</string>
|
||||||
|
<string key="candidateClassName">UILabel</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBToOneOutletInfo" key="sha256TextField">
|
||||||
|
<string key="name">sha256TextField</string>
|
||||||
|
<string key="candidateClassName">UILabel</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBToOneOutletInfo" key="textField">
|
||||||
|
<string key="name">textField</string>
|
||||||
|
<string key="candidateClassName">UITextField</string>
|
||||||
|
</object>
|
||||||
|
</dictionary>
|
||||||
|
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||||
|
<string key="majorKey">IBProjectSource</string>
|
||||||
|
<string key="minorKey">./Classes/ViewController.h</string>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
</object>
|
||||||
|
<int key="IBDocument.localizationMode">0</int>
|
||||||
|
<string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
|
||||||
|
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
|
||||||
|
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||||
|
<real value="1296" key="NS.object.0"/>
|
||||||
|
</object>
|
||||||
|
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||||
|
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||||
|
<string key="IBCocoaTouchPluginVersion">1181</string>
|
||||||
|
</data>
|
||||||
|
</archive>
|
|
@ -0,0 +1,561 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
|
||||||
|
<data>
|
||||||
|
<int key="IBDocument.SystemTarget">1296</int>
|
||||||
|
<string key="IBDocument.SystemVersion">11D50b</string>
|
||||||
|
<string key="IBDocument.InterfaceBuilderVersion">2182</string>
|
||||||
|
<string key="IBDocument.AppKitVersion">1138.32</string>
|
||||||
|
<string key="IBDocument.HIToolboxVersion">568.00</string>
|
||||||
|
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||||
|
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="NS.object.0">1181</string>
|
||||||
|
</object>
|
||||||
|
<array key="IBDocument.IntegratedClassDependencies">
|
||||||
|
<string>IBUIView</string>
|
||||||
|
<string>IBProxyObject</string>
|
||||||
|
<string>IBUILabel</string>
|
||||||
|
<string>IBUIBarButtonItem</string>
|
||||||
|
<string>IBUITextField</string>
|
||||||
|
<string>IBUINavigationBar</string>
|
||||||
|
<string>IBUINavigationItem</string>
|
||||||
|
<string>IBUIButton</string>
|
||||||
|
</array>
|
||||||
|
<array key="IBDocument.PluginDependencies">
|
||||||
|
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
</array>
|
||||||
|
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
||||||
|
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
||||||
|
<integer value="1" key="NS.object.0"/>
|
||||||
|
</object>
|
||||||
|
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
||||||
|
<object class="IBProxyObject" id="372490531">
|
||||||
|
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBProxyObject" id="843779117">
|
||||||
|
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIView" id="774585933">
|
||||||
|
<reference key="NSNextResponder"/>
|
||||||
|
<int key="NSvFlags">274</int>
|
||||||
|
<array class="NSMutableArray" key="NSSubviews">
|
||||||
|
<object class="IBUILabel" id="219293445">
|
||||||
|
<reference key="NSNextResponder" ref="774585933"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 278}, {115, 21}}</string>
|
||||||
|
<reference key="NSSuperview" ref="774585933"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="414318894"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<string key="IBUIText">SHA256-Hash:</string>
|
||||||
|
<object class="NSColor" key="IBUITextColor" id="311390077">
|
||||||
|
<int key="NSColorSpace">1</int>
|
||||||
|
<bytes key="NSRGB">MCAwIDAAA</bytes>
|
||||||
|
</object>
|
||||||
|
<object class="NSColor" key="IBUIHighlightedColor" id="1013138792">
|
||||||
|
<int key="NSColorSpace">3</int>
|
||||||
|
<bytes key="NSWhite">MQA</bytes>
|
||||||
|
</object>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<object class="IBUIFontDescription" key="IBUIFontDescription" id="961751264">
|
||||||
|
<int key="type">1</int>
|
||||||
|
<double key="pointSize">17</double>
|
||||||
|
</object>
|
||||||
|
<object class="NSFont" key="IBUIFont" id="772742424">
|
||||||
|
<string key="NSName">Helvetica</string>
|
||||||
|
<double key="NSSize">17</double>
|
||||||
|
<int key="NSfFlags">16</int>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="IBUINavigationBar" id="571009263">
|
||||||
|
<reference key="NSNextResponder" ref="774585933"/>
|
||||||
|
<int key="NSvFlags">290</int>
|
||||||
|
<array class="NSMutableArray" key="NSSubviews">
|
||||||
|
<object class="IBUIButton" id="568606132">
|
||||||
|
<reference key="NSNextResponder" ref="571009263"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{297, 12}, {18, 19}}</string>
|
||||||
|
<reference key="NSSuperview" ref="571009263"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="815745089"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||||
|
<int key="IBUIContentVerticalAlignment">0</int>
|
||||||
|
<int key="IBUIButtonType">3</int>
|
||||||
|
<bool key="IBUIShowsTouchWhenHighlighted">YES</bool>
|
||||||
|
<reference key="IBUIHighlightedTitleColor" ref="1013138792"/>
|
||||||
|
<object class="NSColor" key="IBUINormalTitleColor">
|
||||||
|
<int key="NSColorSpace">1</int>
|
||||||
|
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||||
|
</object>
|
||||||
|
<object class="NSColor" key="IBUINormalTitleShadowColor" id="599554908">
|
||||||
|
<int key="NSColorSpace">3</int>
|
||||||
|
<bytes key="NSWhite">MC41AA</bytes>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIFontDescription" key="IBUIFontDescription" id="304098009">
|
||||||
|
<string key="name">Helvetica-Bold</string>
|
||||||
|
<string key="family">Helvetica</string>
|
||||||
|
<int key="traits">2</int>
|
||||||
|
<double key="pointSize">15</double>
|
||||||
|
</object>
|
||||||
|
<object class="NSFont" key="IBUIFont" id="117784510">
|
||||||
|
<string key="NSName">Helvetica-Bold</string>
|
||||||
|
<double key="NSSize">15</double>
|
||||||
|
<int key="NSfFlags">16</int>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
<string key="NSFrameSize">{320, 44}</string>
|
||||||
|
<reference key="NSSuperview" ref="774585933"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="568606132"/>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<int key="IBUIBarStyle">1</int>
|
||||||
|
<array key="IBUIItems">
|
||||||
|
<object class="IBUINavigationItem" id="660451907">
|
||||||
|
<reference key="IBUINavigationBar" ref="571009263"/>
|
||||||
|
<string key="IBUITitle">OpenSSL-for-iOS</string>
|
||||||
|
<object class="IBUIBarButtonItem" key="IBUIRightBarButtonItem" id="75293189">
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<int key="IBUIStyle">1</int>
|
||||||
|
<reference key="IBUICustomView" ref="568606132"/>
|
||||||
|
<reference key="IBUINavigationItem" ref="660451907"/>
|
||||||
|
</object>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIButton" id="849525976">
|
||||||
|
<reference key="NSNextResponder" ref="774585933"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 122}, {286, 35}}</string>
|
||||||
|
<reference key="NSSuperview" ref="774585933"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="723553303"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||||
|
<int key="IBUIContentVerticalAlignment">0</int>
|
||||||
|
<int key="IBUIButtonType">1</int>
|
||||||
|
<string key="IBUINormalTitle">Calculate MD5</string>
|
||||||
|
<reference key="IBUIHighlightedTitleColor" ref="1013138792"/>
|
||||||
|
<object class="NSColor" key="IBUINormalTitleColor">
|
||||||
|
<int key="NSColorSpace">1</int>
|
||||||
|
<bytes key="NSRGB">MC4xOTYwNzg0MzE0IDAuMzA5ODAzOTIxNiAwLjUyMTU2ODYyNzUAA</bytes>
|
||||||
|
</object>
|
||||||
|
<reference key="IBUINormalTitleShadowColor" ref="599554908"/>
|
||||||
|
<reference key="IBUIFontDescription" ref="304098009"/>
|
||||||
|
<reference key="IBUIFont" ref="117784510"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUILabel" id="503133820">
|
||||||
|
<reference key="NSNextResponder" ref="774585933"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 210}, {87, 21}}</string>
|
||||||
|
<reference key="NSSuperview" ref="774585933"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="1067201432"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<string key="IBUIText">MD5-Hash:</string>
|
||||||
|
<reference key="IBUITextColor" ref="311390077"/>
|
||||||
|
<reference key="IBUIHighlightedColor" ref="1013138792"/>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<reference key="IBUIFontDescription" ref="961751264"/>
|
||||||
|
<reference key="IBUIFont" ref="772742424"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUILabel" id="1067201432">
|
||||||
|
<reference key="NSNextResponder" ref="774585933"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{20, 239}, {285, 31}}</string>
|
||||||
|
<reference key="NSSuperview" ref="774585933"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="219293445"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<string key="IBUIText"/>
|
||||||
|
<reference key="IBUITextColor" ref="311390077"/>
|
||||||
|
<reference key="IBUIHighlightedColor" ref="1013138792"/>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<reference key="IBUIFontDescription" ref="961751264"/>
|
||||||
|
<reference key="IBUIFont" ref="772742424"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUITextField" id="52321213">
|
||||||
|
<reference key="NSNextResponder" ref="774585933"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 83}, {286, 31}}</string>
|
||||||
|
<reference key="NSSuperview" ref="774585933"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="849525976"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<int key="IBUIContentVerticalAlignment">0</int>
|
||||||
|
<string key="IBUIText">Enter an Text here</string>
|
||||||
|
<int key="IBUIBorderStyle">3</int>
|
||||||
|
<object class="NSColor" key="IBUITextColor">
|
||||||
|
<int key="NSColorSpace">3</int>
|
||||||
|
<bytes key="NSWhite">MAA</bytes>
|
||||||
|
<object class="NSColorSpace" key="NSCustomColorSpace">
|
||||||
|
<int key="NSID">2</int>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<bool key="IBUIAdjustsFontSizeToFit">YES</bool>
|
||||||
|
<float key="IBUIMinimumFontSize">17</float>
|
||||||
|
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||||
|
<int key="type">1</int>
|
||||||
|
<double key="pointSize">12</double>
|
||||||
|
</object>
|
||||||
|
<object class="NSFont" key="IBUIFont">
|
||||||
|
<string key="NSName">Helvetica</string>
|
||||||
|
<double key="NSSize">12</double>
|
||||||
|
<int key="NSfFlags">16</int>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="IBUILabel" id="414318894">
|
||||||
|
<reference key="NSNextResponder" ref="774585933"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 307}, {286, 62}}</string>
|
||||||
|
<reference key="NSSuperview" ref="774585933"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<string key="IBUIText"/>
|
||||||
|
<reference key="IBUITextColor" ref="311390077"/>
|
||||||
|
<reference key="IBUIHighlightedColor" ref="1013138792"/>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<int key="IBUINumberOfLines">3</int>
|
||||||
|
<reference key="IBUIFontDescription" ref="961751264"/>
|
||||||
|
<reference key="IBUIFont" ref="772742424"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUILabel" id="815745089">
|
||||||
|
<reference key="NSNextResponder" ref="774585933"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 54}, {42, 21}}</string>
|
||||||
|
<reference key="NSSuperview" ref="774585933"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="52321213"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<bool key="IBUIClipsSubviews">YES</bool>
|
||||||
|
<int key="IBUIContentMode">7</int>
|
||||||
|
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<string key="IBUIText">Text:</string>
|
||||||
|
<reference key="IBUITextColor" ref="311390077"/>
|
||||||
|
<reference key="IBUIHighlightedColor" ref="1013138792"/>
|
||||||
|
<int key="IBUIBaselineAdjustment">1</int>
|
||||||
|
<float key="IBUIMinimumFontSize">10</float>
|
||||||
|
<reference key="IBUIFontDescription" ref="961751264"/>
|
||||||
|
<reference key="IBUIFont" ref="772742424"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBUIButton" id="723553303">
|
||||||
|
<reference key="NSNextResponder" ref="774585933"/>
|
||||||
|
<int key="NSvFlags">292</int>
|
||||||
|
<string key="NSFrame">{{19, 165}, {286, 37}}</string>
|
||||||
|
<reference key="NSSuperview" ref="774585933"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="503133820"/>
|
||||||
|
<bool key="IBUIOpaque">NO</bool>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||||
|
<int key="IBUIContentVerticalAlignment">0</int>
|
||||||
|
<int key="IBUIButtonType">1</int>
|
||||||
|
<string key="IBUINormalTitle">Calculate SHA256</string>
|
||||||
|
<reference key="IBUIHighlightedTitleColor" ref="1013138792"/>
|
||||||
|
<object class="NSColor" key="IBUINormalTitleColor">
|
||||||
|
<int key="NSColorSpace">1</int>
|
||||||
|
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||||
|
</object>
|
||||||
|
<reference key="IBUINormalTitleShadowColor" ref="599554908"/>
|
||||||
|
<reference key="IBUIFontDescription" ref="304098009"/>
|
||||||
|
<reference key="IBUIFont" ref="117784510"/>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
<string key="NSFrame">{{0, 20}, {320, 460}}</string>
|
||||||
|
<reference key="NSSuperview"/>
|
||||||
|
<reference key="NSWindow"/>
|
||||||
|
<reference key="NSNextKeyView" ref="571009263"/>
|
||||||
|
<object class="NSColor" key="IBUIBackgroundColor">
|
||||||
|
<int key="NSColorSpace">1</int>
|
||||||
|
<bytes key="NSRGB">MSAxIDEAA</bytes>
|
||||||
|
</object>
|
||||||
|
<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
|
||||||
|
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
|
||||||
|
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||||
|
<array class="NSMutableArray" key="connectionRecords">
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||||
|
<string key="label">view</string>
|
||||||
|
<reference key="source" ref="372490531"/>
|
||||||
|
<reference key="destination" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">7</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||||
|
<string key="label">md5TextField</string>
|
||||||
|
<reference key="source" ref="372490531"/>
|
||||||
|
<reference key="destination" ref="1067201432"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">44</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||||
|
<string key="label">sha256TextField</string>
|
||||||
|
<reference key="source" ref="372490531"/>
|
||||||
|
<reference key="destination" ref="414318894"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">45</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||||
|
<string key="label">textField</string>
|
||||||
|
<reference key="source" ref="372490531"/>
|
||||||
|
<reference key="destination" ref="52321213"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">46</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||||
|
<string key="label">calculateMD5:</string>
|
||||||
|
<reference key="source" ref="849525976"/>
|
||||||
|
<reference key="destination" ref="372490531"/>
|
||||||
|
<int key="IBEventType">1</int>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">47</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||||
|
<string key="label">calculateSHA256:</string>
|
||||||
|
<reference key="source" ref="723553303"/>
|
||||||
|
<reference key="destination" ref="372490531"/>
|
||||||
|
<int key="IBEventType">1</int>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">48</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||||
|
<string key="label">showInfo</string>
|
||||||
|
<reference key="source" ref="568606132"/>
|
||||||
|
<reference key="destination" ref="372490531"/>
|
||||||
|
<int key="IBEventType">1</int>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">49</int>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||||
|
<array key="orderedObjects">
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">0</int>
|
||||||
|
<array key="object" id="0"/>
|
||||||
|
<reference key="children" ref="1000"/>
|
||||||
|
<nil key="parent"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">-1</int>
|
||||||
|
<reference key="object" ref="372490531"/>
|
||||||
|
<reference key="parent" ref="0"/>
|
||||||
|
<string key="objectName">File's Owner</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">-2</int>
|
||||||
|
<reference key="object" ref="843779117"/>
|
||||||
|
<reference key="parent" ref="0"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">6</int>
|
||||||
|
<reference key="object" ref="774585933"/>
|
||||||
|
<array class="NSMutableArray" key="children">
|
||||||
|
<reference ref="219293445"/>
|
||||||
|
<reference ref="571009263"/>
|
||||||
|
<reference ref="849525976"/>
|
||||||
|
<reference ref="503133820"/>
|
||||||
|
<reference ref="1067201432"/>
|
||||||
|
<reference ref="52321213"/>
|
||||||
|
<reference ref="414318894"/>
|
||||||
|
<reference ref="815745089"/>
|
||||||
|
<reference ref="723553303"/>
|
||||||
|
</array>
|
||||||
|
<reference key="parent" ref="0"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">32</int>
|
||||||
|
<reference key="object" ref="219293445"/>
|
||||||
|
<reference key="parent" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">33</int>
|
||||||
|
<reference key="object" ref="571009263"/>
|
||||||
|
<array class="NSMutableArray" key="children">
|
||||||
|
<reference ref="660451907"/>
|
||||||
|
</array>
|
||||||
|
<reference key="parent" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">34</int>
|
||||||
|
<reference key="object" ref="849525976"/>
|
||||||
|
<reference key="parent" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">35</int>
|
||||||
|
<reference key="object" ref="503133820"/>
|
||||||
|
<reference key="parent" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">36</int>
|
||||||
|
<reference key="object" ref="1067201432"/>
|
||||||
|
<reference key="parent" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">37</int>
|
||||||
|
<reference key="object" ref="52321213"/>
|
||||||
|
<reference key="parent" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">38</int>
|
||||||
|
<reference key="object" ref="414318894"/>
|
||||||
|
<reference key="parent" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">39</int>
|
||||||
|
<reference key="object" ref="815745089"/>
|
||||||
|
<reference key="parent" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">40</int>
|
||||||
|
<reference key="object" ref="723553303"/>
|
||||||
|
<reference key="parent" ref="774585933"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">41</int>
|
||||||
|
<reference key="object" ref="660451907"/>
|
||||||
|
<array class="NSMutableArray" key="children">
|
||||||
|
<reference ref="75293189"/>
|
||||||
|
</array>
|
||||||
|
<reference key="parent" ref="571009263"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">42</int>
|
||||||
|
<reference key="object" ref="75293189"/>
|
||||||
|
<array class="NSMutableArray" key="children">
|
||||||
|
<reference ref="568606132"/>
|
||||||
|
</array>
|
||||||
|
<reference key="parent" ref="660451907"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">43</int>
|
||||||
|
<reference key="object" ref="568606132"/>
|
||||||
|
<reference key="parent" ref="75293189"/>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
</object>
|
||||||
|
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||||
|
<string key="-1.CustomClassName">ViewController</string>
|
||||||
|
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="-2.CustomClassName">UIResponder</string>
|
||||||
|
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="32.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="33.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="34.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="35.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="36.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="37.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="38.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="39.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="40.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="41.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="42.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="43.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
<string key="6.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||||
|
</dictionary>
|
||||||
|
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||||
|
<nil key="activeLocalization"/>
|
||||||
|
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||||
|
<nil key="sourceID"/>
|
||||||
|
<int key="maxID">49</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||||
|
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||||
|
<object class="IBPartialClassDescription">
|
||||||
|
<string key="className">ViewController</string>
|
||||||
|
<string key="superclassName">UIViewController</string>
|
||||||
|
<dictionary class="NSMutableDictionary" key="actions">
|
||||||
|
<string key="calculateMD5:">id</string>
|
||||||
|
<string key="calculateSHA256:">id</string>
|
||||||
|
<string key="showInfo">id</string>
|
||||||
|
</dictionary>
|
||||||
|
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||||
|
<object class="IBActionInfo" key="calculateMD5:">
|
||||||
|
<string key="name">calculateMD5:</string>
|
||||||
|
<string key="candidateClassName">id</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBActionInfo" key="calculateSHA256:">
|
||||||
|
<string key="name">calculateSHA256:</string>
|
||||||
|
<string key="candidateClassName">id</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBActionInfo" key="showInfo">
|
||||||
|
<string key="name">showInfo</string>
|
||||||
|
<string key="candidateClassName">id</string>
|
||||||
|
</object>
|
||||||
|
</dictionary>
|
||||||
|
<dictionary class="NSMutableDictionary" key="outlets">
|
||||||
|
<string key="md5TextField">UILabel</string>
|
||||||
|
<string key="sha256TextField">UILabel</string>
|
||||||
|
<string key="textField">UITextField</string>
|
||||||
|
</dictionary>
|
||||||
|
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||||
|
<object class="IBToOneOutletInfo" key="md5TextField">
|
||||||
|
<string key="name">md5TextField</string>
|
||||||
|
<string key="candidateClassName">UILabel</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBToOneOutletInfo" key="sha256TextField">
|
||||||
|
<string key="name">sha256TextField</string>
|
||||||
|
<string key="candidateClassName">UILabel</string>
|
||||||
|
</object>
|
||||||
|
<object class="IBToOneOutletInfo" key="textField">
|
||||||
|
<string key="name">textField</string>
|
||||||
|
<string key="candidateClassName">UITextField</string>
|
||||||
|
</object>
|
||||||
|
</dictionary>
|
||||||
|
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||||
|
<string key="majorKey">IBProjectSource</string>
|
||||||
|
<string key="minorKey">./Classes/ViewController.h</string>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
</object>
|
||||||
|
<int key="IBDocument.localizationMode">0</int>
|
||||||
|
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||||
|
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
|
||||||
|
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||||
|
<real value="1296" key="NS.object.0"/>
|
||||||
|
</object>
|
||||||
|
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||||
|
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||||
|
<string key="IBCocoaTouchPluginVersion">1181</string>
|
||||||
|
</data>
|
||||||
|
</archive>
|
|
@ -0,0 +1,19 @@
|
||||||
|
//
|
||||||
|
// main.m
|
||||||
|
// 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>
|
||||||
|
#import "AppDelegate.h"
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
@autoreleasepool {
|
||||||
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,32 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>UIApplicationExitsOnSuspend</key>
|
|
||||||
<true/>
|
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
|
||||||
<string>English</string>
|
|
||||||
<key>CFBundleDisplayName</key>
|
|
||||||
<string>${PRODUCT_NAME}</string>
|
|
||||||
<key>CFBundleExecutable</key>
|
|
||||||
<string>${EXECUTABLE_NAME}</string>
|
|
||||||
<key>CFBundleIconFile</key>
|
|
||||||
<string>Icon.png</string>
|
|
||||||
<key>CFBundleIdentifier</key>
|
|
||||||
<string>de.x2on.${PRODUCT_NAME:rfc1034identifier}</string>
|
|
||||||
<key>CFBundleInfoDictionaryVersion</key>
|
|
||||||
<string>6.0</string>
|
|
||||||
<key>CFBundleName</key>
|
|
||||||
<string>${PRODUCT_NAME}</string>
|
|
||||||
<key>CFBundlePackageType</key>
|
|
||||||
<string>APPL</string>
|
|
||||||
<key>CFBundleSignature</key>
|
|
||||||
<string>????</string>
|
|
||||||
<key>CFBundleVersion</key>
|
|
||||||
<string>1.0</string>
|
|
||||||
<key>LSRequiresIPhoneOS</key>
|
|
||||||
<true/>
|
|
||||||
<key>NSMainNibFile</key>
|
|
||||||
<string>MainWindow</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
17
main.m
17
main.m
|
@ -1,17 +0,0 @@
|
||||||
//
|
|
||||||
// main.m
|
|
||||||
// OpenSSL-for-iPhone
|
|
||||||
//
|
|
||||||
// Created by Felix Schulze on 01.02.2010.
|
|
||||||
// Copyright Felix Schulze 2010. All rights reserved.
|
|
||||||
//
|
|
||||||
|
|
||||||
#import <UIKit/UIKit.h>
|
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
|
||||||
|
|
||||||
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
||||||
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
|
||||||
[pool release];
|
|
||||||
return retVal;
|
|
||||||
}
|
|
Loading…
Reference in New Issue