检查Moodle的哈希密码

2024-10-02 10:21:10 发布

您现在位置:Python中文网/ 问答频道 /正文

Moodle将哈希密码保存在用户表中,格式如下:

If the stored password is:

$2y$10$UB6vKrpw227eqVXj2PiPou9c0eRtxsdU02fo9.wc3VtsA2FI.gS6a
then:
$2y$ = the id of the hashing algorithm used (crypt_blowfish), enclosed in dollar signs.
10$ = the cost of using that algorithm (two digits) followed by a dollar sign.
UB6vKrpw227eqVXj2PiPou = randomly generated secure salt (22 characters).
9c0eRtxsdU02fo9.wc3VtsA2FI.gS6a = the hash (31 characters).

我有明文密码。我不知道如何用Python检查它。在


Tags: ofthe用户密码ifis格式password

热门问题