Clean Project File - Renaming iPhone -> iOS

This commit is contained in:
Felix Schulze 2010-12-04 15:18:35 +01:00
parent 11d752b24d
commit 69ac99a984
10 changed files with 297 additions and 346 deletions

View File

@ -1,6 +1,6 @@
//
// OpenSSL_for_iPhoneAppDelegate.h
// OpenSSL-for-iPhone
// OpenSSL_for_iOSAppDelegate.h
// OpenSSL-for-iOS
//
// Created by Felix Schulze on 01.02.2010.
// Copyright Felix Schulze 2010. All rights reserved.
@ -8,13 +8,13 @@
#import <UIKit/UIKit.h>
@interface OpenSSL_for_iPhoneAppDelegate : NSObject <UIApplicationDelegate> {
@interface OpenSSL_for_iOSAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
IBOutlet UITextField *textField;
IBOutlet UILabel *md5TextField;
IBOutlet UILabel *sha256TextField;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;

View File

@ -1,16 +1,16 @@
//
// OpenSSL_for_iPhoneAppDelegate.m
// OpenSSL-for-iPhone
// 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_iPhoneAppDelegate.h"
#import "OpenSSL_for_iOSAppDelegate.h"
#include <Openssl/md5.h>
#include <Openssl/sha.h>
@implementation OpenSSL_for_iPhoneAppDelegate
@implementation OpenSSL_for_iOSAppDelegate
@synthesize window, textField, md5TextField, sha256TextField;
@ -51,7 +51,7 @@
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);
@ -129,4 +129,4 @@
}
@end
@end

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
<data>
<int key="IBDocument.SystemTarget">1024</int>
<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>
@ -508,7 +508,7 @@
<object class="NSAffineTransform">
<bytes key="NSTransformStruct">P4AAAL+AAABBmAAAwysAAA</bytes>
</object>
<string>OpenSSL_for_iPhoneAppDelegate</string>
<string>OpenSSL_for_iOSAppDelegate</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<object class="NSAffineTransform">
@ -551,7 +551,7 @@
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBPartialClassDescription">
<string key="className">OpenSSL_for_iPhoneAppDelegate</string>
<string key="className">OpenSSL_for_iOSAppDelegate</string>
<string key="superclassName">NSObject</string>
<object class="NSMutableDictionary" key="actions">
<bool key="EncodedWithXMLCoder">YES</bool>
@ -640,15 +640,7 @@
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/OpenSSL_for_iPhoneAppDelegate.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">OpenSSL_for_iPhoneAppDelegate</string>
<string key="superclassName">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBUserSource</string>
<string key="minorKey"/>
<string key="minorKey">Classes/OpenSSL_for_iOSAppDelegate.h</string>
</object>
</object>
</object>
@ -904,7 +896,7 @@
<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="1024" key="NS.object.0"/>
<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>

View File

