Assetbundle解密问题记录: Failed to decompress data for the Assetbundle

因为心情差和没什么好写的好久没上来了。
最近因为项目需求要研究assetbundle资源加密,要加密自然就要解密了,踩了不少坑,而且自己查问题的时候也发现没有文章详细的讲一下解密要注意的地方,只是简单的列了下代码,可能是之前的版本不需要注意太多东西就能顺利解密吧?毕竟LZ4格式是5.3以后才有的,所以总结记录一下,希望能帮到有需要的人。
主要的坑是解压时机,assetbundle格式,请求assetbundle的方式
#什么时候开始解压的
这涉及到Failed to decompress data for the Assetbundle这个问题
Assetbundle解密问题记录: Failed to decompress data for the Assetbundle_第1张图片
原文在这
https://caihua.tech/2017/03/05/关于AssetBundle解压的讨论结果/
#assetbundle压缩格式
assetbundle的默认压缩格式是LZMA,这个格式会在www请求的时候就解压,因为加密过的ab,所以根本解压不了,会弹这个错误Failed to decompress data for the Assetbundle。而我当前项目就是LZMA,这个坑了我好久都没反应

你可能感兴趣的:(unity3d)