安装pip install bcrypt使用示例# -*- coding: utf-8 -*-import bcryptpasswd = '123456'# 加密过程salt = bcrypt.gensalt(rounds=10)hashed ...
確定! 回上一頁