@ -7,31 +7,31 @@
objects = {
/* Begin PBXBuildFile section */
1D3623260D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m */; };
1D3623260D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m */; };
1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765FC0DF74451002DB57D /* CoreGraphics.framework */; };
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 */; };
2A28EE4612AA83FE00C0D35A /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 2A28EE4512AA83FE00C0D35A /* Icon.png */; };
2AA51C5512AA80B400AEA776 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2AA51C5312AA80B400AEA776 /* libssl.a */; };
2AA51C5612AA80B400AEA776 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2AA51C5412AA80B400AEA776 /* libcrypto.a */; };
/* 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 = "<group>"; };
1D3623250D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OpenSSL_for_iPhoneAppDelegate.m; sourceTree = "<group>"; };
1D3623240D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenSSL_for_iOSAppDelegate.h; sourceTree = "<group>"; };
1D3623250D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OpenSSL_for_iOSAppDelegate.m; sourceTree = "<group>"; };
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 = "<group>"; };
29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
2A38C53611DBC7E700738646 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
2A38C53811DBC7EC00738646 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
2A88077D12AA660100FE95B9 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
32CA4F630368D1EE00C91783 /* OpenSSL_for_iPhone_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenSSL_for_iPhone_Prefix.pch; sourceTree = "<group>"; };
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 = "<group>"; };
2A28EE4512AA83FE00C0D35A /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
2AA51C5312AA80B400AEA776 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
2AA51C5412AA80B400AEA776 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
32CA4F630368D1EE00C91783 /* OpenSSL_for_iOS_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenSSL_for_iOS_Prefix.pch; 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>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@ -42,8 +42,8 @@
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */,
2A38C53711DBC7E700738646 /* libcrypto.a in Frameworks */,
2A38C53911DBC7EC00738646 /* libssl.a in Frameworks */,
2AA51C5512AA80B400AEA776 /* libssl.a in Frameworks */,
2AA51C5612AA80B400AEA776 /* libcrypto.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@ -53,8 +53,8 @@
080E96DDFE201D6D7F000001 /* Classes */ = {
isa = PBXGroup;
children = (
1D3623240D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.h */,
1D3623250D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m */,
1D3623240D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.h */,
1D3623250D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m */,
);
path = Classes;
sourceTree = "<group>";
@ -82,7 +82,7 @@
29B97315FDCFA39411CA2CEA /* Other Sources */ = {
isa = PBXGroup;
children = (
32CA4F630368D1EE00C91783 /* OpenSSL_for_iPhone_Prefix.pch */,
32CA4F630368D1EE00C91783 /* OpenSSL_for_iOS_Prefix.pch */,
29B97316FDCFA39411CA2CEA /* main.m */,
);
name = "Other Sources";
@ -91,9 +91,9 @@
29B97317FDCFA39411CA2CEA /* Resources */ = {
isa = PBXGroup;
children = (
2A88077D12AA660100FE95B9 /* Icon.png */,
2A28EE4512AA83FE00C0D35A /* Icon.png */,
28AD733E0D9D9553002E5188 /* MainWindow.xib */,
8D1107310486CEB800E47090 /* OpenSSL_for_iPhone-Info.plist */,
8D1107310486CEB800E47090 /* OpenSSL_for_iOS-Info.plist */,
);
name = Resources;
sourceTree = "<group>";
@ -101,8 +101,8 @@
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
isa = PBXGroup;
children = (
2A38C53811DBC7EC00738646 /* libssl.a */,
2A38C53611DBC7E700738646 /* libcrypto.a */,
2AA51C5312AA80B400AEA776 /* libssl.a */,
2AA51C5412AA80B400AEA776 /* libcrypto.a */,
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
1D30AB110D05D00D00671497 /* Foundation.framework */,
288765FC0DF74451002DB57D /* CoreGraphics.framework */,
@ -113,9 +113,9 @@
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
1D6058900D05DD3D006BFB54 /* OpenSSL */ = {
1D6058900D05DD3D006BFB54 /* OpenSSL-for-iOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL" */;
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL-for-iOS" */;
buildPhases = (
1D60588D0D05DD3D006BFB54 /* Resources */,
1D60588E0D05DD3D006BFB54 /* Sources */,
@ -125,8 +125,8 @@
);
dependencies = (
);
name = OpenSSL;
productName = "OpenSSL-for-iPhone";
name = "OpenSSL-for-iOS";
productName = "OpenSSL-for-iOS";
productReference = 1D6058910D05DD3D006BFB54 /* OpenSSL.app */;
productType = "com.apple.product-type.application";
};
@ -135,7 +135,7 @@
/* Begin PBXProject section */
29B97313FDCFA39411CA2CEA /* Project object */ = {
isa = PBXProject;
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "OpenSSL-for-iPhone" */;
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "OpenSSL-for-iOS" */;
compatibilityVersion = "Xcode 3.1";
developmentRegion = English;
hasScannedForEncodings = 1;
@ -149,7 +149,7 @@
projectDirPath = "";
projectRoot = "";
targets = (
1D6058900D05DD3D006BFB54 /* OpenSSL */,
1D6058900D05DD3D006BFB54 /* OpenSSL-for-iOS */,
);
};
/* End PBXProject section */
@ -160,7 +160,7 @@
buildActionMask = 2147483647;
files = (
28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */,
2A88077E12AA660100FE95B9 /* Icon.png in Resources */,
2A28EE4612AA83FE00C0D35A /* Icon.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@ -172,7 +172,7 @@
buildActionMask = 2147483647;
files = (
1D60589B0D05DD56006BFB54 /* main.m in Sources */,
1D3623260D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m in Sources */,
1D3623260D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@ -182,20 +182,18 @@
1D6058940D05DD3E006BFB54 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = OpenSSL_for_iPhone_Prefix.pch;
INFOPLIST_FILE = "OpenSSL_for_iPhone-Info.plist";
GCC_PREFIX_HEADER = OpenSSL_for_iOS_Prefix.pch;
INFOPLIST_FILE = "OpenSSL_for_iOS-Info.plist";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)\"",
);
PRODUCT_NAME = OpenSSL;
SDKROOT = iphonesimulator4.0;
USER_HEADER_SEARCH_PATHS = "include/**";
};
name = Debug;
};
@ -205,8 +203,8 @@
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = OpenSSL_for_iPhone_Prefix.pch;
INFOPLIST_FILE = "OpenSSL_for_iPhone-Info.plist";
GCC_PREFIX_HEADER = OpenSSL_for_iOS_Prefix.pch;
INFOPLIST_FILE = "OpenSSL_for_iOS-Info.plist";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)\"",
@ -224,9 +222,10 @@
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "include/**";
ONLY_ACTIVE_ARCH = YES;
PREBINDING = NO;
SDKROOT = iphoneos;
USER_HEADER_SEARCH_PATHS = "include/**";
};
name = Debug;
};
@ -238,6 +237,8 @@
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "include/**";
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
PREBINDING = NO;
SDKROOT = iphoneos;
@ -247,7 +248,7 @@
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL" */ = {
1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "OpenSSL-for-iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1D6058940D05DD3E006BFB54 /* Debug */,
@ -256,7 +257,7 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "OpenSSL-for-iPhone" */ = {
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "OpenSSL-for-iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
C01FCF4F08A954540054247B /* Debug */,

View File

@ -178,7 +178,7 @@
<key>FavBarConfig</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>2A38C50C11DBC48700738646</string>
<string>2AA51BB912AA7F3700AEA776</string>
<key>XCBarModuleItemNames</key>
<dict/>
<key>XCBarModuleItems</key>
@ -254,7 +254,7 @@
<dict>
<key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
<array>
<real>322</real>
<real>186</real>
</array>
<key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
<array>
@ -267,21 +267,17 @@
<array>
<string>29B97314FDCFA39411CA2CEA</string>
<string>080E96DDFE201D6D7F000001</string>
<string>29B97315FDCFA39411CA2CEA</string>
<string>29B97323FDCFA39411CA2CEA</string>
<string>1C37FBAC04509CD000000102</string>
<string>1C37FABC05509CD000000102</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
<integer>2</integer>
<integer>1</integer>
<integer>0</integer>
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
<string>{{0, 0}, {322, 871}}</string>
<string>{{0, 0}, {186, 832}}</string>
</dict>
<key>PBXTopSmartGroupGIDs</key>
<array/>
@ -293,19 +289,19 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {339, 889}}</string>
<string>{{0, 0}, {203, 850}}</string>
<key>GroupTreeTableConfiguration</key>
<array>
<string>MainColumn</string>
<real>322</real>
<real>186</real>
</array>
<key>RubberWindowFrame</key>
<string>712 233 1550 930 0 0 2560 1418 </string>
<string>122 302 915 891 0 0 2560 1418 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
<key>Proportion</key>
<string>339pt</string>
<string>203pt</string>
</dict>
<dict>
<key>Dock</key>
@ -316,7 +312,7 @@
<key>PBXProjectModuleGUID</key>
<string>1CE0B20306471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
<string>OpenSSL_for_iPhoneAppDelegate.h</string>
<string>OpenSSL_for_iOSAppDelegate.h</string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
@ -324,18 +320,16 @@
<key>PBXProjectModuleGUID</key>
<string>1CE0B20406471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
<string>OpenSSL_for_iPhoneAppDelegate.h</string>
<string>OpenSSL_for_iOSAppDelegate.h</string>
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
<string>2A88079312AA66CB00FE95B9</string>
<string>2A1A6E1912AA851C00E4B343</string>
<key>history</key>
<array>
<string>2A88078212AA665500FE95B9</string>
<string>2A88078E12AA66CB00FE95B9</string>
<string>2A88078F12AA66CB00FE95B9</string>
<string>2A88079012AA66CB00FE95B9</string>
<string>2A88079112AA66CB00FE95B9</string>
<string>2A28EE7212AA849800C0D35A</string>
<string>2A1A6E0512AA84C000E4B343</string>
<string>2A1A6E0612AA84C000E4B343</string>
</array>
</dict>
<key>SplitCount</key>
@ -347,14 +341,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {1206, 438}}</string>
<string>{{0, 0}, {707, 650}}</string>
<key>RubberWindowFrame</key>
<string>712 233 1550 930 0 0 2560 1418 </string>
<string>122 302 915 891 0 0 2560 1418 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
<string>438pt</string>
<string>650pt</string>
</dict>
<dict>
<key>ContentConfiguration</key>
@ -367,18 +361,18 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 443}, {1206, 446}}</string>
<string>{{0, 655}, {707, 195}}</string>
<key>RubberWindowFrame</key>
<string>712 233 1550 930 0 0 2560 1418 </string>
<string>122 302 915 891 0 0 2560 1418 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
<key>Proportion</key>
<string>446pt</string>
<string>195pt</string>
</dict>
</array>
<key>Proportion</key>
<string>1206pt</string>
<string>707pt</string>
</dict>
</array>
<key>Name</key>
@ -393,9 +387,9 @@
</array>
<key>TableOfContents</key>
<array>
<string>2A8806FC12AA5FEC00FE95B9</string>
<string>2A1A6E0812AA84C000E4B343</string>
<string>1CE0B1FE06471DED0097A5F4</string>
<string>2A8806FD12AA5FEC00FE95B9</string>
<string>2A1A6E0912AA84C000E4B343</string>
<string>1CE0B20306471E060097A5F4</string>
<string>1CE0B20506471E060097A5F4</string>
</array>
@ -533,13 +527,13 @@
<integer>5</integer>
<key>WindowOrderList</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
<string>2A38C50D11DBC48700738646</string>
<string>1C78EAAD065D492600B07095</string>
<string>/Users/x2on/Projects/iPhone/OpenSSL-for-iPhone/OpenSSL-for-iPhone.xcodeproj</string>
<string>1CD10A99069EF8BA00B06720</string>
<string>2AA51BBA12AA7F3700AEA776</string>
<string>/Users/x2on/Projects/iPhone/OpenSSL-for-iPhone/OpenSSL-for-iOS.xcodeproj</string>
</array>
<key>WindowString</key>
<string>712 233 1550 930 0 0 2560 1418 </string>
<string>122 302 915 891 0 0 2560 1418 </string>
<key>WindowToolsV3</key>
<array>
<dict>
@ -567,14 +561,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {1156, 463}}</string>
<string>{{0, 0}, {962, 285}}</string>
<key>RubberWindowFrame</key>
<string>1123 382 1156 745 0 0 2560 1418 </string>
<string>934 613 962 567 0 0 2560 1418 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
<string>463pt</string>
<string>285pt</string>
</dict>
<dict>
<key>ContentConfiguration</key>
@ -591,9 +585,9 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 468}, {1156, 236}}</string>
<string>{{0, 290}, {962, 236}}</string>
<key>RubberWindowFrame</key>
<string>1123 382 1156 745 0 0 2560 1418 </string>
<string>934 613 962 567 0 0 2560 1418 </string>
</dict>
<key>Module</key>
<string>PBXBuildResultsModule</string>
@ -602,7 +596,7 @@
</dict>
</array>
<key>Proportion</key>
<string>704pt</string>
<string>526pt</string>
</dict>
</array>
<key>Name</key>
@ -615,8 +609,8 @@
<true/>
<key>TableOfContents</key>
<array>
<string>2A38C50D11DBC48700738646</string>
<string>2A8806FE12AA5FEC00FE95B9</string>
<string>2AA51BBA12AA7F3700AEA776</string>
<string>2A1A6E0A12AA84C000E4B343</string>
<string>1CD0528F0623707200166675</string>
<string>XCMainBuildResultsModuleGUID</string>
</array>
@ -625,9 +619,9 @@
<key>WindowContentMinSize</key>
<string>486 300</string>
<key>WindowString</key>
<string>1123 382 1156 745 0 0 2560 1418 </string>
<string>934 613 962 567 0 0 2560 1418 </string>
<key>WindowToolGUID</key>
<string>2A38C50D11DBC48700738646</string>
<string>2AA51BBA12AA7F3700AEA776</string>
<key>WindowToolIsVisible</key>
<false/>
</dict>
@ -660,8 +654,8 @@
<string>yes</string>
<key>sizes</key>
<array>
<string>{{0, 0}, {316, 194}}</string>
<string>{{316, 0}, {378, 194}}</string>
<string>{{0, 0}, {316, 201}}</string>
<string>{{316, 0}, {378, 201}}</string>
</array>
</dict>
<key>VerticalSplitView</key>
@ -676,8 +670,8 @@
<string>yes</string>
<key>sizes</key>
<array>
<string>{{0, 0}, {694, 194}}</string>
<string>{{0, 194}, {694, 187}}</string>
<string>{{0, 0}, {694, 201}}</string>
<string>{{0, 201}, {694, 180}}</string>
</array>
</dict>
</dict>
@ -710,12 +704,12 @@
<real>148</real>
</array>
<key>Frame</key>
<string>{{316, 0}, {378, 194}}</string>
<string>{{316, 0}, {378, 201}}</string>
<key>RubberWindowFrame</key>
<string>146 727 694 422 0 0 2560 1418 </string>
<string>151 757 694 422 0 0 2560 1418 </string>
</dict>
<key>RubberWindowFrame</key>
<string>146 727 694 422 0 0 2560 1418 </string>
<string>151 757 694 422 0 0 2560 1418 </string>
</dict>
<key>Module</key>
<string>PBXDebugSessionModule</string>
@ -738,18 +732,18 @@
<key>TableOfContents</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
<string>2A8806FF12AA5FEC00FE95B9</string>
<string>2A1A6E0B12AA84C000E4B343</string>
<string>1C162984064C10D400B95A72</string>
<string>2A88070012AA5FEC00FE95B9</string>
<string>2A88070112AA5FEC00FE95B9</string>
<string>2A88070212AA5FEC00FE95B9</string>
<string>2A88070312AA5FEC00FE95B9</string>
<string>2A88070412AA5FEC00FE95B9</string>
<string>2A1A6E0C12AA84C000E4B343</string>
<string>2A1A6E0D12AA84C000E4B343</string>
<string>2A1A6E0E12AA84C000E4B343</string>
<string>2A1A6E0F12AA84C000E4B343</string>
<string>2A1A6E1012AA84C000E4B343</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.debugV3</string>
<key>WindowString</key>
<string>146 727 694 422 0 0 2560 1418 </string>
<string>151 757 694 422 0 0 2560 1418 </string>
<key>WindowToolGUID</key>
<string>1CD10A99069EF8BA00B06720</string>
<key>WindowToolIsVisible</key>
@ -871,8 +865,6 @@
<key>Dock</key>
<array>
<dict>
<key>BecomeActive</key>
<true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
@ -883,18 +875,18 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {663, 265}}</string>
<string>{{0, 0}, {650, 209}}</string>
<key>RubberWindowFrame</key>
<string>144 857 663 306 0 0 2560 1418 </string>
<string>143 920 650 250 0 0 2560 1418 </string>
</dict>
<key>Module</key>
<string>PBXDebugCLIModule</string>
<key>Proportion</key>
<string>265pt</string>
<string>209pt</string>
</dict>
</array>
<key>Proportion</key>
<string>265pt</string>
<string>209pt</string>
</dict>
</array>
<key>Name</key>
@ -908,17 +900,17 @@
<key>TableOfContents</key>
<array>
<string>1C78EAAD065D492600B07095</string>
<string>2A88070512AA5FEC00FE95B9</string>
<string>2A1A6E1112AA84C000E4B343</string>
<string>1C78EAAC065D492600B07095</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.consoleV3</string>
<key>WindowString</key>
<string>144 857 663 306 0 0 2560 1418 </string>
<string>143 920 650 250 0 0 2560 1418 </string>
<key>WindowToolGUID</key>
<string>1C78EAAD065D492600B07095</string>
<key>WindowToolIsVisible</key>
<true/>
<false/>
</dict>
<dict>
<key>Identifier</key>

