Last active 1440820643

Best game ever.

Revision a26782f63cddcdc5bb8651d466265535d4a4b2d8

bestgameever.py Raw
1# Usage: python bestgameever.py <password>
2from sys import argv
3import hashlib
4code = "392606c165d14c6867fdc42763454e2b741860a23919415745d0ad10a14f6d6042c1857c440c0e13e9843372fc7d9f178e9c73f4cb994c5ac6568ada78236a31"
5if len(argv) > 1:
6 if hashlib.sha512(hashlib.md5(argv[1]).hexdigest()).hexdigest() == code:
7 print "Yep."
8 else:
9 print "Nope."
10else:
11 print "Nope."