文字取得 md5:
檔案取得 md5:
def get_string_md5(string):
return hashlib.md5(string.encode()).hexdigest()
檔案取得 md5:
def get_file_md5(file_patch):
with open(file_patch, "rb") as f:
return hashlib.md5(f.read()).hexdigest()
留言
張貼留言
如果有任何問題、建議、想說的話或文章題目推薦,都歡迎留言或來信: a@ruyut.com