hash_1.py 81 B

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