def sha256(string): s = hashlib.sha256() s.update(string) return s.digest()