作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在设置一个新的 Fedora 29 盒子,并想从 python 创建 BLF-CRYPT 密码。我想创建 $2y$ 哈希,但无论我尝试什么,它都不会超过 $2b$。最初它只做了 $2a$。因此我发出:
pip uninstall py-bcrypt
pip install passlib
pip install bcrypt
from passlib.hash import bcrypt
hashed = bcrypt.using(rounds=14).hash("test")
hash
'$2b$14$9sAGvDrV0YEF3BBbofYCz.dNSaJZRDw2vfkFDY/5cwQzAxMNP4MVO'
最佳答案
根据official docs你可以用 ident
作为参数。
bcrypt.using(rounds=14, ident="2y").hash("test")
关于python - 如何用 python 创建 $2y$14 的河豚哈希?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54336781/
我是一名优秀的程序员,十分优秀!