Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对散列/加密有要求。虽然用户入职需要将用户的属性之一保留为哈希,并且在登录期间必须使用哈希检查用户提供的值。这与使用 bcrypt 编码器时完成的过程几乎相同。我正在尝试使用 hashlib。但是这个包在 Gluu 设置中不是默认的
import hashlib dk = hashlib.pbkdf2_hmac('sha256', b'password', b'salt', 100000) dk.hex()
如何在 Gluu 中安装 hashlib?