hashlib模塊 用於加密相關的操作,3.x里代替了md5模塊和sha模塊 加密功能 運行結果(將hello轉換成一個密文): ...
hashlib模塊
用於加密相關的操作,3.x里代替了md5模塊和sha模塊
加密功能
import hashlib obj = hashlib.md5() # 如果在md5裡加上自己設置的參數,別的解密軟體就不容易解密了,例如:hashlib.md5('asdfg'.encode('utff-8')) obj.update('hello'.encode('utf-8')) print(obj.hexdigest())
運行結果(將hello轉換成一個密文):
5d41402abc4b2a76b9719d911017c592