View File

@ -0,0 +1,178 @@
// !$*UTF8*$!
{
1D3623240D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {646, 618}}";
sepNavSelRange = "{157, 0}";
sepNavVisRange = "{0, 748}";
};
};
1D3623250D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {803, 1820}}";
sepNavSelRange = "{161, 0}";
sepNavVisRange = "{0, 1211}";
};
};
1D6058900D05DD3D006BFB54 /* OpenSSL-for-iOS */ = {
activeExec = 0;
executables = (
2AA51BAD12AA7F3400AEA776 /* OpenSSL-for-iOS */,
);
};
29B97313FDCFA39411CA2CEA /* Project object */ = {
activeBuildConfigurationName = Debug;
activeExecutable = 2AA51BAD12AA7F3400AEA776 /* OpenSSL-for-iOS */;
activeSDKPreference = iphonesimulator4.2;
activeTarget = 1D6058900D05DD3D006BFB54 /* OpenSSL-for-iOS */;
addToTargets = (
1D6058900D05DD3D006BFB54 /* OpenSSL-for-iOS */,
);
codeSenseManager = 2AA51BBD12AA7F3700AEA776 /* Code sense */;
executables = (
2AA51BAD12AA7F3400AEA776 /* OpenSSL-for-iOS */,
);
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
PBXFileTableDataSourceColumnWidthsKey = (
20,
468,
20,
48,
43,
43,
20,
);
PBXFileTableDataSourceColumnsKey = (
PBXFileDataSource_FiletypeID,
PBXFileDataSource_Filename_ColumnID,
PBXFileDataSource_Built_ColumnID,
PBXFileDataSource_ObjectSize_ColumnID,
PBXFileDataSource_Errors_ColumnID,
PBXFileDataSource_Warnings_ColumnID,
PBXFileDataSource_Target_ColumnID,
);
};
PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = {
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
PBXFileTableDataSourceColumnWidthsKey = (
20,
428,
60,
20,
48,
43,
43,
);
PBXFileTableDataSourceColumnsKey = (
PBXFileDataSource_FiletypeID,
PBXFileDataSource_Filename_ColumnID,
PBXTargetDataSource_PrimaryAttribute,
PBXFileDataSource_Built_ColumnID,
PBXFileDataSource_ObjectSize_ColumnID,
PBXFileDataSource_Errors_ColumnID,
PBXFileDataSource_Warnings_ColumnID,
);
};
PBXPerProjectTemplateStateSaveDate = 313164984;
PBXWorkspaceStateSaveDate = 313164984;
};
perUserProjectItems = {
2A1A6E0512AA84C000E4B343 /* PBXTextBookmark */ = 2A1A6E0512AA84C000E4B343 /* PBXTextBookmark */;
2A1A6E0612AA84C000E4B343 /* PBXTextBookmark */ = 2A1A6E0612AA84C000E4B343 /* PBXTextBookmark */;
2A1A6E1912AA851C00E4B343 /* PBXTextBookmark */ = 2A1A6E1912AA851C00E4B343 /* PBXTextBookmark */;
2A28EE7212AA849800C0D35A /* PlistBookmark */ = 2A28EE7212AA849800C0D35A /* PlistBookmark */;
};
sourceControlManager = 2AA51BBC12AA7F3700AEA776 /* Source Control */;
userBuildSettings = {
};
};
2A1A6E0512AA84C000E4B343 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1D3623250D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.m */;
name = "OpenSSL_for_iOSAppDelegate.m: 8";
rLen = 0;
rLoc = 161;
rType = 0;
vrLen = 1211;
vrLoc = 0;
};
2A1A6E0612AA84C000E4B343 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1D3623240D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.h */;
name = "OpenSSL_for_iOSAppDelegate.h: 6";
rLen = 0;
rLoc = 157;
rType = 0;
vrLen = 748;
vrLoc = 0;
};
2A1A6E1912AA851C00E4B343 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1D3623240D0F684500981E51 /* OpenSSL_for_iOSAppDelegate.h */;
name = "OpenSSL_for_iOSAppDelegate.h: 6";
rLen = 0;
rLoc = 157;
rType = 0;
vrLen = 748;
vrLoc = 0;
};
2A28EE7212AA849800C0D35A /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 8D1107310486CEB800E47090 /* OpenSSL_for_iOS-Info.plist */;
fallbackIsa = PBXBookmark;
isK = 0;
kPath = (
);
name = "/Users/x2on/Projects/iPhone/OpenSSL-for-iOS/OpenSSL_for_iOS-Info.plist";
rLen = 0;
rLoc = 9223372036854775808;
};
2AA51BAD12AA7F3400AEA776 /* OpenSSL-for-iOS */ = {
isa = PBXExecutable;
activeArgIndices = (
);
argumentStrings = (
);
autoAttachOnCrash = 1;
breakpointsEnabled = 0;
configStateDict = {
};
customDataFormattersEnabled = 1;
dataTipCustomDataFormattersEnabled = 1;
dataTipShowTypeColumn = 1;
dataTipSortType = 0;
debuggerPlugin = GDBDebugging;
disassemblyDisplayState = 0;
dylibVariantSuffix = "";
enableDebugStr = 1;
environmentEntries = (
);
executableSystemSymbolLevel = 0;
executableUserSymbolLevel = 0;
libgmallocEnabled = 0;
name = "OpenSSL-for-iOS";
savedGlobals = {
};
showTypeColumn = 0;
sourceDirectories = (
);
};
2AA51BBC12AA7F3700AEA776 /* Source Control */ = {
isa = PBXSourceControlManager;
fallbackIsa = XCSourceControlManager;
isSCMEnabled = 0;
scmConfiguration = {
repositoryNamesForRoots = {
"" = "";
};
};
};
2AA51BBD12AA7F3700AEA776 /* Code sense */ = {
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
}

