root/hodgestar/PythonCode/PicturePocketRevEng/hex2bin.py

Revision 283, 164 bytes (checked in by simon, 4 years ago)

Move Picture Pocket reverse engineering attempts into svn.

  • Property svn:mime-type set to text/python-source
  • Property svn:eol-style set to native
Line 
1"""Convert hex encoded file to binary data.
2   """
3
4import sys
5import binascii
6
7if __name__ == "__main__":
8    sys.stdout.write(binascii.a2b_hex(sys.stdin.read()))
Note: See TracBrowser for help on using the browser.