From cec74168bdfc3e8fcb61507356b65236b9e4a82d Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Sat, 4 Dec 2010 13:25:08 +0100 Subject: [PATCH] GUI-Improvements for easier understanding --- Classes/OpenSSL_for_iPhoneAppDelegate.h | 8 ++ Classes/OpenSSL_for_iPhoneAppDelegate.m | 64 ++------- OpenSSL-for-iPhone.xcodeproj/project.pbxproj | 35 +++-- OpenSSL-for-iPhone.xcodeproj/x2on.mode1v3 | 112 ++++++++-------- OpenSSL-for-iPhone.xcodeproj/x2on.pbxuser | 133 ++++++++++--------- OpenSSL_for_iPhone-Info.plist | 4 +- 6 files changed, 166 insertions(+), 190 deletions(-) diff --git a/Classes/OpenSSL_for_iPhoneAppDelegate.h b/Classes/OpenSSL_for_iPhoneAppDelegate.h index dbb8c8a..6600793 100644 --- a/Classes/OpenSSL_for_iPhoneAppDelegate.h +++ b/Classes/OpenSSL_for_iPhoneAppDelegate.h @@ -10,9 +10,17 @@ @interface OpenSSL_for_iPhoneAppDelegate : NSObject { UIWindow *window; + + IBOutlet UITextField *textField; + IBOutlet UITextField *md5TextField; } @property (nonatomic, retain) IBOutlet UIWindow *window; +@property (nonatomic, retain) IBOutlet UITextField *textField; +@property (nonatomic, retain) IBOutlet UITextField *md5TextField; + +- (IBAction)showInfo; +- (IBAction)calculateMD5:(id)sender; @end diff --git a/Classes/OpenSSL_for_iPhoneAppDelegate.m b/Classes/OpenSSL_for_iPhoneAppDelegate.m index 9c90b02..604bd06 100644 --- a/Classes/OpenSSL_for_iPhoneAppDelegate.m +++ b/Classes/OpenSSL_for_iPhoneAppDelegate.m @@ -2,7 +2,7 @@ // OpenSSL_for_iPhoneAppDelegate.m // OpenSSL-for-iPhone // -// Created by Felix Schulze on 30.06.2010. +// Created by Felix Schulze on 04.12.2010. // Copyright Felix Schulze 2010. All rights reserved. // @@ -11,66 +11,21 @@ @implementation OpenSSL_for_iPhoneAppDelegate -@synthesize window; +@synthesize window, textField, md5TextField; -UITextField *textView; -UILabel *label; #pragma mark - #pragma mark Application lifecycle -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - - UINavigationBar *navBar = [[UINavigationBar alloc] initWithFrame: - CGRectMake( 0.0f, 20.0f, window.frame.size.width, 48.0f)]; - [navBar setBarStyle: 0]; - - UINavigationItem *title = [[UINavigationItem alloc] initWithTitle:@"OpenSSL-Test"]; - [navBar pushNavigationItem:title animated:true]; - - UIButton* infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight]; - [infoButton addTarget:self action:@selector(infoView) forControlEvents:UIControlEventTouchUpInside]; - - UIBarButtonItem *buttonItem = [[UIBarButtonItem alloc] initWithCustomView:infoButton]; - title.rightBarButtonItem = buttonItem; - [buttonItem release]; - - textView = [[UITextView alloc] initWithFrame: CGRectMake(5, 100, 310, 50)]; - textView.backgroundColor = [UIColor lightGrayColor]; - [textView setText:@"Testing text"]; - - label = [[UILabel alloc] initWithFrame:CGRectMake(20, 200, 320.0f, 100)]; - label.font = [UIFont fontWithName:@"Courier New" size: 10.0]; - [label setText:@"MD5-Hash"]; - - UIButton *button = [[UIButton buttonWithType:UIButtonTypeRoundedRect] retain]; button.frame = CGRectMake(100, 150, 100, 50); - [button setTitle:@"Calc MD5" forState:UIControlStateNormal]; - button.backgroundColor = [UIColor clearColor]; - [button addTarget:self action:@selector(action:) forControlEvents:UIControlEventTouchUpInside]; - button.adjustsImageWhenHighlighted = YES; - - - [window addSubview:textView]; - [window addSubview:navBar]; - [window addSubview:button]; - [window addSubview:label]; - [window makeKeyAndVisible]; - - - [title release]; - [navBar release]; - [textView release]; - [label release]; - [button release]; - +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { + [window makeKeyAndVisible]; return YES; } -- (void)action:(id)sender +- (IBAction)calculateMD5:(id)sender { - /** Calculate MD5*/ - NSString *string = textView.text; + NSString *string = textField.text; unsigned char result[16]; unsigned char *inStrg = (unsigned char*)[[string dataUsingEncoding:NSASCIIStringEncoding] bytes]; unsigned long lngth = [string length]; @@ -81,13 +36,12 @@ UILabel *label; { [outStrg appendFormat:@"%02x", result[i]]; } - [label setText:outStrg]; + md5TextField.text = outStrg; } -- (void) infoView -{ +- (IBAction)showInfo { - UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"OpenSSL-Test" message:@"Copyright 2010 by Felix Schulze\n http://www.x2on.de" delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:nil]; + UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"OpenSSL-for-iOS" message:@"OpenSSL-Version: 1.0.0c\nLicense: See include/LICENSE\n\nCopyright 2010 by Felix Schulze\n http://www.x2on.de" delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:nil]; [alert show]; [alert release]; diff --git a/OpenSSL-for-iPhone.xcodeproj/project.pbxproj b/OpenSSL-for-iPhone.xcodeproj/project.pbxproj index 10a5d60..4c7c8e5 100755 --- a/OpenSSL-for-iPhone.xcodeproj/project.pbxproj +++ b/OpenSSL-for-iPhone.xcodeproj/project.pbxproj @@ -15,19 +15,21 @@ 28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD733E0D9D9553002E5188 /* MainWindow.xib */; }; 2A38C53711DBC7E700738646 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2A38C53611DBC7E700738646 /* libcrypto.a */; }; 2A38C53911DBC7EC00738646 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2A38C53811DBC7EC00738646 /* libssl.a */; }; + 2A88077E12AA660100FE95B9 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 2A88077D12AA660100FE95B9 /* Icon.png */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 1D3623240D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenSSL_for_iPhoneAppDelegate.h; sourceTree = ""; }; 1D3623250D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OpenSSL_for_iPhoneAppDelegate.m; sourceTree = ""; }; - 1D6058910D05DD3D006BFB54 /* OpenSSL-for-iPhone.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "OpenSSL-for-iPhone.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1D6058910D05DD3D006BFB54 /* OpenSSL.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OpenSSL.app; sourceTree = BUILT_PRODUCTS_DIR; }; 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 288765FC0DF74451002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 28AD733E0D9D9553002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = ""; }; 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 2A38C53611DBC7E700738646 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = ""; }; 2A38C53811DBC7EC00738646 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = ""; }; + 2A88077D12AA660100FE95B9 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; 32CA4F630368D1EE00C91783 /* OpenSSL_for_iPhone_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenSSL_for_iPhone_Prefix.pch; sourceTree = ""; }; 8D1107310486CEB800E47090 /* OpenSSL_for_iPhone-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "OpenSSL_for_iPhone-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = ""; }; /* End PBXFileReference section */ @@ -60,7 +62,7 @@ 19C28FACFE9D520D11CA2CBB /* Products */ = { isa = PBXGroup; children = ( - 1D6058910D05DD3D006BFB54 /* OpenSSL-for-iPhone.app */, + 1D6058910D05DD3D006BFB54 /* OpenSSL.app */, ); name = Products; sourceTree = ""; @@ -89,6 +91,7 @@ 29B97317FDCFA39411CA2CEA /* Resources */ = { isa = PBXGroup; children = ( + 2A88077D12AA660100FE95B9 /* Icon.png */, 28AD733E0D9D9553002E5188 /* MainWindow.xib */, 8D1107310486CEB800E47090 /* OpenSSL_for_iPhone-Info.plist */, ); @@ -110,9 +113,9 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 1D6058900D05DD3D006BFB54 /* OpenSSL-for-iPhone */ = { + 1D6058900D05DD3D006BFB54 /* OpenSSL */ = { isa = PBXNativeTarget; - buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL-for-iPhone" */; + buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL" */; buildPhases = ( 1D60588D0D05DD3D006BFB54 /* Resources */, 1D60588E0D05DD3D006BFB54 /* Sources */, @@ -122,9 +125,9 @@ ); dependencies = ( ); - name = "OpenSSL-for-iPhone"; + name = OpenSSL; productName = "OpenSSL-for-iPhone"; - productReference = 1D6058910D05DD3D006BFB54 /* OpenSSL-for-iPhone.app */; + productReference = 1D6058910D05DD3D006BFB54 /* OpenSSL.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ @@ -134,12 +137,19 @@ isa = PBXProject; buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "OpenSSL-for-iPhone" */; compatibilityVersion = "Xcode 3.1"; + developmentRegion = English; hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */; projectDirPath = ""; projectRoot = ""; targets = ( - 1D6058900D05DD3D006BFB54 /* OpenSSL-for-iPhone */, + 1D6058900D05DD3D006BFB54 /* OpenSSL */, ); }; /* End PBXProject section */ @@ -150,6 +160,7 @@ buildActionMask = 2147483647; files = ( 28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */, + 2A88077E12AA660100FE95B9 /* Icon.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -182,7 +193,7 @@ "$(inherited)", "\"$(SRCROOT)\"", ); - PRODUCT_NAME = "OpenSSL-for-iPhone"; + PRODUCT_NAME = OpenSSL; SDKROOT = iphonesimulator4.0; USER_HEADER_SEARCH_PATHS = "include/**"; }; @@ -200,7 +211,7 @@ "$(inherited)", "\"$(SRCROOT)\"", ); - PRODUCT_NAME = "OpenSSL-for-iPhone"; + PRODUCT_NAME = OpenSSL; VALIDATE_PRODUCT = YES; }; name = Release; @@ -214,7 +225,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNUSED_VARIABLE = YES; PREBINDING = NO; - SDKROOT = iphoneos4.0; + SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "include/**"; }; name = Debug; @@ -229,14 +240,14 @@ GCC_WARN_UNUSED_VARIABLE = YES; OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; PREBINDING = NO; - SDKROOT = iphoneos4.0; + SDKROOT = iphoneos; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL-for-iPhone" */ = { + 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL" */ = { isa = XCConfigurationList; buildConfigurations = ( 1D6058940D05DD3E006BFB54 /* Debug */, diff --git a/OpenSSL-for-iPhone.xcodeproj/x2on.mode1v3 b/OpenSSL-for-iPhone.xcodeproj/x2on.mode1v3 index 420a1d6..da012bb 100644 --- a/OpenSSL-for-iPhone.xcodeproj/x2on.mode1v3 +++ b/OpenSSL-for-iPhone.xcodeproj/x2on.mode1v3 @@ -254,7 +254,7 @@ PBXSmartGroupTreeModuleColumnWidthsKey - 186 + 322 PBXSmartGroupTreeModuleColumnsKey_v4 @@ -267,6 +267,7 @@ 29B97314FDCFA39411CA2CEA 080E96DDFE201D6D7F000001 + 29B97315FDCFA39411CA2CEA 29B97323FDCFA39411CA2CEA 1C37FBAC04509CD000000102 1C37FABC05509CD000000102 @@ -274,12 +275,13 @@ PBXSmartGroupTreeModuleOutlineStateSelectionKey - 14 - 13 + 2 + 1 + 0 PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 749}} + {{0, 0}, {322, 871}} PBXTopSmartGroupGIDs @@ -291,19 +293,19 @@ GeometryConfiguration Frame - {{0, 0}, {203, 767}} + {{0, 0}, {339, 889}} GroupTreeTableConfiguration MainColumn - 186 + 322 RubberWindowFrame - 699 165 1087 808 0 0 1920 1178 + 712 233 1550 930 0 0 2560 1418 Module PBXSmartGroupTreeModule Proportion - 203pt + 339pt Dock @@ -314,7 +316,7 @@ PBXProjectModuleGUID 1CE0B20306471E060097A5F4 PBXProjectModuleLabel - OpenSSL_for_iPhoneAppDelegate.m + OpenSSL_for_iPhoneAppDelegate.h PBXSplitModuleInNavigatorKey Split0 @@ -322,18 +324,18 @@ PBXProjectModuleGUID 1CE0B20406471E060097A5F4 PBXProjectModuleLabel - OpenSSL_for_iPhoneAppDelegate.m + OpenSSL_for_iPhoneAppDelegate.h _historyCapacity 0 bookmark - 2A38C5D411DBC91A00738646 + 2A88079312AA66CB00FE95B9 history - 2A38C54C11DBC83400738646 - 2A38C54D11DBC83400738646 - 2A38C54E11DBC83400738646 - 2A38C54F11DBC83400738646 - 2A38C5D211DBC90200738646 + 2A88078212AA665500FE95B9 + 2A88078E12AA66CB00FE95B9 + 2A88078F12AA66CB00FE95B9 + 2A88079012AA66CB00FE95B9 + 2A88079112AA66CB00FE95B9 SplitCount @@ -345,14 +347,14 @@ GeometryConfiguration Frame - {{0, 0}, {879, 351}} + {{0, 0}, {1206, 438}} RubberWindowFrame - 699 165 1087 808 0 0 1920 1178 + 712 233 1550 930 0 0 2560 1418 Module PBXNavigatorGroup Proportion - 351pt + 438pt ContentConfiguration @@ -365,18 +367,18 @@ GeometryConfiguration Frame - {{0, 356}, {879, 411}} + {{0, 443}, {1206, 446}} RubberWindowFrame - 699 165 1087 808 0 0 1920 1178 + 712 233 1550 930 0 0 2560 1418 Module XCDetailModule Proportion - 411pt + 446pt Proportion - 879pt + 1206pt Name @@ -391,9 +393,9 @@ TableOfContents - 2A38C50A11DBC48700738646 + 2A8806FC12AA5FEC00FE95B9 1CE0B1FE06471DED0097A5F4 - 2A38C50B11DBC48700738646 + 2A8806FD12AA5FEC00FE95B9 1CE0B20306471E060097A5F4 1CE0B20506471E060097A5F4 @@ -531,13 +533,13 @@ 5 WindowOrderList - 1C78EAAD065D492600B07095 1CD10A99069EF8BA00B06720 2A38C50D11DBC48700738646 + 1C78EAAD065D492600B07095 /Users/x2on/Projects/iPhone/OpenSSL-for-iPhone/OpenSSL-for-iPhone.xcodeproj WindowString - 699 165 1087 808 0 0 1920 1178 + 712 233 1550 930 0 0 2560 1418 WindowToolsV3 @@ -558,7 +560,7 @@ PBXProjectModuleGUID 1CD0528F0623707200166675 PBXProjectModuleLabel - OpenSSL_for_iPhoneAppDelegate.m + StatusBarVisibility @@ -567,7 +569,7 @@ Frame {{0, 0}, {1156, 463}} RubberWindowFrame - 611 255 1156 745 0 0 1920 1178 + 1123 382 1156 745 0 0 2560 1418 Module PBXNavigatorGroup @@ -575,8 +577,6 @@ 463pt - BecomeActive - ContentConfiguration PBXProjectModuleGUID @@ -593,7 +593,7 @@ Frame {{0, 468}, {1156, 236}} RubberWindowFrame - 611 255 1156 745 0 0 1920 1178 + 1123 382 1156 745 0 0 2560 1418 Module PBXBuildResultsModule @@ -616,7 +616,7 @@ TableOfContents 2A38C50D11DBC48700738646 - 2A38C50E11DBC48700738646 + 2A8806FE12AA5FEC00FE95B9 1CD0528F0623707200166675 XCMainBuildResultsModuleGUID @@ -625,7 +625,7 @@ WindowContentMinSize 486 300 WindowString - 611 255 1156 745 0 0 1920 1178 + 1123 382 1156 745 0 0 2560 1418 WindowToolGUID 2A38C50D11DBC48700738646 WindowToolIsVisible @@ -660,8 +660,8 @@ yes sizes - {{0, 0}, {316, 185}} - {{316, 0}, {378, 185}} + {{0, 0}, {316, 194}} + {{316, 0}, {378, 194}} VerticalSplitView @@ -676,8 +676,8 @@ yes sizes - {{0, 0}, {694, 185}} - {{0, 185}, {694, 196}} + {{0, 0}, {694, 194}} + {{0, 194}, {694, 187}} @@ -710,12 +710,12 @@ 148 Frame - {{316, 0}, {378, 185}} + {{316, 0}, {378, 194}} RubberWindowFrame - 96 556 694 422 0 0 1920 1178 + 146 727 694 422 0 0 2560 1418 RubberWindowFrame - 96 556 694 422 0 0 1920 1178 + 146 727 694 422 0 0 2560 1418 Module PBXDebugSessionModule @@ -738,18 +738,18 @@ TableOfContents 1CD10A99069EF8BA00B06720 - 2A38C51C11DBC52700738646 + 2A8806FF12AA5FEC00FE95B9 1C162984064C10D400B95A72 - 2A38C51D11DBC52700738646 - 2A38C51E11DBC52700738646 - 2A38C51F11DBC52700738646 - 2A38C52011DBC52700738646 - 2A38C52111DBC52700738646 + 2A88070012AA5FEC00FE95B9 + 2A88070112AA5FEC00FE95B9 + 2A88070212AA5FEC00FE95B9 + 2A88070312AA5FEC00FE95B9 + 2A88070412AA5FEC00FE95B9 ToolbarConfiguration xcode.toolbar.config.debugV3 WindowString - 96 556 694 422 0 0 1920 1178 + 146 727 694 422 0 0 2560 1418 WindowToolGUID 1CD10A99069EF8BA00B06720 WindowToolIsVisible @@ -871,6 +871,8 @@ Dock + BecomeActive + ContentConfiguration PBXProjectModuleGUID @@ -881,18 +883,18 @@ GeometryConfiguration Frame - {{0, 0}, {650, 209}} + {{0, 0}, {663, 265}} RubberWindowFrame - 96 728 650 250 0 0 1920 1178 + 144 857 663 306 0 0 2560 1418 Module PBXDebugCLIModule Proportion - 209pt + 265pt Proportion - 209pt + 265pt Name @@ -906,17 +908,17 @@ TableOfContents 1C78EAAD065D492600B07095 - 2A38C52211DBC52700738646 + 2A88070512AA5FEC00FE95B9 1C78EAAC065D492600B07095 ToolbarConfiguration xcode.toolbar.config.consoleV3 WindowString - 96 728 650 250 0 0 1920 1178 + 144 857 663 306 0 0 2560 1418 WindowToolGUID 1C78EAAD065D492600B07095 WindowToolIsVisible - + Identifier diff --git a/OpenSSL-for-iPhone.xcodeproj/x2on.pbxuser b/OpenSSL-for-iPhone.xcodeproj/x2on.pbxuser index 9f6b66a..61648b0 100644 --- a/OpenSSL-for-iPhone.xcodeproj/x2on.pbxuser +++ b/OpenSSL-for-iPhone.xcodeproj/x2on.pbxuser @@ -2,34 +2,35 @@ { 1D3623240D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {818, 319}}"; - sepNavSelRange = "{65, 98}"; - sepNavVisRange = "{0, 360}"; + sepNavIntBoundsRect = "{{0, 0}, {1145, 406}}"; + sepNavSelRange = "{569, 0}"; + sepNavVisRange = "{0, 622}"; }; }; 1D3623250D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1965, 1976}}"; - sepNavSelRange = "{210, 25}"; - sepNavVisRange = "{0, 1111}"; + sepNavIntBoundsRect = "{{0, 0}, {1965, 1365}}"; + sepNavSelRange = "{102, 0}"; + sepNavVisRange = "{0, 840}"; }; }; - 1D6058900D05DD3D006BFB54 /* OpenSSL-for-iPhone */ = { + 1D6058900D05DD3D006BFB54 /* OpenSSL */ = { activeExec = 0; executables = ( - 2A38C4FE11DBC47D00738646 /* OpenSSL-for-iPhone */, + 2A38C4FE11DBC47D00738646 /* OpenSSL */, ); }; 29B97313FDCFA39411CA2CEA /* Project object */ = { activeBuildConfigurationName = Debug; - activeExecutable = 2A38C4FE11DBC47D00738646 /* OpenSSL-for-iPhone */; - activeTarget = 1D6058900D05DD3D006BFB54 /* OpenSSL-for-iPhone */; + activeExecutable = 2A38C4FE11DBC47D00738646 /* OpenSSL */; + activeSDKPreference = iphonesimulator4.2; + activeTarget = 1D6058900D05DD3D006BFB54 /* OpenSSL */; addToTargets = ( - 1D6058900D05DD3D006BFB54 /* OpenSSL-for-iPhone */, + 1D6058900D05DD3D006BFB54 /* OpenSSL */, ); codeSenseManager = 2A38C51011DBC48700738646 /* Code sense */; executables = ( - 2A38C4FE11DBC47D00738646 /* OpenSSL-for-iPhone */, + 2A38C4FE11DBC47D00738646 /* OpenSSL */, ); perUserDictionary = { PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { @@ -37,7 +38,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 640, + 967, 20, 48, 43, @@ -59,7 +60,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 600, + 927, 60, 20, 48, @@ -76,16 +77,16 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 299615357; - PBXWorkspaceStateSaveDate = 299615357; + PBXPerProjectTemplateStateSaveDate = 313155498; + PBXWorkspaceStateSaveDate = 313155498; }; perUserProjectItems = { - 2A38C54C11DBC83400738646 /* PBXTextBookmark */ = 2A38C54C11DBC83400738646 /* PBXTextBookmark */; - 2A38C54D11DBC83400738646 /* PBXTextBookmark */ = 2A38C54D11DBC83400738646 /* PBXTextBookmark */; - 2A38C54E11DBC83400738646 /* PBXTextBookmark */ = 2A38C54E11DBC83400738646 /* PBXTextBookmark */; - 2A38C54F11DBC83400738646 /* PlistBookmark */ = 2A38C54F11DBC83400738646 /* PlistBookmark */; - 2A38C5D211DBC90200738646 /* PBXTextBookmark */ = 2A38C5D211DBC90200738646 /* PBXTextBookmark */; - 2A38C5D411DBC91A00738646 /* PBXTextBookmark */ = 2A38C5D411DBC91A00738646 /* PBXTextBookmark */; + 2A88078212AA665500FE95B9 /* PlistBookmark */ = 2A88078212AA665500FE95B9 /* PlistBookmark */; + 2A88078E12AA66CB00FE95B9 /* PBXTextBookmark */ = 2A88078E12AA66CB00FE95B9 /* PBXTextBookmark */; + 2A88078F12AA66CB00FE95B9 /* PBXTextBookmark */ = 2A88078F12AA66CB00FE95B9 /* PBXTextBookmark */; + 2A88079012AA66CB00FE95B9 /* PBXTextBookmark */ = 2A88079012AA66CB00FE95B9 /* PBXTextBookmark */; + 2A88079112AA66CB00FE95B9 /* PBXTextBookmark */ = 2A88079112AA66CB00FE95B9 /* PBXTextBookmark */; + 2A88079312AA66CB00FE95B9 /* PBXTextBookmark */ = 2A88079312AA66CB00FE95B9 /* PBXTextBookmark */; }; sourceControlManager = 2A38C50F11DBC48700738646 /* Source Control */; userBuildSettings = { @@ -93,12 +94,12 @@ }; 29B97316FDCFA39411CA2CEA /* main.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {818, 319}}"; + sepNavIntBoundsRect = "{{0, 0}, {1145, 383}}"; sepNavSelRange = "{138, 0}"; sepNavVisRange = "{0, 372}"; }; }; - 2A38C4FE11DBC47D00738646 /* OpenSSL-for-iPhone */ = { + 2A38C4FE11DBC47D00738646 /* OpenSSL */ = { isa = PBXExecutable; activeArgIndices = ( ); @@ -121,7 +122,7 @@ executableSystemSymbolLevel = 0; executableUserSymbolLevel = 0; libgmallocEnabled = 0; - name = "OpenSSL-for-iPhone"; + name = OpenSSL; showTypeColumn = 0; sourceDirectories = ( ); @@ -140,37 +141,7 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 2A38C54C11DBC83400738646 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623240D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.h */; - name = "OpenSSL_for_iPhoneAppDelegate.h: 5"; - rLen = 98; - rLoc = 65; - rType = 0; - vrLen = 360; - vrLoc = 0; - }; - 2A38C54D11DBC83400738646 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 32CA4F630368D1EE00C91783 /* OpenSSL_for_iPhone_Prefix.pch */; - name = "OpenSSL_for_iPhone_Prefix.pch: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 205; - vrLoc = 0; - }; - 2A38C54E11DBC83400738646 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 29B97316FDCFA39411CA2CEA /* main.m */; - name = "main.m: 6"; - rLen = 0; - rLoc = 138; - rType = 0; - vrLen = 372; - vrLoc = 0; - }; - 2A38C54F11DBC83400738646 /* PlistBookmark */ = { + 2A88078212AA665500FE95B9 /* PlistBookmark */ = { isa = PlistBookmark; fRef = 8D1107310486CEB800E47090 /* OpenSSL_for_iPhone-Info.plist */; fallbackIsa = PBXBookmark; @@ -181,29 +152,59 @@ rLen = 0; rLoc = 9223372036854775807; }; - 2A38C5D211DBC90200738646 /* PBXTextBookmark */ = { + 2A88078E12AA66CB00FE95B9 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m */; - name = "OpenSSL_for_iPhoneAppDelegate.m: 6"; + fRef = 29B97316FDCFA39411CA2CEA /* main.m */; + name = "main.m: 6"; rLen = 0; - rLoc = 163; + rLoc = 138; rType = 0; - vrLen = 675; + vrLen = 372; vrLoc = 0; }; - 2A38C5D411DBC91A00738646 /* PBXTextBookmark */ = { + 2A88078F12AA66CB00FE95B9 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 32CA4F630368D1EE00C91783 /* OpenSSL_for_iPhone_Prefix.pch */; + name = "OpenSSL_for_iPhone_Prefix.pch: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 205; + vrLoc = 0; + }; + 2A88079012AA66CB00FE95B9 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m */; - name = "OpenSSL_for_iPhoneAppDelegate.m: 6"; + name = "OpenSSL_for_iPhoneAppDelegate.m: 5"; rLen = 0; - rLoc = 163; + rLoc = 102; rType = 0; - vrLen = 675; + vrLen = 840; + vrLoc = 0; + }; + 2A88079112AA66CB00FE95B9 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623240D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.h */; + name = "OpenSSL_for_iPhoneAppDelegate.h: 23"; + rLen = 0; + rLoc = 569; + rType = 0; + vrLen = 622; + vrLoc = 0; + }; + 2A88079312AA66CB00FE95B9 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623240D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.h */; + name = "OpenSSL_for_iPhoneAppDelegate.h: 23"; + rLen = 0; + rLoc = 569; + rType = 0; + vrLen = 622; vrLoc = 0; }; 32CA4F630368D1EE00C91783 /* OpenSSL_for_iPhone_Prefix.pch */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {818, 319}}"; + sepNavIntBoundsRect = "{{0, 0}, {1145, 383}}"; sepNavSelRange = "{0, 0}"; sepNavVisRange = "{0, 205}"; }; diff --git a/OpenSSL_for_iPhone-Info.plist b/OpenSSL_for_iPhone-Info.plist index 3289444..a8ea854 100644 --- a/OpenSSL_for_iPhone-Info.plist +++ b/OpenSSL_for_iPhone-Info.plist @@ -9,9 +9,9 @@ CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIconFile - + Icon.png CFBundleIdentifier - com.yourcompany.${PRODUCT_NAME:rfc1034identifier} + de.x2on.${PRODUCT_NAME:rfc1034identifier} CFBundleInfoDictionaryVersion 6.0 CFBundleName