- Added AppDelegate and main entry point for the application. - Created Info.plist for application configuration. - Introduced UI components with PSCSlaveViewController for user interaction. - Implemented networking and computation engines (CPU and Metal) for DES cracking. - Established asset catalog for application resources including icons and colors. - Updated results.json to reflect new elapsed time for brute force operations.
432 lines
18 KiB
Plaintext
432 lines
18 KiB
Plaintext
// !$*UTF8*$!
|
|
{
|
|
archiveVersion = 1;
|
|
classes = {
|
|
};
|
|
objectVersion = 56;
|
|
objects = {
|
|
|
|
/* Begin PBXBuildFile section */
|
|
A40000000000000000000001 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000001 /* main.m */; };
|
|
A40000000000000000000002 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000003 /* AppDelegate.m */; };
|
|
A40000000000000000000003 /* PSCSlaveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000007 /* PSCSlaveViewController.m */; };
|
|
A40000000000000000000004 /* PSCProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000009 /* PSCProtocol.m */; };
|
|
A40000000000000000000005 /* PSCSlaveClient.m in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000011 /* PSCSlaveClient.m */; };
|
|
A40000000000000000000006 /* PSCMetalEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000014 /* PSCMetalEngine.m */; };
|
|
A40000000000000000000007 /* PSCCpuEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000016 /* PSCCpuEngine.m */; };
|
|
A40000000000000000000008 /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000017 /* des.c */; };
|
|
A40000000000000000000009 /* des_bruteforce.metal in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000019 /* des_bruteforce.metal */; };
|
|
A40000000000000000000010 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000005 /* Assets.xcassets */; };
|
|
A40000000000000000000011 /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A20000000000000000000020 /* Metal.framework */; };
|
|
A40000000000000000000012 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A20000000000000000000021 /* QuartzCore.framework */; };
|
|
/* End PBXBuildFile section */
|
|
|
|
/* Begin PBXFileReference section */
|
|
A10000000000000000000003 /* DES Cracker.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "DES Cracker.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
A20000000000000000000001 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
|
A20000000000000000000002 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
|
A20000000000000000000003 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
|
A20000000000000000000004 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
A20000000000000000000005 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
A20000000000000000000006 /* PSCSlaveViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PSCSlaveViewController.h; sourceTree = "<group>"; };
|
|
A20000000000000000000007 /* PSCSlaveViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PSCSlaveViewController.m; sourceTree = "<group>"; };
|
|
A20000000000000000000008 /* PSCProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PSCProtocol.h; sourceTree = "<group>"; };
|
|
A20000000000000000000009 /* PSCProtocol.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PSCProtocol.m; sourceTree = "<group>"; };
|
|
A20000000000000000000010 /* PSCSlaveClient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PSCSlaveClient.h; sourceTree = "<group>"; };
|
|
A20000000000000000000011 /* PSCSlaveClient.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PSCSlaveClient.m; sourceTree = "<group>"; };
|
|
A20000000000000000000012 /* PSCBruteEngine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PSCBruteEngine.h; sourceTree = "<group>"; };
|
|
A20000000000000000000013 /* PSCMetalEngine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PSCMetalEngine.h; sourceTree = "<group>"; };
|
|
A20000000000000000000014 /* PSCMetalEngine.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PSCMetalEngine.m; sourceTree = "<group>"; };
|
|
A20000000000000000000015 /* PSCCpuEngine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PSCCpuEngine.h; sourceTree = "<group>"; };
|
|
A20000000000000000000016 /* PSCCpuEngine.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PSCCpuEngine.m; sourceTree = "<group>"; };
|
|
A20000000000000000000017 /* des.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = des.c; path = ../native/common/des.c; sourceTree = SOURCE_ROOT; };
|
|
A20000000000000000000018 /* des.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = des.h; path = ../native/common/des.h; sourceTree = SOURCE_ROOT; };
|
|
A20000000000000000000019 /* des_bruteforce.metal */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.metal; name = des_bruteforce.metal; path = ../native/metal/des_bruteforce.metal; sourceTree = SOURCE_ROOT; };
|
|
A20000000000000000000020 /* Metal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Metal.framework; path = System/Library/Frameworks/Metal.framework; sourceTree = SDKROOT; };
|
|
A20000000000000000000021 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
|
/* End PBXFileReference section */
|
|
|
|
/* Begin PBXFrameworksBuildPhase section */
|
|
A10000000000000000000005 /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
A40000000000000000000011 /* Metal.framework in Frameworks */,
|
|
A40000000000000000000012 /* QuartzCore.framework in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXFrameworksBuildPhase section */
|
|
|
|
/* Begin PBXGroup section */
|
|
A30000000000000000000001 /* DESCracker */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000001 /* main.m */,
|
|
A20000000000000000000002 /* AppDelegate.h */,
|
|
A20000000000000000000003 /* AppDelegate.m */,
|
|
A20000000000000000000004 /* Info.plist */,
|
|
A20000000000000000000005 /* Assets.xcassets */,
|
|
A30000000000000000000002 /* UI */,
|
|
A30000000000000000000003 /* Network */,
|
|
A30000000000000000000004 /* Compute */,
|
|
A30000000000000000000005 /* Native */,
|
|
);
|
|
path = DESCracker;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000002 /* UI */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000006 /* PSCSlaveViewController.h */,
|
|
A20000000000000000000007 /* PSCSlaveViewController.m */,
|
|
);
|
|
path = UI;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000003 /* Network */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000008 /* PSCProtocol.h */,
|
|
A20000000000000000000009 /* PSCProtocol.m */,
|
|
A20000000000000000000010 /* PSCSlaveClient.h */,
|
|
A20000000000000000000011 /* PSCSlaveClient.m */,
|
|
);
|
|
path = Network;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000004 /* Compute */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000012 /* PSCBruteEngine.h */,
|
|
A20000000000000000000013 /* PSCMetalEngine.h */,
|
|
A20000000000000000000014 /* PSCMetalEngine.m */,
|
|
A20000000000000000000015 /* PSCCpuEngine.h */,
|
|
A20000000000000000000016 /* PSCCpuEngine.m */,
|
|
);
|
|
path = Compute;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000005 /* Native */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000017 /* des.c */,
|
|
A20000000000000000000018 /* des.h */,
|
|
A20000000000000000000019 /* des_bruteforce.metal */,
|
|
);
|
|
name = Native;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000006 /* Products */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A10000000000000000000003 /* DES Cracker.app */,
|
|
);
|
|
name = Products;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000007 /* Frameworks */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000020 /* Metal.framework */,
|
|
A20000000000000000000021 /* QuartzCore.framework */,
|
|
);
|
|
name = Frameworks;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000000 /* Root */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A30000000000000000000001 /* DESCracker */,
|
|
A30000000000000000000007 /* Frameworks */,
|
|
A30000000000000000000006 /* Products */,
|
|
);
|
|
sourceTree = "<group>";
|
|
};
|
|
/* End PBXGroup section */
|
|
|
|
/* Begin PBXNativeTarget section */
|
|
A10000000000000000000002 /* DESCracker */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = A50000000000000000000004 /* Build configuration list for PBXNativeTarget "DESCracker" */;
|
|
buildPhases = (
|
|
A10000000000000000000004 /* Sources */,
|
|
A10000000000000000000005 /* Frameworks */,
|
|
A10000000000000000000006 /* Resources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
);
|
|
name = DESCracker;
|
|
productName = "DES Cracker";
|
|
productReference = A10000000000000000000003 /* DES Cracker.app */;
|
|
productType = "com.apple.product-type.application";
|
|
};
|
|
/* End PBXNativeTarget section */
|
|
|
|
/* Begin PBXProject section */
|
|
A10000000000000000000001 /* Project object */ = {
|
|
isa = PBXProject;
|
|
attributes = {
|
|
BuildIndependentTargetsInParallel = 1;
|
|
LastUpgradeCheck = 1600;
|
|
TargetAttributes = {
|
|
A10000000000000000000002 = {
|
|
CreatedOnToolsVersion = 16.0;
|
|
};
|
|
};
|
|
};
|
|
buildConfigurationList = A50000000000000000000001 /* Build configuration list for PBXProject "DESCracker" */;
|
|
compatibilityVersion = "Xcode 14.0";
|
|
developmentRegion = en;
|
|
hasScannedForEncodings = 0;
|
|
knownRegions = (
|
|
en,
|
|
Base,
|
|
);
|
|
mainGroup = A30000000000000000000000 /* Root */;
|
|
productRefGroup = A30000000000000000000006 /* Products */;
|
|
projectDirPath = "";
|
|
projectRoot = "";
|
|
targets = (
|
|
A10000000000000000000002 /* DESCracker */,
|
|
);
|
|
};
|
|
/* End PBXProject section */
|
|
|
|
/* Begin PBXResourcesBuildPhase section */
|
|
A10000000000000000000006 /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
A40000000000000000000010 /* Assets.xcassets in Resources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXResourcesBuildPhase section */
|
|
|
|
/* Begin PBXSourcesBuildPhase section */
|
|
A10000000000000000000004 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
A40000000000000000000001 /* main.m in Sources */,
|
|
A40000000000000000000002 /* AppDelegate.m in Sources */,
|
|
A40000000000000000000003 /* PSCSlaveViewController.m in Sources */,
|
|
A40000000000000000000004 /* PSCProtocol.m in Sources */,
|
|
A40000000000000000000005 /* PSCSlaveClient.m in Sources */,
|
|
A40000000000000000000006 /* PSCMetalEngine.m in Sources */,
|
|
A40000000000000000000007 /* PSCCpuEngine.m in Sources */,
|
|
A40000000000000000000008 /* des.c in Sources */,
|
|
A40000000000000000000009 /* des_bruteforce.metal in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXSourcesBuildPhase section */
|
|
|
|
/* Begin XCBuildConfiguration section */
|
|
A50000000000000000000002 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
CLANG_ANALYZER_NONNULL = YES;
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
CLANG_WARN_COMMA = YES;
|
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
CLANG_WARN_EMPTY_BODY = YES;
|
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
CLANG_WARN_INT_CONVERSION = YES;
|
|
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
COPY_PHASE_STRIP = NO;
|
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
ENABLE_TESTABILITY = YES;
|
|
GCC_C_LANGUAGE_STANDARD = gnu17;
|
|
GCC_DYNAMIC_NO_PIC = NO;
|
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
GCC_OPTIMIZATION_LEVEL = 0;
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"DEBUG=1",
|
|
"$(inherited)",
|
|
);
|
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
MTL_FAST_MATH = YES;
|
|
ONLY_ACTIVE_ARCH = YES;
|
|
SDKROOT = iphoneos;
|
|
};
|
|
name = Debug;
|
|
};
|
|
A50000000000000000000003 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
CLANG_ANALYZER_NONNULL = YES;
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
CLANG_WARN_COMMA = YES;
|
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
CLANG_WARN_EMPTY_BODY = YES;
|
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
CLANG_WARN_INT_CONVERSION = YES;
|
|
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
COPY_PHASE_STRIP = NO;
|
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
ENABLE_NS_ASSERTIONS = NO;
|
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
GCC_C_LANGUAGE_STANDARD = gnu17;
|
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
MTL_FAST_MATH = YES;
|
|
SDKROOT = iphoneos;
|
|
VALIDATE_PRODUCT = YES;
|
|
};
|
|
name = Release;
|
|
};
|
|
A50000000000000000000005 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
CURRENT_PROJECT_VERSION = 1;
|
|
ENABLE_PREVIEWS = NO;
|
|
GENERATE_INFOPLIST_FILE = NO;
|
|
HEADER_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"$(SRCROOT)/DESCracker",
|
|
"$(SRCROOT)/DESCracker/UI",
|
|
"$(SRCROOT)/DESCracker/Network",
|
|
"$(SRCROOT)/DESCracker/Compute",
|
|
"$(SRCROOT)/../native/common",
|
|
);
|
|
INFOPLIST_FILE = DESCracker/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = "DES Cracker";
|
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
);
|
|
MARKETING_VERSION = 1.0;
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.pectusscan.DESCracker;
|
|
PRODUCT_NAME = "DES Cracker";
|
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
SUPPORTS_MACCATALYST = NO;
|
|
SWIFT_EMIT_LOC_STRINGS = NO;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
USER_HEADER_SEARCH_PATHS = (
|
|
"$(SRCROOT)/DESCracker/UI",
|
|
"$(SRCROOT)/DESCracker/Network",
|
|
"$(SRCROOT)/DESCracker/Compute",
|
|
"$(SRCROOT)/../native/common",
|
|
);
|
|
};
|
|
name = Debug;
|
|
};
|
|
A50000000000000000000006 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
CURRENT_PROJECT_VERSION = 1;
|
|
ENABLE_PREVIEWS = NO;
|
|
GENERATE_INFOPLIST_FILE = NO;
|
|
HEADER_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"$(SRCROOT)/DESCracker",
|
|
"$(SRCROOT)/DESCracker/UI",
|
|
"$(SRCROOT)/DESCracker/Network",
|
|
"$(SRCROOT)/DESCracker/Compute",
|
|
"$(SRCROOT)/../native/common",
|
|
);
|
|
INFOPLIST_FILE = DESCracker/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = "DES Cracker";
|
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
);
|
|
MARKETING_VERSION = 1.0;
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.pectusscan.DESCracker;
|
|
PRODUCT_NAME = "DES Cracker";
|
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
SUPPORTS_MACCATALYST = NO;
|
|
SWIFT_EMIT_LOC_STRINGS = NO;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
USER_HEADER_SEARCH_PATHS = (
|
|
"$(SRCROOT)/DESCracker/UI",
|
|
"$(SRCROOT)/DESCracker/Network",
|
|
"$(SRCROOT)/DESCracker/Compute",
|
|
"$(SRCROOT)/../native/common",
|
|
);
|
|
};
|
|
name = Release;
|
|
};
|
|
/* End XCBuildConfiguration section */
|
|
|
|
/* Begin XCConfigurationList section */
|
|
A50000000000000000000001 /* Build configuration list for PBXProject "DESCracker" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
A50000000000000000000002 /* Debug */,
|
|
A50000000000000000000003 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
A50000000000000000000004 /* Build configuration list for PBXNativeTarget "DESCracker" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
A50000000000000000000005 /* Debug */,
|
|
A50000000000000000000006 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
/* End XCConfigurationList section */
|
|
};
|
|
rootObject = A10000000000000000000001 /* Project object */;
|
|
}
|