md5的生成

import hashlib

m1 = hashlib.md5()

m1.update('加密的字段'.encode('utf-8'))

print(m1.hexdigest())

你可能感兴趣的:(md5的生成)