We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
These are zip file. Some use compression method 99 to store a payload compressed with LZFSE
Method 99 is already registered in APPNOTE for AES encryption.
May be able to infer LZFSE if it has a signature.
The text was updated successfully, but these errors were encountered:
Sample IPA File, 534.ipa, available at https://sourceforge.net/p/sevenzip/discussion/45797/thread/407a191c4f/
534.ipa
Sorry, something went wrong.
https://github.com/lzfse/lzfse
From https://github.com/lzfse/lzfse/blob/master/src/lzfse_internal.h
looks like magic id "bvx"
#define LZFSE_NO_BLOCK_MAGIC 0x00000000 // 0 (invalid) #define LZFSE_ENDOFSTREAM_BLOCK_MAGIC 0x24787662 // bvx$ (end of stream) #define LZFSE_UNCOMPRESSED_BLOCK_MAGIC 0x2d787662 // bvx- (raw data) #define LZFSE_COMPRESSEDV1_BLOCK_MAGIC 0x31787662 // bvx1 (lzfse compressed, uncompressed tables) #define LZFSE_COMPRESSEDV2_BLOCK_MAGIC 0x32787662 // bvx2 (lzfse compressed, compressed tables) #define LZFSE_COMPRESSEDLZVN_BLOCK_MAGIC 0x6e787662 // bvxn (lzvn compressed)
pmqs
No branches or pull requests
These are zip file. Some use compression method 99 to store a payload compressed with LZFSE
Method 99 is already registered in APPNOTE for AES encryption.
May be able to infer LZFSE if it has a signature.
The text was updated successfully, but these errors were encountered: