hash_2.py 89 B

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