Created
June 18, 2016 19:10
-
-
Save Arachnid/3e9582b9de1f2c79a4da5c505e47f82a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib | |
import sha3 | |
message = urllib.urlopen('http://pastebin.com/raw/CcGUBgDG').read() | |
clean = message.split('=====\r\n')[1].split('=====')[0].replace('\r\n', '\n').strip() | |
sha3.sha3_256(clean).hexdigest() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment