hash_2.py 87 B

1234
  1. def sha256(string):
  2. s = hashlib.sha256()
  3. s.update(string)
  4. return s.digest()