Android 中加密文件的存储位置
在我的应用程序中,媒体播放器应该解密受密码保护的音频文件以供临时使用。播放音频文件后,必须永久删除解密的文件。顺便说一句,我将加密数据存储在资产文件夹下。 问题是,解密后的文件应该放在哪里呢?它必须是用户无法访问的地方。
In my application, the media player should decrypt the audio file which is protected with a passphrase for temporarly usage. After playing the audio file, the decrypted file must be deleted permenantly. Btw, I store the encrypted data under assets folder.
The question is, where to should I put the decrypted file? It must be the place, which user can not access to.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于已 root 的手机,这是不可能的,对于未 root 的手机,由于文件权限的原因, /data/data/namepsace/* 目录下的任何位置都有点难以访问。
For a rooted phone this is impossible, for non rooted phones any place under the /data/data/namepsace/* directories are somewhat difficult to get at due to file permissions.