hash_1.py 83 B

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