将.txt安全地保存在设备上

时间:2015-09-16 08:24:41

标签: ios security writetofile

如何将.txt文件安全地保存到ios设备中?我不希望用户使用iExplorer等工具对其进行操作。 到目前为止,我的代码只是ApplicationSupportDirectry中的基本数据编写,它看起来像这样:

///写入文件:

do{
try stringFile.writeToFile(filePath, atomically: false, encoding: NSUTF8StringEncoding)

}catch{}

1 个答案:

答案 0 :(得分:2)

在创建/更新文件时对其进行加密,在读取文件时对其进行解密。 Store the encryption key in the keychain你会比明文更安全。 Documentation about symmetric encryption which is available to iOS and OSX