[Android]什么是OOB(Opaque binary blob)文件?

本文深入探讨了Android应用中OBB文件的使用方式及其在存储大型文件时的安全特性。通过使用mkobb.sh和obbtool,开发者可以创建只在应用内解密并使用的OBB文件。即使其他应用可以访问SD卡上的OBB文件,只有原始应用能够访问其中的数据,确保了数据的安全性。此方法仅适用于API级别9及以上的应用,并需要WRITE_EXTERNAL_STORAGE权限。
摘要由CSDN通过智能技术生成

http://stackoverflow.com/questions/4524981/what-is-obbopaque-binary-blob-in-android-develop-site

 

OBB lets you package up large files and store them on the public SDcard in a way that only your app can decrypt and use them. After building the AOSP the mkobb.sh and obbtool allow you to create (on Linux) OBB files.

After setting up things like PATH, permissions and kernel modules, creating is basicly:

$ mkobb.sh -d /data/myfiles -k my_secret_key -o /data/data.obb
$ obbtool a -n com.example.myapp -v 1 -s seed_from_mkobb /data/data.obb

After which you can store the data.obb on SDcard and only access the files from your app with use of the my_secret_key

storage = (StorageManager) getSystemService( STORAGE_SERVICE );
storage.mountObb( obbFilepath, "my_secret_key", myListener );
obbContentPath = storage.getMountedObbPath( obbFilepath );

Although other apps can destroy the data.obb on SD card only the app can access them and the content is as secure as if stored in app private.

Only on API level 9 and up and with the WRITE_EXTERNAL_STORAGE to access OBB files from SD.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值