- Added des_bruteforce.metal file containing the implementation of the DES brute force algorithm using Metal for improved performance. - Updated results.json to reflect the new elapsed time for brute force operations. - Adjusted project.pbxproj to correctly reference the new Metal file and streamline project structure.
420 lines
17 KiB
Plaintext
420 lines
17 KiB
Plaintext
// !$*UTF8*$!
|
|
{
|
|
archiveVersion = 1;
|
|
classes = {
|
|
};
|
|
objectVersion = 56;
|
|
objects = {
|
|
|
|
/* Begin PBXBuildFile section */
|
|
A40000000000000000000001 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000001 /* AppDelegate.swift */; };
|
|
A40000000000000000000002 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000002 /* SceneDelegate.swift */; };
|
|
A40000000000000000000003 /* SlaveViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000003 /* SlaveViewController.swift */; };
|
|
A40000000000000000000004 /* Protocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000004 /* Protocol.swift */; };
|
|
A40000000000000000000005 /* SlaveClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000005 /* SlaveClient.swift */; };
|
|
A40000000000000000000006 /* BruteEngine.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000006 /* BruteEngine.swift */; };
|
|
A40000000000000000000007 /* MetalEngine.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000007 /* MetalEngine.swift */; };
|
|
A40000000000000000000008 /* CpuEngine.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000008 /* CpuEngine.swift */; };
|
|
A40000000000000000000009 /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000009 /* des.c */; };
|
|
A40000000000000000000010 /* des_bruteforce.metal in Sources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000011 /* des_bruteforce.metal */; };
|
|
A40000000000000000000011 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A20000000000000000000013 /* Assets.xcassets */; };
|
|
A40000000000000000000012 /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A20000000000000000000014 /* Metal.framework */; };
|
|
A40000000000000000000013 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A20000000000000000000015 /* 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 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
A20000000000000000000002 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
|
|
A20000000000000000000003 /* SlaveViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SlaveViewController.swift; sourceTree = "<group>"; };
|
|
A20000000000000000000004 /* Protocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Protocol.swift; sourceTree = "<group>"; };
|
|
A20000000000000000000005 /* SlaveClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SlaveClient.swift; sourceTree = "<group>"; };
|
|
A20000000000000000000006 /* BruteEngine.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BruteEngine.swift; sourceTree = "<group>"; };
|
|
A20000000000000000000007 /* MetalEngine.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MetalEngine.swift; sourceTree = "<group>"; };
|
|
A20000000000000000000008 /* CpuEngine.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CpuEngine.swift; sourceTree = "<group>"; };
|
|
A20000000000000000000009 /* des.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = des.c; path = ../native/common/des.c; sourceTree = SOURCE_ROOT; };
|
|
A20000000000000000000010 /* des.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = des.h; path = ../native/common/des.h; sourceTree = SOURCE_ROOT; };
|
|
A20000000000000000000011 /* des_bruteforce.metal */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.metal; path = des_bruteforce.metal; sourceTree = "<group>"; };
|
|
A20000000000000000000012 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
A20000000000000000000013 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
A20000000000000000000014 /* Metal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Metal.framework; path = System/Library/Frameworks/Metal.framework; sourceTree = SDKROOT; };
|
|
A20000000000000000000015 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
|
A20000000000000000000016 /* DESCracker-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DESCracker-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
/* End PBXFileReference section */
|
|
|
|
/* Begin PBXFrameworksBuildPhase section */
|
|
A10000000000000000000005 /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
A40000000000000000000012 /* Metal.framework in Frameworks */,
|
|
A40000000000000000000013 /* QuartzCore.framework in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXFrameworksBuildPhase section */
|
|
|
|
/* Begin PBXGroup section */
|
|
A30000000000000000000000 = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A30000000000000000000001 /* DESCracker */,
|
|
A30000000000000000000007 /* Frameworks */,
|
|
A30000000000000000000006 /* Products */,
|
|
);
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000001 /* DESCracker */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000001 /* AppDelegate.swift */,
|
|
A20000000000000000000002 /* SceneDelegate.swift */,
|
|
A20000000000000000000016 /* DESCracker-Bridging-Header.h */,
|
|
A20000000000000000000012 /* Info.plist */,
|
|
A20000000000000000000013 /* Assets.xcassets */,
|
|
A30000000000000000000002 /* UI */,
|
|
A30000000000000000000003 /* Network */,
|
|
A30000000000000000000004 /* Compute */,
|
|
A30000000000000000000005 /* Native */,
|
|
);
|
|
path = DESCracker;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000002 /* UI */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000003 /* SlaveViewController.swift */,
|
|
);
|
|
path = UI;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000003 /* Network */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000004 /* Protocol.swift */,
|
|
A20000000000000000000005 /* SlaveClient.swift */,
|
|
);
|
|
path = Network;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000004 /* Compute */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000006 /* BruteEngine.swift */,
|
|
A20000000000000000000007 /* MetalEngine.swift */,
|
|
A20000000000000000000008 /* CpuEngine.swift */,
|
|
A20000000000000000000011 /* des_bruteforce.metal */,
|
|
);
|
|
path = Compute;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000005 /* Native */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000009 /* des.c */,
|
|
A20000000000000000000010 /* des.h */,
|
|
);
|
|
name = Native;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000006 /* Products */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A10000000000000000000003 /* DES Cracker.app */,
|
|
);
|
|
name = Products;
|
|
sourceTree = "<group>";
|
|
};
|
|
A30000000000000000000007 /* Frameworks */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
A20000000000000000000014 /* Metal.framework */,
|
|
A20000000000000000000015 /* QuartzCore.framework */,
|
|
);
|
|
name = Frameworks;
|
|
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;
|
|
LastSwiftMigration = 1600;
|
|
};
|
|
};
|
|
};
|
|
buildConfigurationList = A50000000000000000000001 /* Build configuration list for PBXProject "DESCracker" */;
|
|
compatibilityVersion = "Xcode 14.0";
|
|
developmentRegion = en;
|
|
hasScannedForEncodings = 0;
|
|
knownRegions = (
|
|
en,
|
|
Base,
|
|
);
|
|
mainGroup = A30000000000000000000000;
|
|
productRefGroup = A30000000000000000000006 /* Products */;
|
|
projectDirPath = "";
|
|
projectRoot = "";
|
|
targets = (
|
|
A10000000000000000000002 /* DESCracker */,
|
|
);
|
|
};
|
|
/* End PBXProject section */
|
|
|
|
/* Begin PBXResourcesBuildPhase section */
|
|
A10000000000000000000006 /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
A40000000000000000000011 /* Assets.xcassets in Resources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXResourcesBuildPhase section */
|
|
|
|
/* Begin PBXSourcesBuildPhase section */
|
|
A10000000000000000000004 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
A40000000000000000000001 /* AppDelegate.swift in Sources */,
|
|
A40000000000000000000002 /* SceneDelegate.swift in Sources */,
|
|
A40000000000000000000003 /* SlaveViewController.swift in Sources */,
|
|
A40000000000000000000004 /* Protocol.swift in Sources */,
|
|
A40000000000000000000005 /* SlaveClient.swift in Sources */,
|
|
A40000000000000000000006 /* BruteEngine.swift in Sources */,
|
|
A40000000000000000000007 /* MetalEngine.swift in Sources */,
|
|
A40000000000000000000008 /* CpuEngine.swift in Sources */,
|
|
A40000000000000000000009 /* des.c in Sources */,
|
|
A40000000000000000000010 /* 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 = NO;
|
|
MTL_FAST_MATH = YES;
|
|
ONLY_ACTIVE_ARCH = YES;
|
|
SDKROOT = iphoneos;
|
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
SWIFT_VERSION = 5.0;
|
|
};
|
|
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;
|
|
SWIFT_COMPILATION_MODE = wholemodule;
|
|
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
SWIFT_VERSION = 5.0;
|
|
VALIDATE_PRODUCT = YES;
|
|
};
|
|
name = Release;
|
|
};
|
|
A50000000000000000000005 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
CURRENT_PROJECT_VERSION = 1;
|
|
DEVELOPMENT_TEAM = B832M34SD9;
|
|
ENABLE_PREVIEWS = NO;
|
|
GENERATE_INFOPLIST_FILE = NO;
|
|
HEADER_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"$(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;
|
|
SWIFT_OBJC_BRIDGING_HEADER = "DESCracker/DESCracker-Bridging-Header.h";
|
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
};
|
|
name = Debug;
|
|
};
|
|
A50000000000000000000006 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
CURRENT_PROJECT_VERSION = 1;
|
|
DEVELOPMENT_TEAM = B832M34SD9;
|
|
ENABLE_PREVIEWS = NO;
|
|
GENERATE_INFOPLIST_FILE = NO;
|
|
HEADER_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"$(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;
|
|
SWIFT_OBJC_BRIDGING_HEADER = "DESCracker/DESCracker-Bridging-Header.h";
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
};
|
|
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 */;
|
|
}
|