答案 0 :(得分:1)
我通过encrypt资源解决了我的问题。我不确定,这是最好的解决方法,但它适用于我的情况。 Here是一个简单的OS X应用程序,可以在将文件添加到框架之前加密文件。
解密代码:
NSError* error;
NSData* encryptedData = [NSData dataWithContentsOfFile:filePath];
NSData* decryptedData = [RNDecryptor decryptData:encryptedData
withPassword:@"SAMPLE-KEY"
error:&error];
UIImage* image = [UIImage imageWithData:decryptedData];
`
加密代码:
NSData* data = [NSData dataWithContentsOfFile:filePath];
NSError* error;
NSData* encryptedData = [RNEncryptor encryptData:data
withSettings:kRNCryptorAES256Settings
password:@"SAMPLE-KEY"
error:&error];
[encryptedData writeToFile:encryptedFilePath atomically:YES];