Django模型中的密码字段

Django模型中的密码字段,第1张

Django模型中的密码字段

正如@mlissner所建议的那样,该

auth.User
模型是一个不错的选择。如果你查看源代码,则会看到该
passwor
d字段是
CharField

password = models.CharField(_('password'), max_length=128, help_text=_("Use '[algo]$[salt]$[hexdigest]' or use the <a href="password/">change password form</a>."))

该User模型也有一种set_password方法。

def set_password(self, raw_password):    import random    algo = 'sha1'    salt = get_hexdigest(algo, str(random.random()), str(random.random()))[:5]    hsh = get_hexdigest(algo, salt, raw_password)    self.password = '%s$%s$%s' % (algo, salt, hsh)

你可以从此方法中获得一些有关创建和保存密码的线索。



欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/zaji/4980854.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-11-14
下一篇2022-11-14

发表评论

登录后才能评论

评论列表(0条)

    保存