gpt4 book ai didi

django - Django 模型中的密码字段

转载 作者:行者123 更新时间:2023-11-28 19:37:39 28 4
gpt4 key购买 nike

我正在尝试创建一个模型,我可以在其中存储其他应用程序的用户名和密码。如何在 Django 中设置密码字段,使其在管理员中不是纯文本?提前致谢。

最佳答案

作为@mlissner suggested auth.User 模型是个不错的地方。如果您检查 source code您会看到 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)

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

关于django - Django 模型中的密码字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3715103/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com