mirror of
https://github.com/NohamR/TrollDecrypt-tvOS.git
synced 2026-07-11 22:41:37 +00:00
17 lines
615 B
Objective-C
17 lines
615 B
Objective-C
@interface DumpDecrypted : NSObject {
|
|
char decryptedAppPathStr[PATH_MAX];
|
|
char *filename;
|
|
char *appDirName;
|
|
char *appDirPath;
|
|
}
|
|
|
|
@property (assign) NSString *appPath;
|
|
@property (assign) NSString *docPath;
|
|
@property (assign) NSString *appName;
|
|
@property (assign) NSString *appVersion;
|
|
|
|
- (id)initWithPathToBinary:(NSString *)pathToBinary appName:(NSString *)appName appVersion:(NSString *)appVersion;
|
|
- (void)createIPAFile:(pid_t)pid;
|
|
- (BOOL)dumpDecryptedImage:(vm_address_t)imageAddress fileName:(const char *)encryptedImageFilenameStr image:(int)imageNum task:(vm_map_t)targetTask;
|
|
- (NSString *)IPAPath;
|
|
@end |