将 .txt 安全地保存在设备上
saving .txt securely on a device
如何将 .txt 文件安全地保存到 ios 设备中?我不希望用户使用 iExplorer 或类似工具来操纵它。
到目前为止,我的代码只是在 ApplicationSupportDirectry 中写入基本数据,它看起来像这样:
///写入文件:
do{
try stringFile.writeToFile(filePath, atomically: false, encoding: NSUTF8StringEncoding)
}catch{}
创建/更新文件时加密,读取文件时解密。 Store the encryption key in the keychain 而且你会比纯文本更安全。
Documentation about symmetric encryption which is available to iOS and OSX.
如何将 .txt 文件安全地保存到 ios 设备中?我不希望用户使用 iExplorer 或类似工具来操纵它。 到目前为止,我的代码只是在 ApplicationSupportDirectry 中写入基本数据,它看起来像这样:
///写入文件:
do{
try stringFile.writeToFile(filePath, atomically: false, encoding: NSUTF8StringEncoding)
}catch{}
创建/更新文件时加密,读取文件时解密。 Store the encryption key in the keychain 而且你会比纯文本更安全。 Documentation about symmetric encryption which is available to iOS and OSX.