hello word
import hashlib m = hashlib.md5() # print(m) # 加密 print('=====================================') m.update('hello'.encode('utf')) print(m.hexdigest())
hello word
import hashlib m = hashlib.md5() # print(m) # 加密 print('=====================================') m.update('hello'.encode('utf')) print(m.hexdigest())