Advertisement
Guest User

A Python3 script printing its own SHA256 hash.

a guest
Mar 8th, 2017
905
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. from Crypto.Hash import SHA256
  2. s='from Crypto.Hash import SHA256\ns={}\nprint(SHA256.new(s.format(repr(s)).encode()).hexdigest())\n'
  3. print(SHA256.new(s.format(repr(s)).encode()).hexdigest())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement