Skip to content

Instantly share code, notes, and snippets.

@shuax
Created February 25, 2016 06:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shuax/749fa384e9c770756b0a to your computer and use it in GitHub Desktop.
Save shuax/749fa384e9c770756b0a to your computer and use it in GitHub Desktop.
import zlib
with open("3231.zl", "rb") as encrypted_file:
data = encrypted_file.read()
decrypted_text = zlib.decompress(data)
with open('3231.bin', 'wb') as decrypted_file:
decrypted_file.write(decrypted_text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment