To add a salt to your hashed password, examine the following Python code: >>> import bcrypt >>> passwd = b's$cret12' >>> salt = bcrypt.gensalt() >>> hashed ...
確定! 回上一頁