Python取16位MD5

使用如下代码即可

import hashlib
md5 = hashlib.md5()
md5.update('test')
hash= md5.hexdigest()[8:-8];

 

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注