我已經創建了示例hello world項目,然後將Data.plist文件添加到資源文件夾中。 現在人們可以通過解壓縮.ipa文件輕鬆獲取包文件。有什麼辦法保護保存在iPhone應用程序的應用程序包中的Data.plist文件?如何保護iOS套件文件,如plist,image,sqlite,媒體文件
Encryption is a decent method of scrambling the data but i don't know how to implement encription concept.
你有任何示例代碼?
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Data" ofType:@"plist"];
NSArray *arrData = [[NSArray alloc]initWithContentsOfFile:filePath];
NSData *datas = [NSKeyedArchiver archivedDataWithRootObject:arrData];
[datas writeToFile:filePath atomically:YES];
提取IPA文件之後
這個作品..只是爲有機磷農藥中受益:要知道這需要內存和CPU時間) –
你可以發佈樣本implementaion代碼? – Ravindhiran
在部署前加密MAC上的文件。我創建一個Xcode示例。 –