-1
を受け入れる:コードは、私は次のコードで、いくつかの実験をやっている32バイトの六角パスワード
import hashlib
password = 16
n = 2 #counter
hash = hashlib.sha256(str(password) + str(n)).hexdigest() #will read the password as string and hash
print hash
それは000000 ... 0002のような32バイトの六角を受け入れることができるように、適切なコードがどうあるべきか?