- 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.
6 lines
139 B
Objective-C
6 lines
139 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
@property (nonatomic, strong) UIWindow *window;
|
|
@end
|