#MD5加密def md5_key(arg): hash = hashlib.md5() hash.update(arg) return hash.hexdigest()
pythonMD5加密
原文:http://www.cnblogs.com/vijayfly/p/5207610.html