#!/usr/bin/python3 import hashlib m = hashlib.md5() data = "G. T. Wang" # 先將資料編碼,再更新MD5 雜湊值 m.update(data.encode("utf-8")) h ...
確定! 回上一頁