博主最近进度停滞了 对web开发理解欠缺好多内容
今天整理下MD5算法,这个涉及到mysql数据库存储用户表密码字段的时候 一般是带有加密的
# -*- coding: utf-8 -*- import md5 password = ""
new_password = md5.new()
new_password.update(password)
print new_password.hexdigest() # 得到32位的加密字符串
博主最近进度停滞了 对web开发理解欠缺好多内容
今天整理下MD5算法,这个涉及到mysql数据库存储用户表密码字段的时候 一般是带有加密的
# -*- coding: utf-8 -*- import md5 password = ""
new_password = md5.new()
new_password.update(password)
print new_password.hexdigest() # 得到32位的加密字符串