Advertisement
Th3NiKo

Loading 256 bytes of file

Mar 26th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. with open("142.xor", "rb") as in_file:
  2.     piece = in_file.read(256)
  3.     while piece != b"":
  4.         print(piece.hex())
  5.         piece = in_file.read(256)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement