8000 GitHub - utkonos/nsisunbz2: Pure Python implementation of the Bzip2 decompression in NSIS
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

utkonos/nsisunbz2

Repository files navigation

794D

NSIS Bzip2 Decompressor

Decompress Whole Data

import nsisunbz2.core

bzd = nsisunbz2.core.Bz2Decompress(compressed)
decompressed = bzd.decompress()

Stop Decompression Beyond Given Output Size

This is used when decompressing an NSIS script from a solid mode installer to save time. The additional value is the size of the expected NSIS installer script. Exmple size shown here is arbitrary.

import nsisunbz2.core

bzd = nsisunbz2.core.Bz2Decompress(compressed)
decompressed = bzd.decompress(4687)

About

Pure Python implementation of the Bzip2 decompression in NSIS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  
0