您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

Django模型中的密码字段

Django模型中的密码字段

正如@mlissner所建议的那样,该auth.User模型是一个不错的选择。如果你查看源代码,则会看到该password字段是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)

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

Go 2022/1/1 18:24:46 有449人围观

撰写回答


你尚未登录,登录后可以

和开发者交流问题的细节

关注并接收问题和回答的更新提醒

参与内容的编辑和改进,让解决方法与时俱进

请先登录

推荐问题


联系我
置顶