hashlib对密码进行加密

Posted daicw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hashlib对密码进行加密相关的知识,希望对你有一定的参考价值。

1.导入hashlib库

import hashlib

2.对密码进行加密

newUser = User() #这里的User是我们导入的model
m=hashlib.md5()
m.update(dictData[password].encode(utf-8)) #dictData是前端传过来的form
newUser.password = m.hexdigest()

以上是关于hashlib对密码进行加密的主要内容,如果未能解决你的问题,请参考以下文章

常用模块-02

python的hashlib模块

django model中给自定义密码字段加密

python - 常用模块 - hashlib模块

Python怎么对用户密码进行MD5加密,或者是单向加密

MD5密码加密