hashlib 加密

import hashlib

hash = hashlib.md5(bytes('88888', encoding='utf-8'))
hash.update(bytes('1235678', encoding='utf-8'))
print(hash.hexdigest())

  

posted @ 2021-02-14 20:19  xuwenwei  阅读(26)  评论(0)    收藏  举报