Bank account?
# python Python 2.6.7 (r267:88850, Feb 2 2012, 23:50:20) [GCC 4.5.3] on cygwin Type "help", "copyright", "credits" or "license" for more information. >>> >>> from xortools import four_byte_xor >>> in_buf = open('reverse2.7z.enc', 'rb').read() >>> out_buf = open('reverse2.7z', 'wb') >>> out_buf.write(four_byte_xor(in_buf, 0x9012347A)) >>> out_buf.close() >>>
以下、未完成・・・