from flask_bcrypt import Bcrypt bcrypt = Bcrypt() pw_hash = bcrypt.generate_password_hash('secret') bcrypt.check_password_hash(pw_hash, 'secret') ...
確定! 回上一頁