View File

@ -1,212 +0,0 @@
// !$*UTF8*$!
{
1D3623240D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1145, 406}}";
sepNavSelRange = "{569, 0}";
sepNavVisRange = "{0, 622}";
};
};
1D3623250D0F684500981E51 /* OpenSSL_for_iPhoneAppDelegate.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1965, 1365}}";
sepNavSelRange = "{102, 0}";
sepNavVisRange = "{0, 840}";
};
};
1D6058900D05DD3D006BFB54 /* OpenSSL */ = {
activeExec = 0;
executables = (
2A38C4FE11DBC47D00738646 /* OpenSSL */,
);
};
29B97313FDCFA39411CA2CEA /* Project object */ = {
activeBuildConfigurationName = Debug;
activeExecutable = 2A38C4FE11DBC47D00738646 /* OpenSSL */;
activeSDKPreference = iphonesimulator4.2;
activeTarget = 1D6058900D05DD3D006BFB54 /* OpenSSL */;
addToTargets = (
1D6058900D05DD3D006BFB54 /* OpenSSL */,
);
codeSenseManager = 2A38C51011DBC48700738646 /* Code sense */;
executables = (
2A38C4FE11DBC47D00738646 /* OpenSSL */,
);
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
PBXFileTableDataSourceColumnWidthsKey = (
20,
967,
20,
48,
43,
43,
20,
);
PBXFileTableDataSourceColumnsKey = (
PBXFileDataSource_FiletypeID,
PBXFileDataSource_Filename_ColumnID,
PBXFileDataSource_Built_ColumnID,
PBXFileDataSource_ObjectSize_ColumnID,
PBXFileDataSource_Errors_ColumnID,
PBXFileDataSource_Warnings_ColumnID,
PBXFileDataSource_Target_ColumnID,
);
};
PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = {
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
PBXFileTableDataSourceColumnWidthsKey = (
20,
927,
60,
20,
48,
43,
43,
);
PBXFileTableDataSourceColumnsKey = (
PBXFileDataSource_FiletypeID,
PBXFileDataSource_Filename_ColumnID,
PBXTargetDataSource_PrimaryAttribute,
PBXFileDataSource_Built_ColumnID,
PBXFileDataSource_ObjectSize_ColumnID,
PBXFileDataSource_Errors_ColumnID,
PBXFileDataSource_Warnings_ColumnID,
);
};
PBXPerProjectTemplateStateSaveDate = 313155498;
PBXWorkspaceStateSaveDate = 313155498;
};
perUserProjectItems = {
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 = {
};
};
29B97316FDCFA39411CA2CEA /* main.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1145, 383}}";
sepNavSelRange = "{138, 0}";
sepNavVisRange = "{0, 372}";
};
};
2A38C4FE11DBC47D00738646 /* OpenSSL */ = {
isa = PBXExecutable;
activeArgIndices = (
);
argumentStrings = (
);
autoAttachOnCrash = 1;
breakpointsEnabled = 0;
configStateDict = {
};
customDataFormattersEnabled = 1;
dataTipCustomDataFormattersEnabled = 1;
dataTipShowTypeColumn = 1;
dataTipSortType = 0;
debuggerPlugin = GDBDebugging;
disassemblyDisplayState = 0;
dylibVariantSuffix = "";
enableDebugStr = 1;
environmentEntries = (
);
executableSystemSymbolLevel = 0;
executableUserSymbolLevel = 0;
libgmallocEnabled = 0;
name = OpenSSL;
showTypeColumn = 0;
sourceDirectories = (
);
};
2A38C50F11DBC48700738646 /* Source Control */ = {
isa = PBXSourceControlManager;
fallbackIsa = XCSourceControlManager;
isSCMEnabled = 0;
scmConfiguration = {
repositoryNamesForRoots = {
"" = "";
};
};
};
2A38C51011DBC48700738646 /* Code sense */ = {
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
2A88078212AA665500FE95B9 /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 8D1107310486CEB800E47090 /* OpenSSL_for_iPhone-Info.plist */;
fallbackIsa = PBXBookmark;
isK = 0;
kPath = (
);
name = "/Users/x2on/Projects/iPhone/OpenSSL-for-iPhone/OpenSSL_for_iPhone-Info.plist";
rLen = 0;
rLoc = 9223372036854775807;
};
2A88078E12AA66CB00FE95B9 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 29B97316FDCFA39411CA2CEA /* main.m */;
name = "main.m: 6";
rLen = 0;
rLoc = 138;
rType = 0;
vrLen = 372;
vrLoc = 0;
};
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: 5";
rLen = 0;
rLoc = 102;
rType = 0;
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}, {1145, 383}}";
sepNavSelRange = "{0, 0}";
sepNavVisRange = "{0, 205}";
};
};
}

View File

@ -0,0 +1,8 @@
//
// Prefix header for all source files of the 'OpenSSL-for-iOS' target in the 'OpenSSL-for-iOS' project
//
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#endif

View File

@ -1,8 +0,0 @@
//
// Prefix header for all source files of the 'OpenSSL-for-iPhone' target in the 'OpenSSL-for-iPhone' project
//
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#endif